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