Allow fail-over logic for TCP home servers
[freeradius.git] / src / main / process.c
1 /*
2  *   This program is free software; you can redistribute it and/or modify
3  *   it under the terms of the GNU General Public License as published by
4  *   the Free Software Foundation; either version 2 of the License, or
5  *   (at your option) any later version.
6  *
7  *   This program is distributed in the hope that it will be useful,
8  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *   GNU General Public License for more details.
11  *
12  *   You should have received a copy of the GNU General Public License
13  *   along with this program; if not, write to the Free Software
14  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
15  */
16
17 /**
18  * $Id$
19  *
20  * @file process.c
21  * @brief Defines the state machines that control how requests are processed.
22  *
23  * @copyright 2012  The FreeRADIUS server project
24  * @copyright 2012  Alan DeKok <aland@deployingradius.com>
25  */
26
27 RCSID("$Id$")
28
29 #include <freeradius-devel/radiusd.h>
30 #include <freeradius-devel/process.h>
31 #include <freeradius-devel/modules.h>
32 #include <freeradius-devel/state.h>
33
34 #include <freeradius-devel/rad_assert.h>
35
36 #ifdef WITH_DETAIL
37 #include <freeradius-devel/detail.h>
38 #endif
39
40 #include <signal.h>
41 #include <fcntl.h>
42
43 #ifdef HAVE_SYS_WAIT_H
44 #       include <sys/wait.h>
45 #endif
46
47 extern pid_t radius_pid;
48 extern fr_cond_t *debug_condition;
49
50 static bool spawn_flag = false;
51 static bool just_started = true;
52 time_t fr_start_time = (time_t)-1;
53 static rbtree_t *pl = NULL;
54 static fr_event_list_t *el = NULL;
55
56 fr_event_list_t *radius_event_list_corral(UNUSED event_corral_t hint) {
57         /* Currently we do not run a second event loop for modules. */
58         return el;
59 }
60
61 static char const *action_codes[] = {
62         "INVALID",
63         "run",
64         "done",
65         "dup",
66         "timer",
67 #ifdef WITH_PROXY
68         "proxy-reply"
69 #endif
70 };
71
72 #ifdef DEBUG_STATE_MACHINE
73 #  define TRACE_STATE_MACHINE \
74 if (rad_debug_lvl) do { \
75         struct timeval debug_tv; \
76         gettimeofday(&debug_tv, NULL); \
77         debug_tv.tv_sec -= fr_start_time; \
78         printf("(%u) %d.%06d ********\tSTATE %s action %s live M-%s C-%s\t********\n",\
79                request->number, (int) debug_tv.tv_sec, (int) debug_tv.tv_usec, \
80                __FUNCTION__, action_codes[action], master_state_names[request->master_state], \
81                child_state_names[request->child_state]); \
82 } while (0)
83
84 static char const *master_state_names[REQUEST_MASTER_NUM_STATES] = {
85         "?",
86         "active",
87         "stop-processing",
88         "counted"
89 };
90
91 static char const *child_state_names[REQUEST_CHILD_NUM_STATES] = {
92         "?",
93         "queued",
94         "running",
95         "proxied",
96         "reject-delay",
97         "cleanup-delay",
98         "done"
99 };
100
101 #else
102 #  define TRACE_STATE_MACHINE {}
103 #endif
104
105 static NEVER_RETURNS void _rad_panic(char const *file, unsigned int line, char const *msg)
106 {
107         ERROR("%s[%u]: %s", file, line, msg);
108         fr_exit_now(1);
109 }
110
111 #define rad_panic(x) _rad_panic(__FILE__, __LINE__, x)
112
113 /** Declare a state in the state machine
114  *
115  * Expands to the start of a function definition for a given state.
116  *
117  * @param _x the name of the state.
118  */
119 #define STATE_MACHINE_DECL(_x) static void _x(REQUEST *request, int action)
120
121 static void request_timer(void *ctx);
122
123 /** Insert #REQUEST back into the event heap, to continue executing at a future time
124  *
125  * @param file the state machine timer call occurred in.
126  * @param line the state machine timer call occurred on.
127  * @param request to set add the timer event for.
128  * @param when the event should fine.
129  * @param action to perform when we resume processing the request.
130  */
131 static inline void state_machine_timer(char const *file, int line, REQUEST *request,
132                                        struct timeval *when, fr_state_action_t action)
133 {
134         request->timer_action = action;
135         if (!fr_event_insert(el, request_timer, request, when, &request->ev)) {
136                 _rad_panic(file, line, "Failed to insert event");
137         }
138 }
139
140 /** @copybrief state_machine_timer
141  *
142  * @param _x the action to perform when we resume processing the request.
143  */
144 #define STATE_MACHINE_TIMER(_x) state_machine_timer(__FILE__, __LINE__, request, &when, _x)
145
146 /*
147  *      We need a different VERIFY_REQUEST macro in process.c
148  *      To avoid the race conditions with the master thread
149  *      checking the REQUEST whilst it's being worked on by
150  *      the child.
151  */
152 #if defined(WITH_VERIFY_PTR) && defined(HAVE_PTHREAD_H)
153 #  undef VERIFY_REQUEST
154 #  define VERIFY_REQUEST(_x) if (pthread_equal(pthread_self(), _x->child_pid) != 0) verify_request(__FILE__, __LINE__, _x)
155 #endif
156
157 /**
158  * @section request_timeline
159  *
160  *      Time sequence of a request
161  * @code
162  *
163  *      RQ-----------------P=============================Y-J-C
164  *       ::::::::::::::::::::::::::::::::::::::::::::::::::::::::M
165  * @endcode
166  *
167  * -    R: received.  Duplicate detection is done, and request is
168  *         cached.
169  *
170  * -    Q: Request is placed onto a queue for child threads to pick up.
171  *         If there are no child threads, the request goes immediately
172  *         to P.
173  *
174  * -    P: Processing the request through the modules.
175  *
176  * -    Y: Reply is ready.  Rejects MAY be delayed here.  All other
177  *         replies are sent immediately.
178  *
179  * -    J: Reject is sent "response_delay" after the reply is ready.
180  *
181  * -    C: For Access-Requests, After "cleanup_delay", the request is
182  *         deleted.  Accounting-Request packets go directly from Y to C.
183  *
184  * -    M: Max request time.  If the request hits this timer, it is
185  *         forcibly stopped.
186  *
187  *      Other considerations include duplicate and conflicting
188  *      packets.  When a dupicate packet is received, it is ignored
189  *      until we've reached Y, as no response is ready.  If the reply
190  *      is a reject, duplicates are ignored until J, when we're ready
191  *      to send the reply.  In between the reply being sent (Y or J),
192  *      and C, the server responds to duplicates by sending the cached
193  *      reply.
194  *
195  *      Conflicting packets are sent in 2 situations.
196  *
197  *      The first is in between R and Y.  In that case, we consider
198  *      it as a hint that we're taking too long, and the NAS has given
199  *      up on the request.  We then behave just as if the M timer was
200  *      reached, and we discard the current request.  This allows us
201  *      to process the new one.
202  *
203  *      The second case is when we're at Y, but we haven't yet
204  *      finished processing the request.  This is a race condition in
205  *      the threading code (avoiding locks is faster).  It means that
206  *      a thread has actually encoded and sent the reply, and that the
207  *      NAS has responded with a new packet.  The server can then
208  *      safely mark the current request as "OK to delete", and behaves
209  *      just as if the M timer was reached.  This usually happens only
210  *      in high-load situations.
211  *
212  *      Duplicate packets are sent when the NAS thinks we're taking
213  *      too long, and wants a reply.  From R-Y, duplicates are
214  *      ignored.  From Y-J (for Access-Rejects), duplicates are also
215  *      ignored.  From Y-C, duplicates get a duplicate reply.  *And*,
216  *      they cause the "cleanup_delay" time to be extended.  This
217  *      extension means that we're more likely to send a duplicate
218  *      reply (if we have one), or to suppress processing the packet
219  *      twice if we didn't reply to it.
220  *
221  *      All functions in this file should be thread-safe, and should
222  *      assume thet the REQUEST structure is being accessed
223  *      simultaneously by the main thread, and by the child worker
224  *      threads.  This means that timers, etc. cannot be updated in
225  *      the child thread.
226  *
227  *      Instead, the master thread periodically calls request->process
228  *      with action TIMER.  It's up to the individual functions to
229  *      determine how to handle that.  They need to check if they're
230  *      being called from a child thread or the master, and then do
231  *      different things based on that.
232  */
233 #ifdef WITH_PROXY
234 static fr_packet_list_t *proxy_list = NULL;
235 static TALLOC_CTX *proxy_ctx = NULL;
236 #endif
237
238 #ifdef HAVE_PTHREAD_H
239 #  ifdef WITH_PROXY
240 static pthread_mutex_t proxy_mutex;
241 static bool proxy_no_new_sockets = false;
242 #  endif
243
244 #  define PTHREAD_MUTEX_LOCK if (spawn_flag) pthread_mutex_lock
245 #  define PTHREAD_MUTEX_UNLOCK if (spawn_flag) pthread_mutex_unlock
246
247 static pthread_t NO_SUCH_CHILD_PID;
248 #  define NO_CHILD_THREAD request->child_pid = NO_SUCH_CHILD_PID
249
250 #else
251 /*
252  *      This is easier than ifdef's throughout the code.
253  */
254 #  define PTHREAD_MUTEX_LOCK(_x)
255 #  define PTHREAD_MUTEX_UNLOCK(_x)
256 #  define NO_CHILD_THREAD
257 #endif
258
259 #ifdef HAVE_PTHREAD_H
260 static bool we_are_master(void)
261 {
262         if (spawn_flag &&
263             (pthread_equal(pthread_self(), NO_SUCH_CHILD_PID) == 0)) {
264                 return false;
265         }
266
267         return true;
268 }
269
270 /*
271  *      Assertions are debug checks.
272  */
273 #  ifndef NDEBUG
274 #    define ASSERT_MASTER       if (!we_are_master()) rad_panic("We are not master")
275 #    endif
276 #else
277
278 /*
279  *      No threads: we're always master.
280  */
281 #  define we_are_master(_x) (1)
282 #endif  /* HAVE_PTHREAD_H */
283
284 #ifndef ASSERT_MASTER
285 #  define ASSERT_MASTER
286 #endif
287
288 /*
289  *      Make state transitions simpler.
290  */
291 #define FINAL_STATE(_x) NO_CHILD_THREAD; request->component = "<" #_x ">"; request->module = ""; request->child_state = _x
292
293
294 static int event_new_fd(rad_listen_t *this);
295
296 /*
297  *      We need mutexes around the event FD list *only* in certain
298  *      cases.
299  */
300 #if defined (HAVE_PTHREAD_H) && (defined(WITH_PROXY) || defined(WITH_TCP))
301 static rad_listen_t *new_listeners = NULL;
302
303 static pthread_mutex_t  fd_mutex;
304 #  define FD_MUTEX_LOCK if (spawn_flag) pthread_mutex_lock
305 #  define FD_MUTEX_UNLOCK if (spawn_flag) pthread_mutex_unlock
306
307 void radius_update_listener(rad_listen_t *this)
308 {
309         /*
310          *      Just do it ourselves.
311          */
312         if (we_are_master()) {
313                 event_new_fd(this);
314                 return;
315         }
316
317         FD_MUTEX_LOCK(&fd_mutex);
318
319         /*
320          *      If it's already in the list, don't add it again.
321          */
322         if (this->next) {
323                 FD_MUTEX_UNLOCK(&fd_mutex);
324                 return;
325         }
326
327         /*
328          *      Otherwise, add it to the list
329          */
330         this->next = new_listeners;
331         new_listeners = this;
332         FD_MUTEX_UNLOCK(&fd_mutex);
333         radius_signal_self(RADIUS_SIGNAL_SELF_NEW_FD);
334 }
335 #else
336 void radius_update_listener(rad_listen_t *this)
337 {
338         /*
339          *      No threads.  Just insert it.
340          */
341         event_new_fd(this);
342 }
343 /*
344  *      This is easier than ifdef's throughout the code.
345  */
346 #  define FD_MUTEX_LOCK(_x)
347 #  define FD_MUTEX_UNLOCK(_x)
348 #endif
349
350 static int request_num_counter = 1;
351 #ifdef WITH_PROXY
352 static int request_will_proxy(REQUEST *request) CC_HINT(nonnull);
353 static int request_proxy(REQUEST *request, int retransmit) CC_HINT(nonnull);
354 STATE_MACHINE_DECL(request_ping) CC_HINT(nonnull);
355
356 STATE_MACHINE_DECL(request_response_delay) CC_HINT(nonnull);
357 STATE_MACHINE_DECL(request_cleanup_delay) CC_HINT(nonnull);
358 STATE_MACHINE_DECL(request_running) CC_HINT(nonnull);
359 STATE_MACHINE_DECL(request_done) CC_HINT(nonnull);
360
361 STATE_MACHINE_DECL(proxy_no_reply) CC_HINT(nonnull);
362 STATE_MACHINE_DECL(proxy_running) CC_HINT(nonnull);
363 STATE_MACHINE_DECL(proxy_wait_for_reply) CC_HINT(nonnull);
364
365 static int process_proxy_reply(REQUEST *request, RADIUS_PACKET *reply) CC_HINT(nonnull (1));
366 static void remove_from_proxy_hash(REQUEST *request) CC_HINT(nonnull);
367 static void remove_from_proxy_hash_nl(REQUEST *request, bool yank) CC_HINT(nonnull);
368 static int insert_into_proxy_hash(REQUEST *request) CC_HINT(nonnull);
369 #endif
370
371 static REQUEST *request_setup(TALLOC_CTX *ctx, rad_listen_t *listener, RADIUS_PACKET *packet,
372                               RADCLIENT *client, RAD_REQUEST_FUNP fun);
373 static int request_pre_handler(REQUEST *request, UNUSED int action) CC_HINT(nonnull);
374
375 #ifdef WITH_COA
376 static void request_coa_originate(REQUEST *request) CC_HINT(nonnull);
377 STATE_MACHINE_DECL(coa_wait_for_reply) CC_HINT(nonnull);
378 STATE_MACHINE_DECL(coa_no_reply) CC_HINT(nonnull);
379 STATE_MACHINE_DECL(coa_running) CC_HINT(nonnull);
380 static void coa_separate(REQUEST *request) CC_HINT(nonnull);
381 #  define COA_SEPARATE if (request->coa) coa_separate(request->coa);
382 #else
383 #  define COA_SEPARATE
384 #endif
385
386 #define CHECK_FOR_STOP do { if (request->master_state == REQUEST_STOP_PROCESSING) {request_done(request, FR_ACTION_DONE);return;}} while (0)
387
388 #undef USEC
389 #define USEC (1000000)
390
391 #define INSERT_EVENT(_function, _ctx) if (!fr_event_insert(el, _function, _ctx, &((_ctx)->when), &((_ctx)->ev))) { _rad_panic(__FILE__, __LINE__, "Failed to insert event"); }
392
393 static void tv_add(struct timeval *tv, int usec_delay)
394 {
395         if (usec_delay >= USEC) {
396                 tv->tv_sec += usec_delay / USEC;
397                 usec_delay %= USEC;
398         }
399         tv->tv_usec += usec_delay;
400
401         if (tv->tv_usec >= USEC) {
402                 tv->tv_sec += tv->tv_usec / USEC;
403                 tv->tv_usec %= USEC;
404         }
405 }
406
407 /*
408  *      Debug the packet if requested.
409  */
410 static void debug_packet(REQUEST *request, RADIUS_PACKET *packet, bool received)
411 {
412         char src_ipaddr[128];
413         char dst_ipaddr[128];
414
415         if (!packet) return;
416         if (!RDEBUG_ENABLED) return;
417
418         /*
419          *      Client-specific debugging re-prints the input
420          *      packet into the client log.
421          *
422          *      This really belongs in a utility library
423          */
424         if (is_radius_code(packet->code)) {
425                 RDEBUG("%s %s Id %i from %s%s%s:%i to %s%s%s:%i length %zu",
426                        received ? "Received" : "Sent",
427                        fr_packet_codes[packet->code],
428                        packet->id,
429                        packet->src_ipaddr.af == AF_INET6 ? "[" : "",
430                        inet_ntop(packet->src_ipaddr.af,
431                                  &packet->src_ipaddr.ipaddr,
432                                  src_ipaddr, sizeof(src_ipaddr)),
433                        packet->src_ipaddr.af == AF_INET6 ? "]" : "",
434                        packet->src_port,
435                        packet->dst_ipaddr.af == AF_INET6 ? "[" : "",
436                        inet_ntop(packet->dst_ipaddr.af,
437                                  &packet->dst_ipaddr.ipaddr,
438                                  dst_ipaddr, sizeof(dst_ipaddr)),
439                        packet->dst_ipaddr.af == AF_INET6 ? "]" : "",
440                        packet->dst_port,
441                        packet->data_len);
442         } else {
443                 RDEBUG("%s code %u Id %i from %s%s%s:%i to %s%s%s:%i length %zu\n",
444                        received ? "Received" : "Sent",
445                        packet->code,
446                        packet->id,
447                        packet->src_ipaddr.af == AF_INET6 ? "[" : "",
448                        inet_ntop(packet->src_ipaddr.af,
449                                  &packet->src_ipaddr.ipaddr,
450                                  src_ipaddr, sizeof(src_ipaddr)),
451                        packet->src_ipaddr.af == AF_INET6 ? "]" : "",
452                        packet->src_port,
453                        packet->dst_ipaddr.af == AF_INET6 ? "[" : "",
454                        inet_ntop(packet->dst_ipaddr.af,
455                                  &packet->dst_ipaddr.ipaddr,
456                                  dst_ipaddr, sizeof(dst_ipaddr)),
457                        packet->dst_ipaddr.af == AF_INET6 ? "]" : "",
458                        packet->dst_port,
459                        packet->data_len);
460         }
461
462         if (received) {
463                 rdebug_pair_list(L_DBG_LVL_1, request, packet->vps, NULL);
464         } else {
465                 rdebug_proto_pair_list(L_DBG_LVL_1, request, packet->vps);
466         }
467 }
468
469
470 /***********************************************************************
471  *
472  *      Start of RADIUS server state machine.
473  *
474  ***********************************************************************/
475
476 static struct timeval *request_response_window(REQUEST *request)
477 {
478         VERIFY_REQUEST(request);
479
480         if (request->client) {
481                 /*
482                  *      The client hasn't set the response window.  Return
483                  *      either the home server one, if set, or the global one.
484                  */
485                 if (!timerisset(&request->client->response_window)) {
486                         return &request->home_server->response_window;
487                 }
488
489                 if (timercmp(&request->client->response_window,
490                              &request->home_server->response_window, <)) {
491                         return &request->client->response_window;
492                 }
493         }
494
495         rad_assert(request->home_server != NULL);
496         return &request->home_server->response_window;
497 }
498
499 /*
500  * Determine initial request processing delay.
501  */
502 static int request_init_delay(REQUEST *request)
503 {
504         struct timeval half_response_window;
505
506         VERIFY_REQUEST(request);
507
508         /* Allow client response window to lower initial delay */
509         if (timerisset(&request->client->response_window)) {
510                 half_response_window.tv_sec = request->client->response_window.tv_sec >> 1;
511                 half_response_window.tv_usec =
512                         ((request->client->response_window.tv_sec & 1) * USEC +
513                                 request->client->response_window.tv_usec) >> 1;
514                 if (timercmp(&half_response_window, &request->root->init_delay, <))
515                         return (int)half_response_window.tv_sec * USEC +
516                                 (int)half_response_window.tv_usec;
517         }
518
519         return (int)request->root->init_delay.tv_sec * USEC +
520                 (int)request->root->init_delay.tv_usec;
521 }
522
523 /*
524  *      Callback for ALL timer events related to the request.
525  */
526 static void request_timer(void *ctx)
527 {
528         REQUEST *request = talloc_get_type_abort(ctx, REQUEST);
529         int action;
530
531         action = request->timer_action;
532
533         TRACE_STATE_MACHINE;
534
535         request->process(request, action);
536 }
537
538 /*
539  *      Wrapper for talloc pools.  If there's no parent, just free the
540  *      request.  If there is a parent, free the parent INSTEAD of the
541  *      request.
542  */
543 static void request_free(REQUEST *request)
544 {
545         void *ptr;
546
547         rad_assert(request->ev == NULL);
548         rad_assert(!request->in_request_hash);
549         rad_assert(!request->in_proxy_hash);
550
551         if ((request->options & RAD_REQUEST_OPTION_CTX) == 0) {
552                 talloc_free(request);
553                 return;
554         }
555
556         ptr = talloc_parent(request);
557         rad_assert(ptr != NULL);
558         talloc_free(ptr);
559 }
560
561
562 #ifdef WITH_PROXY
563 static void proxy_reply_too_late(REQUEST *request)
564 {
565         char buffer[128];
566
567         RDEBUG2("Reply from home server %s port %d  - ID: %d arrived too late.  Try increasing 'retry_delay' or 'max_request_time'",
568                 inet_ntop(request->proxy->dst_ipaddr.af,
569                           &request->proxy->dst_ipaddr.ipaddr,
570                           buffer, sizeof(buffer)),
571                 request->proxy->dst_port, request->proxy->id);
572 }
573 #endif
574
575
576 /** Mark a request DONE and clean it up.
577  *
578  *  When a request is DONE, it can have ties to a number of other
579  *  portions of the server.  The request hash, proxy hash, events,
580  *  child threads, etc.  This function takes care of either cleaning
581  *  up the request, or managing the timers to wait for the ties to be
582  *  removed.
583  *
584  *  \dot
585  *      digraph done {
586  *              done -> done [ label = "still running" ];
587  *      }
588  *  \enddot
589  */
590 static void request_done(REQUEST *request, int action)
591 {
592         struct timeval now, when;
593
594         VERIFY_REQUEST(request);
595
596         TRACE_STATE_MACHINE;
597
598         /*
599          *      Force this no matter what.
600          */
601         request->process = request_done;
602
603 #ifdef WITH_DETAIL
604         /*
605          *      Tell the detail listener that we're done.
606          */
607         if (request->listener &&
608             (request->listener->type == RAD_LISTEN_DETAIL) &&
609             (request->simul_max != 1)) {
610                 request->simul_max = 1;
611                 request->listener->send(request->listener,
612                                         request);
613         }
614 #endif
615
616 #ifdef HAVE_PTHREAD_H
617         /*
618          *      If called from a child thread, mark ourselves as done,
619          *      and wait for the master thread timer to clean us up.
620          */
621         if (!we_are_master()) {
622                 FINAL_STATE(REQUEST_DONE);
623                 return;
624         }
625 #endif
626
627         /*
628          *      Mark the request as STOP.
629          */
630         request->master_state = REQUEST_STOP_PROCESSING;
631
632 #ifdef WITH_COA
633         /*
634          *      Move the CoA request to its own handler.
635          */
636         if (request->coa) {
637                 coa_separate(request->coa);
638         } else if (request->parent && (request->parent->coa == request)) {
639                 coa_separate(request);
640         }
641 #endif
642
643         /*
644          *      It doesn't hurt to send duplicate replies.  All other
645          *      signals are ignored, as the request will be cleaned up
646          *      soon anyways.
647          */
648         switch (action) {
649         case FR_ACTION_DUP:
650 #ifdef WITH_DETAIL
651                 rad_assert(request->listener != NULL);
652 #endif
653                 if (request->reply->code != 0) {
654                         request->listener->send(request->listener, request);
655                         return;
656                 } else {
657                         RDEBUG("No reply.  Ignoring retransmit");
658                 }
659                 break;
660
661                 /*
662                  *      Mark the request as done.
663                  */
664         case FR_ACTION_DONE:
665 #ifdef HAVE_PTHREAD_H
666                 /*
667                  *      If the child is still running, leave it alone.
668                  */
669                 if (spawn_flag && (request->child_state <= REQUEST_RUNNING)) {
670                         break;
671                 }
672 #endif
673
674 #ifdef DEBUG_STATE_MACHINE
675                 if (rad_debug_lvl) printf("(%u) ********\tSTATE %s C-%s -> C-%s\t********\n",
676                                        request->number, __FUNCTION__,
677                                        child_state_names[request->child_state],
678                                        child_state_names[REQUEST_DONE]);
679 #endif
680                 request->child_state = REQUEST_DONE;
681                 break;
682
683                 /*
684                  *      Called when the child is taking too long to
685                  *      finish.  We've already marked it "please
686                  *      stop", so we don't complain any more.
687                  */
688         case FR_ACTION_TIMER:
689                 break;
690
691 #ifdef WITH_PROXY
692         case FR_ACTION_PROXY_REPLY:
693                 proxy_reply_too_late(request);
694                 break;
695 #endif
696
697         default:
698                 break;
699         }
700
701         /*
702          *      Remove it from the request hash.
703          */
704         if (request->in_request_hash) {
705                 if (!rbtree_deletebydata(pl, &request->packet)) {
706                         rad_assert(0 == 1);
707                 }
708                 request->in_request_hash = false;
709         }
710
711 #ifdef WITH_PROXY
712         /*
713          *      Wait for the proxy ID to expire.  This allows us to
714          *      avoid re-use of proxy IDs for a while.
715          */
716         if (request->in_proxy_hash) {
717                 rad_assert(request->proxy != NULL);
718
719                 fr_event_now(el, &now);
720                 when = request->proxy->timestamp;
721
722 #ifdef WITH_COA
723                 if (((request->proxy->code == PW_CODE_COA_REQUEST) ||
724                      (request->proxy->code == PW_CODE_DISCONNECT_REQUEST)) &&
725                     (request->packet->code != request->proxy->code)) {
726                         when.tv_sec += request->home_server->coa_mrd;
727                 } else
728 #endif
729                         timeradd(&when, request_response_window(request), &when);
730
731                 /*
732                  *      We haven't received all responses, AND there's still
733                  *      time to wait.  Do so.
734                  */
735                 if ((request->num_proxied_requests > request->num_proxied_responses) &&
736 #ifdef WITH_TCP
737                     (request->home_server->proto != IPPROTO_TCP) &&
738 #endif
739                     timercmp(&now, &when, <)) {
740                         RDEBUG("Waiting for more responses from the home server");
741                         goto wait_some_more;
742                 }
743
744                 /*
745                  *      Time to remove it.
746                  */
747                 remove_from_proxy_hash(request);
748         }
749 #endif
750
751 #ifdef HAVE_PTHREAD_H
752         /*
753          *      If there's no children, we can mark the request as done.
754          */
755         if (!spawn_flag) request->child_state = REQUEST_DONE;
756 #endif
757
758         /*
759          *      If the child is still running, wait for it to be finished.
760          */
761         if (request->child_state <= REQUEST_RUNNING) {
762                 gettimeofday(&now, NULL);
763 #ifdef WITH_PROXY
764         wait_some_more:
765 #endif
766                 when = now;
767                 if (request->delay < (USEC / 3)) request->delay = USEC / 3;
768                 tv_add(&when, request->delay);
769                 request->delay += request->delay >> 1;
770                 if (request->delay > (10 * USEC)) request->delay = 10 * USEC;
771
772                 STATE_MACHINE_TIMER(FR_ACTION_TIMER);
773                 return;
774         }
775
776 #ifdef HAVE_PTHREAD_H
777         rad_assert(request->child_pid == NO_SUCH_CHILD_PID);
778 #endif
779
780         /*
781          *      @todo: do final states for TCP sockets, too?
782          */
783         request_stats_final(request);
784 #ifdef WITH_TCP
785         if (request->listener) {
786                 request->listener->count--;
787
788                 /*
789                  *      If we're the last one, remove the listener now.
790                  */
791                 if ((request->listener->count == 0) &&
792                     (request->listener->status >= RAD_LISTEN_STATUS_FROZEN)) {
793                         event_new_fd(request->listener);
794                 }
795         }
796 #endif
797
798         if (request->packet) {
799                 RDEBUG2("Cleaning up request packet ID %u with timestamp +%d",
800                         request->packet->id,
801                         (unsigned int) (request->timestamp - fr_start_time));
802         } /* else don't print anything */
803
804         ASSERT_MASTER;
805         fr_event_delete(el, &request->ev);
806         request_free(request);
807 }
808
809
810 static void request_cleanup_delay_init(REQUEST *request)
811 {
812         struct timeval now, when;
813
814         VERIFY_REQUEST(request);
815
816         /*
817          *      Do cleanup delay ONLY for RADIUS packets from a real
818          *      client.  Everything else just gets cleaned up
819          *      immediately.
820          */
821         if (request->packet->dst_port == 0) goto done;
822
823         /*
824          *      Accounting packets shouldn't be retransmitted.  They
825          *      should always be updated with Acct-Delay-Time.
826          */
827 #ifdef WITH_ACCOUNTING
828         if (request->packet->code == PW_CODE_ACCOUNTING_REQUEST) goto done;
829 #endif
830
831 #ifdef WITH_DHCP
832         if (request->listener->type == RAD_LISTEN_DHCP) goto done;
833 #endif
834
835 #ifdef WITH_VMPS
836         if (request->listener->type == RAD_LISTEN_VQP) goto done;
837 #endif
838
839         if (!request->root->cleanup_delay) goto done;
840
841         gettimeofday(&now, NULL);
842
843         rad_assert(request->reply->timestamp.tv_sec != 0);
844         when = request->reply->timestamp;
845
846         request->delay = request->root->cleanup_delay;
847         when.tv_sec += request->delay;
848
849         /*
850          *      Set timer for when we need to clean it up.
851          */
852         if (timercmp(&when, &now, >)) {
853 #ifdef DEBUG_STATE_MACHINE
854                 if (rad_debug_lvl) printf("(%u) ********\tNEXT-STATE %s -> %s\n", request->number, __FUNCTION__, "request_cleanup_delay");
855 #endif
856                 request->process = request_cleanup_delay;
857
858                 if (!we_are_master()) {
859                         FINAL_STATE(REQUEST_CLEANUP_DELAY);
860                         return;
861                 }
862
863                 /*
864                  *      Update this if we can, otherwise let the timers pick it up.
865                  */
866                 request->child_state = REQUEST_CLEANUP_DELAY;
867 #ifdef HAVE_PTHREAD_H
868                 rad_assert(request->child_pid == NO_SUCH_CHILD_PID);
869 #endif
870                 STATE_MACHINE_TIMER(FR_ACTION_TIMER);
871                 return;
872         }
873
874         /*
875          *      Otherwise just clean it up.
876          */
877 done:
878         request_done(request, FR_ACTION_DONE);
879 }
880
881
882 /*
883  *      Enforce max_request_time.
884  */
885 static bool request_max_time(REQUEST *request)
886 {
887         struct timeval now, when;
888         rad_assert(request->magic == REQUEST_MAGIC);
889 #ifdef DEBUG_STATE_MACHINE
890         int action = FR_ACTION_TIMER;
891 #endif
892
893         VERIFY_REQUEST(request);
894
895         TRACE_STATE_MACHINE;
896         ASSERT_MASTER;
897
898         /*
899          *      The child thread has acknowledged it's done.
900          *      Transition to the DONE state.
901          *
902          *      If the request was marked STOP, then the "check for
903          *      stop" macro already took care of it.
904          */
905         if (request->child_state == REQUEST_DONE) {
906         done:
907                 request_done(request, FR_ACTION_DONE);
908                 return true;
909         }
910
911         /*
912          *      The request is still running.  Enforce max_request_time.
913          */
914         fr_event_now(el, &now);
915         when = request->packet->timestamp;
916         when.tv_sec += request->root->max_request_time;
917
918         /*
919          *      Taking too long: tell it to die.
920          */
921         if (timercmp(&now, &when, >=)) {
922 #ifdef HAVE_PTHREAD_H
923                 /*
924                  *      If there's a child thread processing it,
925                  *      complain.
926                  */
927                 if (spawn_flag &&
928                     (pthread_equal(request->child_pid, NO_SUCH_CHILD_PID) == 0)) {
929                         ERROR("Unresponsive child for request %u, in component %s module %s",
930                               request->number,
931                               request->component ? request->component : "<core>",
932                               request->module ? request->module : "<core>");
933                         exec_trigger(request, NULL, "server.thread.unresponsive", true);
934                 }
935 #endif
936                 /*
937                  *      Tell the request that it's done.
938                  */
939                 goto done;
940         }
941
942         /*
943          *      Sleep for some more.  We HOPE that the child will
944          *      become responsive at some point in the future.  We do
945          *      this by adding 50% to the current timer.
946          */
947         when = now;
948         tv_add(&when, request->delay);
949         request->delay += request->delay >> 1;
950         STATE_MACHINE_TIMER(FR_ACTION_TIMER);
951         return false;
952 }
953
954 static void request_queue_or_run(REQUEST *request,
955                                  fr_request_process_t process)
956 {
957 #ifdef DEBUG_STATE_MACHINE
958         int action = FR_ACTION_TIMER;
959 #endif
960
961         VERIFY_REQUEST(request);
962
963         TRACE_STATE_MACHINE;
964
965         /*
966          *      Do this here so that fewer other functions need to do
967          *      it.
968          */
969         if (request->master_state == REQUEST_STOP_PROCESSING) {
970 #ifdef DEBUG_STATE_MACHINE
971                 if (rad_debug_lvl) printf("(%u) ********\tSTATE %s M-%s causes C-%s-> C-%s\t********\n",
972                                        request->number, __FUNCTION__,
973                                        master_state_names[request->master_state],
974                                        child_state_names[request->child_state],
975                                        child_state_names[REQUEST_DONE]);
976 #endif
977                 request_done(request, FR_ACTION_DONE);
978                 return;
979         }
980
981         request->process = process;
982
983         if (we_are_master()) {
984                 struct timeval when;
985
986                 /*
987                  *      (re) set the initial delay.
988                  */
989                 request->delay = request_init_delay(request);
990                 if (request->delay > USEC) request->delay = USEC;
991                 gettimeofday(&when, NULL);
992                 tv_add(&when, request->delay);
993                 request->delay += request->delay >> 1;
994
995                 STATE_MACHINE_TIMER(FR_ACTION_TIMER);
996
997 #ifdef HAVE_PTHREAD_H
998                 if (spawn_flag) {
999                         /*
1000                          *      A child thread will eventually pick it up.
1001                          */
1002                         if (request_enqueue(request)) return;
1003
1004                         /*
1005                          *      Otherwise we're not going to do anything with
1006                          *      it...
1007                          */
1008                         request_done(request, FR_ACTION_DONE);
1009                         return;
1010                 }
1011 #endif
1012         }
1013
1014         request->child_state = REQUEST_RUNNING;
1015         request->process(request, FR_ACTION_RUN);
1016
1017 #ifdef WNOHANG
1018         /*
1019          *      Requests that care about child process exit
1020          *      codes have already either called
1021          *      rad_waitpid(), or they've given up.
1022          */
1023         while (waitpid(-1, NULL, WNOHANG) > 0);
1024 #endif
1025 }
1026
1027
1028 static void request_dup(REQUEST *request)
1029 {
1030         ERROR("(%u) Ignoring duplicate packet from "
1031               "client %s port %d - ID: %u due to unfinished request "
1032               "in component %s module %s",
1033               request->number, request->client->shortname,
1034               request->packet->src_port,request->packet->id,
1035               request->component, request->module);
1036 }
1037
1038
1039 /** Sit on a request until it's time to clean it up.
1040  *
1041  *  A NAS may not see a response from the server.  When the NAS
1042  *  retransmits, we want to be able to send a cached reply back.  The
1043  *  alternative is to re-process the packet, which does bad things for
1044  *  EAP, among others.
1045  *
1046  *  IF we do see a NAS retransmit, we extend the cleanup delay,
1047  *  because the NAS might miss our cached reply.
1048  *
1049  *  Otherwise, once we reach cleanup_delay, we transition to DONE.
1050  *
1051  *  \dot
1052  *      digraph cleanup_delay {
1053  *              cleanup_delay;
1054  *              send_reply [ label = "send_reply\nincrease cleanup delay" ];
1055  *
1056  *              cleanup_delay -> send_reply [ label = "DUP" ];
1057  *              send_reply -> cleanup_delay;
1058  *              cleanup_delay -> proxy_reply_too_late [ label = "PROXY_REPLY", arrowhead = "none" ];
1059  *              cleanup_delay -> cleanup_delay [ label = "TIMER < timeout" ];
1060  *              cleanup_delay -> done [ label = "TIMER >= timeout" ];
1061  *      }
1062  *  \enddot
1063  */
1064 static void request_cleanup_delay(REQUEST *request, int action)
1065 {
1066         struct timeval when, now;
1067
1068         VERIFY_REQUEST(request);
1069
1070         TRACE_STATE_MACHINE;
1071         ASSERT_MASTER;
1072         COA_SEPARATE;
1073         CHECK_FOR_STOP;
1074
1075         switch (action) {
1076         case FR_ACTION_DUP:
1077                 if (request->reply->code != 0) {
1078                         request->listener->send(request->listener, request);
1079                 } else {
1080                         RDEBUG("No reply.  Ignoring retransmit");
1081                 }
1082
1083                 /*
1084                  *      Double the cleanup_delay to catch retransmits.
1085                  */
1086                 when = request->reply->timestamp;
1087                 request->delay += request->delay;
1088                 when.tv_sec += request->delay;
1089
1090                 STATE_MACHINE_TIMER(FR_ACTION_TIMER);
1091                 break;
1092
1093 #ifdef WITH_PROXY
1094         case FR_ACTION_PROXY_REPLY:
1095                 proxy_reply_too_late(request);
1096                 break;
1097 #endif
1098
1099         case FR_ACTION_TIMER:
1100                 fr_event_now(el, &now);
1101
1102                 rad_assert(request->root->cleanup_delay > 0);
1103
1104                 when = request->reply->timestamp;
1105                 when.tv_sec += request->root->cleanup_delay;
1106
1107                 if (timercmp(&when, &now, >)) {
1108 #ifdef DEBUG_STATE_MACHINE
1109                         if (rad_debug_lvl) printf("(%u) ********\tNEXT-STATE %s -> %s\n", request->number, __FUNCTION__, "request_cleanup_delay");
1110 #endif
1111                         STATE_MACHINE_TIMER(FR_ACTION_TIMER);
1112                         return;
1113                 } /* else it's time to clean up */
1114
1115                 request_done(request, REQUEST_DONE);
1116                 break;
1117
1118         default:
1119                 RDEBUG3("%s: Ignoring action %s", __FUNCTION__, action_codes[action]);
1120                 break;
1121         }
1122 }
1123
1124
1125 /** Sit on a request until it's time to respond to it.
1126  *
1127  *  For security reasons, rejects (and maybe some other) packets are
1128  *  delayed for a while before we respond.  This delay means that
1129  *  badly behaved NASes don't hammer the server with authentication
1130  *  attempts.
1131  *
1132  *  Otherwise, once we reach response_delay, we send the reply, and
1133  *  transition to cleanup_delay.
1134  *
1135  *  \dot
1136  *      digraph response_delay {
1137  *              response_delay -> proxy_reply_too_late [ label = "PROXY_REPLY", arrowhead = "none" ];
1138  *              response_delay -> response_delay [ label = "DUP, TIMER < timeout" ];
1139  *              response_delay -> send_reply [ label = "TIMER >= timeout" ];
1140  *              send_reply -> cleanup_delay;
1141  *      }
1142  *  \enddot
1143  */
1144 static void request_response_delay(REQUEST *request, int action)
1145 {
1146         struct timeval when, now;
1147
1148         VERIFY_REQUEST(request);
1149
1150         TRACE_STATE_MACHINE;
1151         ASSERT_MASTER;
1152         COA_SEPARATE;
1153         CHECK_FOR_STOP;
1154
1155         switch (action) {
1156         case FR_ACTION_DUP:
1157                 ERROR("(%u) Discarding duplicate request from "
1158                       "client %s port %d - ID: %u due to delayed response",
1159                       request->number, request->client->shortname,
1160                       request->packet->src_port,request->packet->id);
1161                 break;
1162
1163 #ifdef WITH_PROXY
1164         case FR_ACTION_PROXY_REPLY:
1165                 proxy_reply_too_late(request);
1166                 break;
1167 #endif
1168
1169         case FR_ACTION_TIMER:
1170                 fr_event_now(el, &now);
1171
1172                 /*
1173                  *      See if it's time to send the reply.  If not,
1174                  *      we wait some more.
1175                  */
1176                 when = request->reply->timestamp;
1177
1178                 tv_add(&when, request->response_delay.tv_sec * USEC);
1179                 tv_add(&when, request->response_delay.tv_usec);
1180
1181                 if (timercmp(&when, &now, >)) {
1182 #ifdef DEBUG_STATE_MACHINE
1183                         if (rad_debug_lvl) printf("(%u) ********\tNEXT-STATE %s -> %s\n", request->number, __FUNCTION__, "request_response_delay");
1184 #endif
1185                         STATE_MACHINE_TIMER(FR_ACTION_TIMER);
1186                         return;
1187                 } /* else it's time to send the reject */
1188
1189                 RDEBUG2("Sending delayed response");
1190                 debug_packet(request, request->reply, false);
1191                 request->listener->send(request->listener, request);
1192
1193                 /*
1194                  *      Clean up the request.
1195                  */
1196                 request_cleanup_delay_init(request);
1197                 break;
1198
1199         default:
1200                 RDEBUG3("%s: Ignoring action %s", __FUNCTION__, action_codes[action]);
1201                 break;
1202         }
1203 }
1204
1205
1206 static int request_pre_handler(REQUEST *request, UNUSED int action)
1207 {
1208         int rcode;
1209
1210         VERIFY_REQUEST(request);
1211
1212         TRACE_STATE_MACHINE;
1213
1214         if (request->master_state == REQUEST_STOP_PROCESSING) return 0;
1215
1216         /*
1217          *      Don't decode the packet if it's an internal "fake"
1218          *      request.  Instead, just return so that the caller can
1219          *      process it.
1220          */
1221         if (request->packet->dst_port == 0) {
1222                 request->username = fr_pair_find_by_num(request->packet->vps, PW_USER_NAME, 0, TAG_ANY);
1223                 request->password = fr_pair_find_by_num(request->packet->vps, PW_USER_PASSWORD, 0, TAG_ANY);
1224                 return 1;
1225         }
1226
1227         if (!request->packet->vps) { /* FIXME: check for correct state */
1228                 rcode = request->listener->decode(request->listener, request);
1229
1230 #ifdef WITH_UNLANG
1231                 if (debug_condition) {
1232                         /*
1233                          *      Ignore parse errors.
1234                          */
1235                         if (radius_evaluate_cond(request, RLM_MODULE_OK, 0, debug_condition)) {
1236                                 request->log.lvl = L_DBG_LVL_2;
1237                                 request->log.func = vradlog_request;
1238                         }
1239                 }
1240 #endif
1241
1242                 debug_packet(request, request->packet, true);
1243         } else {
1244                 rcode = 0;
1245         }
1246
1247         if (rcode < 0) {
1248                 RATE_LIMIT(INFO("Dropping packet without response because of error: %s", fr_strerror()));
1249                 request->reply->offset = -2; /* bad authenticator */
1250                 return 0;
1251         }
1252
1253         if (!request->username) {
1254                 request->username = fr_pair_find_by_num(request->packet->vps, PW_USER_NAME, 0, TAG_ANY);
1255         }
1256
1257         return 1;
1258 }
1259
1260
1261 /**  Do the final processing of a request before we reply to the NAS.
1262  *
1263  *  Various cleanups, suppress responses, copy Proxy-State, and set
1264  *  response_delay or cleanup_delay;
1265  */
1266 static void request_finish(REQUEST *request, int action)
1267 {
1268         VALUE_PAIR *vp;
1269
1270         VERIFY_REQUEST(request);
1271
1272         TRACE_STATE_MACHINE;
1273         CHECK_FOR_STOP;
1274
1275         (void) action;  /* -Wunused */
1276
1277 #ifdef WITH_COA
1278         /*
1279          *      Don't do post-auth if we're a CoA request originated
1280          *      from an Access-Request.  See request_alloc_coa() for
1281          *      details.
1282          */
1283         if ((request->options & RAD_REQUEST_OPTION_COA) != 0) goto done;
1284 #endif
1285
1286         /*
1287          *      Override the response code if a control:Response-Packet-Type attribute is present.
1288          */
1289         vp = fr_pair_find_by_num(request->config, PW_RESPONSE_PACKET_TYPE, 0, TAG_ANY);
1290         if (vp) {
1291                 if (vp->vp_integer == 256) {
1292                         RDEBUG2("Not responding to request");
1293                         request->reply->code = 0;
1294                 } else {
1295                         request->reply->code = vp->vp_integer;
1296                 }
1297         }
1298         /*
1299          *      Catch Auth-Type := Reject BEFORE proxying the packet.
1300          */
1301         else if (request->packet->code == PW_CODE_ACCESS_REQUEST) {
1302                 if (request->reply->code == 0) {
1303                         vp = fr_pair_find_by_num(request->config, PW_AUTH_TYPE, 0, TAG_ANY);
1304                         if (!vp || (vp->vp_integer != 5)) {
1305                                 RDEBUG2("There was no response configured: "
1306                                         "rejecting request");
1307                         }
1308
1309                         request->reply->code = PW_CODE_ACCESS_REJECT;
1310                 }
1311         }
1312
1313         /*
1314          *      Copy Proxy-State from the request to the reply.
1315          */
1316         vp = fr_pair_list_copy_by_num(request->reply, request->packet->vps,
1317                        PW_PROXY_STATE, 0, TAG_ANY);
1318         if (vp) fr_pair_add(&request->reply->vps, vp);
1319
1320         /*
1321          *      Call Post-Auth for Access-Request packets.
1322          */
1323         if (request->packet->code == PW_CODE_ACCESS_REQUEST) {
1324                 rad_postauth(request);
1325         }
1326
1327 #ifdef WITH_COA
1328         /*
1329          *      Maybe originate a CoA request.
1330          */
1331         if ((action == FR_ACTION_RUN) && !request->proxy && request->coa) {
1332                 request_coa_originate(request);
1333         }
1334 #endif
1335
1336         /*
1337          *      Clean up.  These are no longer needed.
1338          */
1339         gettimeofday(&request->reply->timestamp, NULL);
1340
1341         /*
1342          *      Fake packets get marked as "done", and have the
1343          *      proxy-reply section deal with the reply attributes.
1344          *      We therefore don't free the reply attributes.
1345          */
1346         if (request->packet->dst_port == 0) {
1347                 RDEBUG("Finished internally proxied request.");
1348                 FINAL_STATE(REQUEST_DONE);
1349                 return;
1350         }
1351
1352 #ifdef WITH_DETAIL
1353         /*
1354          *      Always send the reply to the detail listener.
1355          */
1356         if (request->listener->type == RAD_LISTEN_DETAIL) {
1357                 request->simul_max = 1;
1358
1359                 /*
1360                  *      But only print the reply if there is one.
1361                  */
1362                 if (request->reply->code != 0) {
1363                         debug_packet(request, request->reply, false);
1364                 }
1365
1366                 request->listener->send(request->listener, request);
1367                 goto done;
1368         }
1369 #endif
1370
1371         /*
1372          *      Ignore all "do not respond" packets.
1373          *      Except for the detail ones, which need to ping
1374          *      the detail file reader so that it will retransmit.
1375          */
1376         if (!request->reply->code) {
1377                 RDEBUG("Not sending reply to client.");
1378                 goto done;
1379         }
1380
1381         /*
1382          *      If it's not in the request hash, we MIGHT not want to
1383          *      send a reply.
1384          *
1385          *      If duplicate packets are allowed, then then only
1386          *      reason to NOT be in the request hash is because we
1387          *      don't want to send a reply.
1388          *
1389          *      FIXME: this is crap.  The rest of the state handling
1390          *      should use a different field so that we don't have two
1391          *      meanings for it.
1392          *
1393          *      Otherwise duplicates are forbidden, and the request is
1394          *      SUPPOSED to avoid the request hash.
1395          *
1396          *      In that case, we need to send a reply.
1397          */
1398         if (!request->in_request_hash &&
1399             !request->listener->nodup) {
1400                 RDEBUG("Suppressing reply to client.");
1401                 goto done;
1402         }
1403
1404         /*
1405          *      See if we need to delay an Access-Reject packet.
1406          */
1407         if ((request->reply->code == PW_CODE_ACCESS_REJECT) &&
1408             (request->root->reject_delay.tv_sec > 0)) {
1409                 request->response_delay = request->root->reject_delay;
1410
1411                 vp = fr_pair_find_by_num(request->reply->vps, PW_FREERADIUS_RESPONSE_DELAY, 0, TAG_ANY);
1412                 if (vp) {
1413                         if (vp->vp_integer <= 10) {
1414                                 request->response_delay.tv_sec = vp->vp_integer;
1415                         } else {
1416                                 request->response_delay.tv_sec = 10;
1417                         }
1418                         request->response_delay.tv_usec = 0;
1419                 } else {
1420                         vp = fr_pair_find_by_num(request->reply->vps, PW_FREERADIUS_RESPONSE_DELAY_USEC, 0, TAG_ANY);
1421                         if (vp) {
1422                                 if (vp->vp_integer <= 10 * USEC) {
1423                                         request->response_delay.tv_sec = vp->vp_integer / USEC;
1424                                         request->response_delay.tv_usec = vp->vp_integer % USEC;
1425                                 } else {
1426                                         request->response_delay.tv_sec = 10;
1427                                         request->response_delay.tv_usec = 0;
1428                                 }
1429                         }
1430                 }
1431
1432 #ifdef WITH_PROXY
1433                 /*
1434                  *      If we timed out a proxy packet, don't delay
1435                  *      the reject any more.
1436                  */
1437                 if (request->proxy && !request->proxy_reply) {
1438                         request->response_delay.tv_sec = 0;
1439                         request->response_delay.tv_usec = 0;
1440                 }
1441 #endif
1442         }
1443
1444         /*
1445          *      Send the reply.
1446          */
1447         if ((request->response_delay.tv_sec == 0) &&
1448             (request->response_delay.tv_usec == 0)) {
1449
1450                 /*
1451                  *      Don't print a reply if there's none to send.
1452                  */
1453                 if (request->reply->code != 0) {
1454                         if (rad_debug_lvl && request->state &&
1455                             (request->reply->code == PW_CODE_ACCESS_ACCEPT)) {
1456                                 if (!fr_pair_find_by_num(request->packet->vps, PW_STATE, 0, TAG_ANY)) {
1457                                         RWDEBUG2("Unused attributes found in &session-state:");
1458                                 }
1459                         }
1460
1461                         debug_packet(request, request->reply, false);
1462                         request->listener->send(request->listener, request);
1463                 }
1464
1465         done:
1466                 RDEBUG2("Finished request");
1467                 request_cleanup_delay_init(request);
1468
1469         } else {
1470                 /*
1471                  *      Encode and sign it here, so that the master
1472                  *      thread can just send the encoded data, which
1473                  *      means it does less work.
1474                  */
1475                 RDEBUG2("Delaying response for %d.%06d seconds",
1476                         (int) request->response_delay.tv_sec, (int) request->response_delay.tv_usec);
1477                 request->listener->encode(request->listener, request);
1478                 request->process = request_response_delay;
1479
1480                 FINAL_STATE(REQUEST_RESPONSE_DELAY);
1481         }
1482 }
1483
1484 /** Process a request from a client.
1485  *
1486  *  The outcome might be that the request is proxied.
1487  *
1488  *  \dot
1489  *      digraph running {
1490  *              running -> running [ label = "TIMER < max_request_time" ];
1491  *              running -> done [ label = "TIMER >= max_request_time" ];
1492  *              running -> proxy [ label = "proxied" ];
1493  *              running -> dup [ label = "DUP", arrowhead = "none" ];
1494  *      }
1495  *  \enddot
1496  */
1497 static void request_running(REQUEST *request, int action)
1498 {
1499         VERIFY_REQUEST(request);
1500
1501         TRACE_STATE_MACHINE;
1502         CHECK_FOR_STOP;
1503
1504         switch (action) {
1505         case FR_ACTION_TIMER:
1506                 COA_SEPARATE;
1507                 (void) request_max_time(request);
1508                 break;
1509
1510         case FR_ACTION_DUP:
1511                 request_dup(request);
1512                 break;
1513
1514         case FR_ACTION_RUN:
1515                 if (!request_pre_handler(request, action)) {
1516 #ifdef DEBUG_STATE_MACHINE
1517                         if (rad_debug_lvl) printf("(%u) ********\tSTATE %s failed in pre-handler C-%s -> C-%s\t********\n",
1518                                                request->number, __FUNCTION__,
1519                                                child_state_names[request->child_state],
1520                                                child_state_names[REQUEST_DONE]);
1521 #endif
1522                         FINAL_STATE(REQUEST_DONE);
1523                         break;
1524                 }
1525
1526                 rad_assert(request->handle != NULL);
1527                 request->handle(request);
1528
1529 #ifdef WITH_PROXY
1530                 /*
1531                  *      We may need to send a proxied request.
1532                  */
1533                 if ((action == FR_ACTION_RUN) &&
1534                     request_will_proxy(request)) {
1535 #ifdef DEBUG_STATE_MACHINE
1536                         if (rad_debug_lvl) printf("(%u) ********\tWill Proxy\t********\n", request->number);
1537 #endif
1538                         /*
1539                          *      If this fails, it
1540                          *      takes care of setting
1541                          *      up the post proxy fail
1542                          *      handler.
1543                          */
1544                         if (request_proxy(request, 0) < 0) goto req_finished;
1545                 } else
1546 #endif
1547                 {
1548 #ifdef DEBUG_STATE_MACHINE
1549                         if (rad_debug_lvl) printf("(%u) ********\tFinished\t********\n", request->number);
1550 #endif
1551
1552 #ifdef WITH_PROXY
1553                 req_finished:
1554 #endif
1555                         request_finish(request, action);
1556                 }
1557                 break;
1558
1559         default:
1560                 RDEBUG3("%s: Ignoring action %s", __FUNCTION__, action_codes[action]);
1561                 break;
1562         }
1563 }
1564
1565 int request_receive(TALLOC_CTX *ctx, rad_listen_t *listener, RADIUS_PACKET *packet,
1566                     RADCLIENT *client, RAD_REQUEST_FUNP fun)
1567 {
1568         uint32_t count;
1569         RADIUS_PACKET **packet_p;
1570         REQUEST *request = NULL;
1571         struct timeval now;
1572         listen_socket_t *sock = NULL;
1573
1574         VERIFY_PACKET(packet);
1575
1576         /*
1577          *      Set the last packet received.
1578          */
1579         gettimeofday(&now, NULL);
1580
1581         packet->timestamp = now;
1582
1583 #ifdef WITH_ACCOUNTING
1584         if (listener->type != RAD_LISTEN_DETAIL)
1585 #endif
1586         {
1587                 sock = listener->data;
1588                 sock->last_packet = now.tv_sec;
1589
1590 #ifdef WITH_TCP
1591                 packet->proto = sock->proto;
1592 #endif
1593         }
1594
1595         /*
1596          *      Skip everything if required.
1597          */
1598         if (listener->nodup) goto skip_dup;
1599
1600         packet_p = rbtree_finddata(pl, &packet);
1601         if (packet_p) {
1602                 rad_child_state_t child_state;
1603
1604                 request = fr_packet2myptr(REQUEST, packet, packet_p);
1605                 rad_assert(request->in_request_hash);
1606                 child_state = request->child_state;
1607
1608                 /*
1609                  *      Same src/dst ip/port, length, and
1610                  *      authentication vector: must be a duplicate.
1611                  */
1612                 if ((request->packet->data_len == packet->data_len) &&
1613                     (memcmp(request->packet->vector, packet->vector,
1614                             sizeof(packet->vector)) == 0)) {
1615
1616 #ifdef WITH_STATS
1617                         switch (packet->code) {
1618                         case PW_CODE_ACCESS_REQUEST:
1619                                 FR_STATS_INC(auth, total_dup_requests);
1620                                 break;
1621
1622 #ifdef WITH_ACCOUNTING
1623                         case PW_CODE_ACCOUNTING_REQUEST:
1624                                 FR_STATS_INC(acct, total_dup_requests);
1625                                 break;
1626 #endif
1627 #ifdef WITH_COA
1628                         case PW_CODE_COA_REQUEST:
1629                                 FR_STATS_INC(coa, total_dup_requests);
1630                                 break;
1631
1632                         case PW_CODE_DISCONNECT_REQUEST:
1633                                 FR_STATS_INC(dsc, total_dup_requests);
1634                                 break;
1635 #endif
1636
1637                         default:
1638                                 break;
1639                         }
1640 #endif  /* WITH_STATS */
1641
1642                         /*
1643                          *      Tell the state machine that there's a
1644                          *      duplicate request.
1645                          */
1646                         request->process(request, FR_ACTION_DUP);
1647                         return 0; /* duplicate of live request */
1648                 }
1649
1650                 /*
1651                  *      Mark the request as done ASAP, and before we
1652                  *      log anything.  The child may stop processing
1653                  *      the request just as we're logging the
1654                  *      complaint.
1655                  */
1656                 request_done(request, FR_ACTION_DONE);
1657                 request = NULL;
1658
1659                 /*
1660                  *      It's a new request, not a duplicate.  If the
1661                  *      old one is done, then we can clean it up.
1662                  */
1663                 if (child_state <= REQUEST_RUNNING) {
1664                         /*
1665                          *      The request is still QUEUED or RUNNING.  That's a problem.
1666                          */
1667                         ERROR("Received conflicting packet from "
1668                               "client %s port %d - ID: %u due to "
1669                               "unfinished request.  Giving up on old request.",
1670                               client->shortname,
1671                               packet->src_port, packet->id);
1672                 }
1673
1674                 /*
1675                  *      Mark the old request as done.  If there's no
1676                  *      child, the request will be cleaned up
1677                  *      immediately.  If there is a child, we'll set a
1678                  *      timer to go clean up the request.
1679                  */
1680         } /* else the new packet is unique */
1681
1682         /*
1683          *      Quench maximum number of outstanding requests.
1684          */
1685         if (main_config.max_requests &&
1686             ((count = rbtree_num_elements(pl)) > main_config.max_requests)) {
1687                 RATE_LIMIT(ERROR("Dropping request (%d is too many): from client %s port %d - ID: %d", count,
1688                                  client->shortname,
1689                                  packet->src_port, packet->id);
1690                            WARN("Please check the configuration file.\n"
1691                                 "\tThe value for 'max_requests' is probably set too low.\n"));
1692
1693                 exec_trigger(NULL, NULL, "server.max_requests", true);
1694                 return 0;
1695         }
1696
1697 skip_dup:
1698         /*
1699          *      Rate-limit the incoming packets
1700          */
1701         if (sock && sock->max_rate) {
1702                 uint32_t pps;
1703
1704                 pps = rad_pps(&sock->rate_pps_old, &sock->rate_pps_now, &sock->rate_time, &now);
1705                 if (pps > sock->max_rate) {
1706                         DEBUG("Dropping request due to rate limiting");
1707                         return 0;
1708                 }
1709                 sock->rate_pps_now++;
1710         }
1711
1712         /*
1713          *      Allocate a pool for the request.
1714          */
1715         if (!ctx) {
1716                 ctx = talloc_pool(NULL, main_config.talloc_pool_size);
1717                 if (!ctx) return 0;
1718                 talloc_set_name_const(ctx, "request_receive_pool");
1719
1720                 /*
1721                  *      The packet is still allocated from a different
1722                  *      context, but oh well.
1723                  */
1724                 (void) talloc_steal(ctx, packet);
1725         }
1726
1727         request = request_setup(ctx, listener, packet, client, fun);
1728         if (!request) {
1729                 talloc_free(ctx);
1730                 return 1;
1731         }
1732
1733         /*
1734          *      Mark it as a "real" request with a context.
1735          */
1736         request->options |= RAD_REQUEST_OPTION_CTX;
1737
1738         /*
1739          *      Remember the request in the list.
1740          */
1741         if (!listener->nodup) {
1742                 if (!rbtree_insert(pl, &request->packet)) {
1743                         RERROR("Failed to insert request in the list of live requests: discarding it");
1744                         request_done(request, FR_ACTION_DONE);
1745                         return 1;
1746                 }
1747
1748                 request->in_request_hash = true;
1749         }
1750
1751         /*
1752          *      Process it.  Send a response, and free it.
1753          */
1754         if (listener->synchronous) {
1755 #ifdef WITH_DETAIL
1756                 rad_assert(listener->type != RAD_LISTEN_DETAIL);
1757 #endif
1758
1759                 request->listener->decode(request->listener, request);
1760                 request->username = fr_pair_find_by_num(request->packet->vps, PW_USER_NAME, 0, TAG_ANY);
1761                 request->password = fr_pair_find_by_num(request->packet->vps, PW_USER_PASSWORD, 0, TAG_ANY);
1762
1763                 fun(request);
1764
1765                 if (request->reply->code != 0) {
1766                         request->listener->send(request->listener, request);
1767                 } else {
1768                         RDEBUG("Not sending reply");
1769                 }
1770
1771                 /*
1772                  *      Don't do delayed reject.  Oh well.
1773                  */
1774                 request_free(request);
1775                 return 1;
1776         }
1777
1778         /*
1779          *      Otherwise, insert it into the state machine.
1780          *      The child threads will take care of processing it.
1781          */
1782         request_queue_or_run(request, request_running);
1783
1784         return 1;
1785 }
1786
1787
1788 static REQUEST *request_setup(TALLOC_CTX *ctx, rad_listen_t *listener, RADIUS_PACKET *packet,
1789                               RADCLIENT *client, RAD_REQUEST_FUNP fun)
1790 {
1791         REQUEST *request;
1792
1793         /*
1794          *      Create and initialize the new request.
1795          */
1796         request = request_alloc(ctx);
1797         if (!request) {
1798                 ERROR("No memory");
1799                 return NULL;
1800         }
1801         request->reply = rad_alloc(request, false);
1802         if (!request->reply) {
1803                 ERROR("No memory");
1804                 talloc_free(request);
1805                 return NULL;
1806         }
1807
1808         request->listener = listener;
1809         request->client = client;
1810         request->packet = talloc_steal(request, packet);
1811         request->number = request_num_counter++;
1812         request->priority = listener->type;
1813         request->master_state = REQUEST_ACTIVE;
1814         request->child_state = REQUEST_RUNNING;
1815 #ifdef DEBUG_STATE_MACHINE
1816         if (rad_debug_lvl) printf("(%u) ********\tSTATE %s C-%s -> C-%s\t********\n",
1817                                request->number, __FUNCTION__,
1818                                child_state_names[request->child_state],
1819                                child_state_names[REQUEST_RUNNING]);
1820 #endif
1821         request->handle = fun;
1822         NO_CHILD_THREAD;
1823
1824 #ifdef WITH_STATS
1825         request->listener->stats.last_packet = request->packet->timestamp.tv_sec;
1826         if (packet->code == PW_CODE_ACCESS_REQUEST) {
1827                 request->client->auth.last_packet = request->packet->timestamp.tv_sec;
1828                 radius_auth_stats.last_packet = request->packet->timestamp.tv_sec;
1829 #ifdef WITH_ACCOUNTING
1830         } else if (packet->code == PW_CODE_ACCOUNTING_REQUEST) {
1831                 request->client->acct.last_packet = request->packet->timestamp.tv_sec;
1832                 radius_acct_stats.last_packet = request->packet->timestamp.tv_sec;
1833 #endif
1834         }
1835 #endif  /* WITH_STATS */
1836
1837         /*
1838          *      Status-Server packets go to the head of the queue.
1839          */
1840         if (request->packet->code == PW_CODE_STATUS_SERVER) request->priority = 0;
1841
1842         /*
1843          *      Set virtual server identity
1844          */
1845         if (client->server) {
1846                 request->server = client->server;
1847         } else if (listener->server) {
1848                 request->server = listener->server;
1849         } else {
1850                 request->server = NULL;
1851         }
1852
1853         request->root = &main_config;
1854 #ifdef WITH_TCP
1855         request->listener->count++;
1856 #endif
1857
1858         /*
1859          *      The request passes many of our sanity checks.
1860          *      From here on in, if anything goes wrong, we
1861          *      send a reject message, instead of dropping the
1862          *      packet.
1863          */
1864
1865         /*
1866          *      Build the reply template from the request.
1867          */
1868
1869         request->reply->sockfd = request->packet->sockfd;
1870         request->reply->dst_ipaddr = request->packet->src_ipaddr;
1871         request->reply->src_ipaddr = request->packet->dst_ipaddr;
1872         request->reply->dst_port = request->packet->src_port;
1873         request->reply->src_port = request->packet->dst_port;
1874         request->reply->id = request->packet->id;
1875         request->reply->code = 0; /* UNKNOWN code */
1876         memcpy(request->reply->vector, request->packet->vector,
1877                sizeof(request->reply->vector));
1878         request->reply->vps = NULL;
1879         request->reply->data = NULL;
1880         request->reply->data_len = 0;
1881
1882         return request;
1883 }
1884
1885 #ifdef WITH_TCP
1886 /***********************************************************************
1887  *
1888  *      TCP Handlers.
1889  *
1890  ***********************************************************************/
1891
1892 /*
1893  *      Timer function for all TCP sockets.
1894  */
1895 static void tcp_socket_timer(void *ctx)
1896 {
1897         rad_listen_t *listener = talloc_get_type_abort(ctx, rad_listen_t);
1898         listen_socket_t *sock = listener->data;
1899         struct timeval end, now;
1900         char buffer[256];
1901         fr_socket_limit_t *limit;
1902
1903         ASSERT_MASTER;
1904
1905         if (listener->status != RAD_LISTEN_STATUS_KNOWN) return;
1906
1907         fr_event_now(el, &now);
1908
1909         switch (listener->type) {
1910 #ifdef WITH_PROXY
1911         case RAD_LISTEN_PROXY:
1912                 limit = &sock->home->limit;
1913                 break;
1914 #endif
1915
1916         case RAD_LISTEN_AUTH:
1917 #ifdef WITH_ACCOUNTING
1918         case RAD_LISTEN_ACCT:
1919 #endif
1920                 limit = &sock->limit;
1921                 break;
1922
1923         default:
1924                 return;
1925         }
1926
1927         /*
1928          *      If we enforce a lifetime, do it now.
1929          */
1930         if (limit->lifetime > 0) {
1931                 end.tv_sec = sock->opened + limit->lifetime;
1932                 end.tv_usec = 0;
1933
1934                 if (timercmp(&end, &now, <=)) {
1935                         listener->print(listener, buffer, sizeof(buffer));
1936                         DEBUG("Reached maximum lifetime on socket %s", buffer);
1937
1938                 do_close:
1939
1940 #ifdef WITH_PROXY
1941                         /*
1942                          *      Proxy sockets get frozen, so that we don't use
1943                          *      them for new requests.  But we do keep them
1944                          *      open to listen for replies to requests we had
1945                          *      previously sent.
1946                          */
1947                         if (listener->type == RAD_LISTEN_PROXY) {
1948                                 PTHREAD_MUTEX_LOCK(&proxy_mutex);
1949                                 if (!fr_packet_list_socket_freeze(proxy_list,
1950                                                                   listener->fd)) {
1951                                         ERROR("Fatal error freezing socket: %s", fr_strerror());
1952                                         fr_exit(1);
1953                                 }
1954                                 PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
1955                         }
1956 #endif
1957
1958                         /*
1959                          *      Mark the socket as "don't use if at all possible".
1960                          */
1961                         listener->status = RAD_LISTEN_STATUS_FROZEN;
1962                         event_new_fd(listener);
1963                         return;
1964                 }
1965         } else {
1966                 end = now;
1967                 end.tv_sec += 3600;
1968         }
1969
1970         /*
1971          *      Enforce an idle timeout.
1972          */
1973         if (limit->idle_timeout > 0) {
1974                 struct timeval idle;
1975
1976                 rad_assert(sock->last_packet != 0);
1977                 idle.tv_sec = sock->last_packet + limit->idle_timeout;
1978                 idle.tv_usec = 0;
1979
1980                 if (timercmp(&idle, &now, <=)) {
1981                         listener->print(listener, buffer, sizeof(buffer));
1982                         DEBUG("Reached idle timeout on socket %s", buffer);
1983                         goto do_close;
1984                 }
1985
1986                 /*
1987                  *      Enforce the minimum of idle timeout or lifetime.
1988                  */
1989                 if (timercmp(&idle, &end, <)) {
1990                         end = idle;
1991                 }
1992         }
1993
1994         /*
1995          *      Wake up at t + 0.5s.  The code above checks if the timers
1996          *      are <= t.  This addition gives us a bit of leeway.
1997          */
1998         end.tv_usec = USEC / 2;
1999
2000         ASSERT_MASTER;
2001         if (!fr_event_insert(el, tcp_socket_timer, listener, &end, &sock->ev)) {
2002                 rad_panic("Failed to insert event");
2003         }
2004 }
2005
2006
2007 #ifdef WITH_PROXY
2008 /*
2009  *      Add +/- 2s of jitter, as suggested in RFC 3539
2010  *      and in RFC 5080.
2011  */
2012 static void add_jitter(struct timeval *when)
2013 {
2014         uint32_t jitter;
2015
2016         when->tv_sec -= 2;
2017
2018         jitter = fr_rand();
2019         jitter ^= (jitter >> 10);
2020         jitter &= ((1 << 22) - 1); /* 22 bits of 1 */
2021
2022         /*
2023          *      Add in ~ (4 * USEC) of jitter.
2024          */
2025         tv_add(when, jitter);
2026 }
2027
2028 /*
2029  *      Called by socket_del to remove requests with this socket
2030  */
2031 static int eol_proxy_listener(void *ctx, void *data)
2032 {
2033         rad_listen_t *this = talloc_get_type_abort(ctx, rad_listen_t);
2034         RADIUS_PACKET **proxy_p = data;
2035         REQUEST *request;
2036
2037         request = fr_packet2myptr(REQUEST, proxy, proxy_p);
2038         if (request->proxy_listener != this) return 0;
2039
2040         /*
2041          *      The normal "remove_from_proxy_hash" tries to grab the
2042          *      proxy mutex.  We already have it held, so grabbing it
2043          *      again will cause a deadlock.  Instead, call the "no
2044          *      lock" version of the function.
2045          */
2046         rad_assert(request->in_proxy_hash == true);
2047         remove_from_proxy_hash_nl(request, false);
2048
2049         /*
2050          *      Don't mark it as DONE.  The client can retransmit, and
2051          *      the packet SHOULD be re-proxied somewhere else.
2052          *
2053          *      Return "2" means that the rbtree code will remove it
2054          *      from the tree, and we don't need to do it ourselves.
2055          */
2056         return 2;
2057 }
2058 #endif  /* WITH_PROXY */
2059
2060 static int eol_listener(void *ctx, void *data)
2061 {
2062         rad_listen_t *this = talloc_get_type_abort(ctx, rad_listen_t);
2063         RADIUS_PACKET **packet_p = data;
2064         REQUEST *request;
2065
2066         request = fr_packet2myptr(REQUEST, packet, packet_p);
2067         if (request->listener != this) return 0;
2068
2069         request->master_state = REQUEST_STOP_PROCESSING;
2070         request->process = request_done;
2071
2072         return 0;
2073 }
2074 #endif  /* WITH_TCP */
2075
2076 #ifdef WITH_PROXY
2077 /***********************************************************************
2078  *
2079  *      Proxy handlers for the state machine.
2080  *
2081  ***********************************************************************/
2082
2083 /*
2084  *      Called with the proxy mutex held
2085  */
2086 static void remove_from_proxy_hash_nl(REQUEST *request, bool yank)
2087 {
2088         VERIFY_REQUEST(request);
2089
2090         if (!request->in_proxy_hash) return;
2091
2092         fr_packet_list_id_free(proxy_list, request->proxy, yank);
2093         request->in_proxy_hash = false;
2094
2095         /*
2096          *      On the FIRST reply, decrement the count of outstanding
2097          *      requests.  Note that this is NOT the count of sent
2098          *      packets, but whether or not the home server has
2099          *      responded at all.
2100          */
2101         if (request->home_server &&
2102             request->home_server->currently_outstanding) {
2103                 request->home_server->currently_outstanding--;
2104
2105                 /*
2106                  *      If we're NOT sending it packets, AND it's been
2107                  *      a while since we got a response, then we don't
2108                  *      know if it's alive or dead.
2109                  */
2110                 if ((request->home_server->currently_outstanding == 0) &&
2111                     (request->home_server->state == HOME_STATE_ALIVE)) {
2112                         struct timeval when, now;
2113
2114                         when.tv_sec = request->home_server->last_packet_recv ;
2115                         when.tv_usec = 0;
2116
2117                         timeradd(&when, request_response_window(request), &when);
2118                         gettimeofday(&now, NULL);
2119
2120                         /*
2121                          *      last_packet + response_window
2122                          *
2123                          *      We *administratively* mark the home
2124                          *      server as "unknown" state, because we
2125                          *      haven't seen a packet for a while.
2126                          */
2127                         if (timercmp(&now, &when, >)) {
2128                                 request->home_server->state = HOME_STATE_UNKNOWN;
2129                                 request->home_server->last_packet_sent = 0;
2130                                 request->home_server->last_packet_recv = 0;
2131                         }
2132                 }
2133         }
2134
2135 #ifdef WITH_TCP
2136         rad_assert(request->proxy_listener != NULL);
2137         request->proxy_listener->count--;
2138 #endif
2139         request->proxy_listener = NULL;
2140
2141         /*
2142          *      Got from YES in hash, to NO, not in hash while we hold
2143          *      the mutex.  This guarantees that when another thread
2144          *      grabs the mutex, the "not in hash" flag is correct.
2145          */
2146 }
2147
2148 static void remove_from_proxy_hash(REQUEST *request)
2149 {
2150         VERIFY_REQUEST(request);
2151
2152         /*
2153          *      Check this without grabbing the mutex because it's a
2154          *      lot faster that way.
2155          */
2156         if (!request->in_proxy_hash) return;
2157
2158         /*
2159          *      The "not in hash" flag is definitive.  However, if the
2160          *      flag says that it IS in the hash, there might still be
2161          *      a race condition where it isn't.
2162          */
2163         PTHREAD_MUTEX_LOCK(&proxy_mutex);
2164
2165         if (!request->in_proxy_hash) {
2166                 PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
2167                 return;
2168         }
2169
2170         remove_from_proxy_hash_nl(request, true);
2171
2172         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
2173 }
2174
2175 static int insert_into_proxy_hash(REQUEST *request)
2176 {
2177         char buf[128];
2178         int tries;
2179         bool success = false;
2180         void *proxy_listener;
2181
2182         VERIFY_REQUEST(request);
2183
2184         rad_assert(request->proxy != NULL);
2185         rad_assert(request->home_server != NULL);
2186         rad_assert(proxy_list != NULL);
2187
2188
2189         PTHREAD_MUTEX_LOCK(&proxy_mutex);
2190         proxy_listener = NULL;
2191         request->num_proxied_requests = 1;
2192         request->num_proxied_responses = 0;
2193
2194         for (tries = 0; tries < 2; tries++) {
2195                 rad_listen_t *this;
2196                 listen_socket_t *sock;
2197
2198                 RDEBUG3("proxy: Trying to allocate ID (%d/2)", tries);
2199                 success = fr_packet_list_id_alloc(proxy_list,
2200                                                 request->home_server->proto,
2201                                                 &request->proxy, &proxy_listener);
2202                 if (success) break;
2203
2204                 if (tries > 0) continue; /* try opening new socket only once */
2205
2206 #ifdef HAVE_PTHREAD_H
2207                 if (proxy_no_new_sockets) break;
2208 #endif
2209
2210                 RDEBUG3("proxy: Trying to open a new listener to the home server");
2211                 this = proxy_new_listener(proxy_ctx, request->home_server, 0);
2212                 if (!this) {
2213                         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
2214                         goto fail;
2215                 }
2216
2217                 request->proxy->src_port = 0; /* Use any new socket */
2218                 proxy_listener = this;
2219
2220                 sock = this->data;
2221                 if (!fr_packet_list_socket_add(proxy_list, this->fd,
2222                                                sock->proto,
2223                                                &sock->other_ipaddr, sock->other_port,
2224                                                this)) {
2225
2226 #ifdef HAVE_PTHREAD_H
2227                         proxy_no_new_sockets = true;
2228 #endif
2229                         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
2230
2231                         /*
2232                          *      This is bad.  However, the
2233                          *      packet list now supports 256
2234                          *      open sockets, which should
2235                          *      minimize this problem.
2236                          */
2237                         ERROR("Failed adding proxy socket: %s",
2238                               fr_strerror());
2239                         goto fail;
2240                 }
2241
2242                 /*
2243                  *      Add it to the event loop.  Ensure that we have
2244                  *      only one mutex locked at a time.
2245                  */
2246                 PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
2247                 radius_update_listener(this);
2248                 PTHREAD_MUTEX_LOCK(&proxy_mutex);
2249         }
2250
2251         if (!proxy_listener || !success) {
2252                 PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
2253                 REDEBUG2("proxy: Failed allocating Id for proxied request");
2254         fail:
2255                 request->proxy_listener = NULL;
2256                 request->in_proxy_hash = false;
2257                 return 0;
2258         }
2259
2260         rad_assert(request->proxy->id >= 0);
2261
2262         request->proxy_listener = proxy_listener;
2263         request->in_proxy_hash = true;
2264         RDEBUG3("proxy: request is now in proxy hash");
2265
2266         /*
2267          *      Keep track of maximum outstanding requests to a
2268          *      particular home server.  'max_outstanding' is
2269          *      enforced in home_server_ldb(), in realms.c.
2270          */
2271         request->home_server->currently_outstanding++;
2272
2273 #ifdef WITH_TCP
2274         request->proxy_listener->count++;
2275 #endif
2276
2277         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
2278
2279         RDEBUG3("proxy: allocating destination %s port %d - Id %d",
2280                inet_ntop(request->proxy->dst_ipaddr.af,
2281                          &request->proxy->dst_ipaddr.ipaddr, buf, sizeof(buf)),
2282                request->proxy->dst_port,
2283                request->proxy->id);
2284
2285         return 1;
2286 }
2287
2288 static int process_proxy_reply(REQUEST *request, RADIUS_PACKET *reply)
2289 {
2290         int rcode;
2291         int post_proxy_type = 0;
2292         VALUE_PAIR *vp;
2293
2294         VERIFY_REQUEST(request);
2295
2296         /*
2297          *      There may be a proxy reply, but it may be too late.
2298          */
2299         if (!request->home_server->server && !request->proxy_listener) return 0;
2300
2301         /*
2302          *      Delete any reply we had accumulated until now.
2303          */
2304         RDEBUG2("Clearing existing &reply: attributes");
2305         fr_pair_list_free(&request->reply->vps);
2306
2307         /*
2308          *      Run the packet through the post-proxy stage,
2309          *      BEFORE playing games with the attributes.
2310          */
2311         vp = fr_pair_find_by_num(request->config, PW_POST_PROXY_TYPE, 0, TAG_ANY);
2312         if (vp) {
2313                 post_proxy_type = vp->vp_integer;
2314         /*
2315          *      If we have a proxy_reply, and it was a reject, or a NAK
2316          *      setup Post-Proxy <type>.
2317          *
2318          *      If the <type> doesn't have a section, then the Post-Proxy
2319          *      section is ignored.
2320          */
2321         } else if (reply) {
2322                 DICT_VALUE *dval = NULL;
2323
2324                 switch (reply->code) {
2325                 case PW_CODE_ACCESS_REJECT:
2326                         dval = dict_valbyname(PW_POST_PROXY_TYPE, 0, "Reject");
2327                         if (dval) post_proxy_type = dval->value;
2328                         break;
2329
2330                 case PW_CODE_DISCONNECT_NAK:
2331                         dval = dict_valbyname(PW_POST_PROXY_TYPE, 0, fr_packet_codes[reply->code]);
2332                         if (dval) post_proxy_type = dval->value;
2333                         break;
2334
2335                 case PW_CODE_COA_NAK:
2336                         dval = dict_valbyname(PW_POST_PROXY_TYPE, 0, fr_packet_codes[reply->code]);
2337                         if (dval) post_proxy_type = dval->value;
2338                         break;
2339
2340                 default:
2341                         break;
2342                 }
2343
2344                 /*
2345                  *      Create config:Post-Proxy-Type
2346                  */
2347                 if (dval) {
2348                         vp = radius_pair_create(request, &request->config, PW_POST_PROXY_TYPE, 0);
2349                         vp->vp_integer = dval->value;
2350                 }
2351         }
2352
2353         if (post_proxy_type > 0) RDEBUG2("Found Post-Proxy-Type %s",
2354                                          dict_valnamebyattr(PW_POST_PROXY_TYPE, 0, post_proxy_type));
2355
2356         if (reply) {
2357                 VERIFY_PACKET(reply);
2358
2359                 /*
2360                  *      Decode the packet if required.
2361                  */
2362                 if (request->proxy_listener) {
2363                         rcode = request->proxy_listener->decode(request->proxy_listener, request);
2364                         debug_packet(request, reply, true);
2365
2366                         /*
2367                          *      Pro-actively remove it from the proxy hash.
2368                          *      This is later than in 2.1.x, but it means that
2369                          *      the replies are authenticated before being
2370                          *      removed from the hash.
2371                          */
2372                         if ((rcode == 0) &&
2373                             (request->num_proxied_requests <= request->num_proxied_responses)) {
2374                                 remove_from_proxy_hash(request);
2375                         }
2376                 } else {
2377                         rad_assert(!request->in_proxy_hash);
2378                 }
2379         } else if (request->in_proxy_hash) {
2380                 remove_from_proxy_hash(request);
2381         }
2382
2383         if (request->home_pool && request->home_pool->virtual_server) {
2384                 char const *old_server = request->server;
2385
2386                 request->server = request->home_pool->virtual_server;
2387                 RDEBUG2("server %s {", request->server);
2388                 RINDENT();
2389                 rcode = process_post_proxy(post_proxy_type, request);
2390                 REXDENT();
2391                 RDEBUG2("}");
2392                 request->server = old_server;
2393         } else {
2394                 rcode = process_post_proxy(post_proxy_type, request);
2395         }
2396
2397 #ifdef WITH_COA
2398         if (request->packet->code == request->proxy->code)
2399           /*
2400            *    Don't run the next bit if we originated a CoA
2401            *    packet, after receiving an Access-Request or
2402            *    Accounting-Request.
2403            */
2404 #endif
2405
2406         /*
2407          *      There may NOT be a proxy reply, as we may be
2408          *      running Post-Proxy-Type = Fail.
2409          */
2410         if (reply) {
2411                 fr_pair_add(&request->reply->vps, fr_pair_list_copy(request->reply, reply->vps));
2412
2413                 /*
2414                  *      Delete the Proxy-State Attributes from
2415                  *      the reply.  These include Proxy-State
2416                  *      attributes from us and remote server.
2417                  */
2418                 fr_pair_delete_by_num(&request->reply->vps, PW_PROXY_STATE, 0, TAG_ANY);
2419         }
2420
2421         switch (rcode) {
2422         default:  /* Don't do anything */
2423                 break;
2424         case RLM_MODULE_FAIL:
2425                 return 0;
2426
2427         case RLM_MODULE_HANDLED:
2428                 return 0;
2429         }
2430
2431         return 1;
2432 }
2433
2434 static void mark_home_server_alive(REQUEST *request, home_server_t *home)
2435 {
2436         char buffer[128];
2437
2438         home->state = HOME_STATE_ALIVE;
2439         home->response_timeouts = 0;
2440         exec_trigger(request, home->cs, "home_server.alive", false);
2441         home->currently_outstanding = 0;
2442         home->num_sent_pings = 0;
2443         home->num_received_pings = 0;
2444         gettimeofday(&home->revive_time, NULL);
2445
2446         fr_event_delete(el, &home->ev);
2447
2448         RPROXY("Marking home server %s port %d alive",
2449                inet_ntop(request->proxy->dst_ipaddr.af,
2450                          &request->proxy->dst_ipaddr.ipaddr,
2451                          buffer, sizeof(buffer)),
2452                request->proxy->dst_port);
2453 }
2454
2455
2456 int request_proxy_reply(RADIUS_PACKET *packet)
2457 {
2458         RADIUS_PACKET **proxy_p;
2459         REQUEST *request;
2460         struct timeval now;
2461         char buffer[128];
2462
2463         VERIFY_PACKET(packet);
2464
2465         PTHREAD_MUTEX_LOCK(&proxy_mutex);
2466         proxy_p = fr_packet_list_find_byreply(proxy_list, packet);
2467
2468         if (!proxy_p) {
2469                 PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
2470                 PROXY("No outstanding request was found for %s packet from host %s port %d - ID %u",
2471                        fr_packet_codes[packet->code],
2472                        inet_ntop(packet->src_ipaddr.af,
2473                                  &packet->src_ipaddr.ipaddr,
2474                                  buffer, sizeof(buffer)),
2475                        packet->src_port, packet->id);
2476                 return 0;
2477         }
2478
2479         request = fr_packet2myptr(REQUEST, proxy, proxy_p);
2480         request->num_proxied_responses++; /* needs to be protected by lock */
2481
2482         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
2483
2484         /*
2485          *      No reply, BUT the current packet fails verification:
2486          *      ignore it.  This does the MD5 calculations in the
2487          *      server core, but I guess we can fix that later.
2488          */
2489         if (!request->proxy_reply &&
2490             (rad_verify(packet, request->proxy,
2491                         request->home_server->secret) != 0)) {
2492                 DEBUG("Ignoring spoofed proxy reply.  Signature is invalid");
2493                 return 0;
2494         }
2495
2496         /*
2497          *      The home server sent us a packet which doesn't match
2498          *      something we have: ignore it.  This is done only to
2499          *      catch the case of broken systems.
2500          */
2501         if (request->proxy_reply &&
2502             (memcmp(request->proxy_reply->vector,
2503                     packet->vector,
2504                     sizeof(request->proxy_reply->vector)) != 0)) {
2505                 RDEBUG2("Ignoring conflicting proxy reply");
2506                 return 0;
2507         }
2508
2509         gettimeofday(&now, NULL);
2510
2511         /*
2512          *      Status-Server packets don't count as real packets.
2513          */
2514         if (request->proxy->code != PW_CODE_STATUS_SERVER) {
2515                 listen_socket_t *sock = request->proxy_listener->data;
2516
2517                 request->home_server->last_packet_recv = now.tv_sec;
2518                 sock->last_packet = now.tv_sec;
2519         }
2520
2521         /*
2522          *      If we have previously seen a reply, ignore the
2523          *      duplicate.
2524          */
2525         if (request->proxy_reply) {
2526                 RDEBUG2("Discarding duplicate reply from host %s port %d  - ID: %d",
2527                         inet_ntop(packet->src_ipaddr.af,
2528                                   &packet->src_ipaddr.ipaddr,
2529                                   buffer, sizeof(buffer)),
2530                         packet->src_port, packet->id);
2531                 return 0;
2532         }
2533
2534         /*
2535          *      Call the state machine to do something useful with the
2536          *      request.
2537          */
2538         request->proxy_reply = talloc_steal(request, packet);
2539         packet->timestamp = now;
2540         request->priority = RAD_LISTEN_PROXY;
2541
2542 #ifdef WITH_STATS
2543         /*
2544          *      Update the proxy listener stats here, because only one
2545          *      thread accesses that at a time.  The home_server and
2546          *      main proxy_*_stats structures are updated once the
2547          *      request is cleaned up.
2548          */
2549         request->proxy_listener->stats.total_responses++;
2550
2551         request->home_server->stats.last_packet = packet->timestamp.tv_sec;
2552         request->proxy_listener->stats.last_packet = packet->timestamp.tv_sec;
2553
2554         switch (request->proxy->code) {
2555         case PW_CODE_ACCESS_REQUEST:
2556                 proxy_auth_stats.last_packet = packet->timestamp.tv_sec;
2557
2558                 if (request->proxy_reply->code == PW_CODE_ACCESS_ACCEPT) {
2559                         request->proxy_listener->stats.total_access_accepts++;
2560
2561                 } else if (request->proxy_reply->code == PW_CODE_ACCESS_REJECT) {
2562                         request->proxy_listener->stats.total_access_rejects++;
2563
2564                 } else if (request->proxy_reply->code == PW_CODE_ACCESS_CHALLENGE) {
2565                         request->proxy_listener->stats.total_access_challenges++;
2566                 }
2567                 break;
2568
2569 #ifdef WITH_ACCOUNTING
2570         case PW_CODE_ACCOUNTING_REQUEST:
2571                 proxy_acct_stats.last_packet = packet->timestamp.tv_sec;
2572
2573                 request->proxy_listener->stats.total_responses++;
2574                 proxy_acct_stats.last_packet = packet->timestamp.tv_sec;
2575                 break;
2576
2577 #endif
2578
2579 #ifdef WITH_COA
2580         case PW_CODE_COA_REQUEST:
2581                 request->proxy_listener->stats.total_responses++;
2582                 proxy_coa_stats.last_packet = packet->timestamp.tv_sec;
2583                 break;
2584
2585         case PW_CODE_DISCONNECT_REQUEST:
2586                 request->proxy_listener->stats.total_responses++;
2587                 proxy_dsc_stats.last_packet = packet->timestamp.tv_sec;
2588                 break;
2589
2590 #endif
2591         default:
2592                 break;
2593         }
2594 #endif
2595
2596         /*
2597          *      If we hadn't been sending the home server packets for
2598          *      a while, just mark it alive.  Or, if it was zombie,
2599          *      it's now responded, and is therefore alive.
2600          */
2601         if ((request->home_server->state == HOME_STATE_UNKNOWN) ||
2602             (request->home_server->state == HOME_STATE_ZOMBIE)) {
2603                 mark_home_server_alive(request, request->home_server);
2604         }
2605
2606         /*
2607          *      Tell the request state machine that we have a proxy
2608          *      reply.  Depending on the function, this should either
2609          *      ignore it, or process it.
2610          */
2611         request->process(request, FR_ACTION_PROXY_REPLY);
2612
2613         return 1;
2614 }
2615
2616
2617 static int setup_post_proxy_fail(REQUEST *request)
2618 {
2619         DICT_VALUE const *dval = NULL;
2620         VALUE_PAIR *vp;
2621
2622         VERIFY_REQUEST(request);
2623
2624         if (request->proxy->code == PW_CODE_ACCESS_REQUEST) {
2625                 dval = dict_valbyname(PW_POST_PROXY_TYPE, 0,
2626                                       "Fail-Authentication");
2627 #ifdef WITH_ACCOUNTING
2628         } else if (request->proxy->code == PW_CODE_ACCOUNTING_REQUEST) {
2629                 dval = dict_valbyname(PW_POST_PROXY_TYPE, 0,
2630                                       "Fail-Accounting");
2631 #endif
2632
2633 #ifdef WITH_COA
2634         } else if (request->proxy->code == PW_CODE_COA_REQUEST) {
2635                 dval = dict_valbyname(PW_POST_PROXY_TYPE, 0, "Fail-CoA");
2636
2637         } else if (request->proxy->code == PW_CODE_DISCONNECT_REQUEST) {
2638                 dval = dict_valbyname(PW_POST_PROXY_TYPE, 0, "Fail-Disconnect");
2639 #endif
2640         } else {
2641                 WARN("Unknown packet type in Post-Proxy-Type Fail: ignoring");
2642                 return 0;
2643         }
2644
2645         if (!dval) dval = dict_valbyname(PW_POST_PROXY_TYPE, 0, "Fail");
2646
2647         if (!dval) {
2648                 fr_pair_delete_by_num(&request->config, PW_POST_PROXY_TYPE, 0, TAG_ANY);
2649                 return 0;
2650         }
2651
2652         vp = fr_pair_find_by_num(request->config, PW_POST_PROXY_TYPE, 0, TAG_ANY);
2653         if (!vp) vp = radius_pair_create(request, &request->config,
2654                                         PW_POST_PROXY_TYPE, 0);
2655         vp->vp_integer = dval->value;
2656
2657         return 1;
2658 }
2659
2660
2661 /** Process a request after the proxy has timed out.
2662  *
2663  *  Run the packet through Post-Proxy-Type Fail
2664  *
2665  *  \dot
2666  *      digraph proxy_no_reply {
2667  *              proxy_no_reply;
2668  *
2669  *              proxy_no_reply -> dup [ label = "DUP", arrowhead = "none" ];
2670  *              proxy_no_reply -> timer [ label = "TIMER < max_request_time" ];
2671  *              proxy_no_reply -> proxy_reply_too_late [ label = "PROXY_REPLY" arrowhead = "none"];
2672  *              proxy_no_reply -> process_proxy_reply [ label = "RUN" ];
2673  *              proxy_no_reply -> done [ label = "TIMER >= timeout" ];
2674  *      }
2675  *  \enddot
2676  */
2677 static void proxy_no_reply(REQUEST *request, int action)
2678 {
2679         VERIFY_REQUEST(request);
2680
2681         TRACE_STATE_MACHINE;
2682         CHECK_FOR_STOP;
2683
2684         switch (action) {
2685         case FR_ACTION_DUP:
2686                 request_dup(request);
2687                 break;
2688
2689         case FR_ACTION_TIMER:
2690                 (void) request_max_time(request);
2691                 break;
2692
2693         case FR_ACTION_PROXY_REPLY:
2694                 proxy_reply_too_late(request);
2695                 break;
2696
2697         case FR_ACTION_RUN:
2698                 if (process_proxy_reply(request, NULL)) {
2699                         request->handle(request);
2700                 }
2701                 request_finish(request, action);
2702                 break;
2703
2704         default:
2705                 RDEBUG3("%s: Ignoring action %s", __FUNCTION__, action_codes[action]);
2706                 break;
2707         }
2708 }
2709
2710 /** Process the request after receiving a proxy reply.
2711  *
2712  *  Throught the post-proxy section, and the through the handler
2713  *  function.
2714  *
2715  *  \dot
2716  *      digraph proxy_running {
2717  *              proxy_running;
2718  *
2719  *              proxy_running -> dup [ label = "DUP", arrowhead = "none" ];
2720  *              proxy_running -> timer [ label = "TIMER < max_request_time" ];
2721  *              proxy_running -> process_proxy_reply [ label = "RUN" ];
2722  *              proxy_running -> done [ label = "TIMER >= timeout" ];
2723  *      }
2724  *  \enddot
2725  */
2726 static void proxy_running(REQUEST *request, int action)
2727 {
2728         VERIFY_REQUEST(request);
2729
2730         TRACE_STATE_MACHINE;
2731         CHECK_FOR_STOP;
2732
2733         switch (action) {
2734         case FR_ACTION_DUP:
2735                 request_dup(request);
2736                 break;
2737
2738         case FR_ACTION_TIMER:
2739                 (void) request_max_time(request);
2740                 break;
2741
2742         case FR_ACTION_RUN:
2743                 if (process_proxy_reply(request, request->proxy_reply)) {
2744                         request->handle(request);
2745                 }
2746                 request_finish(request, action);
2747                 break;
2748
2749         default:                /* duplicate proxy replies are suppressed */
2750                 RDEBUG3("%s: Ignoring action %s", __FUNCTION__, action_codes[action]);
2751                 break;
2752         }
2753 }
2754
2755 /** Determine if a #REQUEST needs to be proxied, and perform pre-proxy operations
2756  *
2757  * Whether a request will be proxied is determined by the attributes present
2758  * in request->config. If any of the following attributes are found, the
2759  * request may be proxied.
2760  *
2761  * The key attributes are:
2762  *   - PW_PROXY_TO_REALM          - Specifies a realm the request should be proxied to.
2763  *   - PW_HOME_SERVER_POOL        - Specifies a specific home server pool to proxy to.
2764  *   - PW_PACKET_DST_IP_ADDRESS   - Specifies a specific IPv4 home server to proxy to.
2765  *   - PW_PACKET_DST_IPV6_ADDRESS - Specifies a specific IPv6 home server to proxy to.
2766  *
2767  * Certain packet types such as #PW_CODE_STATUS_SERVER will never be proxied.
2768  *
2769  * If request should be proxied, will:
2770  *   - Add request:Proxy-State
2771  *   - Strip the current username value of its realm (depending on config)
2772  *   - Create a CHAP-Challenge from the original request vector, if one doesn't already
2773  *     exist.
2774  *   - Call the pre-process section in the current server, or in the virtual server
2775  *     associated with the home server pool we're proxying to.
2776  *
2777  * @todo A lot of this logic is RADIUS specific, and should be moved out into a protocol
2778  *      specific function.
2779  *
2780  * @param request The #REQUEST to evaluate for proxying.
2781  * @return 0 if not proxying, 1 if request should be proxied, -1 on error.
2782  */
2783 static int request_will_proxy(REQUEST *request)
2784 {
2785         int rcode, pre_proxy_type = 0;
2786         char const *realmname = NULL;
2787         VALUE_PAIR *vp, *strippedname;
2788         home_server_t *home;
2789         REALM *realm = NULL;
2790         home_pool_t *pool = NULL;
2791
2792         VERIFY_REQUEST(request);
2793
2794         if (!request->root->proxy_requests) return 0;
2795         if (request->packet->dst_port == 0) return 0;
2796         if (request->packet->code == PW_CODE_STATUS_SERVER) return 0;
2797         if (request->in_proxy_hash) return 0;
2798
2799         /*
2800          *      FIXME: for 3.0, allow this only for rejects?
2801          */
2802         if (request->reply->code != 0) return 0;
2803
2804         vp = fr_pair_find_by_num(request->config, PW_PROXY_TO_REALM, 0, TAG_ANY);
2805         if (vp) {
2806                 realm = realm_find2(vp->vp_strvalue);
2807                 if (!realm) {
2808                         REDEBUG2("Cannot proxy to unknown realm %s",
2809                                 vp->vp_strvalue);
2810                         return 0;
2811                 }
2812
2813                 realmname = vp->vp_strvalue;
2814
2815                 /*
2816                  *      Figure out which pool to use.
2817                  */
2818                 if (request->packet->code == PW_CODE_ACCESS_REQUEST) {
2819                         pool = realm->auth_pool;
2820
2821 #ifdef WITH_ACCOUNTING
2822                 } else if (request->packet->code == PW_CODE_ACCOUNTING_REQUEST) {
2823                         pool = realm->acct_pool;
2824 #endif
2825
2826 #ifdef WITH_COA
2827                 } else if ((request->packet->code == PW_CODE_COA_REQUEST) ||
2828                            (request->packet->code == PW_CODE_DISCONNECT_REQUEST)) {
2829                         pool = realm->coa_pool;
2830 #endif
2831
2832                 } else {
2833                         return 0;
2834                 }
2835
2836         } else if ((vp = fr_pair_find_by_num(request->config, PW_HOME_SERVER_POOL, 0, TAG_ANY)) != NULL) {
2837                 int pool_type;
2838
2839                 switch (request->packet->code) {
2840                 case PW_CODE_ACCESS_REQUEST:
2841                         pool_type = HOME_TYPE_AUTH;
2842                         break;
2843
2844 #ifdef WITH_ACCOUNTING
2845                 case PW_CODE_ACCOUNTING_REQUEST:
2846                         pool_type = HOME_TYPE_ACCT;
2847                         break;
2848 #endif
2849
2850 #ifdef WITH_COA
2851                 case PW_CODE_COA_REQUEST:
2852                 case PW_CODE_DISCONNECT_REQUEST:
2853                         pool_type = HOME_TYPE_COA;
2854                         break;
2855 #endif
2856
2857                 default:
2858                         return 0;
2859                 }
2860
2861                 pool = home_pool_byname(vp->vp_strvalue, pool_type);
2862
2863                 /*
2864                  *      Send it directly to a home server (i.e. NAS)
2865                  */
2866         } else if (((vp = fr_pair_find_by_num(request->config, PW_PACKET_DST_IP_ADDRESS, 0, TAG_ANY)) != NULL) ||
2867                    ((vp = fr_pair_find_by_num(request->config, PW_PACKET_DST_IPV6_ADDRESS, 0, TAG_ANY)) != NULL)) {
2868                 uint16_t dst_port;
2869                 fr_ipaddr_t dst_ipaddr;
2870
2871                 memset(&dst_ipaddr, 0, sizeof(dst_ipaddr));
2872
2873                 if (vp->da->attr == PW_PACKET_DST_IP_ADDRESS) {
2874                         dst_ipaddr.af = AF_INET;
2875                         dst_ipaddr.ipaddr.ip4addr.s_addr = vp->vp_ipaddr;
2876                         dst_ipaddr.prefix = 32;
2877                 } else {
2878                         dst_ipaddr.af = AF_INET6;
2879                         memcpy(&dst_ipaddr.ipaddr.ip6addr, &vp->vp_ipv6addr, sizeof(vp->vp_ipv6addr));
2880                         dst_ipaddr.prefix = 128;
2881                 }
2882
2883                 vp = fr_pair_find_by_num(request->config, PW_PACKET_DST_PORT, 0, TAG_ANY);
2884                 if (!vp) {
2885                         if (request->packet->code == PW_CODE_ACCESS_REQUEST) {
2886                                 dst_port = PW_AUTH_UDP_PORT;
2887
2888 #ifdef WITH_ACCOUNTING
2889                         } else if (request->packet->code == PW_CODE_ACCOUNTING_REQUEST) {
2890                                 dst_port = PW_ACCT_UDP_PORT;
2891 #endif
2892
2893 #ifdef WITH_COA
2894                         } else if ((request->packet->code == PW_CODE_COA_REQUEST) ||
2895                                    (request->packet->code == PW_CODE_DISCONNECT_REQUEST)) {
2896                                 dst_port = PW_COA_UDP_PORT;
2897 #endif
2898                         } else { /* shouldn't happen for RADIUS... */
2899                                 return 0;
2900                         }
2901
2902                 } else {
2903                         dst_port = vp->vp_integer;
2904                 }
2905
2906                 /*
2907                  *      Nothing does CoA over TCP.
2908                  */
2909                 home = home_server_find(&dst_ipaddr, dst_port, IPPROTO_UDP);
2910                 if (!home) {
2911                         char buffer[256];
2912
2913                         WARN("No such home server %s port %u",
2914                              inet_ntop(dst_ipaddr.af, &dst_ipaddr.ipaddr, buffer, sizeof(buffer)),
2915                              (unsigned int) dst_port);
2916                         return 0;
2917                 }
2918
2919                 /*
2920                  *      The home server is alive (or may be alive).
2921                  *      Send the packet to the IP.
2922                  */
2923                 if (home->state != HOME_STATE_IS_DEAD) goto do_home;
2924
2925                 /*
2926                  *      The home server is dead.  If you wanted
2927                  *      fail-over, you should have proxied to a pool.
2928                  *      Sucks to be you.
2929                  */
2930
2931                 return 0;
2932
2933         } else {
2934                 return 0;
2935         }
2936
2937         if (!pool) {
2938                 RWDEBUG2("Cancelling proxy as no home pool exists");
2939                 return 0;
2940         }
2941
2942         if (request->listener->synchronous) {
2943                 WARN("Cannot proxy a request which is from a 'synchronous' socket");
2944                 return 0;
2945         }
2946
2947         request->home_pool = pool;
2948
2949         home = home_server_ldb(realmname, pool, request);
2950
2951         if (!home) {
2952                 REDEBUG2("Failed to find live home server: Cancelling proxy");
2953                 return 0;
2954         }
2955
2956 do_home:
2957         home_server_update_request(home, request);
2958
2959 #ifdef WITH_COA
2960         /*
2961          *      Once we've decided to proxy a request, we cannot send
2962          *      a CoA packet.  So we free up any CoA packet here.
2963          */
2964         if (request->coa) request_done(request->coa, FR_ACTION_DONE);
2965 #endif
2966
2967         /*
2968          *      Remember that we sent the request to a Realm.
2969          */
2970         if (realmname) pair_make_request("Realm", realmname, T_OP_EQ);
2971
2972         /*
2973          *      Strip the name, if told to.
2974          *
2975          *      Doing it here catches the case of proxied tunneled
2976          *      requests.
2977          */
2978         if (realm && (realm->strip_realm == true) &&
2979            (strippedname = fr_pair_find_by_num(request->proxy->vps, PW_STRIPPED_USER_NAME, 0, TAG_ANY)) != NULL) {
2980                 /*
2981                  *      If there's a Stripped-User-Name attribute in
2982                  *      the request, then use THAT as the User-Name
2983                  *      for the proxied request, instead of the
2984                  *      original name.
2985                  *
2986                  *      This is done by making a copy of the
2987                  *      Stripped-User-Name attribute, turning it into
2988                  *      a User-Name attribute, deleting the
2989                  *      Stripped-User-Name and User-Name attributes
2990                  *      from the vps list, and making the new
2991                  *      User-Name the head of the vps list.
2992                  */
2993                 vp = fr_pair_find_by_num(request->proxy->vps, PW_USER_NAME, 0, TAG_ANY);
2994                 if (!vp) {
2995                         vp_cursor_t cursor;
2996                         vp = radius_pair_create(NULL, NULL,
2997                                                PW_USER_NAME, 0);
2998                         rad_assert(vp != NULL); /* handled by above function */
2999                         /* Insert at the START of the list */
3000                         /* FIXME: Can't make assumptions about ordering */
3001                         fr_cursor_init(&cursor, &vp);
3002                         fr_cursor_merge(&cursor, request->proxy->vps);
3003                         request->proxy->vps = vp;
3004                 }
3005                 fr_pair_value_strcpy(vp, strippedname->vp_strvalue);
3006
3007                 /*
3008                  *      Do NOT delete Stripped-User-Name.
3009                  */
3010         }
3011
3012         /*
3013          *      If there is no PW_CHAP_CHALLENGE attribute but
3014          *      there is a PW_CHAP_PASSWORD we need to add it
3015          *      since we can't use the request authenticator
3016          *      anymore - we changed it.
3017          */
3018         if ((request->packet->code == PW_CODE_ACCESS_REQUEST) &&
3019             fr_pair_find_by_num(request->proxy->vps, PW_CHAP_PASSWORD, 0, TAG_ANY) &&
3020             fr_pair_find_by_num(request->proxy->vps, PW_CHAP_CHALLENGE, 0, TAG_ANY) == NULL) {
3021                 vp = radius_pair_create(request->proxy, &request->proxy->vps, PW_CHAP_CHALLENGE, 0);
3022                 fr_pair_value_memcpy(vp, request->packet->vector, sizeof(request->packet->vector));
3023         }
3024
3025         /*
3026          *      The RFC's say we have to do this, but FreeRADIUS
3027          *      doesn't need it.
3028          */
3029         vp = radius_pair_create(request->proxy, &request->proxy->vps, PW_PROXY_STATE, 0);
3030         fr_pair_value_sprintf(vp, "%u", request->packet->id);
3031
3032         /*
3033          *      Should be done BEFORE inserting into proxy hash, as
3034          *      pre-proxy may use this information, or change it.
3035          */
3036         request->proxy->code = request->packet->code;
3037
3038         /*
3039          *      Call the pre-proxy routines.
3040          */
3041         vp = fr_pair_find_by_num(request->config, PW_PRE_PROXY_TYPE, 0, TAG_ANY);
3042         if (vp) {
3043                 DICT_VALUE const *dval = dict_valbyattr(vp->da->attr, vp->da->vendor, vp->vp_integer);
3044                 /* Must be a validation issue */
3045                 rad_assert(dval);
3046                 RDEBUG2("Found Pre-Proxy-Type %s", dval->name);
3047                 pre_proxy_type = vp->vp_integer;
3048         }
3049
3050         /*
3051          *      home_pool may be NULL when originating CoA packets,
3052          *      because they go directly to an IP address.
3053          */
3054         if (request->home_pool && request->home_pool->virtual_server) {
3055                 char const *old_server = request->server;
3056
3057                 request->server = request->home_pool->virtual_server;
3058
3059                 RDEBUG2("server %s {", request->server);
3060                 RINDENT();
3061                 rcode = process_pre_proxy(pre_proxy_type, request);
3062                 REXDENT();
3063                 RDEBUG2("}");
3064
3065                 request->server = old_server;
3066         } else {
3067                 rcode = process_pre_proxy(pre_proxy_type, request);
3068         }
3069
3070         switch (rcode) {
3071         case RLM_MODULE_FAIL:
3072         case RLM_MODULE_INVALID:
3073         case RLM_MODULE_NOTFOUND:
3074         case RLM_MODULE_USERLOCK:
3075         default:
3076                 /* FIXME: debug print failed stuff */
3077                 return -1;
3078
3079         case RLM_MODULE_REJECT:
3080         case RLM_MODULE_HANDLED:
3081                 return 0;
3082
3083         /*
3084          *      Only proxy the packet if the pre-proxy code succeeded.
3085          */
3086         case RLM_MODULE_NOOP:
3087         case RLM_MODULE_OK:
3088         case RLM_MODULE_UPDATED:
3089                 return 1;
3090         }
3091 }
3092
3093 static int proxy_to_virtual_server(REQUEST *request)
3094 {
3095         REQUEST *fake;
3096
3097         if (request->packet->dst_port == 0) {
3098                 WARN("Cannot proxy an internal request");
3099                 return 0;
3100         }
3101
3102         DEBUG("Proxying to virtual server %s",
3103               request->home_server->server);
3104
3105         /*
3106          *      Packets to virtual servers don't get
3107          *      retransmissions sent to them.  And the virtual
3108          *      server is run ONLY if we have no child
3109          *      threads, or we're running in a child thread.
3110          */
3111         rad_assert(!spawn_flag || !we_are_master());
3112
3113         fake = request_alloc_fake(request);
3114
3115         fake->packet->vps = fr_pair_list_copy(fake->packet, request->packet->vps);
3116         talloc_free(request->proxy);
3117
3118         fake->server = request->home_server->server;
3119         fake->handle = request->handle;
3120         fake->process = NULL; /* should never be run for anything */
3121
3122         /*
3123          *      Run the virtual server.
3124          */
3125         request_running(fake, FR_ACTION_RUN);
3126
3127         request->proxy = talloc_steal(request, fake->packet);
3128         fake->packet = NULL;
3129         request->proxy_reply = talloc_steal(request, fake->reply);
3130         fake->reply = NULL;
3131
3132         talloc_free(fake);
3133
3134         /*
3135          *      No reply code, toss the reply we have,
3136          *      and do post-proxy-type Fail.
3137          */
3138         if (!request->proxy_reply->code) {
3139                 TALLOC_FREE(request->proxy_reply);
3140                 setup_post_proxy_fail(request);
3141         }
3142
3143         /*
3144          *      Do the proxy reply (if any)
3145          */
3146         if (process_proxy_reply(request, request->proxy_reply)) {
3147                 request->handle(request);
3148         }
3149
3150         return -1;      /* so we call request_finish */
3151 }
3152
3153
3154 static int request_proxy(REQUEST *request, int retransmit)
3155 {
3156         char buffer[128];
3157
3158         VERIFY_REQUEST(request);
3159
3160         rad_assert(request->parent == NULL);
3161         rad_assert(request->home_server != NULL);
3162
3163         if (request->master_state == REQUEST_STOP_PROCESSING) return 0;
3164
3165 #ifdef WITH_COA
3166         if (request->coa) {
3167                 RWDEBUG("Cannot proxy and originate CoA packets at the same time.  Cancelling CoA request");
3168                 request_done(request->coa, FR_ACTION_DONE);
3169         }
3170 #endif
3171
3172         /*
3173          *      The request may need sending to a virtual server.
3174          *      This code is more than a little screwed up.  The rest
3175          *      of the state machine doesn't handle parent / child
3176          *      relationships well.  i.e. if the child request takes
3177          *      too long, the core will mark the *parent* as "stop
3178          *      processing".  And the child will continue without
3179          *      knowing anything...
3180          *
3181          *      So, we have some horrible hacks to get around that.
3182          */
3183         if (request->home_server->server) return proxy_to_virtual_server(request);
3184
3185         /*
3186          *      We're actually sending a proxied packet.  Do that now.
3187          */
3188         if (!request->in_proxy_hash && !insert_into_proxy_hash(request)) {
3189                 RPROXY("Failed to insert request into the proxy list");
3190                 return -1;
3191         }
3192
3193         rad_assert(request->proxy->id >= 0);
3194
3195         if (rad_debug_lvl) {
3196                 struct timeval *response_window;
3197
3198                 response_window = request_response_window(request);
3199
3200 #ifdef WITH_TLS
3201                 if (request->home_server->tls) {
3202                         RDEBUG2("Proxying request to home server %s port %d (TLS) timeout %d.%06d",
3203                                 inet_ntop(request->proxy->dst_ipaddr.af,
3204                                           &request->proxy->dst_ipaddr.ipaddr,
3205                                           buffer, sizeof(buffer)),
3206                                 request->proxy->dst_port,
3207                                 (int) response_window->tv_sec, (int) response_window->tv_usec);
3208                 } else
3209 #endif
3210                         RDEBUG2("Proxying request to home server %s port %d timeout %d.%06d",
3211                                 inet_ntop(request->proxy->dst_ipaddr.af,
3212                                           &request->proxy->dst_ipaddr.ipaddr,
3213                                           buffer, sizeof(buffer)),
3214                                 request->proxy->dst_port,
3215                                 (int) response_window->tv_sec, (int) response_window->tv_usec);
3216
3217
3218         }
3219
3220         gettimeofday(&request->proxy_retransmit, NULL);
3221         if (!retransmit) {
3222                 request->proxy->timestamp = request->proxy_retransmit;
3223         }
3224         request->home_server->last_packet_sent = request->proxy_retransmit.tv_sec;
3225
3226         /*
3227          *      Encode the packet before we do anything else.
3228          */
3229         request->proxy_listener->encode(request->proxy_listener, request);
3230         debug_packet(request, request->proxy, false);
3231
3232         /*
3233          *      Set the state function, then the state, no child, and
3234          *      send the packet.
3235          *
3236          *      The order here is different from other state changes
3237          *      due to race conditions with replies from the home
3238          *      server.
3239          */
3240         request->process = proxy_wait_for_reply;
3241         request->child_state = REQUEST_PROXIED;
3242         request->component = "<REQUEST_PROXIED>";
3243         request->module = "";
3244         NO_CHILD_THREAD;
3245
3246         /*
3247          *      And send the packet.
3248          */
3249         request->proxy_listener->send(request->proxy_listener, request);
3250         return 1;
3251 }
3252
3253 /*
3254  *      Proxy the packet as if it was new.
3255  */
3256 static int request_proxy_anew(REQUEST *request)
3257 {
3258         home_server_t *home;
3259
3260         VERIFY_REQUEST(request);
3261
3262         /*
3263          *      Delete the request from the proxy list.
3264          *
3265          *      The packet list code takes care of ensuring that IDs
3266          *      aren't reused until all 256 IDs have been used.  So
3267          *      there's a 1/256 chance of re-using the same ID when
3268          *      we're sending to the same home server.  Which is
3269          *      acceptable.
3270          */
3271         remove_from_proxy_hash(request);
3272
3273         /*
3274          *      Find a live home server for the request.
3275          */
3276         home = home_server_ldb(NULL, request->home_pool, request);
3277         if (!home) {
3278                 REDEBUG2("Failed to find live home server for request");
3279         post_proxy_fail:
3280                 if (setup_post_proxy_fail(request)) {
3281                         request_queue_or_run(request, proxy_running);
3282                 } else {
3283                         gettimeofday(&request->reply->timestamp, NULL);
3284                         request_cleanup_delay_init(request);
3285                 }
3286                 return 0;
3287         }
3288
3289 #ifdef WITH_ACCOUNTING
3290         /*
3291          *      Update the Acct-Delay-Time attribute.
3292          */
3293         if (request->packet->code == PW_CODE_ACCOUNTING_REQUEST) {
3294                 VALUE_PAIR *vp;
3295
3296                 vp = fr_pair_find_by_num(request->proxy->vps, PW_ACCT_DELAY_TIME, 0, TAG_ANY);
3297                 if (!vp) vp = radius_pair_create(request->proxy,
3298                                                 &request->proxy->vps,
3299                                                 PW_ACCT_DELAY_TIME, 0);
3300                 if (vp) {
3301                         struct timeval now;
3302
3303                         gettimeofday(&now, NULL);
3304                         vp->vp_integer += now.tv_sec - request->proxy_retransmit.tv_sec;
3305                 }
3306         }
3307 #endif
3308
3309         /*
3310          *      May have failed over to a "fallback" virtual server.
3311          *      If so, run that instead of doing proxying to a real
3312          *      server.
3313          */
3314         if (home->server) {
3315                 request->home_server = home;
3316                 TALLOC_FREE(request->proxy);
3317
3318                 (void) proxy_to_virtual_server(request);
3319                 return 0;
3320         }
3321
3322         home_server_update_request(home, request);
3323
3324         if (!insert_into_proxy_hash(request)) {
3325                 RPROXY("Failed to insert retransmission into the proxy list");
3326                 goto post_proxy_fail;
3327         }
3328
3329         /*
3330          *      Free the old packet, to force re-encoding
3331          */
3332         talloc_free(request->proxy->data);
3333         request->proxy->data = NULL;
3334         request->proxy->data_len = 0;
3335
3336         if (request_proxy(request, 1) != 1) goto post_proxy_fail;
3337
3338         return 1;
3339 }
3340
3341
3342 /** Ping a home server.
3343  *
3344  */
3345 static void request_ping(REQUEST *request, int action)
3346 {
3347         home_server_t *home = request->home_server;
3348         char buffer[128];
3349
3350         VERIFY_REQUEST(request);
3351
3352         TRACE_STATE_MACHINE;
3353         ASSERT_MASTER;
3354
3355         switch (action) {
3356         case FR_ACTION_TIMER:
3357                 ERROR("No response to status check %d ID %u for home server %s port %d",
3358                        request->number,
3359                        request->proxy->id,
3360                        inet_ntop(request->proxy->dst_ipaddr.af,
3361                                  &request->proxy->dst_ipaddr.ipaddr,
3362                                  buffer, sizeof(buffer)),
3363                        request->proxy->dst_port);
3364                 break;
3365
3366         case FR_ACTION_PROXY_REPLY:
3367                 rad_assert(request->in_proxy_hash);
3368
3369                 request->home_server->num_received_pings++;
3370                 RPROXY("Received response to status check %d ID %u (%d in current sequence)",
3371                        request->number, request->proxy->id, home->num_received_pings);
3372
3373                 /*
3374                  *      Remove the request from any hashes
3375                  */
3376                 fr_event_delete(el, &request->ev);
3377                 remove_from_proxy_hash(request);
3378
3379                 /*
3380                  *      The control socket may have marked the home server as
3381                  *      alive.  OR, it may have suddenly started responding to
3382                  *      requests again.  If so, don't re-do the "make alive"
3383                  *      work.
3384                  */
3385                 if (home->state == HOME_STATE_ALIVE) break;
3386
3387                 /*
3388                  *      It's dead, and we haven't received enough ping
3389                  *      responses to mark it "alive".  Wait a bit.
3390                  *
3391                  *      If it's zombie, we mark it alive immediately.
3392                  */
3393                 if ((home->state == HOME_STATE_IS_DEAD) &&
3394                     (home->num_received_pings < home->num_pings_to_alive)) {
3395                         return;
3396                 }
3397
3398                 /*
3399                  *      Mark it alive and delete any outstanding
3400                  *      pings.
3401                  */
3402                 mark_home_server_alive(request, home);
3403                 break;
3404
3405         default:
3406                 RDEBUG3("%s: Ignoring action %s", __FUNCTION__, action_codes[action]);
3407                 break;
3408         }
3409
3410         rad_assert(!request->in_request_hash);
3411         rad_assert(request->ev == NULL);
3412         NO_CHILD_THREAD;
3413         request_done(request, FR_ACTION_DONE);
3414 }
3415
3416 /*
3417  *      Called from start of zombie period, OR after control socket
3418  *      marks the home server dead.
3419  */
3420 static void ping_home_server(void *ctx)
3421 {
3422         home_server_t *home = talloc_get_type_abort(ctx, home_server_t);
3423         REQUEST *request;
3424         VALUE_PAIR *vp;
3425         struct timeval when, now;
3426
3427         if ((home->state == HOME_STATE_ALIVE) ||
3428             (home->ev != NULL)) {
3429                 return;
3430         }
3431
3432         gettimeofday(&now, NULL);
3433         ASSERT_MASTER;
3434
3435         /*
3436          *      We've run out of zombie time.  Mark it dead.
3437          */
3438         if (home->state == HOME_STATE_ZOMBIE) {
3439                 when = home->zombie_period_start;
3440                 when.tv_sec += home->zombie_period;
3441
3442                 if (timercmp(&when, &now, <)) {
3443                         DEBUG("PING: Zombie period is over for home server %s", home->log_name);
3444                         mark_home_server_dead(home, &now);
3445                 }
3446         }
3447
3448         /*
3449          *      We're not supposed to be pinging it.  Just wake up
3450          *      when we're supposed to mark it dead.
3451          */
3452         if (home->ping_check == HOME_PING_CHECK_NONE) {
3453                 if (home->state == HOME_STATE_ZOMBIE) {
3454                         home->when = home->zombie_period_start;
3455                         home->when.tv_sec += home->zombie_period;
3456                         INSERT_EVENT(ping_home_server, home);
3457                 }
3458
3459                 /*
3460                  *      Else mark_home_server_dead will set a timer
3461                  *      for revive_interval.
3462                  */
3463                 return;
3464         }
3465
3466
3467         request = request_alloc(NULL);
3468         if (!request) return;
3469         request->number = request_num_counter++;
3470         NO_CHILD_THREAD;
3471
3472         request->proxy = rad_alloc(request, true);
3473         rad_assert(request->proxy != NULL);
3474
3475         if (home->ping_check == HOME_PING_CHECK_STATUS_SERVER) {
3476                 request->proxy->code = PW_CODE_STATUS_SERVER;
3477
3478                 fr_pair_make(request->proxy, &request->proxy->vps,
3479                          "Message-Authenticator", "0x00", T_OP_SET);
3480
3481         } else if ((home->type == HOME_TYPE_AUTH) ||
3482                    (home->type == HOME_TYPE_AUTH_ACCT)) {
3483                 request->proxy->code = PW_CODE_ACCESS_REQUEST;
3484
3485                 fr_pair_make(request->proxy, &request->proxy->vps,
3486                          "User-Name", home->ping_user_name, T_OP_SET);
3487                 fr_pair_make(request->proxy, &request->proxy->vps,
3488                          "User-Password", home->ping_user_password, T_OP_SET);
3489                 fr_pair_make(request->proxy, &request->proxy->vps,
3490                          "Service-Type", "Authenticate-Only", T_OP_SET);
3491                 fr_pair_make(request->proxy, &request->proxy->vps,
3492                          "Message-Authenticator", "0x00", T_OP_SET);
3493
3494 #ifdef WITH_ACCOUNTING
3495         } else if (home->type == HOME_TYPE_ACCT) {
3496                 request->proxy->code = PW_CODE_ACCOUNTING_REQUEST;
3497
3498                 fr_pair_make(request->proxy, &request->proxy->vps,
3499                          "User-Name", home->ping_user_name, T_OP_SET);
3500                 fr_pair_make(request->proxy, &request->proxy->vps,
3501                          "Acct-Status-Type", "Stop", T_OP_SET);
3502                 fr_pair_make(request->proxy, &request->proxy->vps,
3503                          "Acct-Session-Id", "00000000", T_OP_SET);
3504                 vp = fr_pair_make(request->proxy, &request->proxy->vps,
3505                               "Event-Timestamp", "0", T_OP_SET);
3506                 vp->vp_date = now.tv_sec;
3507 #endif
3508
3509         } else {
3510                 /*
3511                  *      Unkown home server type.
3512                  */
3513                 talloc_free(request);
3514                 return;
3515         }
3516
3517         vp = fr_pair_make(request->proxy, &request->proxy->vps,
3518                       "NAS-Identifier", "", T_OP_SET);
3519         if (vp) {
3520                 fr_pair_value_sprintf(vp, "Status Check %u. Are you alive?",
3521                             home->num_sent_pings);
3522         }
3523
3524 #ifdef WITH_TCP
3525         request->proxy->proto = home->proto;
3526 #endif
3527         request->proxy->src_ipaddr = home->src_ipaddr;
3528         request->proxy->dst_ipaddr = home->ipaddr;
3529         request->proxy->dst_port = home->port;
3530         request->home_server = home;
3531 #ifdef DEBUG_STATE_MACHINE
3532         if (rad_debug_lvl) printf("(%u) ********\tSTATE %s C-%s -> C-%s\t********\n", request->number, __FUNCTION__,
3533                                child_state_names[request->child_state],
3534                                child_state_names[REQUEST_DONE]);
3535         if (rad_debug_lvl) printf("(%u) ********\tNEXT-STATE %s -> %s\n", request->number, __FUNCTION__, "request_ping");
3536 #endif
3537 #ifdef HAVE_PTHREAD_H
3538         rad_assert(request->child_pid == NO_SUCH_CHILD_PID);
3539 #endif
3540         request->child_state = REQUEST_PROXIED;
3541         request->process = request_ping;
3542
3543         rad_assert(request->proxy_listener == NULL);
3544
3545         if (!insert_into_proxy_hash(request)) {
3546                 RPROXY("Failed to insert status check %d into proxy list.  Discarding it.",
3547                        request->number);
3548
3549                 rad_assert(!request->in_request_hash);
3550                 rad_assert(!request->in_proxy_hash);
3551                 rad_assert(request->ev == NULL);
3552                 talloc_free(request);
3553                 return;
3554         }
3555
3556         /*
3557          *      Set up the timer callback.
3558          */
3559         when = now;
3560         when.tv_sec += home->ping_timeout;
3561
3562         DEBUG("PING: Waiting %u seconds for response to ping",
3563               home->ping_timeout);
3564
3565         STATE_MACHINE_TIMER(FR_ACTION_TIMER);
3566         home->num_sent_pings++;
3567
3568         rad_assert(request->proxy_listener != NULL);
3569         debug_packet(request, request->proxy, false);
3570         request->proxy_listener->send(request->proxy_listener,
3571                                       request);
3572
3573         /*
3574          *      Add +/- 2s of jitter, as suggested in RFC 3539
3575          *      and in the Issues and Fixes draft.
3576          */
3577         home->when = now;
3578         home->when.tv_sec += home->ping_interval;
3579
3580         add_jitter(&home->when);
3581
3582         DEBUG("PING: Next status packet in %u seconds", home->ping_interval);
3583         INSERT_EVENT(ping_home_server, home);
3584 }
3585
3586 static void home_trigger(home_server_t *home, char const *trigger)
3587 {
3588         REQUEST *my_request;
3589         RADIUS_PACKET *my_packet;
3590
3591         my_request = talloc_zero(NULL, REQUEST);
3592         my_packet = talloc_zero(my_request, RADIUS_PACKET);
3593         my_request->proxy = my_packet;
3594         my_packet->dst_ipaddr = home->ipaddr;
3595         my_packet->src_ipaddr = home->src_ipaddr;
3596
3597         exec_trigger(my_request, home->cs, trigger, false);
3598         talloc_free(my_request);
3599 }
3600
3601 static void mark_home_server_zombie(home_server_t *home, struct timeval *now, struct timeval *response_window)
3602 {
3603         time_t start;
3604         char buffer[128];
3605
3606         ASSERT_MASTER;
3607
3608         rad_assert((home->state == HOME_STATE_ALIVE) ||
3609                    (home->state == HOME_STATE_UNKNOWN));
3610
3611         /*
3612          *      We've received a real packet recently.  Don't mark the
3613          *      server as zombie until we've received NO packets for a
3614          *      while.  The "1/4" of zombie period was chosen rather
3615          *      arbitrarily.  It's a balance between too short, which
3616          *      gives quick fail-over and fail-back, or too long,
3617          *      where the proxy still sends packets to an unresponsive
3618          *      home server.
3619          */
3620         start = now->tv_sec - ((home->zombie_period + 3) / 4);
3621         if (home->last_packet_recv >= start) {
3622                 DEBUG("Received reply from home server %d seconds ago.  Might not be zombie.",
3623                       (int) (now->tv_sec - home->last_packet_recv));
3624                 return;
3625         }
3626
3627         home->state = HOME_STATE_ZOMBIE;
3628         home_trigger(home, "home_server.zombie");
3629
3630         /*
3631          *      Set the home server to "zombie", as of the time
3632          *      calculated above.
3633          */
3634         home->zombie_period_start.tv_sec = start;
3635         home->zombie_period_start.tv_usec = USEC / 2;
3636
3637         fr_event_delete(el, &home->ev);
3638
3639         home->num_sent_pings = 0;
3640         home->num_received_pings = 0;
3641
3642         PROXY( "Marking home server %s port %d as zombie (it has not responded in %d.%06d seconds).",
3643                inet_ntop(home->ipaddr.af, &home->ipaddr.ipaddr,
3644                          buffer, sizeof(buffer)),
3645                home->port, (int) response_window->tv_sec, (int) response_window->tv_usec);
3646
3647         ping_home_server(home);
3648 }
3649
3650
3651 void revive_home_server(void *ctx)
3652 {
3653         home_server_t *home = talloc_get_type_abort(ctx, home_server_t);
3654         char buffer[128];
3655
3656         home->state = HOME_STATE_ALIVE;
3657         home->response_timeouts = 0;
3658         home_trigger(home, "home_server.alive");
3659         home->currently_outstanding = 0;
3660         gettimeofday(&home->revive_time, NULL);
3661
3662         /*
3663          *      Delete any outstanding events.
3664          */
3665         ASSERT_MASTER;
3666         if (home->ev) fr_event_delete(el, &home->ev);
3667
3668         PROXY( "Marking home server %s port %d alive again... we have no idea if it really is alive or not.",
3669                inet_ntop(home->ipaddr.af, &home->ipaddr.ipaddr,
3670                          buffer, sizeof(buffer)),
3671                home->port);
3672 }
3673
3674 void mark_home_server_dead(home_server_t *home, struct timeval *when)
3675 {
3676         int previous_state = home->state;
3677         char buffer[128];
3678
3679         PROXY( "Marking home server %s port %d as dead.",
3680                inet_ntop(home->ipaddr.af, &home->ipaddr.ipaddr,
3681                          buffer, sizeof(buffer)),
3682                home->port);
3683
3684         home->state = HOME_STATE_IS_DEAD;
3685         home_trigger(home, "home_server.dead");
3686
3687         if (home->ping_check != HOME_PING_CHECK_NONE) {
3688                 /*
3689                  *      If the control socket marks us dead, start
3690                  *      pinging.  Otherwise, we already started
3691                  *      pinging when it was marked "zombie".
3692                  */
3693                 if (previous_state == HOME_STATE_ALIVE) {
3694                         ping_home_server(home);
3695                 } else {
3696                         DEBUG("PING: Already pinging home server %s", home->log_name);
3697                 }
3698
3699         } else {
3700                 /*
3701                  *      Revive it after a fixed period of time.  This
3702                  *      is very, very, bad.
3703                  */
3704                 home->when = *when;
3705                 home->when.tv_sec += home->revive_interval;
3706
3707                 DEBUG("PING: Reviving home server %s in %u seconds", home->log_name, home->revive_interval);
3708                 ASSERT_MASTER;
3709                 INSERT_EVENT(revive_home_server, home);
3710         }
3711 }
3712
3713 /** Wait for a reply after proxying a request.
3714  *
3715  *  Retransmit the proxied packet, or time out and go to
3716  *  proxy_no_reply.  Mark the home server unresponsive, etc.
3717  *
3718  *  If we do receive a reply, we transition to proxy_running.
3719  *
3720  *  \dot
3721  *      digraph proxy_wait_for_reply {
3722  *              proxy_wait_for_reply;
3723  *
3724  *              proxy_wait_for_reply -> retransmit_proxied_request [ label = "DUP", arrowhead = "none" ];
3725  *              proxy_wait_for_reply -> proxy_no_reply [ label = "TIMER >= response_window" ];
3726  *              proxy_wait_for_reply -> timer [ label = "TIMER < max_request_time" ];
3727  *              proxy_wait_for_reply -> proxy_running [ label = "PROXY_REPLY" arrowhead = "none"];
3728  *              proxy_wait_for_reply -> done [ label = "TIMER >= max_request_time" ];
3729  *      }
3730  *  \enddot
3731  */
3732 static void proxy_wait_for_reply(REQUEST *request, int action)
3733 {
3734         struct timeval now, when;
3735         struct timeval *response_window = NULL;
3736         home_server_t *home = request->home_server;
3737         char buffer[128];
3738
3739         VERIFY_REQUEST(request);
3740
3741         TRACE_STATE_MACHINE;
3742         CHECK_FOR_STOP;
3743
3744         rad_assert(request->packet->code != PW_CODE_STATUS_SERVER);
3745         rad_assert(request->home_server != NULL);
3746
3747         gettimeofday(&now, NULL);
3748
3749         switch (action) {
3750         case FR_ACTION_DUP:
3751                 /*
3752                  *      We have a reply, ignore the retransmit.
3753                  */
3754                 if (request->proxy_reply) return;
3755
3756                 /*
3757                  *      The request was proxied to a virtual server.
3758                  *      Ignore the retransmit.
3759                  */
3760                 if (request->home_server->server) return;
3761
3762                 /*
3763                  *      Use a new connection when the home server is
3764                  *      dead, or when there's no proxy listener, or
3765                  *      when the listener is failed or dead.
3766                  *
3767                  *      If the listener is known or frozen, use it for
3768                  *      retransmits.
3769                  */
3770                 if ((home->state == HOME_STATE_IS_DEAD) ||
3771                     !request->proxy_listener ||
3772                     (request->proxy_listener->status >= RAD_LISTEN_STATUS_EOL)) {
3773                         request_proxy_anew(request);
3774                         return;
3775                 }
3776
3777 #ifdef WITH_TCP
3778                 /*
3779                  *      The home server is still alive, but TCP.  We
3780                  *      rely on TCP to get the request and reply back.
3781                  *      So there's no need to retransmit.
3782                  */
3783                 if (home->proto == IPPROTO_TCP) {
3784                         DEBUG2("Suppressing duplicate proxied request (tcp) to home server %s port %d proto TCP - ID: %d",
3785                                inet_ntop(request->proxy->dst_ipaddr.af,
3786                                          &request->proxy->dst_ipaddr.ipaddr,
3787                                          buffer, sizeof(buffer)),
3788                                request->proxy->dst_port,
3789                                request->proxy->id);
3790                         return;
3791                 }
3792 #endif
3793
3794                 /*
3795                  *      More than one retransmit a second is stupid,
3796                  *      and should be suppressed by the proxy.
3797                  */
3798                 when = request->proxy_retransmit;
3799                 when.tv_sec++;
3800
3801                 if (timercmp(&now, &when, <)) {
3802                         DEBUG2("Suppressing duplicate proxied request (too fast) to home server %s port %d proto TCP - ID: %d",
3803                                inet_ntop(request->proxy->dst_ipaddr.af,
3804                                          &request->proxy->dst_ipaddr.ipaddr,
3805                                          buffer, sizeof(buffer)),
3806                                request->proxy->dst_port,
3807                                request->proxy->id);
3808                         return;
3809                 }
3810
3811 #ifdef WITH_ACCOUNTING
3812                 /*
3813                  *      If we update the Acct-Delay-Time, we need to
3814                  *      get a new ID.
3815                  */
3816                 if ((request->packet->code == PW_CODE_ACCOUNTING_REQUEST) &&
3817                     fr_pair_find_by_num(request->proxy->vps, PW_ACCT_DELAY_TIME, 0, TAG_ANY)) {
3818                         request_proxy_anew(request);
3819                         return;
3820                 }
3821 #endif
3822
3823                 RDEBUG2("Sending duplicate proxied request to home server %s port %d - ID: %d",
3824                         inet_ntop(request->proxy->dst_ipaddr.af,
3825                                   &request->proxy->dst_ipaddr.ipaddr,
3826                                   buffer, sizeof(buffer)),
3827                         request->proxy->dst_port,
3828                         request->proxy->id);
3829                 request->num_proxied_requests++;
3830
3831                 rad_assert(request->proxy_listener != NULL);
3832                 FR_STATS_TYPE_INC(home->stats.total_requests);
3833                 home->last_packet_sent = now.tv_sec;
3834                 request->proxy_retransmit = now;
3835                 debug_packet(request, request->proxy, false);
3836                 request->proxy_listener->send(request->proxy_listener, request);
3837                 break;
3838
3839         case FR_ACTION_TIMER:
3840                 response_window = request_response_window(request);
3841
3842 #ifdef WITH_TCP
3843                 if (!request->proxy_listener ||
3844                     (request->proxy_listener->status >= RAD_LISTEN_STATUS_EOL)) {
3845                         remove_from_proxy_hash(request);
3846
3847                         when = request->packet->timestamp;
3848                         when.tv_sec += request->root->max_request_time;
3849
3850                         if (timercmp(&when, &now, >)) {
3851                                 RDEBUG("Waiting for client retransmission in order to do a proxy retransmit");
3852                                 STATE_MACHINE_TIMER(FR_ACTION_TIMER);
3853                                 return;
3854                         }
3855                 } else
3856 #endif
3857                 {
3858                         /*
3859                          *      Wake up "response_window" time in the future.
3860                          *      i.e. when MY packet hasn't received a response.
3861                          *
3862                          *      Note that we DO NOT mark the home server as
3863                          *      zombie if it doesn't respond to us.  It may be
3864                          *      responding to other (better looking) packets.
3865                          */
3866                         when = request->proxy->timestamp;
3867                         timeradd(&when, response_window, &when);
3868
3869                         /*
3870                          *      Not at the response window.  Set the timer for
3871                          *      that.
3872                          */
3873                         if (timercmp(&when, &now, >)) {
3874                                 struct timeval diff;
3875                                 timersub(&when, &now, &diff);
3876
3877                                 RDEBUG("Expecting proxy response no later than %d.%06d seconds from now",
3878                                        (int) diff.tv_sec, (int) diff.tv_usec);
3879                                 STATE_MACHINE_TIMER(FR_ACTION_TIMER);
3880                                 return;
3881                         }
3882                 }
3883
3884                 RDEBUG("No proxy response, giving up on request and marking it done");
3885
3886                 /*
3887                  *      If we haven't received any packets for
3888                  *      "response_window", then mark the home server
3889                  *      as zombie.
3890                  *
3891                  *      This check should really be part of a home
3892                  *      server state machine.
3893                  */
3894                 if (((home->state == HOME_STATE_ALIVE) ||
3895                      (home->state == HOME_STATE_UNKNOWN))
3896                         ) {
3897                         home->response_timeouts++;
3898                         if (home->response_timeouts >= home->max_response_timeouts)
3899                                 mark_home_server_zombie(home, &now, response_window);
3900                 }
3901
3902                 FR_STATS_TYPE_INC(home->stats.total_timeouts);
3903                 if (home->type == HOME_TYPE_AUTH) {
3904                         if (request->proxy_listener) FR_STATS_TYPE_INC(request->proxy_listener->stats.total_timeouts);
3905                         FR_STATS_TYPE_INC(proxy_auth_stats.total_timeouts);
3906                 }
3907 #ifdef WITH_ACCT
3908                 else if (home->type == HOME_TYPE_ACCT) {
3909                         if (request->proxy_listener) FR_STATS_TYPE_INC(request->proxy_listener->stats.total_timeouts);
3910                         FR_STATS_TYPE_INC(proxy_acct_stats.total_timeouts);
3911                 }
3912 #endif
3913 #ifdef WITH_COA
3914                 else if (home->type == HOME_TYPE_COA) {
3915                         if (request->proxy_listener) FR_STATS_TYPE_INC(request->proxy_listener->stats.total_timeouts);
3916
3917                         if (request->packet->code == PW_CODE_COA_REQUEST) {
3918                                 FR_STATS_TYPE_INC(proxy_coa_stats.total_timeouts);
3919                         } else {
3920                                 FR_STATS_TYPE_INC(proxy_dsc_stats.total_timeouts);
3921                         }
3922                 }
3923 #endif
3924
3925                 /*
3926                  *      There was no response within the window.  Stop
3927                  *      the request.  If the client retransmitted, it
3928                  *      may have failed over to another home server.
3929                  *      But that one may be dead, too.
3930                  *
3931                  *      The extra verbose message if we have a username,
3932                  *      is extremely useful if the proxy is part of a chain
3933                  *      and the final home server, is not the one we're
3934                  *      proxying to.
3935                  */
3936                 if (request->username) {
3937                         RERROR("Failing proxied request for user \"%s\", due to lack of any response from home "
3938                                "server %s port %d",
3939                                request->username->vp_strvalue,
3940                                inet_ntop(request->proxy->dst_ipaddr.af,
3941                                          &request->proxy->dst_ipaddr.ipaddr,
3942                                          buffer, sizeof(buffer)),
3943                                request->proxy->dst_port);
3944                 } else {
3945                         RERROR("Failing proxied request, due to lack of any response from home server %s port %d",
3946                                inet_ntop(request->proxy->dst_ipaddr.af,
3947                                          &request->proxy->dst_ipaddr.ipaddr,
3948                                          buffer, sizeof(buffer)),
3949                                request->proxy->dst_port);
3950                 }
3951
3952                 if (setup_post_proxy_fail(request)) {
3953                         request_queue_or_run(request, proxy_no_reply);
3954                 } else {
3955                         gettimeofday(&request->reply->timestamp, NULL);
3956                         request_cleanup_delay_init(request);
3957                 }
3958                 break;
3959
3960                 /*
3961                  *      We received a new reply.  Go process it.
3962                  */
3963         case FR_ACTION_PROXY_REPLY:
3964                 request_queue_or_run(request, proxy_running);
3965                 break;
3966
3967         default:
3968                 RDEBUG3("%s: Ignoring action %s", __FUNCTION__, action_codes[action]);
3969                 break;
3970         }
3971 }
3972 #endif  /* WITH_PROXY */
3973
3974
3975 /***********************************************************************
3976  *
3977  *  CoA code
3978  *
3979  ***********************************************************************/
3980 #ifdef WITH_COA
3981 static int null_handler(UNUSED REQUEST *request)
3982 {
3983         return 0;
3984 }
3985
3986 /*
3987  *      See if we need to originate a CoA request.
3988  */
3989 static void request_coa_originate(REQUEST *request)
3990 {
3991         int rcode, pre_proxy_type = 0;
3992         VALUE_PAIR *vp;
3993         REQUEST *coa;
3994         fr_ipaddr_t ipaddr;
3995         char buffer[256];
3996
3997         VERIFY_REQUEST(request);
3998
3999         rad_assert(request->coa != NULL);
4000         rad_assert(request->proxy == NULL);
4001         rad_assert(!request->in_proxy_hash);
4002         rad_assert(request->proxy_reply == NULL);
4003
4004         /*
4005          *      Check whether we want to originate one, or cancel one.
4006          */
4007         vp = fr_pair_find_by_num(request->config, PW_SEND_COA_REQUEST, 0, TAG_ANY);
4008         if (!vp) {
4009                 vp = fr_pair_find_by_num(request->coa->proxy->vps, PW_SEND_COA_REQUEST, 0, TAG_ANY);
4010         }
4011
4012         if (vp) {
4013                 if (vp->vp_integer == 0) {
4014                 fail:
4015                         TALLOC_FREE(request->coa);
4016                         return;
4017                 }
4018         }
4019
4020         coa = request->coa;
4021
4022         /*
4023          *      src_ipaddr will be set up in proxy_encode.
4024          */
4025         memset(&ipaddr, 0, sizeof(ipaddr));
4026         vp = fr_pair_find_by_num(coa->proxy->vps, PW_PACKET_DST_IP_ADDRESS, 0, TAG_ANY);
4027         if (vp) {
4028                 ipaddr.af = AF_INET;
4029                 ipaddr.ipaddr.ip4addr.s_addr = vp->vp_ipaddr;
4030                 ipaddr.prefix = 32;
4031         } else if ((vp = fr_pair_find_by_num(coa->proxy->vps, PW_PACKET_DST_IPV6_ADDRESS, 0, TAG_ANY)) != NULL) {
4032                 ipaddr.af = AF_INET6;
4033                 ipaddr.ipaddr.ip6addr = vp->vp_ipv6addr;
4034                 ipaddr.prefix = 128;
4035         } else if ((vp = fr_pair_find_by_num(coa->proxy->vps, PW_HOME_SERVER_POOL, 0, TAG_ANY)) != NULL) {
4036                 coa->home_pool = home_pool_byname(vp->vp_strvalue,
4037                                                   HOME_TYPE_COA);
4038                 if (!coa->home_pool) {
4039                         RWDEBUG2("No such home_server_pool %s",
4040                                vp->vp_strvalue);
4041                         goto fail;
4042                 }
4043
4044                 /*
4045                  *      Prefer the pool to one server
4046                  */
4047         } else if (request->client->coa_pool) {
4048                 coa->home_pool = request->client->coa_pool;
4049
4050         } else if (request->client->coa_server) {
4051                 coa->home_server = request->client->coa_server;
4052
4053         } else {
4054                 /*
4055                  *      If all else fails, send it to the client that
4056                  *      originated this request.
4057                  */
4058                 memcpy(&ipaddr, &request->packet->src_ipaddr, sizeof(ipaddr));
4059         }
4060
4061         /*
4062          *      Use the pool, if it exists.
4063          */
4064         if (coa->home_pool) {
4065                 coa->home_server = home_server_ldb(NULL, coa->home_pool, coa);
4066                 if (!coa->home_server) {
4067                         RWDEBUG("No live home server for home_server_pool %s", coa->home_pool->name);
4068                         goto fail;
4069                 }
4070                 home_server_update_request(coa->home_server, coa);
4071
4072         } else if (!coa->home_server) {
4073                 uint16_t port = PW_COA_UDP_PORT;
4074
4075                 vp = fr_pair_find_by_num(coa->proxy->vps, PW_PACKET_DST_PORT, 0, TAG_ANY);
4076                 if (vp) port = vp->vp_integer;
4077
4078                 coa->home_server = home_server_find(&ipaddr, port, IPPROTO_UDP);
4079                 if (!coa->home_server) {
4080                         RWDEBUG2("Unknown destination %s:%d for CoA request.",
4081                                inet_ntop(ipaddr.af, &ipaddr.ipaddr,
4082                                          buffer, sizeof(buffer)), port);
4083                         goto fail;
4084                 }
4085         }
4086
4087         vp = fr_pair_find_by_num(coa->proxy->vps, PW_PACKET_TYPE, 0, TAG_ANY);
4088         if (vp) {
4089                 switch (vp->vp_integer) {
4090                 case PW_CODE_COA_REQUEST:
4091                 case PW_CODE_DISCONNECT_REQUEST:
4092                         coa->proxy->code = vp->vp_integer;
4093                         break;
4094
4095                 default:
4096                         DEBUG("Cannot set CoA Packet-Type to code %d",
4097                               vp->vp_integer);
4098                         goto fail;
4099                 }
4100         }
4101
4102         if (!coa->proxy->code) coa->proxy->code = PW_CODE_COA_REQUEST;
4103
4104         /*
4105          *      The rest of the server code assumes that
4106          *      request->packet && request->reply exist.  Copy them
4107          *      from the original request.
4108          */
4109         rad_assert(coa->packet != NULL);
4110         rad_assert(coa->packet->vps == NULL);
4111
4112         coa->packet = rad_copy_packet(coa, request->packet);
4113         coa->reply = rad_copy_packet(coa, request->reply);
4114
4115         coa->config = fr_pair_list_copy(coa, request->config);
4116         coa->num_coa_requests = 0;
4117         coa->handle = null_handler;
4118         coa->number = request->number; /* it's associated with the same request */
4119
4120         /*
4121          *      Call the pre-proxy routines.
4122          */
4123         vp = fr_pair_find_by_num(request->config, PW_PRE_PROXY_TYPE, 0, TAG_ANY);
4124         if (vp) {
4125                 DICT_VALUE const *dval = dict_valbyattr(vp->da->attr, vp->da->vendor, vp->vp_integer);
4126                 /* Must be a validation issue */
4127                 rad_assert(dval);
4128                 RDEBUG2("Found Pre-Proxy-Type %s", dval->name);
4129                 pre_proxy_type = vp->vp_integer;
4130         }
4131
4132         if (coa->home_pool && coa->home_pool->virtual_server) {
4133                 char const *old_server = coa->server;
4134
4135                 coa->server = coa->home_pool->virtual_server;
4136                 RDEBUG2("server %s {", coa->server);
4137                 RINDENT();
4138                 rcode = process_pre_proxy(pre_proxy_type, coa);
4139                 REXDENT();
4140                 RDEBUG2("}");
4141                 coa->server = old_server;
4142         } else {
4143                 rcode = process_pre_proxy(pre_proxy_type, coa);
4144         }
4145         switch (rcode) {
4146         default:
4147                 goto fail;
4148
4149         /*
4150          *      Only send the CoA packet if the pre-proxy code succeeded.
4151          */
4152         case RLM_MODULE_NOOP:
4153         case RLM_MODULE_OK:
4154         case RLM_MODULE_UPDATED:
4155                 break;
4156         }
4157
4158         /*
4159          *      Source IP / port is set when the proxy socket
4160          *      is chosen.
4161          */
4162         coa->proxy->dst_ipaddr = coa->home_server->ipaddr;
4163         coa->proxy->dst_port = coa->home_server->port;
4164
4165         if (!insert_into_proxy_hash(coa)) {
4166                 radlog_request(L_PROXY, 0, coa, "Failed to insert CoA request into proxy list");
4167                 goto fail;
4168         }
4169
4170         /*
4171          *      We CANNOT divorce the CoA request from the parent
4172          *      request.  This function is running in a child thread,
4173          *      and we need access to the main event loop in order to
4174          *      to add the timers for the CoA packet.
4175          *
4176          *      Instead, we wait for the timer on the parent request
4177          *      to fire.
4178          */
4179         gettimeofday(&coa->proxy->timestamp, NULL);
4180         coa->packet->timestamp = coa->proxy->timestamp; /* for max_request_time */
4181         coa->home_server->last_packet_sent = coa->proxy->timestamp.tv_sec;
4182         coa->delay = 0;         /* need to calculate a new delay */
4183
4184         /*
4185          *      If requested, put a State attribute into the packet,
4186          *      and cache the VPS.
4187          */
4188         fr_state_put_vps(coa, NULL, coa->packet);
4189
4190         /*
4191          *      Encode the packet before we do anything else.
4192          */
4193         coa->proxy_listener->encode(coa->proxy_listener, coa);
4194         debug_packet(coa, coa->proxy, false);
4195
4196 #ifdef DEBUG_STATE_MACHINE
4197         if (rad_debug_lvl) printf("(%u) ********\tSTATE %s C-%s -> C-%s\t********\n", request->number, __FUNCTION__,
4198                                child_state_names[request->child_state],
4199                                child_state_names[REQUEST_PROXIED]);
4200 #endif
4201
4202         /*
4203          *      Set the state function, then the state, no child, and
4204          *      send the packet.
4205          */
4206         coa->process = coa_wait_for_reply;
4207         coa->child_state = REQUEST_PROXIED;
4208
4209 #ifdef HAVE_PTHREAD_H
4210         coa->child_pid = NO_SUCH_CHILD_PID;
4211 #endif
4212
4213         if (we_are_master()) coa_separate(request->coa);
4214
4215         /*
4216          *      And send the packet.
4217          */
4218         coa->proxy_listener->send(coa->proxy_listener, coa);
4219 }
4220
4221
4222 static void coa_retransmit(REQUEST *request)
4223 {
4224         uint32_t delay, frac;
4225         struct timeval now, when, mrd;
4226         char buffer[128];
4227
4228         VERIFY_REQUEST(request);
4229
4230         fr_event_now(el, &now);
4231
4232         if (request->delay == 0) {
4233                 /*
4234                  *      Implement re-transmit algorithm as per RFC 5080
4235                  *      Section 2.2.1.
4236                  *
4237                  *      We want IRT + RAND*IRT
4238                  *      or 0.9 IRT + rand(0,.2) IRT
4239                  *
4240                  *      2^20 ~ USEC, and we want 2.
4241                  *      rand(0,0.2) USEC ~ (rand(0,2^21) / 10)
4242                  */
4243                 delay = (fr_rand() & ((1 << 22) - 1)) / 10;
4244                 request->delay = delay * request->home_server->coa_irt;
4245                 delay = request->home_server->coa_irt * USEC;
4246                 delay -= delay / 10;
4247                 delay += request->delay;
4248                 request->delay = delay;
4249
4250                 when = request->proxy->timestamp;
4251                 tv_add(&when, delay);
4252
4253                 if (timercmp(&when, &now, >)) {
4254                         STATE_MACHINE_TIMER(FR_ACTION_TIMER);
4255                         return;
4256                 }
4257         }
4258
4259         /*
4260          *      Retransmit CoA request.
4261          */
4262
4263         /*
4264          *      Cap count at MRC, if it is non-zero.
4265          */
4266         if (request->home_server->coa_mrc &&
4267             (request->num_coa_requests >= request->home_server->coa_mrc)) {
4268                 RERROR("Failing request - originate-coa ID %u, due to lack of any response from coa server %s port %d",
4269                        request->proxy->id,
4270                                inet_ntop(request->proxy->dst_ipaddr.af,
4271                                          &request->proxy->dst_ipaddr.ipaddr,
4272                                          buffer, sizeof(buffer)),
4273                                request->proxy->dst_port);
4274
4275                 if (setup_post_proxy_fail(request)) {
4276                         request_queue_or_run(request, coa_no_reply);
4277                 } else {
4278                         request_done(request, FR_ACTION_DONE);
4279                 }
4280                 return;
4281         }
4282
4283         /*
4284          *      RFC 5080 Section 2.2.1
4285          *
4286          *      RT = 2*RTprev + RAND*RTprev
4287          *         = 1.9 * RTprev + rand(0,.2) * RTprev
4288          *         = 1.9 * RTprev + rand(0,1) * (RTprev / 5)
4289          */
4290         delay = fr_rand();
4291         delay ^= (delay >> 16);
4292         delay &= 0xffff;
4293         frac = request->delay / 5;
4294         delay = ((frac >> 16) * delay) + (((frac & 0xffff) * delay) >> 16);
4295
4296         delay += (2 * request->delay) - (request->delay / 10);
4297
4298         /*
4299          *      Cap delay at MRT, if MRT is non-zero.
4300          */
4301         if (request->home_server->coa_mrt &&
4302             (delay > (request->home_server->coa_mrt * USEC))) {
4303                 int mrt_usec = request->home_server->coa_mrt * USEC;
4304
4305                 /*
4306                  *      delay = MRT + RAND * MRT
4307                  *            = 0.9 MRT + rand(0,.2)  * MRT
4308                  */
4309                 delay = fr_rand();
4310                 delay ^= (delay >> 15);
4311                 delay &= 0x1ffff;
4312                 delay = ((mrt_usec >> 16) * delay) + (((mrt_usec & 0xffff) * delay) >> 16);
4313                 delay += mrt_usec - (mrt_usec / 10);
4314         }
4315
4316         request->delay = delay;
4317         when = now;
4318         tv_add(&when, request->delay);
4319         mrd = request->proxy->timestamp;
4320         mrd.tv_sec += request->home_server->coa_mrd;
4321
4322         /*
4323          *      Cap duration at MRD.
4324          */
4325         if (timercmp(&mrd, &when, <)) {
4326                 when = mrd;
4327         }
4328         STATE_MACHINE_TIMER(FR_ACTION_TIMER);
4329
4330         request->num_coa_requests++; /* is NOT reset by code 3 lines above! */
4331
4332         FR_STATS_TYPE_INC(request->home_server->stats.total_requests);
4333
4334         RDEBUG2("Sending duplicate CoA request to home server %s port %d - ID: %d",
4335                 inet_ntop(request->proxy->dst_ipaddr.af,
4336                           &request->proxy->dst_ipaddr.ipaddr,
4337                           buffer, sizeof(buffer)),
4338                 request->proxy->dst_port,
4339                 request->proxy->id);
4340
4341         request->proxy_listener->send(request->proxy_listener,
4342                                       request);
4343 }
4344
4345
4346 /** Wait for a reply after originating a CoA a request.
4347  *
4348  *  Retransmit the proxied packet, or time out and go to
4349  *  coa_no_reply.  Mark the home server unresponsive, etc.
4350  *
4351  *  If we do receive a reply, we transition to coa_running.
4352  *
4353  *  \dot
4354  *      digraph coa_wait_for_reply {
4355  *              coa_wait_for_reply;
4356  *
4357  *              coa_wait_for_reply -> coa_no_reply [ label = "TIMER >= response_window" ];
4358  *              coa_wait_for_reply -> timer [ label = "TIMER < max_request_time" ];
4359  *              coa_wait_for_reply -> coa_running [ label = "PROXY_REPLY" arrowhead = "none"];
4360  *              coa_wait_for_reply -> done [ label = "TIMER >= max_request_time" ];
4361  *      }
4362  *  \enddot
4363  */
4364 static void coa_wait_for_reply(REQUEST *request, int action)
4365 {
4366         VERIFY_REQUEST(request);
4367
4368         TRACE_STATE_MACHINE;
4369         ASSERT_MASTER;
4370         CHECK_FOR_STOP;
4371
4372         if (request->parent) coa_separate(request);
4373
4374         switch (action) {
4375         case FR_ACTION_TIMER:
4376                 if (request_max_time(request)) break;
4377
4378                 coa_retransmit(request);
4379                 break;
4380
4381         case FR_ACTION_PROXY_REPLY:
4382                 request_queue_or_run(request, coa_running);
4383                 break;
4384
4385         default:
4386                 RDEBUG3("%s: Ignoring action %s", __FUNCTION__, action_codes[action]);
4387                 break;
4388         }
4389 }
4390
4391 static void coa_separate(REQUEST *request)
4392 {
4393         VERIFY_REQUEST(request);
4394 #ifdef DEBUG_STATE_MACHINE
4395         int action = FR_ACTION_TIMER;
4396 #endif
4397
4398         TRACE_STATE_MACHINE;
4399         ASSERT_MASTER;
4400
4401         rad_assert(request->parent != NULL);
4402         rad_assert(request->parent->coa == request);
4403         rad_assert(request->ev == NULL);
4404         rad_assert(!request->in_request_hash);
4405         rad_assert(request->coa == NULL);
4406
4407         rad_assert(request->proxy_reply || request->proxy_listener);
4408
4409         (void) talloc_steal(NULL, request);
4410         request->parent->coa = NULL;
4411         request->parent = NULL;
4412
4413         if (we_are_master()) {
4414                 request->delay = 0;
4415                 coa_retransmit(request);
4416         }
4417 }
4418
4419
4420 /** Process a request after the CoA has timed out.
4421  *
4422  *  Run the packet through Post-Proxy-Type Fail
4423  *
4424  *  \dot
4425  *      digraph coa_no_reply {
4426  *              coa_no_reply;
4427  *
4428  *              coa_no_reply -> dup [ label = "DUP", arrowhead = "none" ];
4429  *              coa_no_reply -> timer [ label = "TIMER < max_request_time" ];
4430  *              coa_no_reply -> coa_reply_too_late [ label = "PROXY_REPLY" arrowhead = "none"];
4431  *              coa_no_reply -> process_proxy_reply [ label = "RUN" ];
4432  *              coa_no_reply -> done [ label = "TIMER >= timeout" ];
4433  *      }
4434  *  \enddot
4435  */
4436 static void coa_no_reply(REQUEST *request, int action)
4437 {
4438         char buffer[128];
4439
4440         VERIFY_REQUEST(request);
4441
4442         TRACE_STATE_MACHINE;
4443         CHECK_FOR_STOP;
4444
4445         switch (action) {
4446         case FR_ACTION_TIMER:
4447                 (void) request_max_time(request);
4448                 break;
4449
4450         case FR_ACTION_PROXY_REPLY: /* too late! */
4451                 RDEBUG2("Reply from CoA server %s port %d  - ID: %d arrived too late.",
4452                         inet_ntop(request->proxy->src_ipaddr.af,
4453                                   &request->proxy->src_ipaddr.ipaddr,
4454                                   buffer, sizeof(buffer)),
4455                         request->proxy->dst_port, request->proxy->id);
4456                 break;
4457
4458         case FR_ACTION_RUN:
4459                 if (process_proxy_reply(request, NULL)) {
4460                         request->handle(request);
4461                 }
4462                 request_done(request, FR_ACTION_DONE);
4463                 break;
4464
4465         default:
4466                 RDEBUG3("%s: Ignoring action %s", __FUNCTION__, action_codes[action]);
4467                 break;
4468         }
4469 }
4470
4471
4472 /** Process the request after receiving a coa reply.
4473  *
4474  *  Throught the post-proxy section, and the through the handler
4475  *  function.
4476  *
4477  *  \dot
4478  *      digraph coa_running {
4479  *              coa_running;
4480  *
4481  *              coa_running -> timer [ label = "TIMER < max_request_time" ];
4482  *              coa_running -> process_proxy_reply [ label = "RUN" ];
4483  *              coa_running -> done [ label = "TIMER >= timeout" ];
4484  *      }
4485  *  \enddot
4486  */
4487 static void coa_running(REQUEST *request, int action)
4488 {
4489         VERIFY_REQUEST(request);
4490
4491         TRACE_STATE_MACHINE;
4492         CHECK_FOR_STOP;
4493
4494         switch (action) {
4495         case FR_ACTION_TIMER:
4496                 (void) request_max_time(request);
4497                 break;
4498
4499         case FR_ACTION_RUN:
4500                 if (process_proxy_reply(request, request->proxy_reply)) {
4501                         request->handle(request);
4502                 }
4503                 request_done(request, FR_ACTION_DONE);
4504                 break;
4505
4506         default:
4507                 RDEBUG3("%s: Ignoring action %s", __FUNCTION__, action_codes[action]);
4508                 break;
4509         }
4510 }
4511 #endif  /* WITH_COA */
4512
4513 /***********************************************************************
4514  *
4515  *  End of the State machine.  Start of additional helper code.
4516  *
4517  ***********************************************************************/
4518
4519 /***********************************************************************
4520  *
4521  *      Event handlers.
4522  *
4523  ***********************************************************************/
4524 static void event_socket_handler(fr_event_list_t *xel, UNUSED int fd, void *ctx)
4525 {
4526         rad_listen_t *listener = talloc_get_type_abort(ctx, rad_listen_t);
4527
4528         rad_assert(xel == el);
4529
4530         if ((listener->fd < 0)
4531 #ifdef WITH_DETAIL
4532 #ifndef WITH_DETAIL_THREAD
4533             && (listener->type != RAD_LISTEN_DETAIL)
4534 #endif
4535 #endif
4536                 ) {
4537                 char buffer[256];
4538
4539                 listener->print(listener, buffer, sizeof(buffer));
4540                 ERROR("FATAL: Asked to read from closed socket: %s",
4541                        buffer);
4542
4543                 rad_panic("Socket was closed on us!");
4544                 fr_exit_now(1);
4545         }
4546
4547         listener->recv(listener);
4548 }
4549
4550 #ifdef WITH_DETAIL
4551 #ifdef WITH_DETAIL_THREAD
4552 #else
4553 /*
4554  *      This function is called periodically to see if this detail
4555  *      file is available for reading.
4556  */
4557 static void event_poll_detail(void *ctx)
4558 {
4559         int delay;
4560         rad_listen_t *this = talloc_get_type_abort(ctx, rad_listen_t);
4561         struct timeval when, now;
4562         listen_detail_t *detail = this->data;
4563
4564         rad_assert(this->type == RAD_LISTEN_DETAIL);
4565
4566  redo:
4567         event_socket_handler(el, this->fd, this);
4568
4569         fr_event_now(el, &now);
4570         when = now;
4571
4572         /*
4573          *      Backdoor API to get the delay until the next poll
4574          *      time.
4575          */
4576         delay = this->encode(this, NULL);
4577         if (delay == 0) goto redo;
4578
4579         tv_add(&when, delay);
4580
4581         ASSERT_MASTER;
4582         if (!fr_event_insert(el, event_poll_detail, this,
4583                              &when, &detail->ev)) {
4584                 ERROR("Failed creating handler");
4585                 fr_exit(1);
4586         }
4587 }
4588 #endif  /* WITH_DETAIL_THREAD */
4589 #endif  /* WITH_DETAIL */
4590
4591 static void event_status(struct timeval *wake)
4592 {
4593 #if !defined(HAVE_PTHREAD_H) && defined(WNOHANG)
4594         int argval;
4595 #endif
4596
4597         if (rad_debug_lvl == 0) {
4598                 if (just_started) {
4599                         INFO("Ready to process requests");
4600                         just_started = false;
4601                 }
4602                 return;
4603         }
4604
4605         if (!wake) {
4606                 INFO("Ready to process requests");
4607
4608         } else if ((wake->tv_sec != 0) ||
4609                    (wake->tv_usec >= 100000)) {
4610                 DEBUG("Waking up in %d.%01u seconds.",
4611                       (int) wake->tv_sec, (unsigned int) wake->tv_usec / 100000);
4612         }
4613
4614
4615         /*
4616          *      FIXME: Put this somewhere else, where it isn't called
4617          *      all of the time...
4618          */
4619
4620 #if !defined(HAVE_PTHREAD_H) && defined(WNOHANG)
4621         /*
4622          *      If there are no child threads, then there may
4623          *      be child processes.  In that case, wait for
4624          *      their exit status, and throw that exit status
4625          *      away.  This helps get rid of zxombie children.
4626          */
4627         while (waitpid(-1, &argval, WNOHANG) > 0) {
4628                 /* do nothing */
4629         }
4630 #endif
4631
4632 }
4633
4634 #ifdef WITH_TCP
4635 static void listener_free_cb(void *ctx)
4636 {
4637         rad_listen_t *this = talloc_get_type_abort(ctx, rad_listen_t);
4638         char buffer[1024];
4639
4640         if (this->count > 0) {
4641                 struct timeval when;
4642                 listen_socket_t *sock = this->data;
4643
4644                 fr_event_now(el, &when);
4645                 when.tv_sec += 3;
4646
4647                 ASSERT_MASTER;
4648                 if (!fr_event_insert(el, listener_free_cb, this, &when,
4649                                      &(sock->ev))) {
4650                         rad_panic("Failed to insert event");
4651                 }
4652
4653                 return;
4654         }
4655
4656         /*
4657          *      It's all free, close the socket.
4658          */
4659
4660         this->print(this, buffer, sizeof(buffer));
4661         DEBUG("... cleaning up socket %s", buffer);
4662         rad_assert(this->next == NULL);
4663         talloc_free(this);
4664 }
4665 #endif
4666
4667 #ifdef WITH_PROXY
4668 static int proxy_eol_cb(void *ctx, void *data)
4669 {
4670         struct timeval when;
4671         REQUEST *request = fr_packet2myptr(REQUEST, proxy, data);
4672
4673         if (request->proxy_listener != ctx) return 0;
4674
4675         /*
4676          *      We don't care if it's being processed in a child thread.
4677          */
4678
4679 #ifdef WITH_ACCOUNTING
4680         /*
4681          *      Accounting packets should be deleted immediately.
4682          *      They will never be retransmitted by the client.
4683          */
4684         if (request->proxy->code == PW_CODE_ACCOUNTING_REQUEST) {
4685                 RDEBUG("Stopping request due to failed connection to home server");
4686                 request->master_state = REQUEST_STOP_PROCESSING;
4687         }
4688 #endif
4689
4690         /*
4691          *      Reset the timer to be now, so that the request is
4692          *      quickly updated.  But spread the requests randomly
4693          *      over the next second, so that we don't overload the
4694          *      server.
4695          */
4696         fr_event_now(el, &when);
4697         tv_add(&when, fr_rand() % USEC);
4698         STATE_MACHINE_TIMER(FR_ACTION_TIMER);
4699
4700         /*
4701          *      Don't delete it from the list.
4702          */
4703         return 0;
4704 }
4705 #endif
4706
4707 static int event_new_fd(rad_listen_t *this)
4708 {
4709         char buffer[1024];
4710
4711         ASSERT_MASTER;
4712
4713         if (this->status == RAD_LISTEN_STATUS_KNOWN) return 1;
4714
4715         this->print(this, buffer, sizeof(buffer));
4716
4717         if (this->status == RAD_LISTEN_STATUS_INIT) {
4718                 listen_socket_t *sock = this->data;
4719
4720                 rad_assert(sock != NULL);
4721                 if (just_started) {
4722                         DEBUG("Listening on %s", buffer);
4723                 } else {
4724                         INFO(" ... adding new socket %s", buffer);
4725                 }
4726
4727 #ifdef WITH_PROXY
4728                 if (!just_started && (this->type == RAD_LISTEN_PROXY)) {
4729                         home_server_t *home;
4730                         
4731                         home = sock->home;
4732                         if (!home || !home->limit.max_connections) {
4733                                 INFO(" ... adding new socket %s", buffer);
4734                         } else {
4735                                 INFO(" ... adding new socket %s (%u of %u)", buffer,
4736                                      home->limit.num_connections, home->limit.max_connections);
4737                         }
4738
4739 #endif
4740                 }
4741
4742                 switch (this->type) {
4743 #ifdef WITH_DETAIL
4744                 /*
4745                  *      Detail files are always known, and aren't
4746                  *      put into the socket event loop.
4747                  */
4748                 case RAD_LISTEN_DETAIL:
4749                         this->status = RAD_LISTEN_STATUS_KNOWN;
4750
4751 #ifndef WITH_DETAIL_THREAD
4752                         /*
4753                          *      Set up the first poll interval.
4754                          */
4755                         event_poll_detail(this);
4756                         return 1;
4757 #else
4758                         break;  /* add the FD to the list */
4759 #endif
4760 #endif  /* WITH_DETAIL */
4761
4762 #ifdef WITH_PROXY
4763                 /*
4764                  *      Add it to the list of sockets we can use.
4765                  *      Server sockets (i.e. auth/acct) are never
4766                  *      added to the packet list.
4767                  */
4768                 case RAD_LISTEN_PROXY:
4769 #ifdef WITH_TCP
4770                         rad_assert((sock->proto == IPPROTO_UDP) || (sock->home != NULL));
4771
4772                         /*
4773                          *      Add timers to outgoing child sockets, if necessary.
4774                          */
4775                         if (sock->proto == IPPROTO_TCP && sock->opened &&
4776                             (sock->home->limit.lifetime || sock->home->limit.idle_timeout)) {
4777                                 struct timeval when;
4778
4779                                 when.tv_sec = sock->opened + 1;
4780                                 when.tv_usec = 0;
4781
4782                                 ASSERT_MASTER;
4783                                 if (!fr_event_insert(el, tcp_socket_timer, this, &when,
4784                                                      &(sock->ev))) {
4785                                         rad_panic("Failed to insert event");
4786                                 }
4787                         }
4788 #endif
4789                         break;
4790 #endif  /* WITH_PROXY */
4791
4792                         /*
4793                          *      FIXME: put idle timers on command sockets.
4794                          */
4795
4796                 default:
4797 #ifdef WITH_TCP
4798                         /*
4799                          *      Add timers to incoming child sockets, if necessary.
4800                          */
4801                         if (sock->proto == IPPROTO_TCP && sock->opened &&
4802                             (sock->limit.lifetime || sock->limit.idle_timeout)) {
4803                                 struct timeval when;
4804
4805                                 when.tv_sec = sock->opened + 1;
4806                                 when.tv_usec = 0;
4807
4808                                 ASSERT_MASTER;
4809                                 if (!fr_event_insert(el, tcp_socket_timer, this, &when,
4810                                                      &(sock->ev))) {
4811                                         ERROR("Failed adding timer for socket: %s", fr_strerror());
4812                                         fr_exit(1);
4813                                 }
4814                         }
4815 #endif
4816                         break;
4817                 } /* switch over listener types */
4818
4819                 /*
4820                  *      All sockets: add the FD to the event handler.
4821                  */
4822                 if (!fr_event_fd_insert(el, 0, this->fd,
4823                                         event_socket_handler, this)) {
4824                         ERROR("Failed adding event handler for socket: %s", fr_strerror());
4825                         fr_exit(1);
4826                 }
4827
4828                 this->status = RAD_LISTEN_STATUS_KNOWN;
4829                 return 1;
4830         } /* end of INIT */
4831
4832 #ifdef WITH_TCP
4833         /*
4834          *      The socket has reached a timeout.  Try to close it.
4835          */
4836         if (this->status == RAD_LISTEN_STATUS_FROZEN) {
4837                 /*
4838                  *      Requests are still using the socket.  Wait for
4839                  *      them to finish.
4840                  */
4841                 if (this->count > 0) {
4842                         struct timeval when;
4843                         listen_socket_t *sock = this->data;
4844
4845                         /*
4846                          *      Try again to clean up the socket in 30
4847                          *      seconds.
4848                          */
4849                         gettimeofday(&when, NULL);
4850                         when.tv_sec += 30;
4851
4852                         ASSERT_MASTER;
4853                         if (!fr_event_insert(el,
4854                                              (fr_event_callback_t) event_new_fd,
4855                                              this, &when, &sock->ev)) {
4856                                 rad_panic("Failed to insert event");
4857                         }
4858
4859                         return 1;
4860                 }
4861
4862                 fr_event_fd_delete(el, 0, this->fd);
4863                 this->status = RAD_LISTEN_STATUS_REMOVE_NOW;
4864         }
4865
4866         /*
4867          *      The socket has had a catastrophic error.  Close it.
4868          */
4869         if (this->status == RAD_LISTEN_STATUS_EOL) {
4870                 /*
4871                  *      Remove it from the list of live FD's.
4872                  */
4873                 fr_event_fd_delete(el, 0, this->fd);
4874
4875 #ifdef WITH_PROXY
4876                 /*
4877                  *      Tell all requests using this socket that the socket is dead.
4878                  */
4879                 if (this->type == RAD_LISTEN_PROXY) {
4880                         PTHREAD_MUTEX_LOCK(&proxy_mutex);
4881                         if (!fr_packet_list_socket_freeze(proxy_list,
4882                                                           this->fd)) {
4883                                 ERROR("Fatal error freezing socket: %s", fr_strerror());
4884                                 fr_exit(1);
4885                         }
4886
4887                         if (this->count > 0) {
4888                                 fr_packet_list_walk(proxy_list, this, proxy_eol_cb);
4889                         }
4890                         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
4891                 }
4892 #endif
4893
4894                 /*
4895                  *      Requests are still using the socket.  Wait for
4896                  *      them to finish.
4897                  */
4898                 if (this->count > 0) {
4899                         struct timeval when;
4900                         listen_socket_t *sock = this->data;
4901
4902                         /*
4903                          *      Try again to clean up the socket in 30
4904                          *      seconds.
4905                          */
4906                         gettimeofday(&when, NULL);
4907                         when.tv_sec += 30;
4908
4909                         ASSERT_MASTER;
4910                         if (!fr_event_insert(el,
4911                                              (fr_event_callback_t) event_new_fd,
4912                                              this, &when, &sock->ev)) {
4913                                 rad_panic("Failed to insert event");
4914                         }
4915
4916                         return 1;
4917                 }
4918
4919                 /*
4920                  *      No one is using the socket.  We can remove it now.
4921                  */
4922                 this->status = RAD_LISTEN_STATUS_REMOVE_NOW;
4923         } /* socket is at EOL */
4924 #endif
4925
4926         /*
4927          *      Nuke the socket.
4928          */
4929         if (this->status == RAD_LISTEN_STATUS_REMOVE_NOW) {
4930                 int devnull;
4931 #ifdef WITH_TCP
4932                 listen_socket_t *sock = this->data;
4933 #endif
4934                 struct timeval when;
4935
4936                 /*
4937                  *      Re-open the socket, pointing it to /dev/null.
4938                  *      This means that all writes proceed without
4939                  *      blocking, and all reads return "no data".
4940                  *
4941                  *      This leaves the socket active, so any child
4942                  *      threads won't go insane.  But it means that
4943                  *      they cannot send or receive any packets.
4944                  *
4945                  *      This is EXTRA work in the normal case, when
4946                  *      sockets are closed without error.  But it lets
4947                  *      us have one simple processing method for all
4948                  *      sockets.
4949                  */
4950                 devnull = open("/dev/null", O_RDWR);
4951                 if (devnull < 0) {
4952                         ERROR("FATAL failure opening /dev/null: %s",
4953                                fr_syserror(errno));
4954                         fr_exit(1);
4955                 }
4956                 if (dup2(devnull, this->fd) < 0) {
4957                         ERROR("FATAL failure closing socket: %s",
4958                                fr_syserror(errno));
4959                         fr_exit(1);
4960                 }
4961                 close(devnull);
4962
4963 #ifdef WITH_DETAIL
4964                 rad_assert(this->type != RAD_LISTEN_DETAIL);
4965 #endif
4966
4967 #ifdef WITH_TCP
4968 #ifdef WITH_PROXY
4969                 /*
4970                  *      The socket is dead.  Force all proxied packets
4971                  *      to stop using it.  And then remove it from the
4972                  *      list of outgoing sockets.
4973                  */
4974                 if (this->type == RAD_LISTEN_PROXY) {
4975                         home_server_t *home;
4976
4977                         home = sock->home;
4978                         if (!home || !home->limit.max_connections) {
4979                                 INFO(" ... shutting down socket %s", buffer);
4980                         } else {
4981                                 INFO(" ... shutting down socket %s (%u of %u)", buffer,
4982                                      home->limit.num_connections, home->limit.max_connections);
4983                         }
4984
4985                         PTHREAD_MUTEX_LOCK(&proxy_mutex);
4986                         fr_packet_list_walk(proxy_list, this, eol_proxy_listener);
4987
4988                         if (!fr_packet_list_socket_del(proxy_list, this->fd)) {
4989                                 ERROR("Fatal error removing socket %s: %s",
4990                                       buffer, fr_strerror());
4991                                 fr_exit(1);
4992                         }
4993                         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
4994                 } else
4995 #endif
4996                 {
4997                         INFO(" ... shutting down socket %s", buffer);
4998
4999                         /*
5000                          *      EOL all requests using this socket.
5001                          */
5002                         rbtree_walk(pl, RBTREE_DELETE_ORDER, eol_listener, this);
5003                 }
5004
5005                 /*
5006                  *      No child threads, clean it up now.
5007                  */
5008                 if (!spawn_flag) {
5009                         ASSERT_MASTER;
5010                         if (sock->ev) fr_event_delete(el, &sock->ev);
5011                         listen_free(&this);
5012                         return 1;
5013                 }
5014
5015                 /*
5016                  *      Wait until all requests using this socket are done.
5017                  */
5018                 gettimeofday(&when, NULL);
5019                 when.tv_sec += 3;
5020
5021                 ASSERT_MASTER;
5022                 if (!fr_event_insert(el, listener_free_cb, this, &when,
5023                                      &(sock->ev))) {
5024                         rad_panic("Failed to insert event");
5025                 }
5026         }
5027 #endif  /* WITH_TCP */
5028
5029         return 1;
5030 }
5031
5032 /***********************************************************************
5033  *
5034  *      Signal handlers.
5035  *
5036  ***********************************************************************/
5037
5038 static void handle_signal_self(int flag)
5039 {
5040         ASSERT_MASTER;
5041
5042         if ((flag & (RADIUS_SIGNAL_SELF_EXIT | RADIUS_SIGNAL_SELF_TERM)) != 0) {
5043                 if ((flag & RADIUS_SIGNAL_SELF_EXIT) != 0) {
5044                         INFO("Signalled to exit");
5045                         fr_event_loop_exit(el, 1);
5046                 } else {
5047                         INFO("Signalled to terminate");
5048                         fr_event_loop_exit(el, 2);
5049                 }
5050
5051                 return;
5052         } /* else exit/term flags weren't set */
5053
5054         /*
5055          *      Tell the even loop to stop processing.
5056          */
5057         if ((flag & RADIUS_SIGNAL_SELF_HUP) != 0) {
5058                 time_t when;
5059                 static time_t last_hup = 0;
5060
5061                 when = time(NULL);
5062                 if ((int) (when - last_hup) < 5) {
5063                         INFO("Ignoring HUP (less than 5s since last one)");
5064                         return;
5065                 }
5066
5067                 INFO("Received HUP signal");
5068
5069                 last_hup = when;
5070
5071                 exec_trigger(NULL, NULL, "server.signal.hup", true);
5072                 fr_event_loop_exit(el, 0x80);
5073         }
5074
5075 #if defined(WITH_DETAIL) && !defined(WITH_DETAIL_THREAD)
5076         if ((flag & RADIUS_SIGNAL_SELF_DETAIL) != 0) {
5077                 rad_listen_t *this;
5078
5079                 /*
5080                  *      FIXME: O(N) loops suck.
5081                  */
5082                 for (this = main_config.listen;
5083                      this != NULL;
5084                      this = this->next) {
5085                         if (this->type != RAD_LISTEN_DETAIL) continue;
5086
5087                         /*
5088                          *      This one didn't send the signal, skip
5089                          *      it.
5090                          */
5091                         if (!this->decode(this, NULL)) continue;
5092
5093                         /*
5094                          *      Go service the interrupt.
5095                          */
5096                         event_poll_detail(this);
5097                 }
5098         }
5099 #endif
5100
5101 #if defined(WITH_TCP) && defined(WITH_PROXY) && defined(HAVE_PTHREAD_H)
5102         /*
5103          *      There are new listeners in the list.  Run
5104          *      event_new_fd() on them.
5105          */
5106         if ((flag & RADIUS_SIGNAL_SELF_NEW_FD) != 0) {
5107                 rad_listen_t *this, *next;
5108
5109                 FD_MUTEX_LOCK(&fd_mutex);
5110
5111                 /*
5112                  *      FIXME: unlock the mutex before calling
5113                  *      event_new_fd()?
5114                  */
5115                 for (this = new_listeners; this != NULL; this = next) {
5116                         next = this->next;
5117                         this->next = NULL;
5118
5119                         event_new_fd(this);
5120                 }
5121
5122                 new_listeners = NULL;
5123                 FD_MUTEX_UNLOCK(&fd_mutex);
5124         }
5125 #endif
5126 }
5127
5128 #ifndef HAVE_PTHREAD_H
5129 void radius_signal_self(int flag)
5130 {
5131         return handle_signal_self(flag);
5132 }
5133
5134 #else
5135 static int self_pipe[2] = { -1, -1 };
5136
5137 /*
5138  *      Inform ourselves that we received a signal.
5139  */
5140 void radius_signal_self(int flag)
5141 {
5142         ssize_t rcode;
5143         uint8_t buffer[16];
5144
5145         /*
5146          *      The read MUST be non-blocking for this to work.
5147          */
5148         rcode = read(self_pipe[0], buffer, sizeof(buffer));
5149         if (rcode > 0) {
5150                 ssize_t i;
5151
5152                 for (i = 0; i < rcode; i++) {
5153                         buffer[0] |= buffer[i];
5154                 }
5155         } else {
5156                 buffer[0] = 0;
5157         }
5158
5159         buffer[0] |= flag;
5160
5161         if (write(self_pipe[1], buffer, 1) < 0) fr_exit(0);
5162 }
5163
5164
5165 static void event_signal_handler(UNUSED fr_event_list_t *xel,
5166                                  UNUSED int fd, UNUSED void *ctx)
5167 {
5168         ssize_t i, rcode;
5169         uint8_t buffer[32];
5170
5171         rcode = read(self_pipe[0], buffer, sizeof(buffer));
5172         if (rcode <= 0) return;
5173
5174         /*
5175          *      Merge pending signals.
5176          */
5177         for (i = 0; i < rcode; i++) {
5178                 buffer[0] |= buffer[i];
5179         }
5180
5181         handle_signal_self(buffer[0]);
5182 }
5183 #endif  /* HAVE_PTHREAD_H */
5184
5185 /***********************************************************************
5186  *
5187  *      Bootstrapping code.
5188  *
5189  ***********************************************************************/
5190
5191 /*
5192  *      Externally-visibly functions.
5193  */
5194 int radius_event_init(TALLOC_CTX *ctx) {
5195         el = fr_event_list_create(ctx, event_status);
5196         if (!el) return 0;
5197
5198         return 1;
5199 }
5200
5201 static int packet_entry_cmp(void const *one, void const *two)
5202 {
5203         RADIUS_PACKET const * const *a = one;
5204         RADIUS_PACKET const * const *b = two;
5205
5206         return fr_packet_cmp(*a, *b);
5207 }
5208
5209 #ifdef WITH_PROXY
5210 /*
5211  *      They haven't defined a proxy listener.  Automatically
5212  *      add one for them, with the correct address family.
5213  */
5214 static void create_default_proxy_listener(int af)
5215 {
5216         uint16_t        port = 0;
5217         home_server_t   home;
5218         listen_socket_t *sock;
5219         rad_listen_t    *this;
5220
5221         memset(&home, 0, sizeof(home));
5222
5223         /*
5224          *      Open a default UDP port
5225          */
5226         home.proto = IPPROTO_UDP;
5227         port = 0;
5228
5229         /*
5230          *      Set the address family.
5231          */
5232         home.src_ipaddr.af = af;
5233         home.ipaddr.af = af;
5234
5235         /*
5236          *      Get the correct listener.
5237          */
5238         this = proxy_new_listener(proxy_ctx, &home, port);
5239         if (!this) {
5240                 fr_exit_now(1);
5241         }
5242
5243         sock = this->data;
5244         if (!fr_packet_list_socket_add(proxy_list, this->fd,
5245                                        sock->proto,
5246                                        &sock->other_ipaddr, sock->other_port,
5247                                        this)) {
5248                 ERROR("Failed adding proxy socket");
5249                 fr_exit_now(1);
5250         }
5251
5252         /*
5253          *      Insert the FD into list of FDs to listen on.
5254          */
5255         radius_update_listener(this);
5256 }
5257
5258 /*
5259  *      See if we automatically need to open a proxy socket.
5260  */
5261 static void check_proxy(rad_listen_t *head)
5262 {
5263         bool            defined_proxy;
5264         bool            has_v4, has_v6;
5265         rad_listen_t    *this;
5266
5267         if (check_config) return;
5268         if (!main_config.proxy_requests) return;
5269         if (!head) return;
5270         if (!home_servers_udp) return;
5271
5272         /*
5273          *      We passed "-i" on the command line.  Use that address
5274          *      family for the proxy socket.
5275          */
5276         if (main_config.myip.af != AF_UNSPEC) {
5277                 create_default_proxy_listener(main_config.myip.af);
5278                 return;
5279         }
5280
5281         defined_proxy = has_v4 = has_v6 = false;
5282
5283         /*
5284          *      Figure out if we need to open a proxy socket, and if
5285          *      so, which one.
5286          */
5287         for (this = head; this != NULL; this = this->next) {
5288                 listen_socket_t *sock;
5289
5290                 switch (this->type) {
5291                 case RAD_LISTEN_PROXY:
5292                         defined_proxy = true;
5293                         break;
5294
5295                 case RAD_LISTEN_AUTH:
5296 #ifdef WITH_ACCT
5297                 case RAD_LISTEN_ACCT:
5298 #endif
5299 #ifdef WITH_COA
5300                 case RAD_LISTEN_COA:
5301 #endif
5302                         sock = this->data;
5303                         if (sock->my_ipaddr.af == AF_INET) has_v4 = true;
5304                         if (sock->my_ipaddr.af == AF_INET6) has_v6 = true;
5305                         break;
5306                         
5307                 default:
5308                         break;
5309                 }
5310         }
5311
5312         /*
5313          *      Assume they know what they're doing.
5314          */
5315         if (defined_proxy) return;
5316
5317         if (has_v4) create_default_proxy_listener(AF_INET);
5318
5319         if (has_v6) create_default_proxy_listener(AF_INET6);
5320 }
5321 #endif
5322
5323 int radius_event_start(CONF_SECTION *cs, bool have_children)
5324 {
5325         rad_listen_t *head = NULL;
5326
5327         if (fr_start_time != (time_t)-1) return 0;
5328
5329         time(&fr_start_time);
5330
5331         if (!check_config) {
5332                 /*
5333                  *  radius_event_init() must be called first
5334                  */
5335                 rad_assert(el);
5336
5337                 pl = rbtree_create(NULL, packet_entry_cmp, NULL, 0);
5338                 if (!pl) return 0;      /* leak el */
5339         }
5340
5341         request_num_counter = 0;
5342
5343 #ifdef WITH_PROXY
5344         if (main_config.proxy_requests && !check_config) {
5345                 /*
5346                  *      Create the tree for managing proxied requests and
5347                  *      responses.
5348                  */
5349                 proxy_list = fr_packet_list_create(1);
5350                 if (!proxy_list) return 0;
5351
5352 #ifdef HAVE_PTHREAD_H
5353                 if (pthread_mutex_init(&proxy_mutex, NULL) != 0) {
5354                         ERROR("FATAL: Failed to initialize proxy mutex: %s",
5355                                fr_syserror(errno));
5356                         fr_exit(1);
5357                 }
5358 #endif
5359
5360                 /*
5361                  *      The "init_delay" is set to "response_window".
5362                  *      Reset it to half of "response_window" in order
5363                  *      to give the event loop enough time to service
5364                  *      the event before hitting "response_window".
5365                  */
5366                 main_config.init_delay.tv_usec += (main_config.init_delay.tv_sec & 0x01) * USEC;
5367                 main_config.init_delay.tv_usec >>= 1;
5368                 main_config.init_delay.tv_sec >>= 1;
5369
5370                 proxy_ctx = talloc_init("proxy");
5371         }
5372 #endif
5373
5374         /*
5375          *      Move all of the thread calls to this file?
5376          *
5377          *      It may be best for the mutexes to be in this file...
5378          */
5379         spawn_flag = have_children;
5380
5381 #ifdef HAVE_PTHREAD_H
5382         NO_SUCH_CHILD_PID = pthread_self(); /* not a child thread */
5383
5384         /*
5385          *      Initialize the threads ONLY if we're spawning, AND
5386          *      we're running normally.
5387          */
5388         if (have_children && !check_config &&
5389             (thread_pool_init(cs, &spawn_flag) < 0)) {
5390                 fr_exit(1);
5391         }
5392 #endif
5393
5394         if (check_config) {
5395                 DEBUG("%s: #### Skipping IP addresses and Ports ####",
5396                        main_config.name);
5397                 if (listen_init(cs, &head, spawn_flag) < 0) {
5398                         fflush(NULL);
5399                         fr_exit(1);
5400                 }
5401                 return 1;
5402         }
5403
5404 #ifdef HAVE_PTHREAD_H
5405         /*
5406          *      Child threads need a pipe to signal us, as do the
5407          *      signal handlers.
5408          */
5409         if (pipe(self_pipe) < 0) {
5410                 ERROR("Error opening internal pipe: %s", fr_syserror(errno));
5411                 fr_exit(1);
5412         }
5413         if ((fcntl(self_pipe[0], F_SETFL, O_NONBLOCK) < 0) ||
5414             (fcntl(self_pipe[0], F_SETFD, FD_CLOEXEC) < 0)) {
5415                 ERROR("Error setting internal flags: %s", fr_syserror(errno));
5416                 fr_exit(1);
5417         }
5418         if ((fcntl(self_pipe[1], F_SETFL, O_NONBLOCK) < 0) ||
5419             (fcntl(self_pipe[1], F_SETFD, FD_CLOEXEC) < 0)) {
5420                 ERROR("Error setting internal flags: %s", fr_syserror(errno));
5421                 fr_exit(1);
5422         }
5423         DEBUG4("Created signal pipe.  Read end FD %i, write end FD %i", self_pipe[0], self_pipe[1]);
5424
5425         if (!fr_event_fd_insert(el, 0, self_pipe[0], event_signal_handler, el)) {
5426                 ERROR("Failed creating signal pipe handler: %s", fr_strerror());
5427                 fr_exit(1);
5428         }
5429 #endif
5430
5431         DEBUG("%s: #### Opening IP addresses and Ports ####", main_config.name);
5432
5433         /*
5434          *      The server temporarily switches to an unprivileged
5435          *      user very early in the bootstrapping process.
5436          *      However, some sockets MAY require privileged access
5437          *      (bind to device, or to port < 1024, or to raw
5438          *      sockets).  Those sockets need to call suid up/down
5439          *      themselves around the functions that need a privileged
5440          *      uid.
5441          */
5442         if (listen_init(cs, &head, spawn_flag) < 0) {
5443                 fr_exit_now(1);
5444         }
5445
5446         main_config.listen = head;
5447
5448 #ifdef WITH_PROXY
5449         check_proxy(head);
5450 #endif
5451
5452         /*
5453          *      At this point, no one has any business *ever* going
5454          *      back to root uid.
5455          */
5456         rad_suid_down_permanent();
5457
5458         return 1;
5459 }
5460
5461
5462 #ifdef WITH_PROXY
5463 static int proxy_delete_cb(UNUSED void *ctx, void *data)
5464 {
5465         REQUEST *request = fr_packet2myptr(REQUEST, proxy, data);
5466
5467         VERIFY_REQUEST(request);
5468
5469         request->master_state = REQUEST_STOP_PROCESSING;
5470
5471 #ifdef HAVE_PTHREAD_H
5472         if (pthread_equal(request->child_pid, NO_SUCH_CHILD_PID) == 0) return 0;
5473 #endif
5474
5475         /*
5476          *      If it's queued we can't delete it from the queue.
5477          *
5478          *      Otherwise, it's OK to delete it.  Even RUNNING, because
5479          *      that will get caught by the check above.
5480          */
5481         if (request->child_state == REQUEST_QUEUED) return 0;
5482
5483         request->in_proxy_hash = false;
5484
5485         if (!request->in_request_hash) {
5486                 request_done(request, FR_ACTION_DONE);
5487         }
5488
5489         /*
5490          *      Delete it from the list.
5491          */
5492         return 2;
5493 }
5494 #endif
5495
5496
5497 static int request_delete_cb(UNUSED void *ctx, void *data)
5498 {
5499         REQUEST *request = fr_packet2myptr(REQUEST, packet, data);
5500
5501         VERIFY_REQUEST(request);
5502
5503         request->master_state = REQUEST_STOP_PROCESSING;
5504
5505         /*
5506          *      Not done, or the child thread is still processing it.
5507          */
5508         if (request->child_state < REQUEST_RESPONSE_DELAY) return 0; /* continue */
5509
5510 #ifdef HAVE_PTHREAD_H
5511         if (pthread_equal(request->child_pid, NO_SUCH_CHILD_PID) == 0) return 0;
5512 #endif
5513
5514 #ifdef WITH_PROXY
5515         rad_assert(request->in_proxy_hash == false);
5516 #endif
5517
5518         request->in_request_hash = false;
5519         ASSERT_MASTER;
5520         if (request->ev) fr_event_delete(el, &request->ev);
5521
5522         if (main_config.memory_report) {
5523                 RDEBUG2("Cleaning up request packet ID %u with timestamp +%d",
5524                         request->packet->id,
5525                         (unsigned int) (request->timestamp - fr_start_time));
5526         }
5527
5528 #ifdef WITH_COA
5529         if (request->coa) {
5530                 rad_assert(!request->coa->in_proxy_hash);
5531         }
5532 #endif
5533
5534         request_free(request);
5535
5536         /*
5537          *      Delete it from the list, and continue;
5538          */
5539         return 2;
5540 }
5541
5542
5543 void radius_event_free(void)
5544 {
5545         ASSERT_MASTER;
5546
5547 #ifdef WITH_PROXY
5548         /*
5549          *      There are requests in the proxy hash that aren't
5550          *      referenced from anywhere else.  Remove them first.
5551          */
5552         if (proxy_list) {
5553                 fr_packet_list_walk(proxy_list, NULL, proxy_delete_cb);
5554         }
5555 #endif
5556
5557         rbtree_walk(pl, RBTREE_DELETE_ORDER,  request_delete_cb, NULL);
5558
5559         if (spawn_flag) {
5560                 /*
5561                  *      Now that all requests have been marked "please stop",
5562                  *      ensure that all of the threads have exited.
5563                  */
5564 #ifdef HAVE_PTHREAD_H
5565                 thread_pool_stop();
5566 #endif
5567
5568                 /*
5569                  *      Walk the lists again, ensuring that all
5570                  *      requests are done.
5571                  */
5572                 if (main_config.memory_report) {
5573                         int num;
5574
5575 #ifdef WITH_PROXY
5576                         if (proxy_list) {
5577                                 fr_packet_list_walk(proxy_list, NULL, proxy_delete_cb);
5578                                 num = fr_packet_list_num_elements(proxy_list);
5579                                 if (num > 0) {
5580                                         ERROR("Proxy list has %d requests still in it.", num);
5581                                 }
5582                         }
5583 #endif
5584
5585                         rbtree_walk(pl, RBTREE_DELETE_ORDER, request_delete_cb, NULL);
5586                         num = rbtree_num_elements(pl);
5587                         if (num > 0) {
5588                                 ERROR("Request list has %d requests still in it.", num);
5589                         }
5590                 }
5591         }
5592
5593         rbtree_free(pl);
5594         pl = NULL;
5595
5596 #ifdef WITH_PROXY
5597         fr_packet_list_free(proxy_list);
5598         proxy_list = NULL;
5599
5600         if (proxy_ctx) talloc_free(proxy_ctx);
5601 #endif
5602
5603         TALLOC_FREE(el);
5604
5605         if (debug_condition) talloc_free(debug_condition);
5606 }
5607
5608 int radius_event_process(void)
5609 {
5610         if (!el) return 0;
5611
5612         return fr_event_loop(el);
5613 }