Make request->number unsigned
[freeradius.git] / src / main / event.c
1 /*
2  * event.c      Server event handling
3  *
4  * Version:     $Id$
5  *
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation; either version 2 of the License, or
9  *   (at your option) any later version.
10  *
11  *   This program is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with this program; if not, write to the Free Software
18  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  *
20  * Copyright 2007  The FreeRADIUS server project
21  * Copyright 2007  Alan DeKok <aland@deployingradius.com>
22  */
23
24 #include <freeradius-devel/ident.h>
25 RCSID("$Id$")
26
27 #include <freeradius-devel/radiusd.h>
28 #include <freeradius-devel/modules.h>
29 #include <freeradius-devel/event.h>
30 #include <freeradius-devel/detail.h>
31
32 #include <freeradius-devel/rad_assert.h>
33
34 #include <signal.h>
35 #include <fcntl.h>
36
37 #ifdef HAVE_SYS_WAIT_H
38 #       include <sys/wait.h>
39 #endif
40
41 #define USEC (1000000)
42
43 extern pid_t radius_pid;
44 extern int dont_fork;
45 extern int check_config;
46 extern char *debug_condition;
47
48 /*
49  *      Ridiculous amounts of local state.
50  */
51 static fr_event_list_t  *el = NULL;
52 static fr_packet_list_t *pl = NULL;
53 static int                      request_num_counter = 0;
54 static struct timeval           now;
55 time_t                          fr_start_time;
56 static int                      have_children;
57 static int                      just_started = TRUE;
58
59 #ifndef __MINGW32__
60 static int self_pipe[2];
61 #endif
62
63 #ifdef HAVE_PTHREAD_H
64 #ifdef WITH_PROXY
65 static pthread_mutex_t  proxy_mutex;
66 static rad_listen_t *proxy_listener_list = NULL;
67 static int proxy_no_new_sockets = FALSE;
68 #endif
69
70 #define PTHREAD_MUTEX_LOCK if (have_children) pthread_mutex_lock
71 #define PTHREAD_MUTEX_UNLOCK if (have_children) pthread_mutex_unlock
72
73 static pthread_t NO_SUCH_CHILD_PID;
74 #else
75 /*
76  *      This is easier than ifdef's throughout the code.
77  */
78 #define PTHREAD_MUTEX_LOCK(_x)
79 #define PTHREAD_MUTEX_UNLOCK(_x)
80 int thread_pool_addrequest(REQUEST *request, RAD_REQUEST_FUNP fun)
81 {
82         request->process = fun;
83         radius_handle_request(request, fun);
84         return 1;
85 }
86 #endif
87
88 /*
89  *      We need mutexes around the event FD list *only* in certain
90  *      cases.
91  */
92 #if defined (HAVE_PTHREAD_H) && (defined(WITH_PROXY) || defined(WITH_TCP))
93 static pthread_mutex_t  fd_mutex;
94 #define FD_MUTEX_LOCK if (have_children) pthread_mutex_lock
95 #define FD_MUTEX_UNLOCK if (have_children) pthread_mutex_unlock
96 #else
97 /*
98  *      This is easier than ifdef's throughout the code.
99  */
100 #define FD_MUTEX_LOCK(_x)
101 #define FD_MUTEX_UNLOCK(_x)
102 #endif
103
104
105 #define INSERT_EVENT(_function, _ctx) if (!fr_event_insert(el, _function, _ctx, &((_ctx)->when), &((_ctx)->ev))) { _rad_panic(__FILE__, __LINE__, "Failed to insert event"); }
106
107 #ifdef WITH_PROXY
108 static fr_packet_list_t *proxy_list = NULL;
109 static void remove_from_proxy_hash(REQUEST *request);
110
111 static void check_for_zombie_home_server(REQUEST *request);
112 #else
113 #define remove_from_proxy_hash(foo)
114 #endif
115
116 static void request_post_handler(REQUEST *request);
117 static void wait_a_bit(void *ctx);
118 static void event_socket_handler(fr_event_list_t *xel, UNUSED int fd, void *ctx);
119 #ifdef WITH_DETAIL
120 static void event_poll_detail(void *ctx);
121 #endif
122
123 static void NEVER_RETURNS _rad_panic(const char *file, unsigned int line,
124                                     const char *msg)
125 {
126         radlog(L_ERR, "[%s:%d] %s", file, line, msg);
127         _exit(1);
128 }
129
130 #define rad_panic(x) _rad_panic(__FILE__, __LINE__, x)
131
132
133 static void tv_add(struct timeval *tv, int usec_delay)
134 {
135         if (usec_delay > USEC) {
136                 tv->tv_sec += usec_delay / USEC;
137                 usec_delay %= USEC;
138         }
139         tv->tv_usec += usec_delay;
140
141         if (tv->tv_usec > USEC) {
142                 tv->tv_sec += tv->tv_usec / USEC;
143                 tv->tv_usec %= USEC;
144         }
145 }
146
147 static void remove_from_request_hash(REQUEST *request)
148 {
149         if (!request->in_request_hash) return;
150
151         fr_packet_list_yank(pl, request->packet);
152         request->in_request_hash = FALSE;
153
154         request_stats_final(request);
155
156 #ifdef WITH_TCP
157         request->listener->count--;
158 #endif
159 }
160
161 #ifdef WITH_PROXY
162 static REQUEST *lookup_in_proxy_hash(RADIUS_PACKET *reply)
163 {
164         int done = FALSE;
165         RADIUS_PACKET **proxy_p;
166         REQUEST *request;
167
168         PTHREAD_MUTEX_LOCK(&proxy_mutex);
169         proxy_p = fr_packet_list_find_byreply(proxy_list, reply);
170
171         if (!proxy_p) {
172                 PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
173                 return NULL;
174         }
175
176         request = fr_packet2myptr(REQUEST, proxy, proxy_p);
177         request->num_proxied_responses++; /* needs to be protected by lock */
178
179         done = (request->num_proxied_requests == request->num_proxied_responses);
180         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
181
182
183         /*
184          *      Catch the most common case of everything working
185          *      correctly.
186          */
187         if (done) remove_from_proxy_hash(request);
188
189         return request;
190 }
191
192
193 static void remove_from_proxy_hash(REQUEST *request)
194 {
195         /*
196          *      Check this without grabbing the mutex because it's a
197          *      lot faster that way.
198          */
199         if (!request->in_proxy_hash) return;
200
201         /*
202          *      The "not in hash" flag is definitive.  However, if the
203          *      flag says that it IS in the hash, there might still be
204          *      a race condition where it isn't.
205          */
206         PTHREAD_MUTEX_LOCK(&proxy_mutex);
207
208         if (!request->in_proxy_hash) {
209                 PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
210                 return;
211         }
212
213         fr_packet_list_yank(proxy_list, request->proxy);
214         fr_packet_list_id_free(proxy_list, request->proxy);
215
216         /*
217          *      On the FIRST reply, decrement the count of outstanding
218          *      requests.  Note that this is NOT the count of sent
219          *      packets, but whether or not the home server has
220          *      responded at all.
221          */
222         if (!request->proxy_reply &&
223             request->home_server &&
224             request->home_server->currently_outstanding) {
225                 request->home_server->currently_outstanding--;
226         }
227
228 #ifdef WITH_TCP
229         request->proxy_listener->count--;
230         request->proxy_listener = NULL;
231 #endif
232
233         /*
234          *      Got from YES in hash, to NO, not in hash while we hold
235          *      the mutex.  This guarantees that when another thread
236          *      grabs the mutex, the "not in hash" flag is correct.
237          */
238         request->in_proxy_hash = FALSE;
239
240         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
241 }
242 #endif  /* WITH_PROXY */
243
244 static void ev_request_free(REQUEST **prequest)
245 {
246         REQUEST *request;
247         
248         if (!prequest || !*prequest) return;
249
250         request = *prequest;
251
252 #ifdef WITH_COA
253         if (request->coa) {
254                 /*
255                  *      Divorce the child from the parent first,
256                  *      then clean up the child.
257                  */
258                 request->coa->parent = NULL;
259                 ev_request_free(&request->coa);
260         }
261
262         /*
263          *      Divorce the parent from the child, and leave the
264          *      parent still alive.
265          */
266         if (request->parent && (request->parent->coa == request)) {
267                 request->parent->coa = NULL;
268         }
269 #endif
270
271         if (request->ev) fr_event_delete(el, &request->ev);
272 #ifdef WITH_PROXY
273         if (request->in_proxy_hash) remove_from_proxy_hash(request);
274 #endif
275         if (request->in_request_hash) remove_from_request_hash(request);
276
277         request_free(prequest);
278 }
279
280 #ifdef WITH_TCP
281 static int remove_all_requests(void *ctx, void *data)
282 {
283         rad_listen_t *this = ctx;
284         RADIUS_PACKET **packet_p = data;
285         REQUEST *request;
286         
287         request = fr_packet2myptr(REQUEST, packet, packet_p);
288         if (request->packet->sockfd != this->fd) return 0;
289
290         switch (request->child_state) {
291         case REQUEST_RUNNING:
292                 rad_assert(request->ev != NULL); /* or it's lost forever */
293         case REQUEST_QUEUED:
294                 request->master_state = REQUEST_STOP_PROCESSING;
295                 return 0;
296
297                 /*
298                  *      Waiting for a reply.  There's no point in
299                  *      doing anything else.  We remove it from the
300                  *      request hash so that we can close the upstream
301                  *      socket.
302                  */
303         case REQUEST_PROXIED:
304                 remove_from_request_hash(request);
305                 request->child_state = REQUEST_DONE;
306                 return 0;
307
308         case REQUEST_REJECT_DELAY:
309         case REQUEST_CLEANUP_DELAY:
310         case REQUEST_DONE:
311                 ev_request_free(&request);
312                 break;
313         }
314
315         return 0;
316 }
317
318 #ifdef WITH_PROXY
319 static int remove_all_proxied_requests(void *ctx, void *data)
320 {
321         rad_listen_t *this = ctx;
322         RADIUS_PACKET **proxy_p = data;
323         REQUEST *request;
324         
325         request = fr_packet2myptr(REQUEST, proxy, proxy_p);
326         if (request->proxy->sockfd != this->fd) return 0;
327
328         switch (request->child_state) {
329         case REQUEST_RUNNING:
330                 rad_assert(request->ev != NULL); /* or it's lost forever */
331         case REQUEST_QUEUED:
332                 request->master_state = REQUEST_STOP_PROCESSING;
333                 return 0;
334
335                 /*
336                  *      Eventually we will discover that there is no
337                  *      response to the proxied request.
338                  */
339         case REQUEST_PROXIED:
340                 break;
341
342                 /*
343                  *      Keep it in the cache for duplicate detection.
344                  */
345         case REQUEST_REJECT_DELAY:
346         case REQUEST_CLEANUP_DELAY:
347         case REQUEST_DONE:
348                 break;
349         }
350
351         remove_from_proxy_hash(request);
352         return 0;
353 }
354 #endif  /* WITH_PROXY */
355 #endif  /* WITH_TCP */
356
357
358 #ifdef WITH_PROXY
359 static int insert_into_proxy_hash(REQUEST *request)
360 {
361         char buf[128];
362         int rcode, tries;
363         void *proxy_listener;
364
365         rad_assert(request->proxy != NULL);
366         rad_assert(proxy_list != NULL);
367
368         tries = 1;
369 retry:
370         PTHREAD_MUTEX_LOCK(&proxy_mutex);
371         rcode = fr_packet_list_id_alloc(proxy_list,
372                                         request->home_server->proto,
373                                         request->proxy, &proxy_listener);
374         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
375         
376         if (!rcode) {
377                 if (proxy_no_new_sockets) return 0;
378
379                 /*
380                  *      Also locks the proxy mutex, so we have to call
381                  *      it with the mutex unlocked.  Some systems
382                  *      don't support recursive mutexes.
383                  */
384                 if (!proxy_new_listener(request->home_server, 0)) {
385                         radlog(L_ERR, "Failed to create a new socket for proxying requests.");
386                         return 0;
387                 }
388                 request->proxy->src_port = 0; /* Use any new socket */
389
390                 tries++;
391                 if (tries > 2) {
392                         RDEBUG2("ERROR: Failed allocating Id for new socket when proxying requests.");
393                         return 0;
394                 }
395                 
396                 goto retry;
397         }
398
399         request->proxy_listener = proxy_listener;
400
401         PTHREAD_MUTEX_LOCK(&proxy_mutex);
402         if (!fr_packet_list_insert(proxy_list, &request->proxy)) {
403                 fr_packet_list_id_free(proxy_list, request->proxy);
404                 PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
405                 radlog(L_PROXY, "Failed to insert entry into proxy list");
406                 return 0;
407         }
408
409         request->in_proxy_hash = TRUE;
410
411         /*
412          *      Keep track of maximum outstanding requests to a
413          *      particular home server.  'max_outstanding' is
414          *      enforced in home_server_ldb(), in realms.c.
415          */
416         if (request->home_server) {
417                 request->home_server->currently_outstanding++;
418         }
419
420 #ifdef WITH_TCP
421         request->proxy_listener->count++;
422 #endif
423
424         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
425
426         RDEBUG3(" proxy: allocating destination %s port %d - Id %d",
427                inet_ntop(request->proxy->dst_ipaddr.af,
428                          &request->proxy->dst_ipaddr.ipaddr, buf, sizeof(buf)),
429                request->proxy->dst_port,
430                request->proxy->id);
431
432         return 1;
433 }
434
435
436 /*
437  *      Called as BOTH an event, and in-line from other functions.
438  */
439 static void wait_for_proxy_id_to_expire(void *ctx)
440 {
441         REQUEST *request = ctx;
442
443         rad_assert(request->magic == REQUEST_MAGIC);
444         rad_assert(request->proxy != NULL);
445
446         fr_event_now(el, &now);
447         request->when = request->proxy_when;
448
449 #ifdef WITH_COA
450         if (((request->proxy->code == PW_COA_REQUEST) ||
451              (request->proxy->code == PW_DISCONNECT_REQUEST)) &&
452             (request->packet->code != request->proxy->code)) {
453                 request->when.tv_sec += request->home_server->coa_mrd;
454         } else
455 #endif
456         request->when.tv_sec += request->home_server->response_window;
457
458         if ((request->num_proxied_requests == request->num_proxied_responses) ||
459 #ifdef WITH_TCP
460             (request->home_server->proto == IPPROTO_TCP) ||
461 #endif
462             timercmp(&now, &request->when, >)) {
463                 if (request->packet) {
464                         RDEBUG2("Cleaning up request %u ID %d with timestamp +%d",
465                                request->number, request->packet->id,
466                                (unsigned int) (request->timestamp - fr_start_time));
467                 } else {
468                         RDEBUG2("Cleaning up request %u with timestamp +%d",
469                                request->number,
470                                (unsigned int) (request->timestamp - fr_start_time));
471                 }
472
473                 ev_request_free(&request);
474                 return;
475         }
476
477         INSERT_EVENT(wait_for_proxy_id_to_expire, request);
478 }
479 #endif
480
481 #ifdef HAVE_PTHREAD_H
482 static void wait_for_child_to_die(void *ctx)
483 {
484         REQUEST *request = ctx;
485
486         rad_assert(request->magic == REQUEST_MAGIC);
487
488         /*
489          *      If it's still queued (waiting for a thread to pick it
490          *      up) OR, it's running AND there's still a child thread
491          *      handling it, THEN delay some more.
492          */
493         if ((request->child_state == REQUEST_QUEUED) ||
494             ((request->child_state == REQUEST_RUNNING) &&
495              (pthread_equal(request->child_pid, NO_SUCH_CHILD_PID) == 0))) {
496
497                 /*
498                  *      Cap delay at five minutes.
499                  */
500                 if (request->delay < (USEC * 60 * 5)) {
501                         request->delay += (request->delay >> 1);
502                         radlog(L_INFO, "WARNING: Child is hung for request %u in component %s module %s.",
503                                request->number, request->component, request->module);
504                 } else {
505                         RDEBUG2("Child is still stuck for request %u",
506                                 request->number);
507                 }
508                 tv_add(&request->when, request->delay);
509
510                 INSERT_EVENT(wait_for_child_to_die, request);
511                 return;
512         }
513
514         RDEBUG2("Child is finally responsive for request %u", request->number);
515         remove_from_request_hash(request);
516
517 #ifdef WITH_PROXY
518         if (request->proxy) {
519                 wait_for_proxy_id_to_expire(request);
520                 return;
521         }
522 #endif
523
524         ev_request_free(&request);
525 }
526 #endif
527
528 static void cleanup_delay(void *ctx)
529 {
530         REQUEST *request = ctx;
531
532         rad_assert(request->magic == REQUEST_MAGIC);
533         rad_assert((request->child_state == REQUEST_CLEANUP_DELAY) ||
534                    (request->child_state == REQUEST_DONE));
535
536         remove_from_request_hash(request);
537
538 #ifdef WITH_PROXY
539         if (request->proxy && request->in_proxy_hash) {
540                 wait_for_proxy_id_to_expire(request);
541                 return;
542         }
543 #endif
544
545         RDEBUG2("Cleaning up request %u ID %d with timestamp +%d",
546                request->number, request->packet->id,
547                (unsigned int) (request->timestamp - fr_start_time));
548
549         ev_request_free(&request);
550 }
551
552
553 /*
554  *      In daemon mode, AND this request has debug flags set.
555  */
556 #define DEBUG_PACKET if (!debug_flag && request->options && request->radlog) debug_packet
557
558 static void debug_packet(REQUEST *request, RADIUS_PACKET *packet, int direction)
559 {
560         VALUE_PAIR *vp;
561         char buffer[1024];
562         const char *received, *from;
563         const fr_ipaddr_t *ip;
564         int port;
565
566         if (!packet || (packet->code == 0)) return;
567
568         rad_assert(request->radlog != NULL);
569
570         if (direction == 0) {
571                 received = "Received";
572                 from = "from";  /* what else? */
573                 ip = &packet->src_ipaddr;
574                 port = packet->src_port;
575
576         } else {
577                 received = "Sending";
578                 from = "to";    /* hah! */
579                 ip = &packet->dst_ipaddr;
580                 port = packet->dst_port;
581         }
582         
583         /*
584          *      Client-specific debugging re-prints the input
585          *      packet into the client log.
586          *
587          *      This really belongs in a utility library
588          */
589         if ((packet->code > 0) && (packet->code < FR_MAX_PACKET_CODE)) {
590                 RDEBUG("%s %s packet %s host %s port %d, id=%d, length=%d",
591                        received, fr_packet_codes[packet->code], from,
592                        inet_ntop(ip->af, &ip->ipaddr, buffer, sizeof(buffer)),
593                        port, packet->id, packet->data_len);
594         } else {
595                 RDEBUG("%s packet %s host %s port %d code=%d, id=%d, length=%d",
596                        received, from,
597                        inet_ntop(ip->af, &ip->ipaddr, buffer, sizeof(buffer)),
598                        port,
599                        packet->code, packet->id, packet->data_len);
600         }
601
602         for (vp = packet->vps; vp != NULL; vp = vp->next) {
603                 vp_prints(buffer, sizeof(buffer), vp);
604                 request->radlog(L_DBG, 0, request, "\t%s", buffer);
605         }
606 }
607
608 static void reject_delay(void *ctx)
609 {
610         REQUEST *request = ctx;
611
612         rad_assert(request->magic == REQUEST_MAGIC);
613         rad_assert(request->child_state == REQUEST_REJECT_DELAY);
614
615         RDEBUG2("Sending delayed reject for request %u", request->number);
616
617         DEBUG_PACKET(request, request->reply, 1);
618
619         request->listener->send(request->listener, request);
620
621         request->when.tv_sec += request->root->cleanup_delay;
622         request->child_state = REQUEST_CLEANUP_DELAY;
623
624         INSERT_EVENT(cleanup_delay, request);
625 }
626
627
628 #ifdef WITH_PROXY
629 void revive_home_server(void *ctx)
630 {
631         home_server *home = ctx;
632         char buffer[128];
633
634 #ifdef WITH_TCP
635         rad_assert(home->proto != IPPROTO_TCP);
636 #endif
637
638         home->state = HOME_STATE_ALIVE;
639         home->currently_outstanding = 0;
640         home->revive_time = now;
641
642         /*
643          *      Delete any outstanding events.
644          */
645         if (home->ev) fr_event_delete(el, &home->ev);
646
647         radlog(L_PROXY, "Marking home server %s port %d alive again... we have no idea if it really is alive or not.",
648                inet_ntop(home->ipaddr.af, &home->ipaddr.ipaddr,
649                          buffer, sizeof(buffer)),
650                home->port);
651
652 }
653
654
655 static void no_response_to_ping(void *ctx)
656 {
657         REQUEST *request = ctx;
658         home_server *home;
659         char buffer[128];
660
661         rad_assert(request->home_server != NULL);
662
663         home = request->home_server;
664 #ifdef WITH_TCP
665         rad_assert(home->proto != IPPROTO_TCP);
666 #endif
667
668         home->num_received_pings = 0;
669
670         radlog(L_ERR, "No response to status check %d for home server %s port %d",
671                request->number,
672                inet_ntop(request->proxy->dst_ipaddr.af,
673                          &request->proxy->dst_ipaddr.ipaddr,
674                          buffer, sizeof(buffer)),
675                request->proxy->dst_port);
676
677         check_for_zombie_home_server(request);
678
679         wait_for_proxy_id_to_expire(request);
680 }
681
682
683 static void received_response_to_ping(REQUEST *request)
684 {
685         home_server *home;
686         char buffer[128];
687
688         rad_assert(request->home_server != NULL);
689
690         home = request->home_server;
691 #ifdef WITH_TCP
692         rad_assert(home->proto != IPPROTO_TCP);
693 #endif
694
695         home->num_received_pings++;
696
697         radlog(L_PROXY, "Received response to status check %d (%d in current sequence)",
698                request->number, home->num_received_pings);
699
700         /*
701          *      Remove the request from any hashes
702          */
703         fr_event_delete(el, &request->ev);
704         remove_from_proxy_hash(request);
705         rad_assert(request->in_request_hash == FALSE);
706
707         /*
708          *      The control socket may have marked the home server as
709          *      alive.  OR, it may have suddenly started responding to
710          *      requests again.  If so, don't re-do the "make alive"
711          *      work.
712          */
713         if (home->state == HOME_STATE_ALIVE) return;
714
715         /*
716          *      We haven't received enough ping responses to mark it
717          *      "alive".  Wait a bit.
718          */
719         if (home->num_received_pings < home->num_pings_to_alive) {
720                 return;
721         }
722
723         home->state = HOME_STATE_ALIVE;
724         home->currently_outstanding = 0;
725         home->revive_time = now;
726
727         if (!fr_event_delete(el, &home->ev)) {
728                 RDEBUG2("Hmm... no event for home server.  Oh well.");
729         }
730
731         radlog(L_PROXY, "Marking home server %s port %d alive",
732                inet_ntop(request->proxy->dst_ipaddr.af,
733                          &request->proxy->dst_ipaddr.ipaddr,
734                          buffer, sizeof(buffer)),
735                request->proxy->dst_port);
736 }
737
738
739 /*
740  *      Called from start of zombie period, OR after control socket
741  *      marks the home server dead.
742  */
743 static void ping_home_server(void *ctx)
744 {
745         uint32_t jitter;
746         home_server *home = ctx;
747         REQUEST *request;
748         VALUE_PAIR *vp;
749
750 #ifdef WITH_TCP
751         rad_assert(home->proto != IPPROTO_TCP);
752 #endif
753
754         if ((home->state == HOME_STATE_ALIVE) ||
755             (home->ping_check == HOME_PING_CHECK_NONE) ||
756             (home->ev != NULL)) {
757                 return;
758         }
759
760         request = request_alloc();
761         request->number = request_num_counter++;
762
763         request->proxy = rad_alloc(1);
764         rad_assert(request->proxy != NULL);
765
766         fr_event_now(el, &request->when);
767         home->when = request->when;
768
769         if (home->ping_check == HOME_PING_CHECK_STATUS_SERVER) {
770                 request->proxy->code = PW_STATUS_SERVER;
771
772                 radius_pairmake(request, &request->proxy->vps,
773                                 "Message-Authenticator", "0x00", T_OP_SET);
774
775         } else if (home->type == HOME_TYPE_AUTH) {
776                 request->proxy->code = PW_AUTHENTICATION_REQUEST;
777
778                 radius_pairmake(request, &request->proxy->vps,
779                                 "User-Name", home->ping_user_name, T_OP_SET);
780                 radius_pairmake(request, &request->proxy->vps,
781                                 "User-Password", home->ping_user_password, T_OP_SET);
782                 radius_pairmake(request, &request->proxy->vps,
783                                 "Service-Type", "Authenticate-Only", T_OP_SET);
784                 radius_pairmake(request, &request->proxy->vps,
785                                 "Message-Authenticator", "0x00", T_OP_SET);
786
787         } else {
788 #ifdef WITH_ACCOUNTING
789                 request->proxy->code = PW_ACCOUNTING_REQUEST;
790                 
791                 radius_pairmake(request, &request->proxy->vps,
792                                 "User-Name", home->ping_user_name, T_OP_SET);
793                 radius_pairmake(request, &request->proxy->vps,
794                                 "Acct-Status-Type", "Stop", T_OP_SET);
795                 radius_pairmake(request, &request->proxy->vps,
796                                 "Acct-Session-Id", "00000000", T_OP_SET);
797                 vp = radius_pairmake(request, &request->proxy->vps,
798                                      "Event-Timestamp", "0", T_OP_SET);
799                 vp->vp_date = now.tv_sec;
800 #else
801                 rad_assert("Internal sanity check failed");
802 #endif
803         }
804
805         radius_pairmake(request, &request->proxy->vps,
806                         "NAS-Identifier", "Status Check. Are you alive?",
807                         T_OP_SET);
808
809         request->proxy->dst_ipaddr = home->ipaddr;
810         request->proxy->dst_port = home->port;
811         request->home_server = home;
812
813         rad_assert(request->proxy_listener == NULL);
814
815         if (!insert_into_proxy_hash(request)) {
816                 radlog(L_PROXY, "Failed inserting status check %d into proxy hash.  Discarding it.",
817                        request->number);
818                 ev_request_free(&request);
819                 return;
820         }
821         rad_assert(request->proxy_listener != NULL);
822         request->proxy_listener->send(request->proxy_listener,
823                                       request);
824
825         request->next_callback = NULL;
826         request->child_state = REQUEST_PROXIED;
827         request->when.tv_sec += home->ping_timeout;;
828
829         INSERT_EVENT(no_response_to_ping, request);
830
831         /*
832          *      Add +/- 2s of jitter, as suggested in RFC 3539
833          *      and in the Issues and Fixes draft.
834          */
835         home->when.tv_sec += home->ping_interval - 2;
836
837         jitter = fr_rand();
838         jitter ^= (jitter >> 10);
839         jitter &= ((1 << 23) - 1); /* 22 bits of 1 */
840
841         tv_add(&home->when, jitter);
842
843         INSERT_EVENT(ping_home_server, home);
844 }
845
846
847 void mark_home_server_dead(home_server *home, struct timeval *when)
848 {
849         int previous_state = home->state;
850         char buffer[128];
851
852         radlog(L_PROXY, "Marking home server %s port %d as dead.",
853                inet_ntop(home->ipaddr.af, &home->ipaddr.ipaddr,
854                          buffer, sizeof(buffer)),
855                home->port);
856
857         home->state = HOME_STATE_IS_DEAD;
858         home->num_received_pings = 0;
859
860         if (home->ping_check != HOME_PING_CHECK_NONE) {
861                 /*
862                  *      If the control socket marks us dead, start
863                  *      pinging.  Otherwise, we already started
864                  *      pinging when it was marked "zombie".
865                  */
866                 if (previous_state == HOME_STATE_ALIVE) {
867                         ping_home_server(home);
868                 }
869
870         } else {
871                 /*
872                  *      Revive it after a fixed period of time.  This
873                  *      is very, very, bad.
874                  */
875                 home->when = *when;
876                 home->when.tv_sec += home->revive_interval;
877
878                 INSERT_EVENT(revive_home_server, home);
879         }
880 }
881
882 static void check_for_zombie_home_server(REQUEST *request)
883 {
884         home_server *home;
885         struct timeval when;
886
887         home = request->home_server;
888
889         if (home->state != HOME_STATE_ZOMBIE) return;
890
891         when = home->zombie_period_start;
892         when.tv_sec += home->zombie_period;
893
894         fr_event_now(el, &now);
895         if (timercmp(&now, &when, <)) {
896                 return;
897         }
898
899         mark_home_server_dead(home, &request->when);
900 }
901
902 static int proxy_to_virtual_server(REQUEST *request);
903
904 static int virtual_server_handler(UNUSED REQUEST *request)
905 {
906         proxy_to_virtual_server(request);
907         return 0;
908 }
909
910 static void proxy_fallback_handler(REQUEST *request)
911 {
912         /*
913          *      A proper time is required for wait_a_bit.
914          */
915         request->delay = USEC / 10;
916         gettimeofday(&now, NULL);
917         request->next_when = now;
918         tv_add(&request->next_when, request->delay);
919         request->next_callback = wait_a_bit;
920
921         /*
922          *      Re-queue the request.
923          */
924         request->child_state = REQUEST_QUEUED;
925         
926         rad_assert(request->proxy != NULL);
927         if (!thread_pool_addrequest(request, virtual_server_handler)) {
928                 request->child_state = REQUEST_DONE;
929         }
930
931 #ifdef HAVE_PTHREAD_H
932         /*
933          *      MAY free the request if we're over max_request_time,
934          *      AND we're not in threaded mode!
935          *
936          *      Note that we call this ONLY if we're threaded, as
937          *      if we're NOT threaded, request_post_handler() calls
938          *      wait_a_bit(), which means that "request" may not
939          *      exist any more...
940          */
941         if (have_children) wait_a_bit(request);
942 #endif
943 }
944
945
946 static int setup_post_proxy_fail(REQUEST *request)
947 {
948         DICT_VALUE *dval = NULL;
949         VALUE_PAIR *vp;
950
951         request->child_state = REQUEST_RUNNING;
952
953         if (request->packet->code == PW_AUTHENTICATION_REQUEST) {
954                 dval = dict_valbyname(PW_POST_PROXY_TYPE, "Fail-Authentication");
955
956         } else if (request->packet->code == PW_ACCOUNTING_REQUEST) {
957                 dval = dict_valbyname(PW_POST_PROXY_TYPE, "Fail-Accounting");
958
959 #ifdef WITH_COA
960                 /*
961                  *      See no_response_to_coa_request
962                  */
963         } else if (((request->packet->code >> 8) & 0xff) == PW_COA_REQUEST) {
964                 request->packet->code &= 0xff; /* restore it */
965
966                 if (request->proxy->code == PW_COA_REQUEST) {
967                         dval = dict_valbyname(PW_POST_PROXY_TYPE, "Fail-CoA");
968
969                 } else if (request->proxy->code == PW_DISCONNECT_REQUEST) {
970                         dval = dict_valbyname(PW_POST_PROXY_TYPE, "Fail-Disconnect");
971                 } else {
972                         return 0;
973                 }
974
975 #endif
976         } else {
977                 return 0;
978         }
979
980         if (!dval) dval = dict_valbyname(PW_POST_PROXY_TYPE, "Fail");
981
982         if (!dval) {
983                 pairdelete(&request->config_items, PW_POST_PROXY_TYPE);
984                 return 0;
985         }
986
987         vp = pairfind(request->config_items, PW_POST_PROXY_TYPE);
988         if (!vp) vp = radius_paircreate(request, &request->config_items,
989                                         PW_POST_PROXY_TYPE, PW_TYPE_INTEGER);
990         vp->vp_integer = dval->value;
991
992         rad_assert(request->proxy_reply == NULL);
993
994         return 1;
995 }
996
997
998 static int null_handler(UNUSED REQUEST *request)
999 {
1000         return 0;
1001 }
1002
1003 static void post_proxy_fail_handler(REQUEST *request)
1004 {
1005         /*
1006          *      A proper time is required for wait_a_bit.
1007          */
1008         request->delay = USEC / 10;
1009         gettimeofday(&now, NULL);
1010
1011         /*
1012          *      Not set up to run Post-Proxy-Type = Fail.
1013          *
1014          *      Mark the request as still running, and figure out what
1015          *      to do next.
1016          */
1017         if (!setup_post_proxy_fail(request)) {
1018                 request_post_handler(request);
1019
1020         } else {
1021                 /*
1022                  *      Re-queue the request.
1023                  */
1024                 request->child_state = REQUEST_QUEUED;
1025
1026                 /*
1027                  *      There is a post-proxy-type of fail.  We run
1028                  *      the request through the pre/post proxy
1029                  *      handlers, just like it was a real proxied
1030                  *      request.  However, we set the per-request
1031                  *      handler to NULL, as we don't want to do
1032                  *      anything else.
1033                  *
1034                  *      Note that when we're not threaded, this will
1035                  *      process the request even if it's greater than
1036                  *      max_request_time.  That's not fatal.
1037                  */
1038                 request->priority = 0;
1039                 rad_assert(request->proxy != NULL);
1040                 thread_pool_addrequest(request, null_handler);
1041         }
1042
1043         /*
1044          *      MAY free the request if we're over max_request_time,
1045          *      AND we're not in threaded mode!
1046          *
1047          *      Note that we call this ONLY if we're threaded, as
1048          *      if we're NOT threaded, request_post_handler() calls
1049          *      wait_a_bit(), which means that "request" may not
1050          *      exist any more...
1051          */
1052         if (have_children) wait_a_bit(request);
1053 }
1054
1055 /* maybe check this against wait_for_proxy_id_to_expire? */
1056 static void no_response_to_proxied_request(void *ctx)
1057 {
1058         REQUEST *request = ctx;
1059         home_server *home;
1060         char buffer[128];
1061
1062         rad_assert(request->magic == REQUEST_MAGIC);
1063
1064         if (request->master_state == REQUEST_STOP_PROCESSING) {
1065                 ev_request_free(&request);
1066                 return;
1067         }
1068
1069         rad_assert(request->child_state == REQUEST_PROXIED);
1070
1071         /*
1072          *      If we've failed over to an internal home server,
1073          *      replace the callback with the correct one.  This
1074          *      is due to locking issues with child threads...
1075          */
1076         if (request->home_server->server) {
1077                 wait_a_bit(request);
1078                 return;
1079         }
1080
1081 #ifdef WITH_TCP
1082         if (request->home_server->proto != IPPROTO_TCP)
1083 #endif
1084                 check_for_zombie_home_server(request);
1085
1086         home = request->home_server;
1087
1088         /*
1089          *      The default as of 2.1.7 is to allow requests to
1090          *      fail-over to a backup home server when this one does
1091          *      not respond.  The old behavior can be configured as
1092          *      well.
1093          */
1094         if (home->no_response_fail) {
1095                 radlog(L_ERR, "Rejecting request %u (proxy Id %d) due to lack of any response from home server %s port %d",
1096                        request->number, request->proxy->id,
1097                        inet_ntop(request->proxy->dst_ipaddr.af,
1098                                  &request->proxy->dst_ipaddr.ipaddr,
1099                                  buffer, sizeof(buffer)),
1100                        request->proxy->dst_port);
1101
1102                 post_proxy_fail_handler(request);
1103         } else {
1104                 /*
1105                  *      Enforce max_request_time.
1106                  *
1107                  *      We fail over to another backup home server
1108                  *      when the client re-transmits the request.  If
1109                  *      the client doesn't re-transmit, no fail-over
1110                  *      occurs.
1111                  */
1112                 rad_assert(request->ev == NULL);
1113                 request->child_state = REQUEST_RUNNING;
1114                 wait_a_bit(request);
1115         }
1116
1117         /*
1118          *      Don't touch request due to race conditions
1119          */
1120
1121 #ifdef WITH_TCP
1122         /*
1123          *      Do nothing more.  The home server didn't respond,
1124          *      but that isn't a catastrophic failure.  Some home
1125          *      servers don't respond to packets...
1126          */
1127         if (home->proto == IPPROTO_TCP) {
1128                 /*
1129                  *      FIXME: Set up TCP pinging on this connection.
1130                  *
1131                  *      Maybe the CONNECTION is dead, but the home
1132                  *      server is alive.  In that case, we need to start
1133                  *      pinging on the connection.
1134                  *
1135                  *      This means doing the pinging BEFORE the
1136                  *      post_proxy_fail_handler above, as it may do
1137                  *      something with the request, and cause the
1138                  *      proxy listener to go away!
1139                  */
1140                 return;
1141         }
1142 #endif
1143
1144         if (home->state == HOME_STATE_IS_DEAD) {
1145                 rad_assert(home->ev != NULL); /* or it will never wake up */
1146                 return;
1147         }
1148
1149         /*
1150          *      Enable the zombie period when we notice that the home
1151          *      server hasn't responded.  We do NOT back-date the start
1152          *      of the zombie period.
1153          */
1154         if (home->state == HOME_STATE_ALIVE) {
1155                 home->state = HOME_STATE_ZOMBIE;
1156                 home->zombie_period_start = now;        
1157                 fr_event_delete(el, &home->ev);
1158                 home->currently_outstanding = 0;
1159                 home->num_received_pings = 0;
1160
1161                 radlog(L_PROXY, "Marking home server %s port %d as zombie (it looks like it is dead).",
1162                        inet_ntop(home->ipaddr.af, &home->ipaddr.ipaddr,
1163                                  buffer, sizeof(buffer)),
1164                        home->port);
1165
1166                 /*
1167                  *      Start pinging the home server.
1168                  */
1169                 ping_home_server(home);
1170         }
1171 }
1172 #endif
1173
1174 static void wait_a_bit(void *ctx)
1175 {
1176         struct timeval when;
1177         REQUEST *request = ctx;
1178         fr_event_callback_t callback = NULL;
1179
1180         rad_assert(request->magic == REQUEST_MAGIC);
1181
1182         /*
1183          *      The socket was closed.  Tell the request that
1184          *      there is no point in continuing.
1185          */
1186         if (request->listener->status != RAD_LISTEN_STATUS_KNOWN) {
1187                 goto stop_processing;
1188         }
1189
1190 #ifdef WITH_COA
1191         /*
1192          *      The CoA request is a new (internally generated)
1193          *      request, created in a child thread.  We therefore need
1194          *      some way to tie its events back into the main event
1195          *      handler.
1196          */
1197         if (request->coa && !request->coa->proxy_reply &&
1198             request->coa->next_callback) {
1199                 request->coa->when = request->coa->next_when;
1200                 INSERT_EVENT(request->coa->next_callback, request->coa);
1201                 request->coa->next_callback = NULL;
1202                 request->coa->parent = NULL;
1203                 request->coa = NULL;
1204         }
1205 #endif
1206
1207         switch (request->child_state) {
1208         case REQUEST_QUEUED:
1209         case REQUEST_RUNNING:
1210                 when = request->received;
1211                 when.tv_sec += request->root->max_request_time;
1212
1213                 /*
1214                  *      Normally called from the event loop with the
1215                  *      proper event loop time.  Otherwise, called from
1216                  *      post proxy fail handler, which sets "now", and
1217                  *      this call won't re-set it, because we're not
1218                  *      in the event loop.
1219                  */
1220                 fr_event_now(el, &now);
1221
1222                 /*
1223                  *      Request still has more time.  Continue
1224                  *      waiting.
1225                  */
1226                 if (timercmp(&now, &when, <) ||
1227                     ((request->listener->type == RAD_LISTEN_DETAIL) &&
1228                      (request->child_state == REQUEST_QUEUED))) {
1229                         if (request->delay < (USEC / 10)) {
1230                                 request->delay = USEC / 10;
1231                         }
1232                         request->delay += request->delay >> 1;
1233
1234 #ifdef WITH_DETAIL
1235                         /*
1236                          *      Cap wait at some sane value for detail
1237                          *      files.
1238                          */
1239                         if ((request->listener->type == RAD_LISTEN_DETAIL) &&
1240                             (request->delay > (request->root->max_request_time * USEC))) {
1241                                 request->delay = request->root->max_request_time * USEC;
1242                         }
1243 #endif
1244
1245                         request->when = now;
1246                         tv_add(&request->when, request->delay);
1247                         callback = wait_a_bit;
1248                         break;
1249                 }
1250
1251 #if defined(HAVE_PTHREAD_H) || defined(WITH_PROXY)
1252                 /*
1253                  *      A child thread MAY still be running on the
1254                  *      request.  Ask the thread to stop working on
1255                  *      the request.
1256                  */
1257                 if (have_children &&
1258                     (pthread_equal(request->child_pid, NO_SUCH_CHILD_PID) == 0)) {
1259                         request->master_state = REQUEST_STOP_PROCESSING;
1260
1261                         radlog(L_ERR, "WARNING: Unresponsive child for request %u, in module %s component %s",
1262                                request->number,
1263                                request->module ? request->module : "<server core>",
1264                                request->component ? request->component : "<server core>");
1265                         
1266                         request->delay = USEC / 4;
1267                         tv_add(&request->when, request->delay);
1268                         callback = wait_for_child_to_die;
1269                         break;
1270                 }
1271 #endif
1272
1273                 /*
1274                  *      Else no child thread is processing the
1275                  *      request.  We probably should have just marked
1276                  *      the request as 'done' elsewhere, like in the
1277                  *      post-proxy-fail handler.  But doing that would
1278                  *      involve checking for max_request_time in
1279                  *      multiple places, so this may be simplest.
1280                  */
1281                 request->child_state = REQUEST_DONE;
1282                 /* FALL-THROUGH */
1283
1284                 /*
1285                  *      Mark the request as no longer running,
1286                  *      and clean it up.
1287                  */
1288         case REQUEST_DONE:
1289 #ifdef HAVE_PTHREAD_H
1290                 request->child_pid = NO_SUCH_CHILD_PID;
1291 #endif
1292
1293 #ifdef WTH_COA
1294                 /*
1295                  *      This is a CoA request.  It's been divorced
1296                  *      from everything else, so we clean it up now.
1297                  */
1298                 if (!request->in_request_hash &&
1299                     request->proxy &&
1300                     (request->packet->code != request->proxy->code) &&
1301                     ((request->proxy->code == PW_COA_REQUEST) ||
1302                      (request->proxy->code == PW_DISCONNECT_REQUEST))) {
1303                         /*
1304                          *      FIXME: Do CoA MIBs
1305                          */
1306                         ev_request_free(&request);
1307                         return;
1308                 }
1309 #endif
1310                 request_stats_final(request);
1311                 cleanup_delay(request);
1312                 return;
1313
1314         case REQUEST_REJECT_DELAY:
1315         case REQUEST_CLEANUP_DELAY:
1316 #ifdef HAVE_PTHREAD_H
1317                 request->child_pid = NO_SUCH_CHILD_PID;
1318 #endif
1319                 request_stats_final(request);
1320
1321         case REQUEST_PROXIED:
1322                 rad_assert(request->next_callback != NULL);
1323                 rad_assert(request->next_callback != wait_a_bit);
1324
1325                 request->when = request->next_when;
1326                 callback = request->next_callback;
1327                 request->next_callback = NULL;
1328                 break;
1329
1330         default:
1331                 rad_panic("Internal sanity check failure");
1332                 return;
1333         }
1334
1335         /*
1336          *      Something major went wrong.  Discard the request, and
1337          *      keep running.
1338          *
1339          *      FIXME: No idea why this happens or how to fix it...
1340          *      It seems to happen *only* when requests are proxied,
1341          *      and where the home server doesn't respond.  So it looks
1342          *      like a race condition above, but it happens in debug
1343          *      mode, with no threads...
1344          */
1345         if (!callback) {
1346                 RDEBUG("WARNING: Internal sanity check failed in event handler for request %u: Discarding the request!", request->number);
1347                 ev_request_free(&request);
1348                 return;
1349         }
1350
1351         INSERT_EVENT(callback, request);
1352 }
1353
1354 #ifdef WITH_COA
1355 static void no_response_to_coa_request(void *ctx)
1356 {
1357         REQUEST *request = ctx;
1358         char buffer[128];
1359
1360         rad_assert(request->magic == REQUEST_MAGIC);
1361         rad_assert(request->child_state == REQUEST_PROXIED);
1362         rad_assert(request->home_server != NULL);
1363         rad_assert(!request->in_request_hash);
1364
1365         radlog(L_ERR, "No response to CoA request sent to %s",
1366                inet_ntop(request->proxy->dst_ipaddr.af,
1367                          &request->proxy->dst_ipaddr.ipaddr,
1368                          buffer, sizeof(buffer)));
1369
1370         /*
1371          *      Hack.
1372          */
1373         request->packet->code |= (PW_COA_REQUEST << 8);
1374         post_proxy_fail_handler(request);
1375 }
1376
1377
1378 static int update_event_timestamp(RADIUS_PACKET *packet, time_t when)
1379 {
1380         VALUE_PAIR *vp;
1381
1382         vp = pairfind(packet->vps, PW_EVENT_TIMESTAMP);
1383         if (!vp) return 0;
1384
1385         vp->vp_date = when;
1386
1387         if (packet->data) {
1388                 free(packet->data);
1389                 packet->data = NULL;
1390                 packet->data_len = 0;
1391         }
1392
1393         return 1;               /* time stamp updated */
1394 }
1395
1396
1397 /*
1398  *      Called when we haven't received a response to a CoA request.
1399  */
1400 static void retransmit_coa_request(void *ctx)
1401 {
1402         int delay, frac;
1403         struct timeval mrd;
1404         REQUEST *request = ctx;
1405
1406         rad_assert(request->magic == REQUEST_MAGIC);
1407         rad_assert(request->child_state == REQUEST_PROXIED);
1408         rad_assert(request->home_server != NULL);
1409         rad_assert(!request->in_request_hash);
1410         rad_assert(request->parent == NULL);
1411         
1412         fr_event_now(el, &now);
1413
1414         /*
1415          *      Cap count at MRC, if it is non-zero.
1416          */
1417         if (request->home_server->coa_mrc &&
1418             (request->num_coa_requests >= request->home_server->coa_mrc)) {
1419                 no_response_to_coa_request(request);
1420                 return;
1421         }
1422
1423         /*
1424          *      RFC 5080 Section 2.2.1
1425          *
1426          *      RT = 2*RTprev + RAND*RTprev
1427          *         = 1.9 * RTprev + rand(0,.2) * RTprev
1428          *         = 1.9 * RTprev + rand(0,1) * (RTprev / 5)
1429          */
1430         delay = fr_rand();
1431         delay ^= (delay >> 16);
1432         delay &= 0xffff;
1433         frac = request->delay / 5;
1434         delay = ((frac >> 16) * delay) + (((frac & 0xffff) * delay) >> 16);
1435
1436         delay += (2 * request->delay) - (request->delay / 10);
1437
1438         /*
1439          *      Cap delay at MRT, if MRT is non-zero.
1440          */
1441         if (request->home_server->coa_mrt &&
1442             (delay > (request->home_server->coa_mrt * USEC))) {
1443                 int mrt_usec = request->home_server->coa_mrt * USEC;
1444
1445                 /*
1446                  *      delay = MRT + RAND * MRT
1447                  *            = 0.9 MRT + rand(0,.2)  * MRT
1448                  */
1449                 delay = fr_rand();
1450                 delay ^= (delay >> 15);
1451                 delay &= 0x1ffff;
1452                 delay = ((mrt_usec >> 16) * delay) + (((mrt_usec & 0xffff) * delay) >> 16);
1453                 delay += mrt_usec - (mrt_usec / 10);
1454         }
1455
1456         request->delay = delay;
1457         request->when = now;
1458         tv_add(&request->when, request->delay);
1459         mrd = request->proxy_when;
1460         mrd.tv_sec += request->home_server->coa_mrd;
1461
1462         /*
1463          *      Cap duration at MRD.
1464          */
1465         if (timercmp(&mrd, &request->when, <)) {
1466                 request->when = mrd;
1467                 INSERT_EVENT(no_response_to_coa_request, request);
1468
1469         } else {
1470                 INSERT_EVENT(retransmit_coa_request, request);
1471         }
1472         
1473         if (update_event_timestamp(request->proxy, now.tv_sec)) {
1474                 /*
1475                  *      Keep a copy of the old Id so that the
1476                  *      re-transmitted request doesn't re-use the old
1477                  *      Id.
1478                  */
1479                 RADIUS_PACKET old = *request->proxy;
1480
1481                 /*
1482                  *      Don't free the old Id on error.
1483                  */
1484                 if (!insert_into_proxy_hash(request)) {
1485                         radlog(L_PROXY,"Failed re-inserting CoA request into proxy hash.");
1486                         return;
1487                 }
1488
1489                 /*
1490                  *      Now that we have a new Id, free the old one.
1491                  */
1492                 PTHREAD_MUTEX_LOCK(&proxy_mutex);
1493                 fr_packet_list_yank(proxy_list, &old);
1494                 fr_packet_list_id_free(proxy_list, &old);
1495                 PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
1496
1497                 request->num_proxied_requests = 0;
1498                 request->num_proxied_responses = 0;
1499         }
1500
1501         request->num_proxied_requests++;
1502         request->num_coa_requests++; /* is NOT reset by code 3 lines above! */
1503
1504         request->proxy_listener->send(request->proxy_listener,
1505                                       request);
1506 }
1507
1508
1509 /*
1510  *      The original request is either DONE, or in CLEANUP_DELAY.
1511  */
1512 static int originated_coa_request(REQUEST *request)
1513 {
1514         int delay, rcode, pre_proxy_type = 0;
1515         VALUE_PAIR *vp;
1516         REQUEST *coa;
1517         fr_ipaddr_t ipaddr;
1518         char buffer[256];
1519
1520         rad_assert(request->proxy == NULL);
1521         rad_assert(!request->in_proxy_hash);
1522         rad_assert(request->proxy_reply == NULL);
1523
1524         /*
1525          *      Check whether we want to originate one, or cancel one.
1526          */
1527         vp = pairfind(request->config_items, PW_SEND_COA_REQUEST);
1528         if (!vp && request->coa) {
1529                 vp = pairfind(request->coa->proxy->vps, PW_SEND_COA_REQUEST);
1530         }
1531
1532         if (vp) {
1533                 if (vp->vp_integer == 0) {
1534                         ev_request_free(&request->coa);
1535                         return 1;       /* success */
1536                 }
1537         }
1538
1539         if (!request->coa) request_alloc_coa(request);
1540         if (!request->coa) return 0;
1541
1542         coa = request->coa;
1543
1544         /*
1545          *      src_ipaddr will be set up in proxy_encode.
1546          */
1547         memset(&ipaddr, 0, sizeof(ipaddr));
1548         vp = pairfind(coa->proxy->vps, PW_PACKET_DST_IP_ADDRESS);
1549         if (vp) {
1550                 ipaddr.af = AF_INET;
1551                 ipaddr.ipaddr.ip4addr.s_addr = vp->vp_ipaddr;
1552
1553         } else if ((vp = pairfind(coa->proxy->vps,
1554                                   PW_PACKET_DST_IPV6_ADDRESS)) != NULL) {
1555                 ipaddr.af = AF_INET6;
1556                 ipaddr.ipaddr.ip6addr = vp->vp_ipv6addr;
1557                 
1558         } else if ((vp = pairfind(coa->proxy->vps,
1559                                   PW_HOME_SERVER_POOL)) != NULL) {
1560                 coa->home_pool = home_pool_byname(vp->vp_strvalue,
1561                                                   HOME_TYPE_COA);
1562                 if (!coa->home_pool) {
1563                         RDEBUG2("WARNING: No such home_server_pool %s",
1564                                vp->vp_strvalue);
1565         fail:
1566                         ev_request_free(&request->coa);
1567                         return 0;
1568                 }
1569
1570                 /*
1571                  *      Prefer
1572                  */
1573         } else if (request->client->coa_pool) {
1574                 coa->home_pool = request->client->coa_pool;
1575
1576         } else if (request->client->coa_server) {
1577                 coa->home_server = request->client->coa_server;
1578
1579         } else {
1580                 /*
1581                  *      If all else fails, send it to the client that
1582                  *      originated this request.
1583                  */
1584                 memcpy(&ipaddr, &request->packet->src_ipaddr, sizeof(ipaddr));
1585         }
1586
1587         /*
1588          *      Use the pool, if it exists.
1589          */
1590         if (coa->home_pool) {
1591                 coa->home_server = home_server_ldb(NULL, coa->home_pool, coa);
1592                 if (!coa->home_server) {
1593                         RDEBUG("WARNING: No live home server for home_server_pool %s", vp->vp_strvalue);
1594                         goto fail;
1595                 }
1596
1597         } else if (!coa->home_server) {
1598                 int port = PW_COA_UDP_PORT;
1599
1600                 vp = pairfind(coa->proxy->vps, PW_PACKET_DST_PORT);
1601                 if (vp) port = vp->vp_integer;
1602
1603                 coa->home_server = home_server_find(&ipaddr, port, IPPROTO_UDP);
1604                 if (!coa->home_server) {
1605                         RDEBUG2("WARNING: Unknown destination %s:%d for CoA request.",
1606                                inet_ntop(ipaddr.af, &ipaddr.ipaddr,
1607                                          buffer, sizeof(buffer)), port);
1608                         goto fail;
1609                 }
1610         }
1611
1612         vp = pairfind(coa->proxy->vps, PW_PACKET_TYPE);
1613         if (vp) {
1614                 switch (vp->vp_integer) {
1615                 case PW_COA_REQUEST:
1616                 case PW_DISCONNECT_REQUEST:
1617                         coa->proxy->code = vp->vp_integer;
1618                         break;
1619                         
1620                 default:
1621                         DEBUG("Cannot set CoA Packet-Type to code %d",
1622                               vp->vp_integer);
1623                         goto fail;
1624                 }
1625         }
1626
1627         if (!coa->proxy->code) coa->proxy->code = PW_COA_REQUEST;
1628
1629         /*
1630          *      The rest of the server code assumes that
1631          *      request->packet && request->reply exist.  Copy them
1632          *      from the original request.
1633          */
1634         rad_assert(coa->packet != NULL);
1635         rad_assert(coa->packet->vps == NULL);
1636         memcpy(coa->packet, request->packet, sizeof(*request->packet));
1637         coa->packet->vps = paircopy(request->packet->vps);
1638         coa->packet->data = NULL;
1639         rad_assert(coa->reply != NULL);
1640         rad_assert(coa->reply->vps == NULL);
1641         memcpy(coa->reply, request->reply, sizeof(*request->reply));
1642         coa->reply->vps = paircopy(request->reply->vps);
1643         coa->reply->data = NULL;
1644         coa->config_items = paircopy(request->config_items);
1645
1646         /*
1647          *      Call the pre-proxy routines.
1648          */
1649         vp = pairfind(request->config_items, PW_PRE_PROXY_TYPE);
1650         if (vp) {
1651                 RDEBUG2("  Found Pre-Proxy-Type %s", vp->vp_strvalue);
1652                 pre_proxy_type = vp->vp_integer;
1653         }
1654
1655         if (coa->home_pool && coa->home_pool->virtual_server) {
1656                 const char *old_server = coa->server;
1657                 
1658                 coa->server = coa->home_pool->virtual_server;
1659                 RDEBUG2(" server %s {", coa->server);
1660                 rcode = module_pre_proxy(pre_proxy_type, coa);
1661                 RDEBUG2(" }");
1662                 coa->server = old_server;
1663         } else {
1664                 rcode = module_pre_proxy(pre_proxy_type, coa);
1665         }
1666         switch (rcode) {
1667         default:
1668                 goto fail;
1669
1670         /*
1671          *      Only send the CoA packet if the pre-proxy code succeeded.
1672          */
1673         case RLM_MODULE_NOOP:
1674         case RLM_MODULE_OK:
1675         case RLM_MODULE_UPDATED:
1676                 break;
1677         }
1678
1679         /*
1680          *      Source IP / port is set when the proxy socket
1681          *      is chosen.
1682          */
1683         coa->proxy->dst_ipaddr = coa->home_server->ipaddr;
1684         coa->proxy->dst_port = coa->home_server->port;
1685
1686         if (!insert_into_proxy_hash(coa)) {
1687                 radlog(L_PROXY, "Failed inserting CoA request into proxy hash.");
1688                 goto fail;
1689         }
1690
1691         /*
1692          *      We CANNOT divorce the CoA request from the parent
1693          *      request.  This function is running in a child thread,
1694          *      and we need access to the main event loop in order to
1695          *      to add the timers for the CoA packet.  See
1696          *      wait_a_bit().
1697          */
1698
1699         /*
1700          *      Forget about the original request completely at this
1701          *      point.
1702          */
1703         request = coa;
1704
1705         gettimeofday(&request->proxy_when, NULL);       
1706         request->received = request->next_when = request->proxy_when;
1707         rad_assert(request->proxy_reply == NULL);
1708
1709         /*
1710          *      Implement re-transmit algorithm as per RFC 5080
1711          *      Section 2.2.1.
1712          *
1713          *      We want IRT + RAND*IRT
1714          *      or 0.9 IRT + rand(0,.2) IRT
1715          *
1716          *      2^20 ~ USEC, and we want 2.
1717          *      rand(0,0.2) USEC ~ (rand(0,2^21) / 10)
1718          */
1719         delay = (fr_rand() & ((1 << 22) - 1)) / 10;
1720         request->delay = delay * request->home_server->coa_irt;
1721         delay = request->home_server->coa_irt * USEC;
1722         delay -= delay / 10;
1723         delay += request->delay;
1724      
1725         request->delay = delay;
1726         tv_add(&request->next_when, delay);
1727         request->next_callback = retransmit_coa_request;
1728         
1729         /*
1730          *      Note that we set proxied BEFORE sending the packet.
1731          *
1732          *      Once we send it, the request is tainted, as
1733          *      another thread may have picked it up.  Don't
1734          *      touch it!
1735          */
1736         request->num_proxied_requests = 1;
1737         request->num_proxied_responses = 0;
1738         request->child_pid = NO_SUCH_CHILD_PID;
1739
1740         update_event_timestamp(request->proxy, request->proxy_when.tv_sec);
1741
1742         request->child_state = REQUEST_PROXIED;
1743
1744         DEBUG_PACKET(request, request->proxy, 1);
1745
1746         request->proxy_listener->send(request->proxy_listener,
1747                                       request);
1748         return 1;
1749 }
1750 #endif  /* WITH_COA */
1751
1752 #ifdef WITH_PROXY
1753 static int process_proxy_reply(REQUEST *request)
1754 {
1755         int rcode;
1756         int post_proxy_type = 0;
1757         VALUE_PAIR *vp;
1758         
1759         /*
1760          *      Delete any reply we had accumulated until now.
1761          */
1762         pairfree(&request->reply->vps);
1763         
1764         /*
1765          *      Run the packet through the post-proxy stage,
1766          *      BEFORE playing games with the attributes.
1767          */
1768         vp = pairfind(request->config_items, PW_POST_PROXY_TYPE);
1769         if (vp) {
1770                 RDEBUG2("  Found Post-Proxy-Type %s", vp->vp_strvalue);
1771                 post_proxy_type = vp->vp_integer;
1772         }
1773         
1774         if (request->home_pool && request->home_pool->virtual_server) {
1775                 const char *old_server = request->server;
1776                 
1777                 request->server = request->home_pool->virtual_server;
1778                 RDEBUG2(" server %s {", request->server);
1779                 rcode = module_post_proxy(post_proxy_type, request);
1780                 RDEBUG2(" }");
1781                 request->server = old_server;
1782         } else {
1783                 rcode = module_post_proxy(post_proxy_type, request);
1784         }
1785
1786 #ifdef WITH_COA
1787         if (request->packet->code == request->proxy->code)
1788           /*
1789            *    Don't run the next bit if we originated a CoA
1790            *    packet, after receiving an Access-Request or
1791            *    Accounting-Request.
1792            */
1793 #endif
1794         
1795         /*
1796          *      There may NOT be a proxy reply, as we may be
1797          *      running Post-Proxy-Type = Fail.
1798          */
1799         if (request->proxy_reply) {
1800                 /*
1801                  *      Delete the Proxy-State Attributes from
1802                  *      the reply.  These include Proxy-State
1803                  *      attributes from us and remote server.
1804                  */
1805                 pairdelete(&request->proxy_reply->vps, PW_PROXY_STATE);
1806                 
1807                 /*
1808                  *      Add the attributes left in the proxy
1809                  *      reply to the reply list.
1810                  */
1811                 pairadd(&request->reply->vps, request->proxy_reply->vps);
1812                 request->proxy_reply->vps = NULL;
1813                 
1814                 /*
1815                  *      Free proxy request pairs.
1816                  */
1817                 pairfree(&request->proxy->vps);
1818         }
1819         
1820         switch (rcode) {
1821         default:  /* Don't do anything */
1822                 break;
1823         case RLM_MODULE_FAIL:
1824                 /* FIXME: debug print stuff */
1825                 request->child_state = REQUEST_DONE;
1826                 return 0;
1827                 
1828         case RLM_MODULE_HANDLED:
1829                 /* FIXME: debug print stuff */
1830                 request->child_state = REQUEST_DONE;
1831                 return 0;
1832         }
1833
1834         return 1;
1835 }
1836 #endif
1837
1838 static int request_pre_handler(REQUEST *request)
1839 {
1840         int rcode;
1841
1842         rad_assert(request->magic == REQUEST_MAGIC);
1843         rad_assert(request->packet != NULL);
1844
1845         request->child_state = REQUEST_RUNNING;
1846
1847         /*
1848          *      Don't decode the packet if it's an internal "fake"
1849          *      request.  Instead, just return so that the caller can
1850          *      process it.
1851          */
1852         if (request->packet->dst_port == 0) {
1853                 request->username = pairfind(request->packet->vps,
1854                                              PW_USER_NAME);
1855                 request->password = pairfind(request->packet->vps,
1856                                              PW_USER_PASSWORD);
1857                 return 1;
1858         }
1859
1860 #ifdef WITH_PROXY
1861         /*
1862          *      Put the decoded packet into it's proper place.
1863          */
1864         if (request->proxy_reply != NULL) {
1865                 /*
1866                  *      FIXME: For now, we can only proxy RADIUS packets.
1867                  *
1868                  *      In order to proxy other packets, we need to
1869                  *      somehow cache the "decode" function.
1870                  */
1871                 rcode = rad_decode(request->proxy_reply, request->proxy,
1872                                    request->home_server->secret);
1873                 DEBUG_PACKET(request, request->proxy_reply, 0);
1874         } else
1875 #endif
1876         if (request->packet->vps == NULL) {
1877                 rcode = request->listener->decode(request->listener, request);
1878                 
1879                 if (debug_condition) {
1880                         int result = FALSE;
1881                         const char *my_debug = debug_condition;
1882
1883                         /*
1884                          *      Ignore parse errors.
1885                          */
1886                         radius_evaluate_condition(request, RLM_MODULE_OK, 0,
1887                                                   &my_debug, 1,
1888                                                   &result);
1889                         if (result) {
1890                                 request->options = 2;
1891                                 request->radlog = radlog_request;
1892                         }
1893                 }
1894                 
1895                 DEBUG_PACKET(request, request->packet, 0);
1896         } else {
1897                 rcode = 0;
1898         }
1899
1900         if (rcode < 0) {
1901                 RDEBUG("%s Dropping packet without response.", fr_strerror());
1902                 request->reply->offset = -2; /* bad authenticator */
1903                 request->child_state = REQUEST_DONE;
1904                 return 0;
1905         }
1906
1907         if (!request->username) {
1908                 request->username = pairfind(request->packet->vps,
1909                                              PW_USER_NAME);
1910         }
1911
1912 #ifdef WITH_PROXY
1913         if (request->proxy) {
1914                 return process_proxy_reply(request);
1915 #endif
1916         }
1917
1918         return 1;
1919 }
1920
1921
1922 #ifdef WITH_PROXY
1923 /*
1924  *      Do state handling when we proxy a request.
1925  */
1926 static int proxy_request(REQUEST *request)
1927 {
1928         struct timeval when;
1929         char buffer[128];
1930
1931 #ifdef WITH_COA
1932         if (request->coa) {
1933                 RDEBUG("WARNING: Cannot proxy and originate CoA packets at the same time.  Cancelling CoA request");
1934                 ev_request_free(&request->coa);
1935         }
1936 #endif
1937
1938         if (request->home_server->server) {
1939                 RDEBUG("ERROR: Cannot perform real proxying to a virtual server.");
1940                 return 0;
1941         }
1942
1943         if (!insert_into_proxy_hash(request)) {
1944                 radlog(L_PROXY, "Failed inserting request into proxy hash.");
1945                 return 0;
1946         }
1947
1948         request->proxy_listener->encode(request->proxy_listener, request);
1949
1950         when = request->received;
1951         when.tv_sec += request->root->max_request_time;
1952
1953         gettimeofday(&request->proxy_when, NULL);
1954
1955         request->next_when = request->proxy_when;
1956         request->next_when.tv_sec += request->home_server->response_window;
1957
1958         rad_assert(request->home_server->response_window > 0);
1959
1960         if (timercmp(&when, &request->next_when, <)) {
1961                 request->next_when = when;
1962         }
1963         request->next_callback = no_response_to_proxied_request;
1964
1965         RDEBUG2("Proxying request %u to home server %s port %d",
1966                request->number,
1967                inet_ntop(request->proxy->dst_ipaddr.af,
1968                          &request->proxy->dst_ipaddr.ipaddr,
1969                          buffer, sizeof(buffer)),
1970                 request->proxy->dst_port);
1971
1972         /*
1973          *      Note that we set proxied BEFORE sending the packet.
1974          *
1975          *      Once we send it, the request is tainted, as
1976          *      another thread may have picked it up.  Don't
1977          *      touch it!
1978          */
1979         request->num_proxied_requests = 1;
1980         request->num_proxied_responses = 0;
1981 #ifdef HAVE_PTHREAD_H
1982         request->child_pid = NO_SUCH_CHILD_PID;
1983 #endif
1984         request->child_state = REQUEST_PROXIED;
1985
1986         DEBUG_PACKET(request, request->proxy, 1);
1987
1988         request->proxy_listener->send(request->proxy_listener,
1989                                       request);
1990         return 1;
1991 }
1992
1993
1994 /*
1995  *      "Proxy" the request by sending it to a new virtual server.
1996  */
1997 static int proxy_to_virtual_server(REQUEST *request)
1998 {
1999         REQUEST *fake;
2000
2001         if (!request->home_server || !request->home_server->server) return 0;
2002
2003         if (request->parent) {
2004                 RDEBUG2("WARNING: Cancelling proxy request to virtual server %s as this request was itself proxied.", request->home_server->server);
2005                 return 0;
2006         }
2007
2008         fake = request_alloc_fake(request);
2009         if (!fake) {
2010                 RDEBUG2("WARNING: Out of memory");
2011                 return 0;
2012         }
2013
2014         fake->packet->vps = paircopy(request->proxy->vps);
2015         fake->server = request->home_server->server;
2016
2017         if ((request->proxy->code != PW_AUTHENTICATION_REQUEST)
2018 #ifdef WITH_ACCOUNTING
2019             && (request->proxy->code == PW_ACCOUNTING_REQUEST)
2020 #endif
2021                 ) {
2022                 RDEBUG2("Unknown packet type %d", request->proxy->code);
2023                 ev_request_free(&fake);
2024                 return 0;
2025         }
2026
2027         rad_assert(request->process != NULL);
2028
2029         RDEBUG2(">>> Sending proxied request internally to virtual server.");
2030         radius_handle_request(fake, fake->process);
2031         RDEBUG2("<<< Received proxied response code %d from internal virtual server.", fake->reply->code);
2032
2033         if (fake->reply->code != 0) {
2034                 request->proxy_reply = fake->reply;
2035                 fake->reply = NULL;
2036         } else {
2037                 /*
2038                  *      There was no response
2039                  */
2040                 setup_post_proxy_fail(request);
2041         }
2042
2043         ev_request_free(&fake);
2044
2045         process_proxy_reply(request);
2046
2047         /*
2048          *      Process it through the normal section again, but ONLY
2049          *      if we received a proxy reply..
2050          */
2051         if (request->proxy_reply) {
2052                 if (request->server) RDEBUG("server %s {",
2053                                             request->server != NULL ?
2054                                             request->server : ""); 
2055                 request->process(request);
2056                 
2057                 if (request->server) RDEBUG("} # server %s",
2058                                             request->server != NULL ?
2059                                             request->server : "");
2060         }
2061
2062         return 2;               /* success, but NOT '1' !*/
2063 }
2064
2065 /*
2066  *      Return 1 if we did proxy it, or the proxy attempt failed
2067  *      completely.  Either way, the caller doesn't touch the request
2068  *      any more if we return 1.
2069  */
2070 static int successfully_proxied_request(REQUEST *request)
2071 {
2072         int rcode;
2073         int pre_proxy_type = 0;
2074         VALUE_PAIR *realmpair;
2075         VALUE_PAIR *strippedname;
2076         VALUE_PAIR *vp;
2077         char *realmname = NULL;
2078         home_server *home;
2079         REALM *realm = NULL;
2080         home_pool_t *pool;
2081
2082         /*
2083          *      If it was already proxied, do nothing.
2084          *
2085          *      FIXME: This should really be a serious error.
2086          */
2087         if (request->in_proxy_hash ||
2088             (request->proxy_reply && (request->proxy_reply->code != 0))) {
2089                 return 0;
2090         }
2091
2092         realmpair = pairfind(request->config_items, PW_PROXY_TO_REALM);
2093         if (!realmpair || (realmpair->length == 0)) {
2094                 int pool_type;
2095
2096                 vp = pairfind(request->config_items, PW_HOME_SERVER_POOL);
2097                 if (!vp) return 0;
2098
2099                 switch (request->packet->code) {
2100                 case PW_AUTHENTICATION_REQUEST:
2101                         pool_type = HOME_TYPE_AUTH;
2102                         break;
2103
2104 #ifdef WITH_ACCOUNTING
2105                 case PW_ACCOUNTING_REQUEST:
2106                         pool_type = HOME_TYPE_ACCT;
2107                         break;
2108 #endif
2109
2110 #ifdef WITH_COA
2111                 case PW_COA_REQUEST:
2112                 case PW_DISCONNECT_REQUEST:
2113                         pool_type = HOME_TYPE_COA;
2114                         break;
2115 #endif
2116
2117                 default:
2118                         return 0;
2119                 }
2120
2121                 pool = home_pool_byname(vp->vp_strvalue, pool_type);
2122                 if (!pool) {
2123                         RDEBUG2("ERROR: Cannot proxy to unknown pool %s",
2124                                 vp->vp_strvalue);
2125                         return 0;
2126                 }
2127
2128                 realmname = NULL; /* no realms */
2129                 realm = NULL;
2130                 goto found_pool;
2131         }
2132
2133         realmname = (char *) realmpair->vp_strvalue;
2134
2135         realm = realm_find2(realmname);
2136         if (!realm) {
2137                 RDEBUG2("ERROR: Cannot proxy to unknown realm %s", realmname);
2138                 return 0;
2139         }
2140
2141         /*
2142          *      Figure out which pool to use.
2143          */
2144         if (request->packet->code == PW_AUTHENTICATION_REQUEST) {
2145                 pool = realm->auth_pool;
2146
2147 #ifdef WITH_ACCOUNTING
2148         } else if (request->packet->code == PW_ACCOUNTING_REQUEST) {
2149                 pool = realm->acct_pool;
2150 #endif
2151
2152 #ifdef WITH_COA
2153         } else if ((request->packet->code == PW_COA_REQUEST) ||
2154                    (request->packet->code == PW_DISCONNECT_REQUEST)) {
2155                 pool = realm->acct_pool;
2156 #endif
2157
2158         } else {
2159                 rad_panic("Internal sanity check failed");
2160         }
2161
2162         if (!pool) {
2163                 RDEBUG2(" WARNING: Cancelling proxy to Realm %s, as the realm is local.",
2164                        realmname);
2165                 return 0;
2166         }
2167
2168 found_pool:
2169         home = home_server_ldb(realmname, pool, request);
2170         if (!home) {
2171                 RDEBUG2("ERROR: Failed to find live home server for realm %s",
2172                        realmname);
2173                 return -1;
2174         }
2175         request->home_pool = pool;
2176
2177 #ifdef WITH_COA
2178         /*
2179          *      Once we've decided to proxy a request, we cannot send
2180          *      a CoA packet.  So we free up any CoA packet here.
2181          */
2182         ev_request_free(&request->coa);
2183 #endif
2184         /*
2185          *      Remember that we sent the request to a Realm.
2186          */
2187         if (realmname) pairadd(&request->packet->vps,
2188                                pairmake("Realm", realmname, T_OP_EQ));
2189
2190         /*
2191          *      Strip the name, if told to.
2192          *
2193          *      Doing it here catches the case of proxied tunneled
2194          *      requests.
2195          */
2196         if (realm && (realm->striprealm == TRUE) &&
2197            (strippedname = pairfind(request->proxy->vps, PW_STRIPPED_USER_NAME)) != NULL) {
2198                 /*
2199                  *      If there's a Stripped-User-Name attribute in
2200                  *      the request, then use THAT as the User-Name
2201                  *      for the proxied request, instead of the
2202                  *      original name.
2203                  *
2204                  *      This is done by making a copy of the
2205                  *      Stripped-User-Name attribute, turning it into
2206                  *      a User-Name attribute, deleting the
2207                  *      Stripped-User-Name and User-Name attributes
2208                  *      from the vps list, and making the new
2209                  *      User-Name the head of the vps list.
2210                  */
2211                 vp = pairfind(request->proxy->vps, PW_USER_NAME);
2212                 if (!vp) {
2213                         vp = radius_paircreate(request, NULL,
2214                                                PW_USER_NAME, PW_TYPE_STRING);
2215                         rad_assert(vp != NULL); /* handled by above function */
2216                         /* Insert at the START of the list */
2217                         vp->next = request->proxy->vps;
2218                         request->proxy->vps = vp;
2219                 }
2220                 memcpy(vp->vp_strvalue, strippedname->vp_strvalue,
2221                        sizeof(vp->vp_strvalue));
2222                 vp->length = strippedname->length;
2223
2224                 /*
2225                  *      Do NOT delete Stripped-User-Name.
2226                  */
2227         }
2228
2229         /*
2230          *      If there is no PW_CHAP_CHALLENGE attribute but
2231          *      there is a PW_CHAP_PASSWORD we need to add it
2232          *      since we can't use the request authenticator
2233          *      anymore - we changed it.
2234          */
2235         if ((request->packet->code == PW_AUTHENTICATION_REQUEST) &&
2236             pairfind(request->proxy->vps, PW_CHAP_PASSWORD) &&
2237             pairfind(request->proxy->vps, PW_CHAP_CHALLENGE) == NULL) {
2238                 vp = radius_paircreate(request, &request->proxy->vps,
2239                                        PW_CHAP_CHALLENGE, PW_TYPE_OCTETS);
2240                 vp->length = AUTH_VECTOR_LEN;
2241                 memcpy(vp->vp_strvalue, request->packet->vector, AUTH_VECTOR_LEN);
2242         }
2243
2244         /*
2245          *      The RFC's say we have to do this, but FreeRADIUS
2246          *      doesn't need it.
2247          */
2248         vp = radius_paircreate(request, &request->proxy->vps,
2249                                PW_PROXY_STATE, PW_TYPE_OCTETS);
2250         snprintf(vp->vp_strvalue, sizeof(vp->vp_strvalue), "%d",
2251                  request->packet->id);
2252         vp->length = strlen(vp->vp_strvalue);
2253
2254         /*
2255          *      Should be done BEFORE inserting into proxy hash, as
2256          *      pre-proxy may use this information, or change it.
2257          */
2258         request->proxy->code = request->packet->code;
2259
2260         /*
2261          *      Call the pre-proxy routines.
2262          */
2263         vp = pairfind(request->config_items, PW_PRE_PROXY_TYPE);
2264         if (vp) {
2265                 RDEBUG2("  Found Pre-Proxy-Type %s", vp->vp_strvalue);
2266                 pre_proxy_type = vp->vp_integer;
2267         }
2268
2269         rad_assert(request->home_pool != NULL);
2270
2271         if (request->home_pool->virtual_server) {
2272                 const char *old_server = request->server;
2273                 
2274                 request->server = request->home_pool->virtual_server;
2275                 RDEBUG2(" server %s {", request->server);
2276                 rcode = module_pre_proxy(pre_proxy_type, request);
2277                 RDEBUG2(" }");
2278                         request->server = old_server;
2279         } else {
2280                 rcode = module_pre_proxy(pre_proxy_type, request);
2281         }
2282         switch (rcode) {
2283         case RLM_MODULE_FAIL:
2284         case RLM_MODULE_INVALID:
2285         case RLM_MODULE_NOTFOUND:
2286         case RLM_MODULE_USERLOCK:
2287         default:
2288                 /* FIXME: debug print failed stuff */
2289                 return -1;
2290
2291         case RLM_MODULE_REJECT:
2292         case RLM_MODULE_HANDLED:
2293                 return 0;
2294
2295         /*
2296          *      Only proxy the packet if the pre-proxy code succeeded.
2297          */
2298         case RLM_MODULE_NOOP:
2299         case RLM_MODULE_OK:
2300         case RLM_MODULE_UPDATED:
2301                 break;
2302         }
2303
2304         /*
2305          *      If it's a fake request, don't send the proxy
2306          *      packet.  The outer tunnel session will take
2307          *      care of doing that.
2308          */
2309         if (request->packet->dst_port == 0) {
2310                 request->home_server = NULL;
2311                 return 1;
2312         }
2313
2314         if (request->home_server->server) {
2315                 return proxy_to_virtual_server(request);
2316         }
2317
2318         if (!proxy_request(request)) {
2319                 RDEBUG("ERROR: Failed to proxy request %u", request->number);
2320                 return -1;
2321         }
2322         
2323         return 1;
2324 }
2325 #endif
2326
2327 static void request_post_handler(REQUEST *request)
2328 {
2329         int child_state = -1;
2330         struct timeval when;
2331         VALUE_PAIR *vp;
2332
2333         if ((request->master_state == REQUEST_STOP_PROCESSING) ||
2334             (request->parent &&
2335              (request->parent->master_state == REQUEST_STOP_PROCESSING))) {
2336                 RDEBUG2("request %u was cancelled.", request->number);
2337 #ifdef HAVE_PTHREAD_H
2338                 request->child_pid = NO_SUCH_CHILD_PID;
2339 #endif
2340                 child_state = REQUEST_DONE;
2341                 goto cleanup;
2342         }
2343
2344         if (request->child_state != REQUEST_RUNNING) {
2345                 rad_panic("Internal sanity check failed");
2346         }
2347
2348 #ifdef WITH_COA
2349         /*
2350          *      If it's not in the request hash, it's a CoA request.
2351          *      We hope.
2352          */
2353         if (!request->in_request_hash &&
2354             request->proxy &&
2355             ((request->proxy->code == PW_COA_REQUEST) ||
2356              (request->proxy->code == PW_DISCONNECT_REQUEST))) {
2357                 request->next_callback = NULL;
2358                 child_state = REQUEST_DONE;
2359                 goto cleanup;
2360         }
2361 #endif
2362
2363         /*
2364          *      Catch Auth-Type := Reject BEFORE proxying the packet.
2365          */
2366         if ((request->packet->code == PW_AUTHENTICATION_REQUEST) &&
2367             (request->reply->code == 0) &&
2368             ((vp = pairfind(request->config_items, PW_AUTH_TYPE)) != NULL) &&
2369             (vp->vp_integer == PW_AUTHTYPE_REJECT)) {
2370                 request->reply->code = PW_AUTHENTICATION_REJECT;
2371         }
2372
2373 #ifdef WITH_PROXY
2374         if (request->root->proxy_requests &&
2375             !request->in_proxy_hash &&
2376             (request->reply->code == 0) &&
2377             (request->packet->dst_port != 0) &&
2378             (request->packet->code != PW_STATUS_SERVER)) {
2379                 int rcode = successfully_proxied_request(request);
2380
2381                 if (rcode == 1) return; /* request is invalid */
2382
2383                 /*
2384                  *      Failed proxying it (dead home servers, etc.)
2385                  *      Run it through Post-Proxy-Type = Fail, and
2386                  *      respond to the request.
2387                  *
2388                  *      Note that we're in a child thread here, so we
2389                  *      do NOT re-schedule the request.  Instead, we
2390                  *      do what we would have done, which is run the
2391                  *      pre-handler, a NULL request handler, and then
2392                  *      the post handler.
2393                  */
2394                 if ((rcode < 0) && setup_post_proxy_fail(request)) {
2395                         request_pre_handler(request);
2396                 }
2397
2398                 /*
2399                  *      Else we weren't supposed to proxy it,
2400                  *      OR we proxied it internally to a virutal server.
2401                  */
2402         }
2403
2404 #ifdef WITH_COA
2405         else if (request->proxy && request->coa) {
2406                 RDEBUG("WARNING: Cannot proxy and originate CoA packets at the same time.  Cancelling CoA request");
2407                 ev_request_free(&request->coa);
2408         }
2409 #endif
2410 #endif
2411
2412         /*
2413          *      Fake requests don't get encoded or signed.  The caller
2414          *      also requires the reply VP's, so we don't free them
2415          *      here!
2416          */
2417         if (request->packet->dst_port == 0) {
2418                 /* FIXME: RDEBUG going to the next request */
2419 #ifdef HAVE_PTHREAD_H
2420                 request->child_pid = NO_SUCH_CHILD_PID;
2421 #endif
2422                 request->child_state = REQUEST_DONE;
2423                 return;
2424         }
2425
2426 #ifdef WITH_PROXY
2427         /*
2428          *      Copy Proxy-State from the request to the reply.
2429          */
2430         vp = paircopy2(request->packet->vps, PW_PROXY_STATE);
2431         if (vp) pairadd(&request->reply->vps, vp);
2432 #endif
2433
2434         /*
2435          *      Access-Requests get delayed or cached.
2436          */
2437         switch (request->packet->code) {
2438         case PW_AUTHENTICATION_REQUEST:
2439                 gettimeofday(&request->next_when, NULL);
2440
2441                 if (request->reply->code == 0) {
2442                         /*
2443                          *      Check if the lack of response is intentional.
2444                          */
2445                         vp = pairfind(request->config_items,
2446                                       PW_RESPONSE_PACKET_TYPE);
2447                         if (!vp) {
2448                                 RDEBUG2("There was no response configured: rejecting request %u",
2449                                        request->number);
2450                                 request->reply->code = PW_AUTHENTICATION_REJECT;
2451
2452                         } else if (vp->vp_integer == 256) {
2453                                 RDEBUG2("Not responding to request %u",
2454                                        request->number);
2455
2456                                 /*
2457                                  *      Force cleanup after a long
2458                                  *      time, so that we don't
2459                                  *      re-process the packet.
2460                                  */
2461                                 request->next_when.tv_sec += request->root->max_request_time;
2462                                 request->next_callback = cleanup_delay;
2463                                 child_state = REQUEST_CLEANUP_DELAY;
2464                                 break;
2465                         } else {
2466                                 request->reply->code = vp->vp_integer;
2467
2468                         }
2469                 }
2470
2471                 /*
2472                  *      Run rejected packets through
2473                  *
2474                  *      Post-Auth-Type = Reject
2475                  */
2476                 if (request->reply->code == PW_AUTHENTICATION_REJECT) {
2477                         pairdelete(&request->config_items, PW_POST_AUTH_TYPE);
2478                         vp = radius_pairmake(request, &request->config_items,
2479                                              "Post-Auth-Type", "Reject",
2480                                              T_OP_SET);
2481                         if (vp) rad_postauth(request);
2482
2483                         /*
2484                          *      If configured, delay Access-Reject packets.
2485                          *
2486                          *      If request->root->reject_delay = 0, we discover
2487                          *      that we have to send the packet now.
2488                          */
2489                         when = request->received;
2490                         when.tv_sec += request->root->reject_delay;
2491
2492                         if (timercmp(&when, &request->next_when, >)) {
2493                                 RDEBUG2("Delaying reject of request %u for %d seconds",
2494                                        request->number,
2495                                        request->root->reject_delay);
2496                                 request->next_when = when;
2497                                 request->next_callback = reject_delay;
2498 #ifdef HAVE_PTHREAD_H
2499                                 request->child_pid = NO_SUCH_CHILD_PID;
2500 #endif
2501                                 request->child_state = REQUEST_REJECT_DELAY;
2502                                 return;
2503                         }
2504                 }
2505
2506 #ifdef WITH_COA
2507         case PW_COA_REQUEST:
2508         case PW_DISCONNECT_REQUEST:
2509 #endif
2510                 request->next_when.tv_sec += request->root->cleanup_delay;
2511                 request->next_callback = cleanup_delay;
2512                 child_state = REQUEST_CLEANUP_DELAY;
2513                 break;
2514
2515         case PW_ACCOUNTING_REQUEST:
2516                 request->next_callback = NULL; /* just to be safe */
2517                 child_state = REQUEST_DONE;
2518                 break;
2519
2520                 /*
2521                  *      FIXME: Status-Server should probably not be
2522                  *      handled here...
2523                  */
2524         case PW_STATUS_SERVER:
2525                 request->next_callback = NULL;
2526                 child_state = REQUEST_DONE;
2527                 break;
2528
2529         default:
2530                 /*
2531                  *      DHCP, VMPS, etc.
2532                  */
2533                 request->next_callback = NULL;
2534                 child_state = REQUEST_DONE;
2535                 break;
2536         }
2537
2538         DEBUG_PACKET(request, request->reply, 1);
2539         request->listener->send(request->listener, request);
2540
2541 #ifdef WITH_COA
2542         /*
2543          *      Now that we've completely processed the request,
2544          *      see if we need to originate a CoA request.  But ONLY
2545          *      if it wasn't proxied.
2546          */
2547         if (!request->proxy &&
2548             (request->coa ||
2549              (pairfind(request->config_items, PW_SEND_COA_REQUEST) != NULL))) {
2550                 if (!originated_coa_request(request)) {
2551                         RDEBUG2("Do CoA Fail handler here");
2552                 }
2553                 /* request->coa is stil set, so we can update events */
2554         }
2555 #endif
2556
2557  cleanup:
2558         /*
2559          *      Clean up.  These are no longer needed.
2560          */
2561         pairfree(&request->config_items);
2562
2563         pairfree(&request->packet->vps);
2564         request->username = NULL;
2565         request->password = NULL;
2566
2567         pairfree(&request->reply->vps);
2568
2569 #ifdef WITH_PROXY
2570         if (request->proxy) {
2571                 pairfree(&request->proxy->vps);
2572
2573                 if (request->proxy_reply) {
2574                         pairfree(&request->proxy_reply->vps);
2575                 }
2576
2577 #if 0
2578                 /*
2579                  *      We're not tracking responses from the home
2580                  *      server, we can therefore free this memory in
2581                  *      the child thread.
2582                  */
2583                 if (!request->in_proxy_hash) {
2584                         rad_free(&request->proxy);
2585                         rad_free(&request->proxy_reply);
2586                         request->home_server = NULL;
2587                 }
2588 #endif
2589         }
2590 #endif
2591
2592         RDEBUG2("Finished request %u.", request->number);
2593         rad_assert(child_state >= 0);
2594         request->child_state = child_state;
2595
2596         /*
2597          *      Single threaded mode: update timers now.
2598          */
2599         if (!have_children) wait_a_bit(request);
2600 }
2601
2602
2603 static void received_retransmit(REQUEST *request, const RADCLIENT *client)
2604 {
2605 #ifdef WITH_PROXY
2606         char buffer[128];
2607 #endif
2608
2609         RAD_STATS_TYPE_INC(request->listener, total_dup_requests);
2610         RAD_STATS_CLIENT_INC(request->listener, client, total_dup_requests);
2611         
2612         switch (request->child_state) {
2613         case REQUEST_QUEUED:
2614         case REQUEST_RUNNING:
2615 #ifdef WITH_PROXY
2616         discard:
2617 #endif
2618                 radlog(L_ERR, "Discarding duplicate request from "
2619                        "client %s port %d - ID: %d due to unfinished request %u",
2620                        client->shortname,
2621                        request->packet->src_port,request->packet->id,
2622                        request->number);
2623                 break;
2624
2625 #ifdef WITH_PROXY
2626         case REQUEST_PROXIED:
2627                 /*
2628                  *      We're not supposed to have duplicate
2629                  *      accounting packets.  The other states handle
2630                  *      duplicates fine (discard, or send duplicate
2631                  *      reply).  But we do NOT want to retransmit an
2632                  *      accounting request here, because that would
2633                  *      involve updating the Acct-Delay-Time, and
2634                  *      therefore changing the packet Id, etc.
2635                  *
2636                  *      Instead, we just discard the packet.  We may
2637                  *      eventually respond, or the client will send a
2638                  *      new accounting packet.            
2639                  *
2640                  *      The same comments go for Status-Server, and
2641                  *      other packet types.
2642                  *
2643                  *      FIXME: coa: when we proxy CoA && Disconnect
2644                  *      packets, this logic has to be fixed.
2645                  */
2646                 if (request->packet->code != PW_AUTHENTICATION_REQUEST) {
2647                         goto discard;
2648                 }
2649
2650                 check_for_zombie_home_server(request);
2651
2652                 /*
2653                  *      If we've just discovered that the home server
2654                  *      is dead, OR the socket has been closed, look for
2655                  *      another connection to a home server.
2656                  */
2657                 if (((request->packet->dst_port != 0) &&
2658                      (request->home_server->state == HOME_STATE_IS_DEAD)) ||
2659                     (request->proxy_listener->status != RAD_LISTEN_STATUS_KNOWN)) {
2660                         home_server *home;
2661
2662                         remove_from_proxy_hash(request);
2663
2664                         home = home_server_ldb(NULL, request->home_pool, request);
2665                         if (!home) {
2666                                 RDEBUG2("Failed to find live home server for request %u", request->number);
2667                         no_home_servers:
2668                                 /*
2669                                  *      Do post-request processing,
2670                                  *      and any insertion of necessary
2671                                  *      events.
2672                                  */
2673                                 post_proxy_fail_handler(request);
2674                                 return;
2675                         }
2676
2677                         request->proxy->code = request->packet->code;
2678
2679                         /*
2680                          *      Free the old packet, to force re-encoding
2681                          */
2682                         free(request->proxy->data);
2683                         request->proxy->data = NULL;
2684                         request->proxy->data_len = 0;
2685
2686                         /*
2687                          *      This request failed over to a virtual
2688                          *      server.  Push it back onto the queue
2689                          *      to be processed.
2690                          */
2691                         if (request->home_server->server) {
2692                                 proxy_fallback_handler(request);
2693                                 return;
2694                         }
2695
2696                         /*
2697                          *      Try to proxy the request.
2698                          */
2699                         if (!proxy_request(request)) {
2700                                 RDEBUG("ERROR: Failed to re-proxy request %u", request->number);
2701                                 goto no_home_servers;
2702                         }
2703
2704                         /*
2705                          *      This code executes in the main server
2706                          *      thread, so there's no need for locking.
2707                          */
2708                         rad_assert(request->next_callback != NULL);
2709                         INSERT_EVENT(request->next_callback, request);
2710                         request->next_callback = NULL;
2711                         return;
2712                 } /* else the home server is still alive */
2713
2714 #ifdef WITH_TCP
2715                 if (request->home_server->proto == IPPROTO_TCP) {
2716                         DEBUG2("Suppressing duplicate proxied request to home server %s port %d proto TCP - ID: %d",
2717                                inet_ntop(request->proxy->dst_ipaddr.af,
2718                                          &request->proxy->dst_ipaddr.ipaddr,
2719                                          buffer, sizeof(buffer)),
2720                                request->proxy->dst_port,
2721                                request->proxy->id);
2722                         break;
2723                 }
2724 #endif
2725
2726                 RDEBUG2("Sending duplicate proxied request to home server %s port %d - ID: %d",
2727                        inet_ntop(request->proxy->dst_ipaddr.af,
2728                                  &request->proxy->dst_ipaddr.ipaddr,
2729                                  buffer, sizeof(buffer)),
2730                        request->proxy->dst_port,
2731                        request->proxy->id);
2732                 request->num_proxied_requests++;
2733
2734                 DEBUG_PACKET(request, request->proxy, 1);
2735                 request->proxy_listener->send(request->proxy_listener,
2736                                               request);
2737                 break;
2738 #endif
2739
2740         case REQUEST_REJECT_DELAY:
2741                 RDEBUG2("Waiting to send Access-Reject "
2742                        "to client %s port %d - ID: %d",
2743                        client->shortname,
2744                        request->packet->src_port, request->packet->id);
2745                 break;
2746
2747         case REQUEST_CLEANUP_DELAY:
2748         case REQUEST_DONE:
2749                 if (request->reply->code == 0) {
2750                         RDEBUG2("Ignoring retransmit from client %s port %d "
2751                                 "- ID: %d, no reply was configured",
2752                                 client->shortname,
2753                                 request->packet->src_port, request->packet->id);
2754                         return;
2755                 }
2756
2757                 /*
2758                  *      FIXME: This sends duplicate replies to
2759                  *      accounting requests, even if Acct-Delay-Time
2760                  *      or Event-Timestamp is in the packet.  In those
2761                  *      cases, the Id should be changed, and the packet
2762                  *      re-calculated.
2763                  */
2764                 RDEBUG2("Sending duplicate reply "
2765                        "to client %s port %d - ID: %d",
2766                        client->shortname,
2767                        request->packet->src_port, request->packet->id);
2768                 DEBUG_PACKET(request, request->reply, 1);
2769                 request->listener->send(request->listener, request);
2770                 break;
2771         }
2772 }
2773
2774
2775 static void received_conflicting_request(REQUEST *request,
2776                                          const RADCLIENT *client)
2777 {
2778         radlog(L_ERR, "Received conflicting packet from "
2779                "client %s port %d - ID: %d due to unfinished request %u.  Giving up on old request.",
2780                client->shortname,
2781                request->packet->src_port, request->packet->id,
2782                request->number);
2783
2784         /*
2785          *      Nuke it from the request hash, so we can receive new
2786          *      packets.
2787          */
2788         remove_from_request_hash(request);
2789
2790         switch (request->child_state) {
2791                 /*
2792                  *      Tell it to stop, and wait for it to do so.
2793                  */
2794         default:
2795                 request->master_state = REQUEST_STOP_PROCESSING;
2796                 request->delay += request->delay >> 1;
2797
2798                 tv_add(&request->when, request->delay);
2799
2800                 INSERT_EVENT(wait_for_child_to_die, request);
2801                 return;
2802
2803                 /*
2804                  *      Catch race conditions.  It may have switched
2805                  *      from running to done while this code is being
2806                  *      executed.
2807                  */
2808         case REQUEST_REJECT_DELAY:
2809         case REQUEST_CLEANUP_DELAY:
2810         case REQUEST_DONE:
2811                 break;
2812         }
2813 }
2814
2815
2816 static int can_handle_new_request(RADIUS_PACKET *packet,
2817                                   RADCLIENT *client,
2818                                   struct main_config_t *root)
2819 {
2820         /*
2821          *      Count the total number of requests, to see if
2822          *      there are too many.  If so, return with an
2823          *      error.
2824          */
2825         if (root->max_requests) {
2826                 int request_count = fr_packet_list_num_elements(pl);
2827
2828                 /*
2829                  *      This is a new request.  Let's see if
2830                  *      it makes us go over our configured
2831                  *      bounds.
2832                  */
2833                 if (request_count > root->max_requests) {
2834                         radlog(L_ERR, "Dropping request (%d is too many): "
2835                                "from client %s port %d - ID: %d", request_count,
2836                                client->shortname,
2837                                packet->src_port, packet->id);
2838                         radlog(L_INFO, "WARNING: Please check the configuration file.\n"
2839                                "\tThe value for 'max_requests' is probably set too low.\n");
2840                         return 0;
2841                 } /* else there were a small number of requests */
2842         } /* else there was no configured limit for requests */
2843
2844         /*
2845          *      FIXME: Add per-client checks.  If one client is sending
2846          *      too many packets, start discarding them.
2847          *
2848          *      We increment the counters here, and decrement them
2849          *      when the response is sent... somewhere in this file.
2850          */
2851
2852         /*
2853          *      FUTURE: Add checks for system load.  If the system is
2854          *      busy, start dropping requests...
2855          *
2856          *      We can probably keep some statistics ourselves...  if
2857          *      there are more requests coming in than we can handle,
2858          *      start dropping some.
2859          */
2860
2861         return 1;
2862 }
2863
2864
2865 int received_request(rad_listen_t *listener,
2866                      RADIUS_PACKET *packet, REQUEST **prequest,
2867                      RADCLIENT *client)
2868 {
2869         RADIUS_PACKET **packet_p;
2870         REQUEST *request = NULL;
2871         struct main_config_t *root = &mainconfig;
2872
2873         packet_p = fr_packet_list_find(pl, packet);
2874         if (packet_p) {
2875                 request = fr_packet2myptr(REQUEST, packet, packet_p);
2876                 rad_assert(request->in_request_hash);
2877
2878                 if ((request->packet->data_len == packet->data_len) &&
2879                     (memcmp(request->packet->vector, packet->vector,
2880                             sizeof(packet->vector)) == 0)) {
2881                         received_retransmit(request, client);
2882                         return 0;
2883                 }
2884
2885                 /*
2886                  *      The new request is different from the old one,
2887                  *      but maybe the old is finished.  If so, delete
2888                  *      the old one.
2889                  */
2890                 switch (request->child_state) {
2891                         struct timeval when;
2892
2893                 default:
2894                         /*
2895                          *      Special hacks for race conditions.
2896                          *      The reply is encoded, and therefore
2897                          *      likely sent.  We received a *new*
2898                          *      packet from the client, likely before
2899                          *      the next line or two of code which
2900                          *      updated the child state.  In this
2901                          *      case, just accept the new request.
2902                          */
2903                         if ((request->reply->code != 0) &&
2904                             request->reply->data) {
2905                                 radlog(L_INFO, "WARNING: Allowing fast client %s port %d - ID: %d for recent request %u.",
2906                                        client->shortname,
2907                                        packet->src_port, packet->id,
2908                                        request->number);
2909                                 remove_from_request_hash(request);
2910                                 request = NULL;
2911                                 break;
2912                         }
2913
2914                         gettimeofday(&when, NULL);
2915                         when.tv_sec -= 1;
2916
2917                         /*
2918                          *      If the cached request was received
2919                          *      within the last second, then we
2920                          *      discard the NEW request instead of the
2921                          *      old one.  This will happen ONLY when
2922                          *      the client is severely broken, and is
2923                          *      sending conflicting packets very
2924                          *      quickly.
2925                          */
2926                         if (timercmp(&when, &request->received, <)) {
2927                                 radlog(L_ERR, "Discarding conflicting packet from "
2928                                        "client %s port %d - ID: %d due to recent request %u.",
2929                                        client->shortname,
2930                                        packet->src_port, packet->id,
2931                                        request->number);
2932                                 return 0;
2933                         }
2934
2935                         received_conflicting_request(request, client);
2936                         request = NULL;
2937                         break;
2938
2939                 case REQUEST_REJECT_DELAY:
2940                 case REQUEST_CLEANUP_DELAY:
2941                         request->child_state = REQUEST_DONE;
2942                 case REQUEST_DONE:
2943                         cleanup_delay(request);
2944                         request = NULL;
2945                         break;
2946                 }
2947         }
2948
2949         /*
2950          *      We may want to quench the new request.
2951          */
2952         if ((listener->type != RAD_LISTEN_DETAIL) &&
2953             !can_handle_new_request(packet, client, root)) {
2954                 return 0;
2955         }
2956
2957         /*
2958          *      Create and initialize the new request.
2959          */
2960         request = request_alloc(); /* never fails */
2961
2962         if ((request->reply = rad_alloc(0)) == NULL) {
2963                 radlog(L_ERR, "No memory");
2964                 return 0;
2965         }
2966
2967         request->listener = listener;
2968         request->client = client;
2969         request->packet = packet;
2970         request->packet->timestamp = request->timestamp;
2971         request->number = request_num_counter++;
2972         request->priority = listener->type;
2973 #ifdef HAVE_PTHREAD_H
2974         request->child_pid = NO_SUCH_CHILD_PID;
2975 #endif
2976
2977         /*
2978          *      Status-Server packets go to the head of the queue.
2979          */
2980         if (request->packet->code == PW_STATUS_SERVER) request->priority = 0;
2981
2982         /*
2983          *      Set virtual server identity
2984          */
2985         if (client->server) {
2986                 request->server = client->server;
2987         } else if (listener->server) {
2988                 request->server = listener->server;
2989         } else {
2990                 request->server = NULL;
2991         }
2992
2993         /*
2994          *      Remember the request in the list.
2995          */
2996         if (!fr_packet_list_insert(pl, &request->packet)) {
2997                 radlog(L_ERR, "Failed to insert request %u in the list of live requests: discarding", request->number);
2998                 ev_request_free(&request);
2999                 return 0;
3000         }
3001
3002         request->in_request_hash = TRUE;
3003         request->root = root;
3004         root->refcount++;
3005 #ifdef WITH_TCP
3006         request->listener->count++;
3007 #endif
3008
3009         /*
3010          *      The request passes many of our sanity checks.
3011          *      From here on in, if anything goes wrong, we
3012          *      send a reject message, instead of dropping the
3013          *      packet.
3014          */
3015
3016         /*
3017          *      Build the reply template from the request.
3018          */
3019
3020         request->reply->sockfd = request->packet->sockfd;
3021         request->reply->dst_ipaddr = request->packet->src_ipaddr;
3022         request->reply->src_ipaddr = request->packet->dst_ipaddr;
3023         request->reply->dst_port = request->packet->src_port;
3024         request->reply->src_port = request->packet->dst_port;
3025         request->reply->id = request->packet->id;
3026         request->reply->code = 0; /* UNKNOWN code */
3027         memcpy(request->reply->vector, request->packet->vector,
3028                sizeof(request->reply->vector));
3029         request->reply->vps = NULL;
3030         request->reply->data = NULL;
3031         request->reply->data_len = 0;
3032
3033         request->master_state = REQUEST_ACTIVE;
3034         request->child_state = REQUEST_QUEUED;
3035         request->next_callback = NULL;
3036
3037         gettimeofday(&request->received, NULL);
3038         request->timestamp = request->received.tv_sec;
3039         request->when = request->received;
3040
3041         request->delay = USEC;
3042
3043         tv_add(&request->when, request->delay);
3044
3045         INSERT_EVENT(wait_a_bit, request);
3046
3047         *prequest = request;
3048         return 1;
3049 }
3050
3051
3052 #ifdef WITH_PROXY
3053 REQUEST *received_proxy_response(RADIUS_PACKET *packet)
3054 {
3055         char            buffer[128];
3056         REQUEST         *request;
3057
3058         /*
3059          *      Also removes from the proxy hash if responses == requests
3060          */
3061         request = lookup_in_proxy_hash(packet);
3062
3063         if (!request) {
3064                 radlog(L_PROXY, "No outstanding request was found for reply from host %s port %d - ID %d",
3065                        inet_ntop(packet->src_ipaddr.af,
3066                                  &packet->src_ipaddr.ipaddr,
3067                                  buffer, sizeof(buffer)),
3068                        packet->src_port, packet->id);
3069                 return NULL;
3070         }
3071
3072         /*
3073          *      We haven't replied to the NAS, but we have seen an
3074          *      earlier reply from the home server.  Ignore this packet,
3075          *      as we're likely still processing the previous reply.
3076          */
3077         if (request->proxy_reply) {
3078                 if (memcmp(request->proxy_reply->vector,
3079                            packet->vector,
3080                            sizeof(request->proxy_reply->vector)) == 0) {
3081                         RDEBUG2("Discarding duplicate reply from host %s port %d  - ID: %d for request %u",
3082                                inet_ntop(packet->src_ipaddr.af,
3083                                          &packet->src_ipaddr.ipaddr,
3084                                          buffer, sizeof(buffer)),
3085                                packet->src_port, packet->id,
3086                                request->number);
3087                 } else {
3088                         /*
3089                          *      ? The home server gave us a new proxy
3090                          *      reply which doesn't match the old
3091                          *      one.  Delete it.
3092                          */
3093                         RDEBUG2("Ignoring conflicting proxy reply");
3094                 }
3095                 
3096                 /* assert that there's an event queued for request? */
3097                 return NULL;
3098         }
3099
3100         /*
3101          *      Verify the packet before doing ANYTHING with it.  This
3102          *      means we're doing more MD5 checks in the server core.
3103          *      However, we can fix that by moving to multiple threads
3104          *      listening on sockets.
3105          *
3106          *      We do this AFTER looking the request up in the hash,
3107          *      and AFTER vhecking if we saw a previous request.  This
3108          *      helps minimize the DoS effect of people attacking us
3109          *      with spoofed packets.
3110          */
3111         if (rad_verify(packet, request->proxy,
3112                        request->home_server->secret) != 0) {
3113                 DEBUG("Ignoring spoofed proxy reply.  Signature is invalid");
3114                 return NULL;
3115         }
3116
3117         gettimeofday(&now, NULL);
3118
3119         /*
3120          *      Maybe move this earlier in the decision process?
3121          *      Having it here means that late or duplicate proxy
3122          *      replies no longer get the home server marked as
3123          *      "alive".  This might be good for stability, though.
3124          *
3125          *      FIXME: Do we really want to do this whenever we
3126          *      receive a packet?  Setting this here means that we
3127          *      mark it alive on *any* packet, even if it's lost all
3128          *      of the *other* packets in the last 10s.
3129          */
3130         if (request->proxy->code != PW_STATUS_SERVER) {
3131                 request->home_server->state = HOME_STATE_ALIVE;
3132         }
3133         
3134 #ifdef WITH_COA
3135         /*
3136          *      When originating CoA, the "proxy" reply is the reply
3137          *      to the CoA request that we originated.  At this point,
3138          *      the original request is finished, and it has a reply.
3139          *
3140          *      However, if we haven't separated the two requests, do
3141          *      so now.  This is done so that cleaning up the original
3142          *      request won't cause the CoA request to be free'd.  See
3143          *      util.c, request_free()
3144          */
3145         if (request->parent && (request->parent->coa == request)) {
3146                 request->parent->coa = NULL;
3147                 request->parent = NULL;
3148
3149                 /*
3150                  *      The proxied packet was different from the
3151                  *      original packet, AND the proxied packet was
3152                  *      a CoA: allow it.
3153                  */
3154         } else if ((request->packet->code != request->proxy->code) &&
3155                    ((request->proxy->code == PW_COA_REQUEST) ||
3156                     (request->proxy->code == PW_DISCONNECT_REQUEST))) {
3157           /*
3158            *    It's already divorced: do nothing.
3159            */
3160           
3161         } else
3162                 /*
3163                  *      Skip the next set of checks, as the original
3164                  *      reply is cached.  We want to be able to still
3165                  *      process the CoA reply, AND to reference the
3166                  *      original request/reply.
3167                  *
3168                  *      This is getting to be really quite a bit of a
3169                  *      hack.
3170                  */
3171 #endif
3172
3173         /*
3174          *      If there's a reply to the NAS, ignore everything
3175          *      related to proxy responses
3176          */
3177         if (request->reply && request->reply->code != 0) {
3178                 RDEBUG2("Ignoring proxy reply that arrived after we sent a reply to the NAS");
3179                 return NULL;
3180         }
3181         
3182 #ifdef WITH_STATS
3183         /*
3184          *      The average includes our time to receive packets and
3185          *      look them up in the hashes, which should be the same
3186          *      for all packets.
3187          *
3188          *      We update the response time only for the FIRST packet
3189          *      we receive.
3190          */
3191         if (request->home_server->ema.window > 0) {
3192                 radius_stats_ema(&request->home_server->ema,
3193                                  &now, &request->proxy_when);
3194         }
3195 #endif
3196
3197         switch (request->child_state) {
3198         case REQUEST_QUEUED:
3199         case REQUEST_RUNNING:
3200                 radlog(L_ERR, "Internal sanity check failed for child state");
3201                 /* FALL-THROUGH */
3202
3203         case REQUEST_REJECT_DELAY:
3204         case REQUEST_CLEANUP_DELAY:
3205         case REQUEST_DONE:
3206                 radlog(L_ERR, "Reply from home server %s port %d  - ID: %d arrived too late for request %u. Try increasing 'retry_delay' or 'max_request_time'",
3207                        inet_ntop(packet->src_ipaddr.af,
3208                                  &packet->src_ipaddr.ipaddr,
3209                                  buffer, sizeof(buffer)),
3210                        packet->src_port, packet->id,
3211                        request->number);
3212                 /* assert that there's an event queued for request? */
3213                 return NULL;
3214
3215         case REQUEST_PROXIED:
3216                 break;
3217         }
3218
3219         request->proxy_reply = packet;
3220
3221 #if 0
3222         /*
3223          *      Perform RTT calculations, as per RFC 2988 (for TCP).
3224          *      Note that we only do so on the first response.
3225          */
3226         if ((request->num_proxied_responses == 1)
3227                 int rtt;
3228                 home_server *home = request->home_server;
3229
3230                 rtt = now.tv_sec - request->proxy_when.tv_sec;
3231                 rtt *= USEC;
3232                 rtt += now.tv_usec;
3233                 rtt -= request->proxy_when.tv_usec;
3234
3235                 if (!home->has_rtt) {
3236                         home->has_rtt = TRUE;
3237
3238                         home->srtt = rtt;
3239                         home->rttvar = rtt / 2;
3240
3241                 } else {
3242                         home->rttvar -= home->rttvar >> 2;
3243                         home->rttvar += (home->srtt - rtt);
3244                         home->srtt -= home->srtt >> 3;
3245                         home->srtt += rtt >> 3;
3246                 }
3247
3248                 home->rto = home->srtt;
3249                 if (home->rttvar > (USEC / 4)) {
3250                         home->rto += home->rttvar * 4;
3251                 } else {
3252                         home->rto += USEC;
3253                 }
3254         }
3255 #endif
3256
3257         /*
3258          *      There's no incoming request, so it's a proxied packet
3259          *      we originated.
3260          */
3261         if (!request->packet) {
3262                 received_response_to_ping(request);
3263                 request->proxy_reply = NULL; /* caller will free it */
3264                 ev_request_free(&request);
3265                 return NULL;
3266         }
3267
3268         request->child_state = REQUEST_QUEUED;
3269         request->when = now;
3270         request->delay = USEC;
3271         request->priority = RAD_LISTEN_PROXY;
3272         tv_add(&request->when, request->delay);
3273
3274         /*
3275          *      Wait a bit will take care of max_request_time
3276          */
3277         INSERT_EVENT(wait_a_bit, request);
3278
3279         return request;
3280 }
3281
3282 #endif /* WITH_PROXY */
3283
3284 #ifdef WITH_TCP
3285 static void tcp_socket_lifetime(void *ctx)
3286 {
3287         rad_listen_t *listener = ctx;
3288         char buffer[256];
3289
3290         listener->print(listener, buffer, sizeof(buffer));
3291
3292         DEBUG("Reached maximum lifetime on socket %s", buffer);
3293
3294         listener->status = RAD_LISTEN_STATUS_CLOSED;
3295         event_new_fd(listener);
3296 }
3297
3298 static void tcp_socket_idle_timeout(void *ctx)
3299 {
3300         rad_listen_t *listener = ctx;
3301         listen_socket_t *sock = listener->data;
3302         char buffer[256];
3303
3304         fr_event_now(el, &now); /* should always succeed... */
3305
3306         rad_assert(sock->home != NULL);
3307
3308         /*
3309          *      We implement idle timeout by polling, because it's
3310          *      cheaper than resetting the idle timeout every time
3311          *      we send / receive a packet.
3312          */
3313         if ((sock->last_packet + sock->home->idle_timeout) > now.tv_sec) {
3314                 struct timeval when;
3315                 void *fun = tcp_socket_idle_timeout;
3316                 
3317                 when.tv_sec = sock->last_packet;
3318                 when.tv_sec += sock->home->idle_timeout;
3319                 when.tv_usec = 0;
3320
3321                 if (sock->home->lifetime &&
3322                     (sock->opened + sock->home->lifetime < when.tv_sec)) {
3323                         when.tv_sec = sock->opened + sock->home->lifetime;
3324                         fun = tcp_socket_lifetime;
3325                 }
3326                 
3327                 if (!fr_event_insert(el, fun, listener, &when, &sock->ev)) {
3328                         rad_panic("Failed to insert event");
3329                 }
3330
3331                 return;
3332         }
3333
3334         listener->print(listener, buffer, sizeof(buffer));
3335         
3336         DEBUG("Reached idle timeout on socket %s", buffer);
3337
3338         listener->status = RAD_LISTEN_STATUS_CLOSED;
3339         event_new_fd(listener);
3340 }
3341 #endif
3342
3343 void event_new_fd(rad_listen_t *this)
3344 {
3345         char buffer[1024];
3346
3347         if (this->status == RAD_LISTEN_STATUS_KNOWN) return;
3348
3349         this->print(this, buffer, sizeof(buffer));
3350
3351         if (this->status == RAD_LISTEN_STATUS_INIT) {
3352                 if (just_started) {
3353                         DEBUG("Listening on %s", buffer);
3354                 } else {
3355                         radlog(L_INFO, " ... adding new socket %s", buffer);
3356                 }
3357
3358 #ifdef WITH_PROXY
3359                 /*
3360                  *      Add it to the list of sockets we can use.
3361                  *      Server sockets (i.e. auth/acct) are never
3362                  *      added to the packet list.
3363                  */
3364                 if (this->type == RAD_LISTEN_PROXY) {
3365                         listen_socket_t *sock = this->data;
3366
3367                         PTHREAD_MUTEX_LOCK(&proxy_mutex);
3368                         if (!fr_packet_list_socket_add(proxy_list, this->fd,
3369                                                        sock->proto,
3370                                                        &sock->other_ipaddr, sock->other_port,
3371                                                        this)) {
3372
3373                                 proxy_no_new_sockets = TRUE;
3374                                 listen_free(&this);
3375                                 PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
3376
3377                                 /*
3378                                  *      This is bad.  However, the
3379                                  *      packet list now supports 256
3380                                  *      open sockets, which should
3381                                  *      minimize this problem.
3382                                  */
3383                                 radlog(L_ERR, "Failed adding proxy socket: %s",
3384                                        fr_strerror());
3385                                 return;
3386                         }
3387
3388                         if (sock->home) {
3389                                 sock->home->num_connections++;
3390                                 
3391                                 /*
3392                                  *      If necessary, add it to the list of
3393                                  *      new proxy listeners.
3394                                  */
3395                                 if (sock->home->lifetime || sock->home->idle_timeout) {
3396                                         this->next = proxy_listener_list;
3397                                         proxy_listener_list = this;
3398                                 }
3399                         }
3400                         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
3401
3402                         /*
3403                          *      Tell the main thread that we've added
3404                          *      a proxy listener, but only if we need
3405                          *      to update the event list.  Do this
3406                          *      with the mutex unlocked, to reduce
3407                          *      contention.
3408                          */
3409                         if (sock->home) {
3410                                 if (sock->home->lifetime || sock->home->idle_timeout) {
3411                                         radius_signal_self(RADIUS_SIGNAL_SELF_NEW_FD);
3412                                 }
3413                         }
3414                 }
3415 #endif          
3416
3417 #ifdef WITH_DETAIL
3418                 /*
3419                  *      Detail files are always known, and aren't
3420                  *      put into the socket event loop.
3421                  */
3422                 if (this->type == RAD_LISTEN_DETAIL) {
3423                         this->status = RAD_LISTEN_STATUS_KNOWN;
3424                         
3425                         /*
3426                          *      Set up the first poll interval.
3427                          */
3428                         event_poll_detail(this);
3429                         return;
3430                 }
3431 #endif
3432
3433                 FD_MUTEX_LOCK(&fd_mutex);
3434                 if (!fr_event_fd_insert(el, 0, this->fd,
3435                                         event_socket_handler, this)) {
3436                         radlog(L_ERR, "Failed adding event handler for proxy socket!");
3437                         exit(1);
3438                 }
3439                 FD_MUTEX_UNLOCK(&fd_mutex);
3440                 
3441                 this->status = RAD_LISTEN_STATUS_KNOWN;
3442                 return;
3443         }
3444
3445         /*
3446          *      Something went wrong with the socket: make it harmless.
3447          */
3448         if (this->status == RAD_LISTEN_STATUS_REMOVE_FD) {
3449                 int devnull;
3450
3451                 /*
3452                  *      Remove it from the list of live FD's.
3453                  */
3454                 FD_MUTEX_LOCK(&fd_mutex);
3455                 fr_event_fd_delete(el, 0, this->fd);
3456                 FD_MUTEX_UNLOCK(&fd_mutex);
3457
3458 #ifdef WITH_TCP
3459                 /*
3460                  *      We track requests using this socket only for
3461                  *      TCP.  For UDP, we don't currently close
3462                  *      sockets.
3463                  */
3464 #ifdef WITH_PROXY
3465                 if (this->type != RAD_LISTEN_PROXY)
3466 #endif
3467                 {
3468                         if (this->count != 0) {
3469                                 fr_packet_list_walk(pl, this,
3470                                                     remove_all_requests);
3471                         }
3472
3473                         if (this->count == 0) {
3474                                 this->status = RAD_LISTEN_STATUS_FINISH;
3475                                 goto finish;
3476                         }
3477                 }               
3478 #ifdef WITH_PROXY
3479                 else {
3480                         int count = this->count;
3481
3482                         /*
3483                          *      Duplicate code
3484                          */
3485                         PTHREAD_MUTEX_LOCK(&proxy_mutex);
3486                         if (!fr_packet_list_socket_freeze(proxy_list,
3487                                                           this->fd)) {
3488                                 radlog(L_ERR, "Fatal error freezing socket: %s",
3489                                        fr_strerror());
3490                                 exit(1);
3491                         }
3492
3493                         /*
3494                          *      Doing this with the proxy mutex held
3495                          *      is a Bad Thing.  We should move to
3496                          *      finer-grained mutexes.
3497                          */
3498                         count = this->count;
3499                         if (count > 0) {
3500                                 fr_packet_list_walk(proxy_list, this,
3501                                                     remove_all_proxied_requests);
3502                         }
3503                         count = this->count; /* protected by mutex */
3504                         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
3505
3506                         if (count == 0) {
3507                                 this->status = RAD_LISTEN_STATUS_FINISH;
3508                                 goto finish;
3509                         }
3510                 }
3511 #endif  /* WITH_PROXY */
3512 #endif  /* WITH_TCP */
3513
3514                 /*
3515                  *      Re-open the socket, pointing it to /dev/null.
3516                  *      This means that all writes proceed without
3517                  *      blocking, and all reads return "no data".
3518                  *
3519                  *      This leaves the socket active, so any child
3520                  *      threads won't go insane.  But it means that
3521                  *      they cannot send or receive any packets.
3522                  *
3523                  *      This is EXTRA work in the normal case, when
3524                  *      sockets are closed without error.  But it lets
3525                  *      us have one simple processing method for all
3526                  *      sockets.
3527                  */
3528                 devnull = open("/dev/null", O_RDWR);
3529                 if (devnull < 0) {
3530                         radlog(L_ERR, "FATAL failure opening /dev/null: %s",
3531                                strerror(errno));
3532                         exit(1);
3533                 }
3534                 if (dup2(devnull, this->fd) < 0) {
3535                         radlog(L_ERR, "FATAL failure closing socket: %s",
3536                                strerror(errno));
3537                         exit(1);
3538                 }
3539                 close(devnull);
3540
3541                 this->status = RAD_LISTEN_STATUS_CLOSED;
3542
3543                 /*
3544                  *      Fall through to the next section.
3545                  */
3546         }
3547
3548 #ifdef WITH_TCP
3549         /*
3550          *      Called ONLY from the main thread.  On the following
3551          *      conditions:
3552          *
3553          *      idle timeout
3554          *      max lifetime
3555          *
3556          *      (and falling through from "forcibly close FD" above)
3557          *      client closed connection on us
3558          *      client sent us a bad packet.
3559          */
3560         if (this->status == RAD_LISTEN_STATUS_CLOSED) {
3561                 int count = this->count;
3562                 rad_assert(this->type != RAD_LISTEN_DETAIL);
3563
3564 #ifdef WITH_PROXY
3565                 /*
3566                  *      Remove it from the list of active sockets, so
3567                  *      that it isn't used when proxying new packets.
3568                  */
3569                 if (this->type == RAD_LISTEN_PROXY) {
3570                         PTHREAD_MUTEX_LOCK(&proxy_mutex);
3571                         if (!fr_packet_list_socket_freeze(proxy_list,
3572                                                           this->fd)) {
3573                                 radlog(L_ERR, "Fatal error freezing socket: %s",
3574                                        fr_strerror());
3575                                 exit(1);
3576                         }
3577                         count = this->count; /* protected by mutex */
3578                         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
3579                 }
3580 #endif
3581
3582                 /*
3583                  *      Requests are still using the socket.  Wait for
3584                  *      them to finish.
3585                  */
3586                 if (count != 0) {
3587                         struct timeval when;
3588                         listen_socket_t *sock = this->data;
3589
3590                         /*
3591                          *      Try again to clean up the socket in 30
3592                          *      seconds.
3593                          */
3594                         gettimeofday(&when, NULL);
3595                         when.tv_sec += 30;
3596                         
3597                         if (!fr_event_insert(el,
3598                                              (fr_event_callback_t) event_new_fd,
3599                                              this, &when, &sock->ev)) {
3600                                 rad_panic("Failed to insert event");
3601                         }
3602                        
3603                         return;
3604                 }
3605
3606                 /*
3607                  *      No one is using this socket: we can delete it
3608                  *      immediately.
3609                  */
3610                 this->status = RAD_LISTEN_STATUS_FINISH;
3611         }
3612         
3613 finish:
3614         if (this->status == RAD_LISTEN_STATUS_FINISH) {
3615                 listen_socket_t *sock = this->data;
3616
3617                 rad_assert(this->count == 0);
3618                 radlog(L_INFO, " ... closing socket %s", buffer);
3619
3620                 /*
3621                  *      Remove it from the list of live FD's.  Note
3622                  *      that it MAY also have been removed above.  We
3623                  *      do it again here, to catch the case of sockets
3624                  *      closing on idle timeout, or max
3625                  *      lifetime... AFTER all requests have finished
3626                  *      using it.
3627                  */
3628                 FD_MUTEX_LOCK(&fd_mutex);
3629                 fr_event_fd_delete(el, 0, this->fd);
3630                 FD_MUTEX_UNLOCK(&fd_mutex);
3631                 
3632 #ifdef WITH_PROXY
3633                 /*
3634                  *      Remove it from the list of sockets to be used
3635                  *      when proxying.
3636                  */
3637                 if (this->type == RAD_LISTEN_PROXY) {
3638                         PTHREAD_MUTEX_LOCK(&proxy_mutex);
3639                         if (!fr_packet_list_socket_remove(proxy_list,
3640                                                           this->fd, NULL)) {
3641                                 radlog(L_ERR, "Fatal error removing socket: %s",
3642                                        fr_strerror());
3643                                 exit(1);
3644                         }
3645                         if (sock->home) sock->home->num_connections--;
3646                         PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
3647                 }
3648 #endif
3649
3650                 /*
3651                  *      Remove any pending cleanups.
3652                  */
3653                 if (sock->ev) fr_event_delete(el, &sock->ev);
3654
3655                 /*
3656                  *      And finally, close the socket.
3657                  */
3658                 listen_free(&this);
3659         }
3660 #endif  /* WITH_TCP */
3661 }
3662
3663 static void handle_signal_self(int flag)
3664 {
3665         if ((flag & (RADIUS_SIGNAL_SELF_EXIT | RADIUS_SIGNAL_SELF_TERM)) != 0) {
3666                 if ((flag & RADIUS_SIGNAL_SELF_EXIT) != 0) {
3667                         radlog(L_INFO, "Received TERM signal");
3668                         fr_event_loop_exit(el, 1);
3669                 } else {
3670                         fr_event_loop_exit(el, 2);
3671                 }
3672
3673                 return;
3674         } /* else exit/term flags weren't set */
3675
3676         /*
3677          *      Tell the even loop to stop processing.
3678          */
3679         if ((flag & RADIUS_SIGNAL_SELF_HUP) != 0) {
3680                 time_t when;
3681                 static time_t last_hup = 0;
3682
3683                 when = time(NULL);
3684                 if ((int) (when - last_hup) < 5) {
3685                         radlog(L_INFO, "Ignoring HUP (less than 5s since last one)");
3686                         return;
3687                 }
3688
3689                 radlog(L_INFO, "Received HUP signal.");
3690
3691                 last_hup = when;
3692
3693                 fr_event_loop_exit(el, 0x80);
3694         }
3695
3696 #ifdef WITH_DETAIL
3697         if ((flag & RADIUS_SIGNAL_SELF_DETAIL) != 0) {
3698                 rad_listen_t *this;
3699                 
3700                 /*
3701                  *      FIXME: O(N) loops suck.
3702                  */
3703                 for (this = mainconfig.listen;
3704                      this != NULL;
3705                      this = this->next) {
3706                         if (this->type != RAD_LISTEN_DETAIL) continue;
3707
3708                         /*
3709                          *      This one didn't send the signal, skip
3710                          *      it.
3711                          */
3712                         if (!this->decode(this, NULL)) continue;
3713
3714                         /*
3715                          *      Go service the interrupt.
3716                          */
3717                         event_poll_detail(this);
3718                 }
3719         }
3720 #endif
3721
3722 #ifdef WITH_TCP
3723 #ifdef WITH_PROXY
3724         /*
3725          *      Add event handlers for idle timeouts && maximum lifetime.
3726          */
3727         if ((flag & RADIUS_SIGNAL_SELF_NEW_FD) != 0) {
3728                 struct timeval when;
3729                 void *fun = NULL;
3730
3731                 fr_event_now(el, &now);
3732
3733                 PTHREAD_MUTEX_LOCK(&proxy_mutex);
3734
3735                 while (proxy_listener_list) {
3736                         rad_listen_t *this = proxy_listener_list;
3737                         listen_socket_t *sock = this->data;
3738
3739                         proxy_listener_list = this->next;
3740                         this->next = NULL;
3741
3742                         if (!sock->home) continue; /* skip UDP sockets */
3743
3744                         when = now;
3745
3746                         if (!sock->home->idle_timeout) {
3747                                 rad_assert(sock->home->lifetime != 0);
3748
3749                                 when.tv_sec += sock->home->lifetime;
3750                                 fun = tcp_socket_lifetime;
3751                         } else {
3752                                 rad_assert(sock->home->idle_timeout != 0);
3753
3754                                 when.tv_sec += sock->home->idle_timeout;
3755                                 fun = tcp_socket_idle_timeout;
3756                         }
3757
3758                         if (!fr_event_insert(el, fun, this, &when,
3759                                              &(sock->ev))) {
3760                                 rad_panic("Failed to insert event");
3761                         }
3762                 }
3763
3764                 PTHREAD_MUTEX_UNLOCK(&proxy_mutex);
3765         }
3766 #endif  /* WITH_PROXY */
3767 #endif  /* WITH_TCP */
3768 }
3769
3770 #ifdef __MINGW32__
3771 void radius_signal_self(int flag)
3772 {
3773         handle_signal_self(flag);
3774 }
3775 #else
3776 /*
3777  *      Inform ourselves that we received a signal.
3778  */
3779 void radius_signal_self(int flag)
3780 {
3781         ssize_t rcode;
3782         uint8_t buffer[16];
3783
3784         /*
3785          *      The read MUST be non-blocking for this to work.
3786          */
3787         rcode = read(self_pipe[0], buffer, sizeof(buffer));
3788         if (rcode > 0) {
3789                 ssize_t i;
3790
3791                 for (i = 0; i < rcode; i++) {
3792                         buffer[0] |= buffer[i];
3793                 }
3794         } else {
3795                 buffer[0] = 0;
3796         }
3797
3798         buffer[0] |= flag;
3799
3800         write(self_pipe[1], buffer, 1);
3801 }
3802
3803
3804 static void event_signal_handler(UNUSED fr_event_list_t *xel,
3805                                  UNUSED int fd, UNUSED void *ctx)
3806 {
3807         ssize_t i, rcode;
3808         uint8_t buffer[32];
3809
3810         rcode = read(self_pipe[0], buffer, sizeof(buffer));
3811         if (rcode <= 0) return;
3812
3813         /*
3814          *      Merge pending signals.
3815          */
3816         for (i = 0; i < rcode; i++) {
3817                 buffer[0] |= buffer[i];
3818         }
3819
3820         handle_signal_self(buffer[0]);
3821 }
3822 #endif
3823
3824
3825 static void event_socket_handler(fr_event_list_t *xel, UNUSED int fd,
3826                                  void *ctx)
3827 {
3828         rad_listen_t *listener = ctx;
3829         RAD_REQUEST_FUNP fun;
3830         REQUEST *request;
3831
3832         rad_assert(xel == el);
3833
3834         xel = xel;
3835
3836         if (listener->fd < 0) rad_panic("Socket was closed on us!");
3837         
3838         if (!listener->recv(listener, &fun, &request)) return;
3839
3840         if (!thread_pool_addrequest(request, fun)) {
3841                 request->child_state = REQUEST_DONE;
3842         }
3843 }
3844
3845
3846 /*
3847  *      This function is called periodically to see if this detail
3848  *      file is available for reading.
3849  */
3850 static void event_poll_detail(void *ctx)
3851 {
3852         int rcode, delay;
3853         RAD_REQUEST_FUNP fun;
3854         REQUEST *request;
3855         rad_listen_t *this = ctx;
3856         struct timeval when;
3857         listen_detail_t *detail = this->data;
3858
3859         rad_assert(this->type == RAD_LISTEN_DETAIL);
3860
3861         /*
3862          *      Try to read something.
3863          *
3864          *      FIXME: This does poll AND receive.
3865          */
3866         rcode = this->recv(this, &fun, &request);
3867         if (rcode != 0) {
3868                 rad_assert(fun != NULL);
3869                 rad_assert(request != NULL);
3870                 
3871                 if (!thread_pool_addrequest(request, fun)) {
3872                         request->child_state = REQUEST_DONE;
3873                 }
3874         }
3875
3876         fr_event_now(el, &now);
3877         when = now;
3878
3879         /*
3880          *      Backdoor API to get the delay until the next poll
3881          *      time.
3882          */
3883         delay = this->encode(this, NULL);
3884         tv_add(&when, delay);
3885
3886         if (!fr_event_insert(el, event_poll_detail, this,
3887                              &when, &detail->ev)) {
3888                 radlog(L_ERR, "Failed creating handler");
3889                 exit(1);
3890         }
3891 }
3892
3893
3894 static void event_status(struct timeval *wake)
3895 {
3896 #if !defined(HAVE_PTHREAD_H) && defined(WNOHANG)
3897         int argval;
3898 #endif
3899
3900         if (debug_flag == 0) {
3901                 if (just_started) {
3902                         radlog(L_INFO, "Ready to process requests.");
3903                         just_started = FALSE;
3904                 }
3905                 return;
3906         }
3907
3908         if (!wake) {
3909                 radlog(L_INFO, "Ready to process requests.");
3910
3911         } else if ((wake->tv_sec != 0) ||
3912                    (wake->tv_usec >= 100000)) {
3913                 DEBUG("Waking up in %d.%01u seconds.",
3914                       (int) wake->tv_sec, (unsigned int) wake->tv_usec / 100000);
3915         }
3916
3917
3918         /*
3919          *      FIXME: Put this somewhere else, where it isn't called
3920          *      all of the time...
3921          */
3922
3923 #if !defined(HAVE_PTHREAD_H) && defined(WNOHANG)
3924         /*
3925          *      If there are no child threads, then there may
3926          *      be child processes.  In that case, wait for
3927          *      their exit status, and throw that exit status
3928          *      away.  This helps get rid of zxombie children.
3929          */
3930         while (waitpid(-1, &argval, WNOHANG) > 0) {
3931                 /* do nothing */
3932         }
3933 #endif
3934
3935 }
3936
3937 /*
3938  *      Externally-visibly functions.
3939  */
3940 int radius_event_init(CONF_SECTION *cs, int spawn_flag)
3941 {
3942         rad_listen_t *head = NULL;
3943
3944         if (el) return 0;
3945
3946         time(&fr_start_time);
3947
3948         el = fr_event_list_create(event_status);
3949         if (!el) return 0;
3950
3951         pl = fr_packet_list_create(0);
3952         if (!pl) return 0;      /* leak el */
3953
3954         request_num_counter = 0;
3955
3956 #ifdef WITH_PROXY
3957         if (mainconfig.proxy_requests) {
3958                 /*
3959                  *      Create the tree for managing proxied requests and
3960                  *      responses.
3961                  */
3962                 proxy_list = fr_packet_list_create(1);
3963                 if (!proxy_list) return 0;
3964
3965 #ifdef HAVE_PTHREAD_H
3966                 if (pthread_mutex_init(&proxy_mutex, NULL) != 0) {
3967                         radlog(L_ERR, "FATAL: Failed to initialize proxy mutex: %s",
3968                                strerror(errno));
3969                         exit(1);
3970                 }
3971 #endif
3972         }
3973 #endif
3974
3975 #ifdef HAVE_PTHREAD_H
3976 #ifndef __MINGW32__
3977         NO_SUCH_CHILD_PID = (pthread_t ) (0);
3978 #else
3979         NO_SUCH_CHILD_PID = pthread_self(); /* not a child thread */
3980 #endif
3981         /*
3982          *      Initialize the threads ONLY if we're spawning, AND
3983          *      we're running normally.
3984          */
3985         if (spawn_flag && !check_config &&
3986             (thread_pool_init(cs, &spawn_flag) < 0)) {
3987                 exit(1);
3988         }
3989 #endif
3990
3991         /*
3992          *      Move all of the thread calls to this file?
3993          *
3994          *      It may be best for the mutexes to be in this file...
3995          */
3996         have_children = spawn_flag;
3997
3998         if (check_config) {
3999                 DEBUG("%s: #### Skipping IP addresses and Ports ####",
4000                        mainconfig.name);
4001                 return 1;
4002         }
4003
4004 #ifndef __MINGW32__
4005         /*
4006          *      Child threads need a pipe to signal us, as do the
4007          *      signal handlers.
4008          */
4009         if (pipe(self_pipe) < 0) {
4010                 radlog(L_ERR, "radiusd: Error opening internal pipe: %s",
4011                        strerror(errno));
4012                 exit(1);
4013         }
4014         if (fcntl(self_pipe[0], F_SETFL, O_NONBLOCK | FD_CLOEXEC) < 0) {
4015                 radlog(L_ERR, "radiusd: Error setting internal flags: %s",
4016                        strerror(errno));
4017                 exit(1);
4018         }
4019         if (fcntl(self_pipe[1], F_SETFL, O_NONBLOCK | FD_CLOEXEC) < 0) {
4020                 radlog(L_ERR, "radiusd: Error setting internal flags: %s",
4021                        strerror(errno));
4022                 exit(1);
4023         }
4024
4025         if (!fr_event_fd_insert(el, 0, self_pipe[0],
4026                                   event_signal_handler, el)) {
4027                 radlog(L_ERR, "Failed creating handler for signals");
4028                 exit(1);
4029         }
4030 #endif
4031
4032        DEBUG("%s: #### Opening IP addresses and Ports ####",
4033                mainconfig.name);
4034
4035        /*
4036         *       The server temporarily switches to an unprivileged
4037         *       user very early in the bootstrapping process.
4038         *       However, some sockets MAY require privileged access
4039         *       (bind to device, or to port < 1024, or to raw
4040         *       sockets).  Those sockets need to call suid up/down
4041         *       themselves around the functions that need a privileged
4042         *       uid.
4043         */
4044         if (listen_init(cs, &head) < 0) {
4045                 _exit(1);
4046         }
4047         
4048         mainconfig.listen = head;
4049
4050         /*
4051          *      At this point, no one has any business *ever* going
4052          *      back to root uid.
4053          */
4054         fr_suid_down_permanent();
4055
4056         return 1;
4057 }
4058
4059
4060 static int request_hash_cb(UNUSED void *ctx, void *data)
4061 {
4062         REQUEST *request = fr_packet2myptr(REQUEST, packet, data);
4063
4064 #ifdef WITH_PROXY
4065         rad_assert(request->in_proxy_hash == FALSE);
4066 #endif
4067
4068         ev_request_free(&request);
4069
4070         return 0;
4071 }
4072
4073
4074 #ifdef WITH_PROXY
4075 static int proxy_hash_cb(UNUSED void *ctx, void *data)
4076 {
4077         REQUEST *request = fr_packet2myptr(REQUEST, proxy, data);
4078
4079         ev_request_free(&request);
4080
4081         return 0;
4082 }
4083 #endif
4084
4085 void radius_event_free(void)
4086 {
4087         /*
4088          *      FIXME: Stop all threads, or at least check that
4089          *      they're all waiting on the semaphore, and the queues
4090          *      are empty.
4091          */
4092
4093 #ifdef WITH_PROXY
4094         /*
4095          *      There are requests in the proxy hash that aren't
4096          *      referenced from anywhere else.  Remove them first.
4097          */
4098         if (proxy_list) {
4099                 fr_packet_list_walk(proxy_list, NULL, proxy_hash_cb);
4100                 fr_packet_list_free(proxy_list);
4101                 proxy_list = NULL;
4102         }
4103 #endif
4104
4105         fr_packet_list_walk(pl, NULL, request_hash_cb);
4106
4107         fr_packet_list_free(pl);
4108         pl = NULL;
4109
4110         fr_event_list_free(el);
4111 }
4112
4113 int radius_event_process(void)
4114 {
4115         if (!el) return 0;
4116
4117         return fr_event_loop(el);
4118 }
4119
4120 void radius_handle_request(REQUEST *request, RAD_REQUEST_FUNP fun)
4121 {
4122         request->options = RAD_REQUEST_OPTION_DEBUG2;
4123
4124         if (request_pre_handler(request)) {
4125                 rad_assert(fun != NULL);
4126                 rad_assert(request != NULL);
4127                 
4128                 if (request->server) RDEBUG("server %s {",
4129                                             request->server != NULL ?
4130                                             request->server : ""); 
4131                 fun(request);
4132
4133                 if (request->server) RDEBUG("} # server %s",
4134                                              request->server != NULL ?
4135                                             request->server : "");
4136
4137                 request_post_handler(request);
4138         }
4139
4140         DEBUG2("Going to the next request");
4141         return;
4142 }