]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
this is no longer needed
authorAlan T. DeKok <aland@freeradius.org>
Tue, 29 Aug 2017 20:45:01 +0000 (16:45 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 29 Aug 2017 20:45:01 +0000 (16:45 -0400)
src/main/listen.c [deleted file]

diff --git a/src/main/listen.c b/src/main/listen.c
deleted file mode 100644 (file)
index acdcfc9..0000000
+++ /dev/null
@@ -1,3220 +0,0 @@
-/*
- * listen.c    Handle socket stuff
- *
- * Version:    $Id$
- *
- *   This program is free software; you can redistribute it and/or modify
- *   it under the terms of the GNU General Public License as published by
- *   the Free Software Foundation; either version 2 of the License, or
- *   (at your option) any later version.
- *
- *   This program is distributed in the hope that it will be useful,
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *   GNU General Public License for more details.
- *
- *   You should have received a copy of the GNU General Public License
- *   along with this program; if not, write to the Free Software
- *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- *
- * Copyright 2005,2006  The FreeRADIUS server project
- * Copyright 2005  Alan DeKok <aland@ox.org>
- */
-
-RCSID("$Id$")
-
-#include <freeradius-devel/radiusd.h>
-#include <freeradius-devel/modules.h>
-#include <freeradius-devel/rad_assert.h>
-#include <freeradius-devel/process.h>
-#include <freeradius-devel/protocol.h>
-#include <freeradius-devel/modpriv.h>
-#include <freeradius-devel/net.h>
-
-#include <freeradius-devel/detail.h>
-
-#include <freeradius-devel/udp.h>
-
-#ifdef HAVE_SYS_RESOURCE_H
-#  include <sys/resource.h>
-#endif
-
-#ifdef HAVE_NET_IF_H
-#  include <net/if.h>
-#endif
-
-#ifdef HAVE_FCNTL_H
-  #include <fcntl.h>
-#endif
-
-#ifdef HAVE_SYS_STAT_H
-#  include <sys/stat.h>
-#endif
-
-#ifdef DEBUG_PRINT_PACKET
-static void print_packet(RADIUS_PACKET *packet)
-{
-       char src[256], dst[256];
-
-       fr_inet_ntoh(&packet->src_ipaddr, src, sizeof(src));
-       fr_inet_ntoh(&packet->dst_ipaddr, dst, sizeof(dst));
-
-       fprintf(stderr, "ID %d: %s %d -> %s %d\n", packet->id,
-               src, packet->src_port, dst, packet->dst_port);
-
-}
-#endif
-
-/*
- *     This is a structure which holds all of the listeners.  The
- *     listeners may appear in multiple places, so we want to be able
- *     to know where they are, without trolling through all of the configuration.
- */
-typedef struct listen_config_t {
-       struct listen_config_t  *next;  //!< the next listener
-       CONF_SECTION            *server;        //!< encapsulating server configuratiuon
-       CONF_SECTION            *cs;            //!< configuration for this listener
-       char const              *server_name;   //!< name of the virtual server (if any)
-       dl_t const      *handle;        //!< to dynamically loaded library (if any)
-       RAD_LISTEN_TYPE         type;           //! same as Listen-Socket-Type
-       rad_protocol_t const    *proto;         //!< pointer to the protocol handler.
-
-       rad_listen_t            *listener;      //!< created from this configuration
-} listen_config_t;
-
-static TALLOC_CTX *listen_ctx = NULL;
-static listen_config_t *listen_config = NULL;
-
-static rad_listen_t *listen_alloc(TALLOC_CTX *ctx, RAD_LISTEN_TYPE type, rad_protocol_t const *proto);
-static rad_listen_t *listen_parse(listen_config_t *lc);
-
-#ifdef WITH_COMMAND_SOCKET
-static int command_init_recv(rad_listen_t *listener);
-static int command_tcp_send(rad_listen_t *listener, REQUEST *request);
-#endif
-
-static rad_protocol_t master_listen[];
-
-int listen_compile(CONF_SECTION *server, CONF_SECTION *cs)
-{
-       rad_protocol_t const *proto;
-       dl_t *module;
-
-       module = cf_data_value(cf_data_find(cs, dl_t, "proto"));
-       if (!module) return 0;
-
-       proto = (rad_protocol_t const *)module->common;
-       if (!proto->compile) return 0;
-
-       if (proto->compile(server, cs) < 0) {
-               cf_log_err(server, "Failed compiling unlang policies for listen type '%s'", proto->name);
-               return -1;
-       }
-
-       return 0;
-}
-
-
-/*
- *     Bootstrap a listener.  Do basic sanity checking, load plugins,
- *     define types.
- */
-int listen_bootstrap(CONF_SECTION *server, CONF_SECTION *cs, char const *server_name)
-{
-       listen_config_t         **last = &listen_config;
-       listen_config_t         *lc;
-       CONF_PAIR               *cp;
-       CONF_SECTION            *tls;
-       int                     transports;
-       char const              *type;
-       fr_dict_enum_t const    *dv;
-       rad_protocol_t const    *proto = NULL;
-       dl_t const      *module = NULL;
-
-       if (!listen_ctx) listen_ctx = talloc_init("listen_config_t");
-
-       while (*last != NULL) last = &(*last)->next;
-
-       cp = cf_pair_find(cs, "type");
-       if (!cp) {
-               cf_log_err(cs, "No 'type' specified in listen section");
-               return -1;
-       }
-
-       type = cf_pair_value(cp);
-       if (!type) {
-               cf_log_err(cs, "Invalid 'type' specified in listen section");
-               return -1;
-       }
-
-#ifdef WITH_PROXY
-       /*
-        *      Only control sockets and proxy sockets are global for now.
-        */
-       if (!server_name) {
-               if ((strcmp(type, "control") != 0) &&
-                   (strcmp(type, "proxy") != 0)) {
-                       cf_log_err(cs, "Listeners of type '%s' MUST be defined in a server", type);
-                       return -1;
-               }
-
-       } else {
-               if ((strcmp(type, "control") == 0) ||
-                   (strcmp(type, "proxy") == 0)) {
-                       cf_log_err(cs, "Listeners of type '%s' MUST NOT be defined in a server", type);
-                       return -1;
-               }
-       }
-#endif
-
-       /*
-        *      Anything NOT these types are plugins.
-        *
-        *      At some point, we'll move all of these to plugins.
-        */
-       if (!((strcmp(type, "control") == 0) ||
-             (strcmp(type, "status") == 0) ||
-             (strcmp(type, "coa") == 0) ||
-             (strcmp(type, "auth") == 0) ||
-             (strcmp(type, "acct") == 0) ||
-             (strcmp(type, "auth+acct") == 0))) {
-               static uint32_t max_listener = 256;
-
-               module = dl_module(cs, NULL, type, DL_TYPE_PROTO);
-               if (!module) return -1;
-               proto = (rad_protocol_t const *)module->common;
-
-               /*
-                *      We need numbers for internal use.
-                */
-               dv = fr_dict_enum_by_alias(NULL, fr_dict_attr_by_num(NULL, 0, FR_LISTEN_SOCKET_TYPE), type);
-               if (!dv) {
-                       fr_dict_attr_t const    *da;
-
-                       da = fr_dict_attr_by_name(NULL, "Listen-Socket-Type");
-                       if (!da) {
-                               ERROR("Listen-Socket-Type attribute not defined");
-                               talloc_const_free(module);
-                               return -1;
-                       }
-
-                       if (fr_dict_enum_add_alias(da, type, fr_box_uint32(max_listener), true, false) < 0) {
-                               cf_log_err(cs,
-                                             "Failed adding dictionary entry for protocol %s: %s",
-                                             type, fr_strerror());
-                               talloc_const_free(module);
-                               return -1;
-                       }
-               }
-
-               /*
-                *      Bootstrap the protocol, which (should) set
-                *      Auth-Type, etc., along with checking for
-                *      the protocol-specific processing sections.
-                */
-               if (proto->bootstrap && (proto->bootstrap(server, cs) < 0)) {
-                       cf_log_err(cs, "Failed loading protocol %s", type);
-                       talloc_const_free(module);
-                       return -1;
-               }
-
-               if (cf_data_find(cs, dl_t, "proto") != NULL) {
-                       cf_log_err(cs, "Virtual server cannot have two protocols");
-                       talloc_const_free(module);
-                       return -1;
-               }
-
-               cf_data_add(cs, module, "proto", false);
-       }
-
-       /*
-        *      The type MUST now be defined in the dictionaries.
-        */
-       dv = fr_dict_enum_by_alias(NULL, fr_dict_attr_by_num(NULL, 0, FR_LISTEN_SOCKET_TYPE), type);
-       if (!dv) {
-               cf_log_err(cs, "Failed finding dictionary entry for protocol %s", type);
-               talloc_const_free(module);
-               return -1;
-       }
-
-       if (!proto) proto = &master_listen[dv->value->vb_uint32];
-
-       /*
-        *      Check the allowed transport protocols.  For most
-        *      sockets, it's a UDP and/or TCP.
-        */
-       transports = 0;
-
-       if (proto->transports != 0) {
-               cp = cf_pair_find(cs, "proto");
-               if (!cp) {
-                       transports = TRANSPORT_UDP;
-                       type = "udp";
-
-               } else {
-                       type = cf_pair_value(cp);
-                       if (!type) {
-                               cf_log_err(cs, "No value for 'proto'");
-                               return -1;
-                       }
-
-                       if (strcmp(type, "udp") == 0) {
-                               transports = TRANSPORT_UDP;
-
-                       } else if (strcmp(type, "tcp") == 0) {
-                               transports = TRANSPORT_TCP;
-
-                       } else {
-                               cf_log_err(cs, "Unknown transport protocol 'proto = %s'", type);
-                               return -1;
-                       }
-               }
-
-               /*
-                *      Asked for UDP and required TCP, or require UDP and asked for TCP.
-                */
-               if ((transports & proto->transports) == 0) {
-                       cf_log_err(cs, "Invalid transport 'proto = %s' for listeners of 'type = %s'",
-                                     type, proto->name);
-                               return -1;
-               }
-
-#ifdef WITH_PROXY
-               /*
-                *      We can open UDP sockets on particular IPs, as
-                *      they're not connected to any destination.  We
-                *      cannot open an outbound TCP socket on an IP
-                *      address unless we know the destination.
-                */
-               if ((strcmp(proto->name, "proxy") == 0) && (transports == TRANSPORT_TCP)) {
-                       cf_log_err(cs, "Invalid transport 'proto = %s' for listeners of 'type = %s'",
-                                     type, proto->name);
-                               return -1;
-               }
-#endif
-       } /* else we let the socket parse routine figure out what to do */
-
-       /*
-        *      Check the TLS configuration.  For now, we only allow
-        *      TLS over TCP.  And even then, only sometimes.
-        *
-        *      If there's no "tls" section, that's fine, too.
-        */
-       tls = cf_section_find(cs, "tls", NULL);
-#ifndef WITH_TCP
-       if (tls) {
-               cf_log_err(cs, "TLS transport is not available in this executable");
-               return -1;
-       }
-
-#else
-       if (tls) {
-               if (!proto->tls) {
-                       cf_log_err(cs, "TLS transport is not available for listeners with 'type = %s",
-                                     proto->name);
-                       return -1;
-               }
-
-               if (transports == TRANSPORT_UDP) {
-                       cf_log_err(cs, "TLS transport is not available for listeners with 'proto = udp'");
-                       return -1;
-               }
-       }
-#endif
-
-       /*
-        *      We allocate listeners from a new context, so that we can
-        *      re-use them on HUP.
-        */
-       lc = talloc_zero(listen_ctx, listen_config_t);
-       if (!lc) return -1;
-
-       *last = lc;
-
-       lc->server = server;
-       lc->cs = cs;
-       lc->server_name = server_name;
-       lc->handle = module;
-       lc->type = dv->value->vb_uint32;
-       lc->proto = proto;
-
-       lc->listener = listen_parse(lc);
-       if (!lc->listener) {
-               talloc_free(lc);
-               return -1;
-       }
-
-       return 0;
-}
-
-
-/*
- *     Find a per-socket client.
- */
-RADCLIENT *client_listener_find(rad_listen_t *listener,
-                               fr_ipaddr_t const *ipaddr, uint16_t src_port)
-{
-#ifdef WITH_DYNAMIC_CLIENTS
-       int rcode;
-       REQUEST *request;
-       RADCLIENT *created;
-#endif
-       time_t now;
-       RADCLIENT *client;
-       RADCLIENT_LIST *clients;
-       listen_socket_t *sock;
-
-       rad_assert(listener != NULL);
-       rad_assert(ipaddr != NULL);
-
-       sock = listener->data;
-       clients = sock->clients;
-
-       /*
-        *      This HAS to have been initialized previously.
-        */
-       rad_assert(clients != NULL);
-
-       client = client_find(clients, ipaddr, sock->proto);
-       if (!client) {
-               char name[256], buffer[INET6_ADDRSTRLEN];
-
-#ifdef WITH_DYNAMIC_CLIENTS
-       unknown:                /* used only for dynamic clients */
-#endif
-
-               /*
-                *      DoS attack quenching, but only in daemon mode.
-                *      If they're running in debug mode, show them
-                *      every packet.
-                */
-               if (rad_debug_lvl == 0) {
-                       static time_t last_printed = 0;
-
-                       now = time(NULL);
-                       if (last_printed == now) return NULL;
-
-                       last_printed = now;
-               }
-
-               listener->print(listener, name, sizeof(name));
-
-               fr_log(&default_log, L_ERR, "Ignoring request to %s from unknown client %s port %d"
-#ifdef WITH_TCP
-                      " proto %s"
-#endif
-                      , name, inet_ntop(ipaddr->af, &ipaddr->addr,
-                                        buffer, sizeof(buffer)), src_port
-#ifdef WITH_TCP
-                      , (sock->proto == IPPROTO_UDP) ? "udp" : "tcp"
-#endif
-                      );
-               return NULL;
-       }
-
-#ifndef WITH_DYNAMIC_CLIENTS
-       return client;          /* return the found client. */
-#else
-
-       /*
-        *      No server defined, and it's not dynamic.  Return it.
-        */
-       if (!client->client_server && !client->dynamic) return client;
-
-       now = time(NULL);
-
-       /*
-        *      It's a dynamically generated client, check it.
-        */
-       if (client->dynamic && (src_port != 0)) {
-#  ifdef HAVE_SYS_STAT_H
-               char const *filename;
-#  endif
-
-               /*
-                *      Lives forever.  Return it.
-                */
-               if (client->lifetime == 0) return client;
-
-               /*
-                *      Rate-limit the deletion of known clients.
-                *      This makes them last a little longer, but
-                *      prevents the server from melting down if (say)
-                *      10k clients all expire at once.
-                */
-               if (now == client->last_new_client) return client;
-
-               /*
-                *      It's not dead yet.  Return it.
-                */
-               if ((client->created + client->lifetime) > now) return client;
-
-#  ifdef HAVE_SYS_STAT_H
-               /*
-                *      The client was read from a file, and the file
-                *      hasn't changed since the client was created.
-                *      Just renew the creation time, and continue.
-                *      We don't need to re-load the same information.
-                */
-               if (client->cs &&
-                   (filename = cf_filename(client->cs)) != NULL) {
-                       struct stat buf;
-
-                       if ((stat(filename, &buf) >= 0) &&
-                           (buf.st_mtime < client->created)) {
-                               client->created = now;
-                               return client;
-                       }
-               }
-#  endif
-
-
-               /*
-                *      This really puts them onto a queue for later
-                *      deletion.
-                */
-               client_delete(clients, client);
-
-               /*
-                *      Go find the enclosing network again.
-                */
-               client = client_find(clients, ipaddr, sock->proto);
-
-               /*
-                *      WTF?
-                */
-               if (!client) goto unknown;
-               if (!client->client_server) goto unknown;
-
-               /*
-                *      At this point, 'client' is the enclosing
-                *      network that configures where dynamic clients
-                *      can be defined.
-                */
-               rad_assert(client->dynamic == 0);
-
-       } else if (!client->dynamic && client->rate_limit) {
-               /*
-                *      The IP is unknown, so we've found an enclosing
-                *      network.  Enable DoS protection.  We only
-                *      allow one new client per second.  Known
-                *      clients aren't subject to this restriction.
-                */
-               if (now == client->last_new_client) goto unknown;
-       }
-
-       client->last_new_client = now;
-
-       request = request_alloc(NULL);
-       if (!request) goto unknown;
-
-       request->listener = listener;
-       request->client = client;
-       request->packet = fr_radius_packet_recv(NULL, listener->fd, UDP_FLAGS_PEEK, false);
-       if (!request->packet) {                         /* badly formed, etc */
-               talloc_free(request);
-               if (DEBUG_ENABLED) ERROR("Receive - %s", fr_strerror());
-               goto unknown;
-       }
-       (void) talloc_steal(request, request->packet);
-       request->reply = fr_radius_alloc_reply(request, request->packet);
-       if (!request->reply) {
-               talloc_free(request);
-               goto unknown;
-       }
-       request->number = 0;
-       request->priority = listener->type;
-       request->server_cs = client->client_server_cs;
-       request->root = &main_config;
-
-       /*
-        *      Run a fake request through the given virtual server.
-        *      Look for FreeRADIUS-Client-IP-Address
-        *               FreeRADIUS-Client-Secret
-        *              ...
-        *
-        *      and create the RADCLIENT structure from that.
-        */
-       RDEBUG("server %s {", cf_section_name2(request->server_cs));
-
-       rcode = process_authorize(0, request);
-
-       RDEBUG("} # server %s", cf_section_name2(request->server_cs));
-
-       switch (rcode) {
-       case RLM_MODULE_OK:
-       case RLM_MODULE_UPDATED:
-               break;
-
-       /*
-        *      Likely a fatal error we want to warn the user about
-        */
-       case RLM_MODULE_INVALID:
-       case RLM_MODULE_FAIL:
-               ERROR("Virtual-Server %s returned %s, creating dynamic client failed",
-                     cf_section_name2(request->server_cs),
-                     fr_int2str(mod_rcode_table, rcode, "<INVALID>"));
-               talloc_free(request);
-               goto unknown;
-
-       /*
-        *      Probably the result of policy, or the client not existing.
-        */
-       default:
-               DEBUG("Virtual-Server %s returned %s, ignoring client", cf_section_name2(request->server_cs),
-                     fr_int2str(mod_rcode_table, rcode, "<INVALID>"));
-               talloc_free(request);
-               goto unknown;
-       }
-
-       /*
-        *      If the client was updated by rlm_dynamic_clients,
-        *      don't create the client from attribute-value pairs.
-        */
-       if (request->client == client) {
-               created = client_afrom_request(clients, request);
-       } else {
-               created = request->client;
-
-               /*
-                *      This frees the client if it isn't valid.
-                */
-               if (!client_add_dynamic(clients, client, created)) goto unknown;
-       }
-
-       request->server_cs = client->server_cs;
-
-       trigger_exec(request, NULL, "server.client.add", false, NULL);
-
-       talloc_free(request);
-
-       if (!created) goto unknown;
-
-       return created;
-#endif
-}
-
-static int listen_bind(rad_listen_t *this);
-
-#ifdef HAVE_LIBPCAP
-static int init_pcap(rad_listen_t *this);
-#endif
-
-/*
- *     Process and reply to a server-status request.
- *     Like rad_authenticate and rad_accounting this should
- *     live in it's own file but it's so small we don't bother.
- */
-rlm_rcode_t rad_status_server(REQUEST *request)
-{
-       rlm_rcode_t             rcode = RLM_MODULE_OK;
-       fr_dict_enum_t          *dval;
-
-       switch (request->listener->type) {
-#ifdef WITH_STATS
-       case RAD_LISTEN_NONE:
-#endif
-       case RAD_LISTEN_AUTH:
-               dval = fr_dict_enum_by_alias(NULL, fr_dict_attr_by_num(NULL, 0, FR_AUTZ_TYPE), "Status-Server");
-               if (dval) {
-                       rcode = process_authorize(dval->value->vb_uint32, request);
-               } else {
-                       rcode = RLM_MODULE_OK;
-               }
-
-               switch (rcode) {
-               case RLM_MODULE_OK:
-               case RLM_MODULE_UPDATED:
-                       request->reply->code = FR_CODE_ACCESS_ACCEPT;
-                       break;
-
-               case RLM_MODULE_FAIL:
-               case RLM_MODULE_HANDLED:
-                       request->reply->code = 0; /* don't reply */
-                       break;
-
-               default:
-               case RLM_MODULE_REJECT:
-                       request->reply->code = FR_CODE_ACCESS_REJECT;
-                       break;
-               }
-               break;
-
-#ifdef WITH_ACCOUNTING
-       case RAD_LISTEN_ACCT:
-               dval = fr_dict_enum_by_alias(NULL, fr_dict_attr_by_num(NULL, 0, FR_ACCT_TYPE), "Status-Server");
-               if (dval) {
-                       rcode = process_accounting(dval->value->vb_uint32, request);
-               } else {
-                       rcode = RLM_MODULE_OK;
-               }
-
-               switch (rcode) {
-               case RLM_MODULE_OK:
-               case RLM_MODULE_UPDATED:
-                       request->reply->code = FR_CODE_ACCOUNTING_RESPONSE;
-                       break;
-
-               default:
-                       request->reply->code = 0; /* don't reply */
-                       break;
-               }
-               break;
-#endif
-
-#ifdef WITH_COA
-               /*
-                *      This is a vendor extension.  Suggested by Glen
-                *      Zorn in IETF 72, and rejected by the rest of
-                *      the WG.  We like it, so it goes in here.
-                */
-       case RAD_LISTEN_COA:
-               dval = fr_dict_enum_by_alias(NULL, fr_dict_attr_by_num(NULL, 0, FR_RECV_COA_TYPE), "Status-Server");
-               if (dval) {
-                       rcode = process_recv_coa(dval->value->vb_uint32, request);
-               } else {
-                       rcode = RLM_MODULE_OK;
-               }
-
-               switch (rcode) {
-               case RLM_MODULE_OK:
-               case RLM_MODULE_UPDATED:
-                       request->reply->code = FR_CODE_COA_ACK;
-                       break;
-
-               default:
-                       request->reply->code = 0; /* don't reply */
-                       break;
-               }
-               break;
-#endif
-
-       default:
-               return 0;
-       }
-
-#ifdef WITH_STATS
-       /*
-        *      Full statistics are available only on a statistics
-        *      socket.
-        */
-       if (request->listener->type == RAD_LISTEN_NONE) {
-               fr_snmp_process(request);
-       }
-#endif
-
-       return 0;
-}
-
-#ifdef WITH_TCP
-static int dual_tcp_recv(rad_listen_t *listener)
-{
-       int rcode;
-       RADIUS_PACKET   *packet;
-       RAD_REQUEST_FUNP fun = NULL;
-       listen_socket_t *sock = listener->data;
-       RADCLIENT       *client = sock->client;
-
-       if (!rad_cond_assert(client != NULL)) return 0;
-
-       if (listener->status != RAD_LISTEN_STATUS_KNOWN) return 0;
-
-       /*
-        *      Allocate a packet for partial reads.
-        */
-       if (!sock->packet) {
-               sock->packet = fr_radius_alloc(sock, false);
-               if (!sock->packet) return 0;
-
-               sock->packet->sockfd = listener->fd;
-               sock->packet->src_ipaddr = sock->other_ipaddr;
-               sock->packet->src_port = sock->other_port;
-               sock->packet->dst_ipaddr = sock->my_ipaddr;
-               sock->packet->dst_port = sock->my_port;
-               sock->packet->proto = sock->proto;
-       }
-
-       /*
-        *      Grab the packet currently being processed.
-        */
-       packet = sock->packet;
-
-       rcode = fr_tcp_read_packet(packet, 0);
-
-       /*
-        *      Still only a partial packet.  Put it back, and return,
-        *      so that we'll read more data when it's ready.
-        */
-       if (rcode == 0) {
-               return 0;
-       }
-
-       if (rcode == -1) {      /* error reading packet */
-               char buffer[256];
-
-               ERROR("Invalid packet from %s port %d, closing socket: %s",
-                      fr_inet_ntoh(&packet->src_ipaddr, buffer, sizeof(buffer)),
-                      packet->src_port, fr_strerror());
-       }
-
-       if (rcode < 0) {        /* error or connection reset */
-               listener->status = RAD_LISTEN_STATUS_EOL;
-
-               /*
-                *      Tell the event handler that an FD has disappeared.
-                */
-               DEBUG("Client has closed connection");
-               radius_update_listener(listener);
-
-               /*
-                *      Do NOT free the listener here.  It's in use by
-                *      a request, and will need to hang around until
-                *      all of the requests are done.
-                *
-                *      It is instead free'd in remove_from_request_hash()
-                */
-               return 0;
-       }
-
-       /*
-        *      Some sanity checks, based on the packet code.
-        */
-       switch (packet->code) {
-       case FR_CODE_ACCESS_REQUEST:
-               if (listener->type != RAD_LISTEN_AUTH) goto bad_packet;
-               FR_STATS_INC(auth, total_requests);
-               fun = rad_authenticate;
-               break;
-
-#  ifdef WITH_ACCOUNTING
-       case FR_CODE_ACCOUNTING_REQUEST:
-               if (listener->type != RAD_LISTEN_ACCT) goto bad_packet;
-               FR_STATS_INC(acct, total_requests);
-               fun = rad_accounting;
-               break;
-#  endif
-
-       case FR_CODE_STATUS_SERVER:
-               if (!main_config.status_server) {
-                       FR_STATS_INC(auth, total_unknown_types);
-                       WARN("Ignoring Status-Server request due to security configuration");
-                       fr_radius_free(&sock->packet);
-                       return 0;
-               }
-               fun = rad_status_server;
-               break;
-
-       default:
-       bad_packet:
-               FR_STATS_INC(auth, total_unknown_types);
-
-               DEBUG("Invalid packet code %d sent from client %s port %d : IGNORED",
-                     packet->code, client->shortname, packet->src_port);
-               fr_radius_free(&sock->packet);
-               return 0;
-       } /* switch over packet types */
-
-       if (!request_receive(NULL, listener, packet, client, fun)) {
-               FR_STATS_INC(auth, total_packets_dropped);
-               fr_radius_free(&sock->packet);
-               return 0;
-       }
-
-       sock->packet = NULL;    /* we have no need for more partial reads */
-       return 1;
-}
-
-/*
- *     Ensure that we always keep the correct counters.
- */
-#ifdef WITH_TCP
-static int _common_socket_free(listen_socket_t *sock)
-{
-       if (sock->proto != IPPROTO_TCP) return 0;
-
-       /*
-        *      Decrement the number of connections.
-        */
-       if (sock->parent && (sock->parent->limit.num_connections > 0)) {
-               sock->parent->limit.num_connections--;
-       }
-       if (sock->client && sock->client->limit.num_connections > 0) {
-               sock->client->limit.num_connections--;
-       }
-       if (sock->home && sock->home->limit.num_connections > 0) {
-               sock->home->limit.num_connections--;
-       }
-
-       return 0;
-}
-#endif
-
-static int dual_tcp_accept(rad_listen_t *listener)
-{
-       int newfd;
-       uint16_t src_port;
-       rad_listen_t *this;
-       socklen_t salen;
-       struct sockaddr_storage src;
-       listen_socket_t *sock;
-       fr_ipaddr_t src_ipaddr;
-       RADCLIENT *client = NULL;
-
-       salen = sizeof(src);
-
-       DEBUG2(" ... new connection request on TCP socket");
-
-       newfd = accept(listener->fd, (struct sockaddr *) &src, &salen);
-       if (newfd < 0) {
-               /*
-                *      Non-blocking sockets must handle this.
-                */
-#  ifdef EWOULDBLOCK
-               if (errno == EWOULDBLOCK) {
-                       return 0;
-               }
-#  endif
-
-               DEBUG2(" ... failed to accept connection");
-               return -1;
-       }
-
-       if (fr_ipaddr_from_sockaddr(&src, salen, &src_ipaddr, &src_port) < 0) {
-               close(newfd);
-               DEBUG2(" ... unknown address family");
-               return 0;
-       }
-
-       /*
-        *      Enforce client IP address checks on accept, not on
-        *      every packet.
-        */
-       if ((client = client_listener_find(listener,
-                                          &src_ipaddr, src_port)) == NULL) {
-               close(newfd);
-               FR_STATS_INC(auth, total_invalid_requests);
-               return 0;
-       }
-
-#  ifdef WITH_TLS
-       /*
-        *      Enforce security restrictions.
-        *
-        *      This shouldn't be necessary in practice.  However, it
-        *      serves as a double-check on configurations.  Marking a
-        *      client as "tls required" means that any accidental
-        *      exposure of the client to non-TLS traffic is
-        *      prevented.
-        */
-       if (client->tls_required && !listener->tls) {
-               INFO("Ignoring connection to TLS socket from non-TLS client");
-               close(newfd);
-               return 0;
-       }
-#  endif
-
-       /*
-        *      Enforce max_connections on client && listen section.
-        */
-       if ((client->limit.max_connections != 0) &&
-           (client->limit.max_connections == client->limit.num_connections)) {
-               /*
-                *      FIXME: Print client IP/port, and server IP/port.
-                */
-               INFO("Ignoring new connection due to client max_connections (%d)", client->limit.max_connections);
-               close(newfd);
-               return 0;
-       }
-
-       sock = listener->data;
-       if ((sock->limit.max_connections != 0) &&
-           (sock->limit.max_connections == sock->limit.num_connections)) {
-               /*
-                *      FIXME: Print client IP/port, and server IP/port.
-                */
-               INFO("Ignoring new connection due to socket max_connections");
-               close(newfd);
-               return 0;
-       }
-       client->limit.num_connections++;
-       sock->limit.num_connections++;
-
-       /*
-        *      Add the new listener.  We require a new context here,
-        *      because the allocations for the packet, etc. in the
-        *      child listener will be done in a child thread.
-        */
-       this = listen_alloc(NULL, listener->type, listener->proto);
-       if (!this) return -1;
-
-       /*
-        *      Copy everything, including the pointer to the socket
-        *      information.
-        */
-       sock = this->data;
-       memcpy(this->data, listener->data, sizeof(*sock));
-       memcpy(this, listener, sizeof(*this));
-
-       this->next = NULL;
-       this->data = sock;      /* fix it back */
-
-       sock->parent = listener->data;
-       sock->other_ipaddr = src_ipaddr;
-       sock->other_port = src_port;
-       sock->client = client;
-       sock->opened = sock->last_packet = time(NULL);
-       talloc_set_destructor(sock, _common_socket_free);
-
-       /*
-        *      Set the limits.  The defaults are the parent limits.
-        *      Client limits on max_connections are enforced dynamically.
-        *      Set the MINIMUM of client/socket idle timeout or lifetime.
-        */
-       memcpy(&sock->limit, &sock->parent->limit, sizeof(sock->limit));
-
-       if (client->limit.idle_timeout &&
-           ((sock->limit.idle_timeout == 0) ||
-            (client->limit.idle_timeout < sock->limit.idle_timeout))) {
-               sock->limit.idle_timeout = client->limit.idle_timeout;
-       }
-
-       if (client->limit.lifetime &&
-           ((sock->limit.lifetime == 0) ||
-            (client->limit.lifetime < sock->limit.lifetime))) {
-               sock->limit.lifetime = client->limit.lifetime;
-       }
-
-       this->fd = newfd;
-       this->status = RAD_LISTEN_STATUS_INIT;
-
-       this->parent = listener;
-       if (!rbtree_insert(listener->children, this)) {
-               ERROR("Failed inserting TCP socket into parent list.");
-       }
-
-#  ifdef WITH_COMMAND_SOCKET
-       if (this->type == RAD_LISTEN_COMMAND) {
-               this->recv = command_init_recv;
-               this->send = command_tcp_send;
-       } else
-#  endif
-       {
-
-               this->recv = dual_tcp_recv;
-
-#  ifdef WITH_TLS
-               if (this->tls) {
-                       this->recv = dual_tls_recv;
-                       this->send = dual_tls_send;
-               }
-#  endif
-       }
-
-       /*
-        *      FIXME: set O_NONBLOCK on the accept'd fd.
-        *      See djb's portability rants for details.
-        */
-
-       /*
-        *      Tell the event loop that we have a new FD.
-        *      This can be called from a child thread...
-        */
-       radius_update_listener(this);
-
-       return 0;
-}
-#endif
-
-/*
- *     This function is stupid and complicated.
- */
-int common_socket_print(rad_listen_t const *this, char *buffer, size_t bufsize)
-{
-       size_t len;
-       listen_socket_t *sock = this->data;
-       char const *name = this->proto->name;
-
-#define FORWARD len = strlen(buffer); if (len >= (bufsize + 1)) return 0;buffer += len;bufsize -= len
-#define ADDSTRING(_x) strlcpy(buffer, _x, bufsize);FORWARD
-
-       ADDSTRING(name);
-
-       if (this->dual) {
-               ADDSTRING("+acct");
-       }
-
-       if (sock->interface) {
-               ADDSTRING(" interface ");
-               ADDSTRING(sock->interface);
-       }
-
-#ifdef WITH_TCP
-       if (this->recv == dual_tcp_accept) {
-               ADDSTRING(" proto tcp");
-       }
-#endif
-
-#ifdef WITH_TCP
-       /*
-        *      TCP sockets get printed a little differently, to make
-        *      it clear what's going on.
-        */
-       if (sock->client) {
-               ADDSTRING(" from client (");
-               fr_inet_ntoh(&sock->other_ipaddr, buffer, bufsize);
-               FORWARD;
-
-               ADDSTRING(", ");
-               snprintf(buffer, bufsize, "%d", sock->other_port);
-               FORWARD;
-               ADDSTRING(") -> (");
-
-               if ((sock->my_ipaddr.af == AF_INET) &&
-                   (sock->my_ipaddr.addr.v4.s_addr == htonl(INADDR_ANY))) {
-                       strlcpy(buffer, "*", bufsize);
-               } else {
-                       fr_inet_ntoh(&sock->my_ipaddr, buffer, bufsize);
-               }
-               FORWARD;
-
-               ADDSTRING(", ");
-               snprintf(buffer, bufsize, "%d", sock->my_port);
-               FORWARD;
-
-               if (this->server) {
-                       ADDSTRING(", virtual-server=");
-                       ADDSTRING(this->server);
-               }
-
-               ADDSTRING(")");
-
-               return 1;
-       }
-
-#ifdef WITH_PROXY
-       /*
-        *      Maybe it's a socket that we opened to a home server.
-        */
-       if ((sock->proto == IPPROTO_TCP) &&
-           (this->type == RAD_LISTEN_PROXY)) {
-               ADDSTRING(" (");
-               fr_inet_ntoh(&sock->my_ipaddr, buffer, bufsize);
-               FORWARD;
-
-               ADDSTRING(", ");
-               snprintf(buffer, bufsize, "%d", sock->my_port);
-               FORWARD;
-               ADDSTRING(") -> home_server (");
-
-               if ((sock->other_ipaddr.af == AF_INET) &&
-                   (sock->other_ipaddr.addr.v4.s_addr == htonl(INADDR_ANY))) {
-                       strlcpy(buffer, "*", bufsize);
-               } else {
-                       fr_inet_ntoh(&sock->other_ipaddr, buffer, bufsize);
-               }
-               FORWARD;
-
-               ADDSTRING(", ");
-               snprintf(buffer, bufsize, "%d", sock->other_port);
-               FORWARD;
-
-               ADDSTRING(")");
-
-               return 1;
-       }
-#endif /* WITH_PROXY */
-#endif /* WITH_TCP */
-
-       ADDSTRING(" address ");
-
-       if ((sock->my_ipaddr.af == AF_INET) &&
-           (sock->my_ipaddr.addr.v4.s_addr == htonl(INADDR_ANY))) {
-               strlcpy(buffer, "*", bufsize);
-       } else {
-               fr_inet_ntoh(&sock->my_ipaddr, buffer, bufsize);
-       }
-       FORWARD;
-
-       ADDSTRING(" port ");
-       snprintf(buffer, bufsize, "%d", sock->my_port);
-       FORWARD;
-
-#ifdef WITH_TLS
-       if (this->tls) {
-               ADDSTRING(" (TLS)");
-               FORWARD;
-       }
-#endif
-
-       if (this->server) {
-               ADDSTRING(" bound to virtual-server ");
-               strlcpy(buffer, this->server, bufsize);
-       }
-
-#undef ADDSTRING
-#undef FORWARD
-
-       return 1;
-}
-
-static CONF_PARSER performance_config[] = {
-       { FR_CONF_OFFSET("skip_duplicate_checks", FR_TYPE_BOOL, rad_listen_t, nodup) },
-
-       CONF_PARSER_TERMINATOR
-};
-
-
-static CONF_PARSER limit_config[] = {
-       { FR_CONF_OFFSET("max_pps", FR_TYPE_UINT32, listen_socket_t, max_rate) },
-
-#ifdef WITH_TCP
-       { FR_CONF_OFFSET("max_connections", FR_TYPE_UINT32, listen_socket_t, limit.max_connections), .dflt = "16" },
-       { FR_CONF_OFFSET("lifetime", FR_TYPE_UINT32, listen_socket_t, limit.lifetime), .dflt = "0" },
-       { FR_CONF_OFFSET("idle_timeout", FR_TYPE_UINT32, listen_socket_t, limit.idle_timeout), .dflt = STRINGIFY(30) },
-#endif
-       CONF_PARSER_TERMINATOR
-};
-
-
-#ifdef WITH_TCP
-/*
- *     TLS requires child threads to handle the listeners.  Which
- *     means that we need a separate talloc context per child thread.
- *     Which means that we need to manually clean up the child
- *     listeners.  Which means we need to manually track them.
- *
- *     All child thread linking/unlinking is done in the master
- *     thread.  If we care, we can later add a mutex for the parent
- *     listener.
- */
-static int listener_cmp(void const *one, void const *two)
-{
-       return (one < two) - (one > two);
-}
-
-static int listener_unlink(UNUSED void *ctx, UNUSED void *data)
-{
-       return 2;               /* unlink this node from the tree */
-}
-#endif
-
-
-/*
- *     Parse an authentication or accounting socket.
- */
-int common_socket_parse(CONF_SECTION *cs, rad_listen_t *this)
-{
-       int             rcode;
-       uint32_t        recv_buff;
-       fr_ipaddr_t     ipaddr;
-       listen_socket_t *sock = this->data;
-       char const      *section_name = NULL;
-       CONF_SECTION    *clients_cs, *parent_cs;
-       CONF_SECTION    *subcs;
-       CONF_PAIR       *cp;
-
-       /*
-        *      Try IPv4 first
-        */
-       memset(&ipaddr, 0, sizeof(ipaddr));
-       ipaddr.addr.v4.s_addr = htonl(INADDR_NONE);
-
-       rcode = cf_pair_parse(NULL, cs, "ipaddr", FR_ITEM_POINTER(FR_TYPE_COMBO_IP_ADDR, &ipaddr), NULL, T_INVALID);
-       if (rcode < 0) return -1;
-       if (rcode != 0) rcode = cf_pair_parse(NULL, cs, "ipv4addr",
-                                             FR_ITEM_POINTER(FR_TYPE_IPV4_ADDR, &ipaddr), NULL, T_INVALID);
-       if (rcode < 0) return -1;
-       if (rcode != 0) rcode = cf_pair_parse(NULL, cs, "ipv6addr",
-                                             FR_ITEM_POINTER(FR_TYPE_IPV6_ADDR, &ipaddr), NULL, T_INVALID);
-       if (rcode < 0) return -1;
-       /*
-        *      Default to all IPv6 interfaces (it's the future)
-        */
-       if (rcode != 0) {
-               memset(&ipaddr, 0, sizeof(ipaddr));
-               ipaddr.af = AF_INET6;
-               ipaddr.prefix = 128;
-               ipaddr.addr.v6 = in6addr_any;   /* in6addr_any binds to all addresses */
-       }
-
-       rcode = cf_pair_parse(NULL, cs, "port", FR_ITEM_POINTER(FR_TYPE_UINT16, &sock->my_port), "0", T_BARE_WORD);
-       if (rcode < 0) return -1;
-
-       rcode = cf_pair_parse(NULL, cs, "recv_buff", FR_ITEM_POINTER(FR_TYPE_UINT32, &recv_buff), "0", T_BARE_WORD);
-       if (rcode < 0) return -1;
-       if (recv_buff) {
-               FR_INTEGER_BOUND_CHECK("recv_buff", recv_buff, >=, 32);
-               FR_INTEGER_BOUND_CHECK("recv_buff", recv_buff, <=, INT_MAX);
-       }
-
-       sock->proto = IPPROTO_UDP;
-
-       if (cf_pair_find(cs, "proto")) {
-#ifndef WITH_TCP
-               cf_log_err(cs, "System does not support the TCP protocol.  "
-                             "Delete this line from the configuration file");
-               return -1;
-#else
-               char const *proto = NULL;
-#  ifdef WITH_TLS
-               CONF_SECTION *tls;
-#  endif
-
-               rcode = cf_pair_parse(NULL, cs, "proto", FR_ITEM_POINTER(FR_TYPE_STRING, &proto),
-                                     "udp", T_DOUBLE_QUOTED_STRING);
-               if (rcode < 0) return -1;
-
-               if (!proto || strcmp(proto, "udp") == 0) {
-                       sock->proto = IPPROTO_UDP;
-
-               } else if (strcmp(proto, "tcp") == 0) {
-                       sock->proto = IPPROTO_TCP;
-
-#ifdef WITH_PROXY
-                       /*
-                        *      You CANNOT specify a source port for outbound proxy sockets
-                        *      over TCP.
-                        */
-                       if ((this->type == RAD_LISTEN_PROXY) &&
-                           (sock->my_port != 0)) {
-                               cf_log_err(this->cs, "You must not specify a source port for proxy sockets over TCP");
-                               return -1;
-                       }
-#endif
-
-               } else {
-                       cf_log_err(cs, "Unknown proto name \"%s\"", proto);
-                       return -1;
-               }
-
-#  ifdef WITH_TLS
-               tls = cf_section_find(cs, "tls", NULL);
-               if (tls) {
-                       /*
-                        *      If unset, set to default.
-                        */
-                       if (!sock->my_port) sock->my_port = FR_RADIUS_TLS_PORT;
-
-                       this->tls = tls_conf_parse_server(tls);
-                       if (!this->tls) {
-                               return -1;
-                       }
-
-#    ifdef HAVE_PTRHEAD_H
-                       if (pthread_mutex_init(&sock->mutex, NULL) < 0) {
-                               rad_assert(0 == 1);
-                               listen_free(&this);
-                               return 0;
-                       }
-#    endif
-
-               }
-#  endif  /* WITH_TLS */
-#endif    /* WITH_TCP */
-       } /* else there as no "proto" field. */
-
-       /*
-        *      Magical tuning methods!
-        */
-       subcs = cf_section_find(cs, "performance", NULL);
-       if (subcs) {
-               if (cf_section_rules_push(subcs, performance_config) < 0) return -1;
-               rcode = cf_section_parse(this, this, subcs);
-               if (rcode < 0) return -1;
-       }
-
-       subcs = cf_section_find(cs, "limit", NULL);
-       if (subcs) {
-               if (cf_section_rules_push(subcs, limit_config) < 0) return -1;
-
-               rcode = cf_section_parse(sock, sock, subcs);
-               if (rcode < 0) return -1;
-
-               if (sock->max_rate && ((sock->max_rate < 10) || (sock->max_rate > 1000000))) {
-                       cf_log_err(cs,
-                                     "Invalid value for \"max_pps\"");
-                       return -1;
-               }
-
-#ifdef WITH_TCP
-               if ((sock->limit.idle_timeout > 0) && (sock->limit.idle_timeout < 5)) {
-                       WARN("Setting idle_timeout to 5");
-                       sock->limit.idle_timeout = 5;
-               }
-
-               if ((sock->limit.lifetime > 0) && (sock->limit.lifetime < 5)) {
-                       WARN("Setting lifetime to 5");
-                       sock->limit.lifetime = 5;
-               }
-
-               if ((sock->limit.lifetime > 0) && (sock->limit.idle_timeout > sock->limit.lifetime)) {
-                       WARN("Setting idle_timeout to 0");
-                       sock->limit.idle_timeout = 0;
-               }
-
-               /*
-                *      Force no duplicate detection for TCP sockets.
-                */
-               if (sock->proto == IPPROTO_TCP) {
-                       this->nodup = true;
-               }
-
-       } else {
-               sock->limit.max_connections = 60;
-               sock->limit.idle_timeout = 30;
-               sock->limit.lifetime = 0;
-#endif
-       }
-
-       sock->my_ipaddr = ipaddr;
-       sock->recv_buff = recv_buff;
-
-#ifdef WITH_PROXY
-       if (check_config) {
-               /*
-                *      Until there is a side effects free way of forwarding a
-                *      request to another virtual server, this check is invalid,
-                *      and should be left disabled.
-                */
-#  if 0
-               if (home_server_find(&sock->my_ipaddr, sock->my_port, sock->proto)) {
-                               char buffer[128];
-
-                               ERROR("We have been asked to listen on %s port %d, which is also listed as a "
-                                      "home server.  This can create a proxy loop",
-                                      fr_inet_ntoh(&sock->my_ipaddr, buffer, sizeof(buffer)), sock->my_port);
-                               return -1;
-               }
-#  endif
-               return 0;       /* don't do anything */
-       }
-#endif
-
-       /*
-        *      If we can bind to interfaces, do so,
-        *      else don't.
-        */
-       cp = cf_pair_find(cs, "interface");
-       if (cp) {
-               char const *value = cf_pair_value(cp);
-               if (!value) {
-                       cf_log_err(cs,
-                                  "No interface name given");
-                       return -1;
-               }
-               sock->interface = value;
-       }
-
-#ifdef WITH_DHCP
-       /*
-        *      If we can do broadcasts..
-        */
-       cp = cf_pair_find(cs, "broadcast");
-       if (cp) {
-
-       /*
-        *      Testing SO_BROADCAST only makes sence if using sockets
-        *      (i.e. if SO_BINDTODEVICE is available).
-        */
-#  if defined(SO_BINDTODEVICE) && !defined(SO_BROADCAST)
-               cf_log_err(cs,
-                          "System does not support broadcast sockets.  Delete this line from the configuration file");
-               return -1;
-#  else
-               if (this->type != RAD_LISTEN_DHCP) {
-                       cf_log_err(cp,
-                                  "Broadcast can only be set for DHCP listeners.  Delete this line from the configuration file");
-                       return -1;
-               }
-
-               char const *value = cf_pair_value(cp);
-               if (!value) {
-                       cf_log_err(cs,
-                                  "No broadcast value given");
-                       return -1;
-               }
-
-               /*
-                *      Hack... whatever happened to cf_section_parse?
-                */
-               sock->broadcast = (strcmp(value, "yes") == 0);
-#  endif
-       }
-#endif
-
-#ifdef WITH_PROXY
-       /*
-        *      Proxy sockets don't have clients.
-        */
-       if (this->type == RAD_LISTEN_PROXY) return 0;
-#endif
-
-       /*
-        *      The more specific configurations are preferred to more
-        *      generic ones.
-        */
-       clients_cs = NULL;
-       parent_cs = cf_root(cs);
-       rcode = cf_pair_parse(NULL, cs, "clients", FR_ITEM_POINTER(FR_TYPE_STRING, &section_name), NULL, T_INVALID);
-       if (rcode < 0) return -1; /* bad string */
-       if (rcode == 0) {
-               /*
-                *      Explicit list given: use it.
-                */
-               clients_cs = cf_section_find(parent_cs, "clients", section_name);
-               if (!clients_cs) clients_cs = cf_section_find(main_config.config, section_name, NULL);
-               if (!clients_cs) {
-                       cf_log_err(cs, "Failed to find clients %s {...}", section_name);
-                       return -1;
-               }
-       } /* else there was no "clients = " entry. */
-       talloc_const_free(section_name);
-
-       /*
-        *      Always cache the CONF_SECTION of the server.
-        */
-       this->server_cs = virtual_server_find(this->server);
-       if (!this->server_cs) {
-               cf_log_err(cs, "Failed to find virtual server '%s'", this->server);
-               return -1;
-       }
-
-       /*
-        *      Prefer clients who are also located in this virtual server.
-        *
-        *      If there are no clients in this virtual server, then
-        *      choose the global list of clients.
-        */
-       if (!clients_cs) {
-               if (cf_section_find(this->server_cs, "client", NULL) != NULL) {
-                       clients_cs = this->server_cs;
-               } else {
-                       clients_cs = parent_cs;
-               }
-       }
-
-#ifdef WITH_TLS
-       sock->clients = client_list_parse_section(clients_cs, (this->tls != NULL));
-#else
-       sock->clients = client_list_parse_section(clients_cs, false);
-#endif
-       if (!sock->clients) {
-               cf_log_err(cs,
-                          "Failed to load clients for this listen section");
-               return -1;
-       }
-
-#ifdef WITH_TCP
-       if (sock->proto == IPPROTO_TCP) {
-               /*
-                *      Re-write the listener receive function to
-                *      allow us to accept the socket.
-                */
-               this->recv = dual_tcp_accept;
-
-               this->children = rbtree_create(this, listener_cmp, NULL, 0);
-               if (!this->children) {
-                       cf_log_err(cs, "Failed to create child list for TCP socket.");
-                       return -1;
-               }
-       }
-#endif
-
-       return 0;
-}
-
-
-/*
- *     Open a socket using a previously parsed listener.
- */
-int common_socket_open(CONF_SECTION *cs, rad_listen_t *this)
-{
-       listen_socket_t *sock = this->data;
-
-#ifdef HAVE_LIBPCAP
-       /* Only use libpcap if pcap_type has a value. Otherwise, use socket with SO_BINDTODEVICE */
-       if (sock->interface && sock->pcap_type) {
-               if (init_pcap(this) < 0) {
-                       cf_log_err(cs,
-                                  "Error initializing pcap.");
-                       return -1;
-               }
-
-               return 0;
-       }
-#endif
-
-       /*
-        *      Bind the socket to an IP / port / interface
-        */
-       if (listen_bind(this) < 0) {
-               char buffer[128];
-               cf_log_err(cs,
-                             "Error binding to port for %s port %d",
-                             fr_inet_ntoh(&sock->my_ipaddr, buffer, sizeof(buffer)),
-                             sock->my_port);
-               return -1;
-       }
-
-       return 0;
-}
-
-/*
- *     Send an authentication response packet
- */
-static int auth_socket_send(NDEBUG_UNUSED rad_listen_t *listener, REQUEST *request)
-{
-       rad_assert(request->listener == listener);
-       rad_assert(listener->send == auth_socket_send);
-
-       if (request->reply->code == 0) return 0;
-
-#ifdef WITH_UDPFROMTO
-       /*
-        *      Overwrite the src ip address on the outbound packet
-        *      with the one specified by the client.
-        *      This is useful to work around broken DSR implementations
-        *      and other routing issues.
-        */
-       if (request->client->src_ipaddr.af != AF_UNSPEC) {
-               request->reply->src_ipaddr = request->client->src_ipaddr;
-       }
-#endif
-
-       if (fr_radius_packet_send(request->reply, request->packet,
-                          request->client->secret) < 0) {
-               RERROR("Failed sending reply: %s",
-                              fr_strerror());
-               return -1;
-       }
-
-       return 0;
-}
-
-
-#ifdef WITH_ACCOUNTING
-/*
- *     Send an accounting response packet (or not)
- */
-static int acct_socket_send(NDEBUG_UNUSED rad_listen_t *listener, REQUEST *request)
-{
-       rad_assert(request->listener == listener);
-       rad_assert(listener->send == acct_socket_send);
-
-       /*
-        *      Accounting reject's are silently dropped.
-        *
-        *      We do it here to avoid polluting the rest of the
-        *      code with this knowledge
-        */
-       if (request->reply->code == 0) return 0;
-
-#  ifdef WITH_UDPFROMTO
-       /*
-        *      Overwrite the src ip address on the outbound packet
-        *      with the one specified by the client.
-        *      This is useful to work around broken DSR implementations
-        *      and other routing issues.
-        */
-       if (request->client->src_ipaddr.af != AF_UNSPEC) {
-               request->reply->src_ipaddr = request->client->src_ipaddr;
-       }
-#  endif
-
-       if (fr_radius_packet_send(request->reply, request->packet,
-                          request->client->secret) < 0) {
-               RERROR("Failed sending reply: %s",
-                              fr_strerror());
-               return -1;
-       }
-
-       return 0;
-}
-#endif
-
-#ifdef WITH_PROXY
-/*
- *     Send a packet to a home server.
- *
- *     FIXME: have different code for proxy auth & acct!
- */
-static int proxy_socket_send(NDEBUG_UNUSED rad_listen_t *listener, REQUEST *request)
-{
-       rad_assert(request->proxy->listener == listener);
-       rad_assert(listener->send == proxy_socket_send);
-
-       if (fr_radius_packet_send(request->proxy->packet, NULL,
-                          request->proxy->home_server->secret) < 0) {
-               RERROR("Failed sending proxied request: %s",
-                              fr_strerror());
-               return -1;
-       }
-
-       return 0;
-}
-#endif
-
-#ifdef WITH_STATS
-/*
- *     Check if an incoming request is "ok"
- *
- *     It takes packets, not requests.  It sees if the packet looks
- *     OK.  If so, it does a number of sanity checks on it.
-  */
-static int stats_socket_recv(rad_listen_t *listener)
-{
-       ssize_t         rcode;
-       unsigned int    code;
-       uint16_t        src_port;
-       RADIUS_PACKET   *packet;
-       RADCLIENT       *client = NULL;
-       fr_ipaddr_t     src_ipaddr;
-
-       rcode = fr_radius_recv_header(listener->fd, &src_ipaddr, &src_port, &code);
-       if (rcode < 0) return 0;
-
-       FR_STATS_INC(auth, total_requests);
-
-       if (rcode < 20) {       /* RADIUS_HDR_LEN */
-               if (DEBUG_ENABLED) ERROR("Receive - %s", fr_strerror());
-               FR_STATS_INC(auth, total_malformed_requests);
-               return 0;
-       }
-
-       client = client_listener_find(listener, &src_ipaddr, src_port);
-       if (!client) {
-               udp_recv_discard(listener->fd);
-               FR_STATS_INC(auth, total_invalid_requests);
-               return 0;
-       }
-
-       FR_STATS_TYPE_INC(client->auth.total_requests);
-
-       /*
-        *      We only understand Status-Server on this socket.
-        */
-       if (code != FR_CODE_STATUS_SERVER) {
-               DEBUG("Ignoring packet code %d sent to Status-Server port",
-                     code);
-               udp_recv_discard(listener->fd);
-               FR_STATS_INC(auth, total_unknown_types);
-               return 0;
-       }
-
-       /*
-        *      Now that we've sanity checked everything, receive the
-        *      packet.
-        */
-       packet = fr_radius_packet_recv(NULL, listener->fd, UDP_FLAGS_NONE, true); /* require message authenticator */
-       if (!packet) {
-               FR_STATS_INC(auth, total_malformed_requests);
-               if (DEBUG_ENABLED) ERROR("Receive - %s", fr_strerror());
-               return 0;
-       }
-
-       if (!request_receive(NULL, listener, packet, client, rad_status_server)) {
-               FR_STATS_INC(auth, total_packets_dropped);
-               fr_radius_free(&packet);
-               return 0;
-       }
-
-       return 1;
-}
-#endif
-
-
-/*
- *     Check if an incoming request is "ok"
- *
- *     It takes packets, not requests.  It sees if the packet looks
- *     OK.  If so, it does a number of sanity checks on it.
-  */
-static int auth_socket_recv(rad_listen_t *listener)
-{
-       ssize_t         rcode;
-       unsigned int    code;
-       uint16_t        src_port;
-       RADIUS_PACKET   *packet;
-       RAD_REQUEST_FUNP fun = NULL;
-       RADCLIENT       *client = NULL;
-       fr_ipaddr_t     src_ipaddr;
-       TALLOC_CTX      *ctx;
-
-       rcode = fr_radius_recv_header(listener->fd, &src_ipaddr, &src_port, &code);
-       if (rcode < 0) return 0;
-
-       FR_STATS_INC(auth, total_requests);
-
-       if (rcode < 20) {       /* RADIUS_HDR_LEN */
-               if (DEBUG_ENABLED) ERROR("Receive - %s", fr_strerror());
-               FR_STATS_INC(auth, total_malformed_requests);
-               return 0;
-       }
-
-       client = client_listener_find(listener, &src_ipaddr, src_port);
-       if (!client) {
-               udp_recv_discard(listener->fd);
-               FR_STATS_INC(auth, total_invalid_requests);
-               return 0;
-       }
-
-       FR_STATS_TYPE_INC(client->auth.total_requests);
-
-       /*
-        *      Some sanity checks, based on the packet code.
-        */
-       switch (code) {
-       case FR_CODE_ACCESS_REQUEST:
-               fun = rad_authenticate;
-               break;
-
-       case FR_CODE_STATUS_SERVER:
-               if (!main_config.status_server) {
-                       udp_recv_discard(listener->fd);
-                       FR_STATS_INC(auth, total_unknown_types);
-                       WARN("Ignoring Status-Server request due to security configuration");
-                       return 0;
-               }
-               fun = rad_status_server;
-               break;
-
-       default:
-               udp_recv_discard(listener->fd);
-               FR_STATS_INC(auth, total_unknown_types);
-
-               if (DEBUG_ENABLED) ERROR("Receive - Invalid packet code %d sent to authentication port from "
-                                        "client %s port %d", code, client->shortname, src_port);
-               return 0;
-       } /* switch over packet types */
-
-       ctx = talloc_pool(NULL, main_config.talloc_pool_size);
-       if (!ctx) {
-               udp_recv_discard(listener->fd);
-               FR_STATS_INC(auth, total_packets_dropped);
-               return 0;
-       }
-       talloc_set_name_const(ctx, "auth_listener_pool");
-
-       /*
-        *      Now that we've sanity checked everything, receive the
-        *      packet.
-        */
-       packet = fr_radius_packet_recv(ctx, listener->fd, UDP_FLAGS_NONE, client->message_authenticator);
-       if (!packet) {
-               FR_STATS_INC(auth, total_malformed_requests);
-               if (DEBUG_ENABLED) ERROR("Receive - %s", fr_strerror());
-               talloc_free(ctx);
-               return 0;
-       }
-
-#if defined(__APPLE__) && defined(WITH_UDPFROMTO)
-       /*
-        *      This is a NICE Mac OSX bug.  Create an interface with
-        *      two IP address, and then configure one listener for
-        *      each IP address.  Send thousands of packets to one
-        *      address, and some will show up on the OTHER socket.
-        *
-        *      This hack works ONLY if the clients are global.  If
-        *      each listener has the same client IP, but with
-        *      different secrets, then it will fail the fr_radius_packet_recv()
-        *      check above, and there's nothing you can do.
-        */
-       {
-               listen_socket_t *sock = listener->data;
-               rad_listen_t *other;
-
-               other = listener_find_byipaddr(&packet->dst_ipaddr,
-                                              packet->dst_port, sock->proto);
-               if (other) listener = other;
-       }
-#endif
-
-       if (!request_receive(ctx, listener, packet, client, fun)) {
-               FR_STATS_INC(auth, total_packets_dropped);
-               talloc_free(ctx);
-               return 0;
-       }
-
-       return 1;
-}
-
-
-#ifdef WITH_ACCOUNTING
-/*
- *     Receive packets from an accounting socket
- */
-static int acct_socket_recv(rad_listen_t *listener)
-{
-       ssize_t         rcode;
-       unsigned int    code;
-       uint16_t        src_port;
-       RADIUS_PACKET   *packet;
-       RAD_REQUEST_FUNP fun = NULL;
-       RADCLIENT       *client = NULL;
-       fr_ipaddr_t     src_ipaddr;
-       TALLOC_CTX      *ctx;
-
-       rcode = fr_radius_recv_header(listener->fd, &src_ipaddr, &src_port, &code);
-       if (rcode < 0) return 0;
-
-       FR_STATS_INC(acct, total_requests);
-
-       if (rcode < 20) {       /* RADIUS_HDR_LEN */
-               if (DEBUG_ENABLED) ERROR("Receive - %s", fr_strerror());
-               FR_STATS_INC(acct, total_malformed_requests);
-               return 0;
-       }
-
-       if ((client = client_listener_find(listener,
-                                          &src_ipaddr, src_port)) == NULL) {
-               udp_recv_discard(listener->fd);
-               FR_STATS_INC(acct, total_invalid_requests);
-               return 0;
-       }
-
-       FR_STATS_TYPE_INC(client->acct.total_requests);
-
-       /*
-        *      Some sanity checks, based on the packet code.
-        */
-       switch (code) {
-       case FR_CODE_ACCOUNTING_REQUEST:
-               fun = rad_accounting;
-               break;
-
-       case FR_CODE_STATUS_SERVER:
-               if (!main_config.status_server) {
-                       udp_recv_discard(listener->fd);
-                       FR_STATS_INC(acct, total_unknown_types);
-
-                       WARN("Ignoring Status-Server request due to security configuration");
-                       return 0;
-               }
-               fun = rad_status_server;
-               break;
-
-       default:
-               udp_recv_discard(listener->fd);
-               FR_STATS_INC(acct, total_unknown_types);
-
-               DEBUG("Invalid packet code %d sent to a accounting port from client %s port %d : IGNORED",
-                     code, client->shortname, src_port);
-               return 0;
-       } /* switch over packet types */
-
-       ctx = talloc_pool(NULL, main_config.talloc_pool_size);
-       if (!ctx) {
-               udp_recv_discard(listener->fd);
-               FR_STATS_INC(acct, total_packets_dropped);
-               return 0;
-       }
-       talloc_set_name_const(ctx, "acct_listener_pool");
-
-       /*
-        *      Now that we've sanity checked everything, receive the
-        *      packet.
-        */
-       packet = fr_radius_packet_recv(ctx, listener->fd, UDP_FLAGS_NONE, false);
-       if (!packet) {
-               FR_STATS_INC(acct, total_malformed_requests);
-               if (DEBUG_ENABLED) ERROR("Receive - %s", fr_strerror());
-               talloc_free(ctx);
-               return 0;
-       }
-
-       /*
-        *      There can be no duplicate accounting packets.
-        */
-       if (!request_receive(ctx, listener, packet, client, fun)) {
-               FR_STATS_INC(acct, total_packets_dropped);
-               fr_radius_free(&packet);
-               talloc_free(ctx);
-               return 0;
-       }
-
-       return 1;
-}
-#endif
-
-
-#ifdef WITH_COA
-static int do_proxy(REQUEST *request)
-{
-       VALUE_PAIR *vp;
-
-       /*
-        *      We have a destination IP address.  It will (later) proxied.
-        */
-       vp = fr_pair_find_by_num(request->control, 0, FR_PACKET_DST_IP_ADDRESS, TAG_ANY);
-       if (!vp) vp = fr_pair_find_by_num(request->control, 0, FR_PACKET_DST_IPV6_ADDRESS, TAG_ANY);
-
-       if (!vp) return 0;
-
-       return 1;
-}
-
-/*
- *     Receive a CoA packet.
- */
-rlm_rcode_t rad_coa_recv(REQUEST *request)
-{
-       rlm_rcode_t rcode = RLM_MODULE_OK;
-       int ack, nak;
-       int proxy_status;
-       VALUE_PAIR *vp;
-
-       /*
-        *      Get the correct response
-        */
-       switch (request->packet->code) {
-       case FR_CODE_COA_REQUEST:
-               ack = FR_CODE_COA_ACK;
-               nak = FR_CODE_COA_NAK;
-               break;
-
-       case FR_CODE_DISCONNECT_REQUEST:
-               ack = FR_CODE_DISCONNECT_ACK;
-               nak = FR_CODE_DISCONNECT_NAK;
-               break;
-
-       default:                /* shouldn't happen */
-               return RLM_MODULE_FAIL;
-       }
-
-#  ifdef WITH_PROXY
-#    define WAS_PROXIED (request->proxy)
-#  else
-#    define WAS_PROXIED (0)
-#  endif
-
-       if (!WAS_PROXIED) {
-               /*
-                *      RFC 5176 Section 3.3.  If we have a CoA-Request
-                *      with Service-Type = Authorize-Only, it MUST
-                *      have a State attribute in it.
-                */
-               vp = fr_pair_find_by_num(request->packet->vps, 0, FR_SERVICE_TYPE, TAG_ANY);
-               if (request->packet->code == FR_CODE_COA_REQUEST) {
-                       if (vp && (vp->vp_uint32 == FR_AUTHORIZE_ONLY)) {
-                               vp = fr_pair_find_by_num(request->packet->vps, 0, FR_STATE, TAG_ANY);
-                               if (!vp || (vp->vp_length == 0)) {
-                                       REDEBUG("CoA-Request with Service-Type = Authorize-Only MUST "
-                                               "contain a State attribute");
-                                       request->reply->code = FR_CODE_COA_NAK;
-                                       return RLM_MODULE_FAIL;
-                               }
-                       }
-               } else if (vp) {
-                       /*
-                        *      RFC 5176, Section 3.2.
-                        */
-                       REDEBUG("Disconnect-Request MUST NOT contain a Service-Type attribute");
-                       request->reply->code = FR_CODE_DISCONNECT_NAK;
-                       return RLM_MODULE_FAIL;
-               }
-
-               rcode = process_recv_coa(0, request);
-               switch (rcode) {
-               case RLM_MODULE_FAIL:
-               case RLM_MODULE_INVALID:
-               case RLM_MODULE_REJECT:
-               case RLM_MODULE_USERLOCK:
-               default:
-                       request->reply->code = nak;
-                       break;
-
-               case RLM_MODULE_HANDLED:
-                       return rcode;
-
-               case RLM_MODULE_NOOP:
-               case RLM_MODULE_NOTFOUND:
-               case RLM_MODULE_OK:
-               case RLM_MODULE_UPDATED:
-                       proxy_status = do_proxy(request);
-                       if (proxy_status == 1) return RLM_MODULE_OK;
-
-                       if (proxy_status < 0) {
-                               request->reply->code = nak;
-                       } else {
-                               request->reply->code = ack;
-                       }
-                       break;
-               }
-
-       }
-
-#  ifdef WITH_PROXY
-       else if (request->proxy && request->proxy->reply) {
-               /*
-                *      Start the reply code with the proxy reply
-                *      code.
-                */
-               request->reply->code = request->proxy->reply->code;
-       }
-#  endif
-
-       /*
-        *      Copy State from the request to the reply.
-        *      See RFC 5176 Section 3.3.
-        */
-       vp = fr_pair_list_copy_by_num(request->reply, request->packet->vps, 0, FR_STATE, TAG_ANY);
-       if (vp) fr_pair_add(&request->reply->vps, vp);
-
-       /*
-        *      We may want to over-ride the reply.
-        */
-       if (request->reply->code) {
-               rcode = process_send_coa(0, request);
-               switch (rcode) {
-                       /*
-                        *      We need to send CoA-NAK back if Service-Type
-                        *      is Authorize-Only.  Rely on the user's policy
-                        *      to do that.  We're not a real NAS, so this
-                        *      restriction doesn't (ahem) apply to us.
-                        */
-               case RLM_MODULE_FAIL:
-               case RLM_MODULE_INVALID:
-               case RLM_MODULE_REJECT:
-               case RLM_MODULE_USERLOCK:
-               default:
-                       /*
-                        *      Over-ride an ACK with a NAK
-                        */
-                       request->reply->code = nak;
-                       break;
-
-               case RLM_MODULE_HANDLED:
-                       return rcode;
-
-               case RLM_MODULE_NOOP:
-               case RLM_MODULE_NOTFOUND:
-               case RLM_MODULE_OK:
-               case RLM_MODULE_UPDATED:
-                       /*
-                        *      Do NOT over-ride a previously set value.
-                        *      Otherwise an "ok" here will re-write a
-                        *      NAK to an ACK.
-                        */
-                       if (request->reply->code == 0) {
-                               request->reply->code = ack;
-                       }
-                       break;
-               }
-       }
-
-       return RLM_MODULE_OK;
-}
-
-
-/*
- *     Check if an incoming request is "ok"
- *
- *     It takes packets, not requests.  It sees if the packet looks
- *     OK.  If so, it does a number of sanity checks on it.
-  */
-static int coa_socket_recv(rad_listen_t *listener)
-{
-       ssize_t         rcode;
-       unsigned int    code;
-       uint16_t        src_port;
-       RADIUS_PACKET   *packet;
-       RAD_REQUEST_FUNP fun = NULL;
-       RADCLIENT       *client = NULL;
-       fr_ipaddr_t     src_ipaddr;
-       TALLOC_CTX      *ctx;
-
-       rcode = fr_radius_recv_header(listener->fd, &src_ipaddr, &src_port, &code);
-       if (rcode < 0) return 0;
-
-       if (rcode < 20) {       /* RADIUS_HDR_LEN */
-               if (DEBUG_ENABLED) ERROR("Receive - %s", fr_strerror());
-               FR_STATS_INC(coa, total_malformed_requests);
-               return 0;
-       }
-
-       if ((client = client_listener_find(listener,
-                                          &src_ipaddr, src_port)) == NULL) {
-               udp_recv_discard(listener->fd);
-               FR_STATS_INC(coa, total_requests);
-               FR_STATS_INC(coa, total_invalid_requests);
-               return 0;
-       }
-
-       /*
-        *      Some sanity checks, based on the packet code.
-        */
-       switch (code) {
-       case FR_CODE_COA_REQUEST:
-               FR_STATS_INC(coa, total_requests);
-               fun = rad_coa_recv;
-               break;
-
-       case FR_CODE_DISCONNECT_REQUEST:
-               FR_STATS_INC(dsc, total_requests);
-               fun = rad_coa_recv;
-               break;
-
-       default:
-               udp_recv_discard(listener->fd);
-               FR_STATS_INC(coa, total_unknown_types);
-               DEBUG("Invalid packet code %d sent to coa port from client %s port %d : IGNORED",
-                     code, client->shortname, src_port);
-               return 0;
-       } /* switch over packet types */
-
-       ctx = talloc_pool(NULL, main_config.talloc_pool_size);
-       if (!ctx) {
-               udp_recv_discard(listener->fd);
-               FR_STATS_INC(coa, total_packets_dropped);
-               return 0;
-       }
-       talloc_set_name_const(ctx, "coa_socket_recv_pool");
-
-       /*
-        *      Now that we've sanity checked everything, receive the
-        *      packet.
-        */
-       packet = fr_radius_packet_recv(ctx, listener->fd, UDP_FLAGS_NONE, client->message_authenticator);
-       if (!packet) {
-               FR_STATS_INC(coa, total_malformed_requests);
-               if (DEBUG_ENABLED) ERROR("Receive - %s", fr_strerror());
-               talloc_free(ctx);
-               return 0;
-       }
-
-       if (!request_receive(ctx, listener, packet, client, fun)) {
-               FR_STATS_INC(coa, total_packets_dropped);
-               fr_radius_free(&packet);
-               talloc_free(ctx);
-               return 0;
-       }
-
-       return 1;
-}
-#endif
-
-#ifdef WITH_PROXY
-/*
- *     Recieve packets from a proxy socket.
- */
-static int proxy_socket_recv(rad_listen_t *listener)
-{
-       RADIUS_PACKET   *packet;
-#  ifdef WITH_TCP
-       listen_socket_t *sock;
-#  endif
-       char            buffer[128];
-
-       packet = fr_radius_packet_recv(NULL, listener->fd, UDP_FLAGS_NONE, false);
-       if (!packet) {
-               if (DEBUG_ENABLED) ERROR("Receive - %s", fr_strerror());
-               return 0;
-       }
-
-       switch (packet->code) {
-       case FR_CODE_ACCESS_ACCEPT:
-       case FR_CODE_ACCESS_CHALLENGE:
-       case FR_CODE_ACCESS_REJECT:
-               break;
-
-#  ifdef WITH_ACCOUNTING
-       case FR_CODE_ACCOUNTING_RESPONSE:
-               break;
-#  endif
-
-#  ifdef WITH_COA
-       case FR_CODE_DISCONNECT_ACK:
-       case FR_CODE_DISCONNECT_NAK:
-       case FR_CODE_COA_ACK:
-       case FR_CODE_COA_NAK:
-               break;
-#  endif
-
-       default:
-               /*
-                *      FIXME: Update MIB for packet types?
-                */
-               ERROR("Invalid packet code %d sent to a proxy port from home server %s port %d - ID %d : IGNORED",
-                     packet->code,
-                     fr_inet_ntoh(&packet->src_ipaddr, buffer, sizeof(buffer)),
-                     packet->src_port, packet->id);
-#  ifdef WITH_STATS
-               listener->stats.total_unknown_types++;
-#  endif
-               fr_radius_free(&packet);
-               return 0;
-       }
-
-#  ifdef WITH_TCP
-       sock = listener->data;
-       packet->proto = sock->proto;
-#  endif
-
-       fr_radius_free(&packet);
-       return 0;
-}
-
-#  ifdef WITH_TCP
-/*
- *     Recieve packets from a proxy socket.
- */
-static int proxy_socket_tcp_recv(rad_listen_t *listener)
-{
-       RADIUS_PACKET   *packet;
-       listen_socket_t *sock = listener->data;
-       char            buffer[128];
-
-       if (listener->status != RAD_LISTEN_STATUS_KNOWN) return 0;
-
-       packet = fr_tcp_recv(listener->fd, 0);
-       if (!packet) {
-               listener->status = RAD_LISTEN_STATUS_EOL;
-               radius_update_listener(listener);
-               return 0;
-       }
-
-       /*
-        *      FIXME: Client MIB updates?
-        */
-       switch (packet->code) {
-       case FR_CODE_ACCESS_ACCEPT:
-       case FR_CODE_ACCESS_CHALLENGE:
-       case FR_CODE_ACCESS_REJECT:
-               break;
-
-#    ifdef WITH_ACCOUNTING
-       case FR_CODE_ACCOUNTING_RESPONSE:
-               break;
-#    endif
-
-       default:
-               /*
-                *      FIXME: Update MIB for packet types?
-                */
-               ERROR("Invalid packet code %d sent to a proxy port "
-                      "from home server %s port %d - ID %d : IGNORED",
-                      packet->code,
-                      fr_inet_ntoh(&packet->src_ipaddr, buffer, sizeof(buffer)),
-                      packet->src_port, packet->id);
-               fr_radius_free(&packet);
-               return 0;
-       }
-
-       packet->src_ipaddr = sock->other_ipaddr;
-       packet->src_port = sock->other_port;
-       packet->dst_ipaddr = sock->my_ipaddr;
-       packet->dst_port = sock->my_port;
-
-       /*
-        *      FIXME: Have it return an indication of packets that
-        *      are OK to ignore (dups, too late), versus ones that
-        *      aren't OK to ignore (unknown response, spoofed, etc.)
-        *
-        *      Close the socket on bad packets...
-        */
-       fr_radius_free(&packet);
-       return 0;
-}
-#  endif
-#endif
-
-
-static int client_socket_encode(UNUSED rad_listen_t *listener, REQUEST *request)
-{
-       if (!request->reply->code) return 0;
-
-       if (fr_radius_packet_encode(request->reply, request->packet, request->client->secret) < 0) {
-               RPERROR("Failed encoding packet");
-
-               return -1;
-       }
-
-       if (request->reply->data_len > (MAX_PACKET_LEN - 100)) {
-               RWDEBUG("Packet is large, and possibly truncated - %zd vs max %d",
-                       request->reply->data_len, MAX_PACKET_LEN);
-       }
-
-       if (fr_radius_packet_sign(request->reply, request->packet, request->client->secret) < 0) {
-               RPERROR("Failed signing packet");
-
-               return -1;
-       }
-
-       return 0;
-}
-
-
-static int client_socket_decode(UNUSED rad_listen_t *listener, REQUEST *request)
-{
-#ifdef WITH_TLS
-       listen_socket_t *sock;
-#endif
-
-       if (fr_radius_packet_verify(request->packet, NULL,
-                            request->client->secret) < 0) {
-               if (request->reply) request->reply->id = -1;
-               return -1;
-       }
-
-#ifdef WITH_TLS
-       sock = request->listener->data;
-       rad_assert(sock != NULL);
-
-       /*
-        *      FIXME: Add the rest of the TLS parameters, too?  But
-        *      how do we separate EAP-TLS parameters from RADIUS/TLS
-        *      parameters?
-        */
-       if (sock->tls_session && sock->tls_session->ssl) {
-#  ifdef PSK_MAX_IDENTITY_LEN
-               const char *identity = SSL_get_psk_identity(sock->tls_session->ssl);
-               if (identity) {
-                       RDEBUG("Retrieved psk identity: %s", identity);
-                       pair_make_request("TLS-PSK-Identity", identity, T_OP_SET);
-               }
-#  endif
-       }
-#endif
-
-       return fr_radius_packet_decode(request->packet, NULL,
-                               request->client->secret);
-}
-
-#ifdef WITH_PROXY
-static int proxy_socket_encode(UNUSED rad_listen_t *listener, REQUEST *request)
-{
-       if (fr_radius_packet_encode(request->proxy->packet, NULL, request->proxy->home_server->secret) < 0) {
-               RPERROR("Failed encoding proxied packet");
-
-               return -1;
-       }
-
-       if (request->proxy->packet->data_len > (MAX_PACKET_LEN - 100)) {
-               RWDEBUG("Packet is large, and possibly truncated - %zd vs max %d",
-                       request->proxy->packet->data_len, MAX_PACKET_LEN);
-       }
-
-       if (fr_radius_packet_sign(request->proxy->packet, NULL, request->proxy->home_server->secret) < 0) {
-               RPERROR("Failed signing proxied packet");
-
-               return -1;
-       }
-
-       return 0;
-}
-
-
-static int proxy_socket_decode(UNUSED rad_listen_t *listener, REQUEST *request)
-{
-       /*
-        *      fr_radius_packet_verify is run in event.c, received_proxy_response()
-        */
-
-       return fr_radius_packet_decode(request->proxy->reply, request->proxy->packet,
-                               request->proxy->home_server->secret);
-}
-#endif
-
-#include "command.c"
-
-#define NO_LISTENER { .name = "undefined", }
-
-/*
- *     Handle up to 256 different protocols.
- */
-static rad_protocol_t master_listen[] = {
-#ifdef WITH_STATS
-       {
-               .magic = RLM_MODULE_INIT,
-               .name = "status",
-               .inst_size = sizeof(listen_socket_t),
-               .transports = TRANSPORT_DUAL,
-               .tls = true,
-               .parse = common_socket_parse,
-               .open = common_socket_open,
-               .recv = stats_socket_recv,
-               .send = auth_socket_send,
-               .print = common_socket_print,
-               .debug = common_packet_debug,
-               .encode = client_socket_encode,
-               .decode = client_socket_decode
-       },
-#else
-       NO_LISTENER,
-#endif
-
-#ifdef WITH_PROXY
-       /* proxying */
-       {
-               .magic = RLM_MODULE_INIT,
-               .name = "proxy",
-               .inst_size = sizeof(listen_socket_t),
-               .transports = TRANSPORT_DUAL,
-               .tls = true,
-               .parse = common_socket_parse,
-               .open = common_socket_open,
-               .recv = proxy_socket_recv,
-               .send = proxy_socket_send,
-               .print = common_socket_print,
-               .debug = common_packet_debug,
-               .encode = proxy_socket_encode,
-               .decode = proxy_socket_decode
-       },
-#else
-       NO_LISTENER,
-#endif
-
-       /* authentication */
-       {
-               .magic = RLM_MODULE_INIT,
-               .name = "auth",
-               .inst_size = sizeof(listen_socket_t),
-               .transports = TRANSPORT_DUAL,
-               .tls = true,
-               .parse = common_socket_parse,
-               .open = common_socket_open,
-               .recv = auth_socket_recv,
-               .send = auth_socket_send,
-               .print = common_socket_print,
-               .debug = common_packet_debug,
-               .encode = client_socket_encode,
-               .decode = client_socket_decode
-         },
-
-#ifdef WITH_ACCOUNTING
-       /* accounting */
-       {
-               .magic = RLM_MODULE_INIT,
-               .name = "acct",
-               .inst_size = sizeof(listen_socket_t),
-               .transports = TRANSPORT_DUAL,
-               .tls = true,
-               .parse = common_socket_parse,
-               .open = common_socket_open,
-               .recv = acct_socket_recv,
-               .send = acct_socket_send,
-               .print = common_socket_print,
-               .debug = common_packet_debug,
-               .encode = client_socket_encode,
-               .decode = client_socket_decode
-       },
-#else
-       NO_LISTENER,
-#endif
-
-       NO_LISTENER,            /* detail */
-
-       NO_LISTENER,            /* vmps */
-
-       NO_LISTENER,            /* dhcp */
-
-#ifdef WITH_COMMAND_SOCKET
-       /* TCP command socket */
-       {
-               .magic = RLM_MODULE_INIT,
-               .name = "control",
-               .inst_size = sizeof(fr_command_socket_t),
-               .tls = false,
-               .parse = command_socket_parse,
-               .open = command_socket_open,
-               .recv = command_domain_accept,
-               .send = command_domain_send,
-               .print = command_socket_print,
-               .debug = common_packet_debug,
-               .encode = command_socket_encode,
-               .decode = command_socket_decode
-         },
-#else
-       NO_LISTENER,
-#endif
-
-#ifdef WITH_COA
-       /* Change of Authorization */
-       {
-               .magic = RLM_MODULE_INIT,
-               .name = "coa",
-               .inst_size = sizeof(listen_socket_t),
-               .transports = TRANSPORT_DUAL,
-               .tls = true,
-               .parse = common_socket_parse,
-               .open = common_socket_open,
-               .recv = coa_socket_recv,
-               .send = auth_socket_send, /* CoA packets are same as auth */
-               .print = common_socket_print,
-               .debug = common_packet_debug,
-               .encode = client_socket_encode,
-               .decode = client_socket_decode
-       },
-#else
-       NO_LISTENER,
-#endif
-
-       NO_LISTENER             /* bfd */
-};
-
-
-#ifdef HAVE_LIBPCAP
-/** Initialize PCAP library based on listen section
- *
- * @param this listen section
- * @return
- *     - 0 if successful
- *     - -1 if failed
- */
-static int init_pcap(rad_listen_t *this)
-{
-       listen_socket_t *sock = this->data;
-       char const * pcap_filter;
-
-       sock->pcap = fr_pcap_init(this, sock->interface, sock->pcap_type);
-       if (!sock->pcap) {
-               ERROR("Failed creating pcap for interface %s", sock->interface);
-               return -1;
-       }
-
-       if (check_config) return 0;
-
-       rad_suid_up();
-       if (fr_pcap_open(sock->pcap) < 0) {
-               ERROR("Failed opening interface %s: %s", sock->interface, fr_strerror());
-               TALLOC_FREE(sock->pcap);
-               return -1;
-       }
-       rad_suid_down();
-
-       pcap_filter = sock->pcap_filter_builder(this);
-
-       if (!pcap_filter) {
-               ERROR("Failed building filter for interface %s: %s",
-                     sock->interface, fr_strerror());
-               return -1;
-       }
-
-       if (fr_pcap_apply_filter(sock->pcap, pcap_filter) < 0) {
-               ERROR("Failed setting filter for interface %s: %s",
-                     sock->interface, fr_strerror());
-               return -1;
-       } else {
-               DEBUG("Using PCAP filter '%s'", pcap_filter);
-       }
-
-       this->fd = sock->pcap->fd;
-
-       return 0;
-}
-#endif
-
-
-/*
- *     Binds a listener to a socket.
- */
-static int listen_bind(rad_listen_t *this)
-{
-       int                     rcode;
-       uint16_t                port = 0;
-       listen_socket_t         *sock = this->data;
-       char const              *port_name = NULL;
-
-       /*
-        *      If the configuration didn't specify a port, get one
-        *      from /etc/services.
-        */
-       if (sock->my_port == 0) {
-               switch (this->type) {
-               case RAD_LISTEN_AUTH:
-                       port_name = "radius";
-                       break;
-
-#ifdef WITH_ACCOUNTING
-               case RAD_LISTEN_ACCT:
-                       port_name = "radius-acct";
-                       break;
-#endif
-
-#ifdef WITH_PROXY
-               case RAD_LISTEN_PROXY:
-                       /* leave it at zero */
-                       break;
-#endif
-
-#ifdef WITH_VMPS
-               case RAD_LISTEN_VQP:
-                       sock->my_port = 1589;
-                       break;
-#endif
-
-#ifdef WITH_COMMAND_SOCKET
-               case RAD_LISTEN_COMMAND:
-                       sock->my_port = FR_RADMIN_PORT;
-                       break;
-#endif
-
-#ifdef WITH_COA
-               case RAD_LISTEN_COA:
-                       port_name = "radius-dynauth";
-                       break;
-#endif
-
-#ifdef WITH_DHCP
-               case RAD_LISTEN_DHCP:
-                       port_name = "bootps";
-                       break;
-#endif
-
-               default:
-                       WARN("Internal sanity check failed in binding to socket.  Ignoring problem");
-                       return -1;
-               }
-       }
-
-       rad_assert(sock->my_ipaddr.af);
-
-       DEBUG4("[FD XX] Opening socket -- socket(%s, %s, 0)",
-              fr_int2str(fr_net_af_table, sock->my_ipaddr.af, "<UNKNOWN>"),
-              fr_int2str(fr_net_ip_proto_table, sock->proto, "<UNKNOWN>"));
-
-       /*
-        *      Open the socket and set a whack of flags.
-        */
-       port = sock->my_port;
-       switch (sock->proto) {
-       case IPPROTO_UDP:
-               this->fd = fr_socket_server_udp(&sock->my_ipaddr, &port, port_name, true);
-               break;
-
-       case IPPROTO_TCP:
-               this->fd = fr_socket_server_tcp(&sock->my_ipaddr, &port, port_name, true);
-               break;
-
-       default:
-               rad_assert(0);
-               return -1;
-       }
-
-       if (this->fd < 0) {
-               char buffer[256];
-
-               this->print(this, buffer, sizeof(buffer));
-
-               ERROR("Failed opening %s: %s", buffer, fr_syserror(errno));
-               return -1;
-       }
-       if (!sock->my_port) sock->my_port = port;
-
-       /*
-        *      Set the receive buffer size
-        */
-       if (sock->recv_buff) {
-               DEBUG4("[FD %i] Setting recv_buff -- setsockopt(%i, SOL_SOCKET, SO_RCVBUF, %i, %zu)", this->fd,
-                      this->fd, sock->recv_buff, sizeof(int));
-               if (setsockopt(this->fd, SOL_SOCKET, SO_RCVBUF, (int *)&sock->recv_buff, sizeof(int)) < 0) {
-                       close(this->fd);
-                       ERROR("Failed setting receive buffer size: %s", fr_syserror(errno));
-                       return -1;
-               }
-       }
-
-       /*
-        *      Bind to the interface, IP address, and port.
-        */
-       port = sock->my_port;
-       rad_suid_up();
-       rcode = fr_socket_bind(this->fd, &sock->my_ipaddr, &port, sock->interface);
-       rad_suid_down();
-       sock->my_port = port;
-
-       if (rcode < 0) {
-               char buffer[256];
-
-               close(this->fd);
-               this->print(this, buffer, sizeof(buffer));
-               ERROR("Failed binding to %s: %s", buffer, fr_syserror(errno));
-               return -1;
-       }
-
-#ifdef WITH_TCP
-       /*
-        *      Allow a backlog of 8 listeners, but only for incoming interfaces.
-        */
-       if ((sock->proto == IPPROTO_TCP)
-#  ifdef WITH_PROXY
-           && (this->type != RAD_LISTEN_PROXY)
-#  endif
-               ) {
-               DEBUG4("[FD %i] Listening -- listen(%i, 8)", this->fd, this->fd);
-               if (listen(this->fd, 8) < 0) {
-                       close(this->fd);
-                       ERROR("Failed in listen(): %s", fr_syserror(errno));
-                       return -1;
-               }
-       }
-#endif
-
-       /*
-        *      Mostly for proxy sockets.
-        */
-       sock->other_ipaddr.af = sock->my_ipaddr.af;
-
-       return 0;
-}
-
-
-static int _listener_free(rad_listen_t *this)
-{
-       /*
-        *      Other code may have eaten the FD.
-        */
-       if (this->fd >= 0) close(this->fd);
-
-#ifdef WITH_TCP
-       if ((this->type == RAD_LISTEN_AUTH)
-#ifdef WITH_ACCT
-           || (this->type == RAD_LISTEN_ACCT)
-#endif
-#ifdef WITH_PROXY
-           || (this->type == RAD_LISTEN_PROXY)
-#endif
-#ifdef WITH_COMMAND_SOCKET
-           || ((this->type == RAD_LISTEN_COMMAND) &&
-               (((fr_command_socket_t *) this->data)->magic != COMMAND_SOCKET_MAGIC))
-#endif
-               ) {
-               listen_socket_t *sock = this->data;
-
-               rad_assert(talloc_parent(sock) == this);
-               rad_assert(this->ev == NULL);
-
-               /*
-                *      Remove the child from the parent tree.
-                */
-               if (this->parent) {
-                       rbtree_deletebydata(this->parent->children, this);
-               }
-
-               /*
-                *      Delete / close all of the children, too!
-                */
-               if (this->children) {
-                       rbtree_walk(this->children, RBTREE_DELETE_ORDER, listener_unlink, this);
-               }
-
-#ifdef WITH_TLS
-               /*
-                *      Note that we do NOT free this->tls, as the
-                *      pointer is parented by its CONF_SECTION.  It
-                *      may be used by multiple listeners.
-                */
-               if (this->tls) {
-                       rad_assert(!sock->tls_session || (talloc_parent(sock->tls_session) == sock));
-                       rad_assert(!sock->request || (talloc_parent(sock->request) == sock));
-                       pthread_mutex_destroy(&(sock->mutex));
-               }
-#endif /* WITH_TLS */
-       }
-#endif                         /* WITH_TCP */
-
-       return 0;
-}
-
-
-/** Allocate & initialize a new listener
- *
- */
-static rad_listen_t *listen_alloc(TALLOC_CTX *ctx, RAD_LISTEN_TYPE type, rad_protocol_t const *proto)
-{
-       rad_listen_t *this;
-
-       this = talloc_zero(ctx, rad_listen_t);
-
-       this->type = type;
-       this->proto = proto;
-       this->recv = proto->recv;
-       this->send = proto->send;
-       this->print = proto->print;
-       this->debug = proto->debug;
-       this->encode = proto->encode;
-       this->decode = proto->decode;
-
-       talloc_set_destructor(this, _listener_free);
-
-       this->data = talloc_zero_array(this, uint8_t, proto->inst_size);
-
-       return this;
-}
-
-#ifdef WITH_PROXY
-/*
- *     Externally visible function for creating a new proxy LISTENER.
- *
- *     Not thread-safe, but all calls to it are protected by the
- *     proxy mutex in event.c
- */
-rad_listen_t *proxy_new_listener(TALLOC_CTX *ctx, home_server_t *home, uint16_t src_port)
-{
-       time_t now;
-       rad_listen_t *this;
-       listen_socket_t *sock;
-       char buffer[256];
-
-       if (!home) return NULL;
-
-       rad_assert(home->server == NULL); /* we only open real sockets */
-
-       if ((home->limit.max_connections > 0) &&
-           (home->limit.num_connections >= home->limit.max_connections)) {
-               RATE_LIMIT(INFO("Home server %s has too many open connections (%d)",
-                               home->log_name, home->limit.max_connections));
-               return NULL;
-       }
-
-       now = time(NULL);
-       if (home->last_failed_open == now) {
-               WARN("Suppressing attempt to open socket to 'down' home server");
-               return NULL;
-       }
-
-       this = listen_alloc(ctx, RAD_LISTEN_PROXY, &master_listen[RAD_LISTEN_PROXY]);
-
-       sock = this->data;
-       sock->other_ipaddr = home->ipaddr;
-       sock->other_port = home->port;
-       sock->home = home;
-
-       sock->my_ipaddr = home->src_ipaddr;
-       sock->my_port = src_port;
-       sock->proto = home->proto;
-       talloc_set_destructor(sock, _common_socket_free);
-
-       /*
-        *      For error messages.
-        */
-       this->print(this, buffer, sizeof(buffer));
-
-#ifdef WITH_TCP
-       sock->opened = sock->last_packet = now;
-
-       if (home->proto == IPPROTO_TCP) {
-               this->recv = proxy_socket_tcp_recv;
-
-               /*
-                *      FIXME: connect() is blocking!
-                *      We do this with the proxy mutex locked, which may
-                *      cause large delays!
-                *
-                *      http://www.developerweb.net/forum/showthread.php?p=13486
-                */
-               this->fd = fr_socket_client_tcp(&home->src_ipaddr,
-                                               &home->ipaddr, home->port, false);
-       } else
-#endif
-       {
-               this->fd = fr_socket_server_udp(&home->src_ipaddr, &src_port, NULL, true);
-               if ((this->fd >= 0) && (fr_socket_bind(this->fd, &home->src_ipaddr, &src_port, NULL) < 0)) {
-                       this->fd = -1;
-               }
-       }
-
-       if (this->fd < 0) {
-               this->print(this, buffer,sizeof(buffer));
-               PERROR("Failed opening new proxy socket '%s'", buffer);
-               home->last_failed_open = now;
-               listen_free(&this);
-               return NULL;
-       }
-
-
-#if defined(WITH_TCP) && defined(WITH_TLS)
-       if ((home->proto == IPPROTO_TCP) && home->tls) {
-               DEBUG("Trying SSL to port %d\n", home->port);
-               sock->tls_session = tls_session_init_client(sock, home->tls);
-               if (!sock->tls_session) {
-                       ERROR("Failed starting SSL to new proxy socket '%s'", buffer);
-                       home->last_failed_open = now;
-                       listen_free(&this);
-                       return NULL;
-               }
-               SSL_set_fd(sock->tls_session->ssl, this->fd);
-
-               this->recv = proxy_tls_recv;
-               this->send = proxy_tls_send;
-       }
-#endif
-       /*
-        *      Figure out which port we were bound to.
-        */
-       if (sock->my_port == 0) {
-               struct sockaddr_storage src;
-               socklen_t               sizeof_src = sizeof(src);
-
-               memset(&src, 0, sizeof_src);
-               if (getsockname(this->fd, (struct sockaddr *) &src, &sizeof_src) < 0) {
-                       ERROR("Failed getting socket name for '%s': %s",
-                             buffer, fr_syserror(errno));
-                       home->last_failed_open = now;
-                       listen_free(&this);
-                       return NULL;
-               }
-
-               if (fr_ipaddr_from_sockaddr(&src, sizeof_src, &sock->my_ipaddr, &sock->my_port) < 0) {
-                       ERROR("Socket has unsupported address family for '%s'", buffer);
-                       home->last_failed_open = now;
-                       listen_free(&this);
-                       return NULL;
-               }
-
-               this->print(this, buffer, sizeof(buffer));
-       }
-
-       if (rad_debug_lvl >= 3) {
-               DEBUG("Opened new proxy socket '%s'", buffer);
-       }
-
-       home->limit.num_connections++;
-
-       return this;
-}
-#endif
-
-/*
- *     Parse the configuration for a listener.
- */
-static rad_listen_t *listen_parse(listen_config_t *lc)
-{
-       int             rcode;
-       char const      *listen_type;
-       rad_listen_t    *this;
-       CONF_SECTION    *cs = lc->cs;
-
-       cf_log_debug(cs, "listen {");
-
-       listen_type = NULL;
-
-
-       /*
-        *      Allocate a listener.
-        */
-       this = listen_alloc(lc, lc->type, lc->proto);
-       this->server = lc->server_name;
-       this->fd = -1;
-       this->cs = cs;
-
-       rcode = cf_pair_parse(this, cs, "type", FR_ITEM_POINTER(FR_TYPE_STRING, &listen_type),
-                             "", T_DOUBLE_QUOTED_STRING);
-       if (rcode < 0) {
-               talloc_free(this);
-               return NULL;
-       }
-
-#ifdef WITH_TCP
-       /*
-        *      Special-case '+' for "auth+acct".
-        */
-       if (strchr(listen_type, '+') != NULL) {
-               this->dual = true;
-       }
-#endif
-
-       /*
-        *      Call the per-type parser.
-        */
-       if (lc->proto->parse(cs, this) < 0) {
-               listen_free(&this);
-               return NULL;
-       }
-
-       cf_log_debug(cs, "}");
-
-       return this;
-}
-
-
-/** Search for listeners in the server
- *
- * @param[out] head Where to write listener.  Must point to a NULL pointer.
- * @param[in] spawn_workers Whether we're spawning child threads.
- * @return
- *     - 0 on success.
- *     - -1 on failure.
- */
-int listen_init(rad_listen_t **head,
-#ifndef WITH_TLS
-               UNUSED
-#endif
-               bool spawn_workers)
-{
-       rad_listen_t    **last;
-       rad_listen_t    *this;
-       listen_config_t *lc;
-       bool            incoming_sockets = false;
-
-       if (!listen_config) return 0;
-
-       for (lc = listen_config; lc != NULL; lc = lc->next) {
-               if (lc->type == RAD_LISTEN_COMMAND) continue;
-               if (lc->type == RAD_LISTEN_PROXY) continue;
-
-               incoming_sockets = true;
-               break;
-       }
-
-       /*
-        *      @fixme: This check should arguably be in
-        *      listen_bootstrap().  But that function bootstraps only
-        *      one listener, because listeners can be located in
-        *      multiple places.  So for now, we put it here.
-        */
-       if (!incoming_sockets) return 0;
-
-       /*
-        *      We shouldn't be called with a pre-existing list.
-        */
-       rad_assert(head && (*head == NULL));
-
-       /*
-        *      Don't bother opening sockets if we're just checking the configuration.
-        */
-       if (check_config) return 0;
-
-       last = head;
-
-       for (lc = listen_config; lc != NULL; lc = lc->next) {
-               if (lc->proto->open(lc->cs, lc->listener) < 0) {
-                       if (lc->server_name) {
-                               ERROR("Failed creating listener for server \"%s\"", lc->server_name);
-                       } else {
-                               ERROR("Failed creating global listener for type %i", lc->type); /* Fixme to print str */
-                       }
-                       TALLOC_FREE(listen_ctx);
-                       return -1;
-               }
-
-               this = lc->listener;
-               *last = this;
-               last = &(this->next);
-       }
-
-       /*
-        *      Print out which sockets we're listening on, and
-        *      add them to the event list.
-        */
-       for (this = *head; this != NULL; this = this->next) {
-#ifdef WITH_TLS
-               if (!spawn_workers && this->tls) {
-                       cf_log_err(this->cs, "Threading must be enabled for TLS sockets to function properly");
-                       cf_log_err(this->cs, "You probably need to do '%s -fxx -l stdout' for debugging",
-                                     main_config.name);
-                       return -1;
-               }
-#endif
-               radius_update_listener(this);
-       }
-
-       return 0;
-}
-
-/** Free a linked list of listeners
- *
- * @param head of list to free.
- */
-void listen_free(rad_listen_t **head)
-{
-       rad_listen_t *this;
-
-       if (!head || !*head) return;
-
-       this = *head;
-       while (this) {
-               rad_listen_t *next = this->next;
-               talloc_free(this);
-               this = next;
-       }
-
-       *head = NULL;
-
-       /*
-        *      @fixme: Hack.
-        */
-       if (head == &main_config.listen) TALLOC_FREE(listen_ctx);
-}
-
-#ifdef WITH_STATS
-/** Find client list associated with a listener.
- *
- * @param[in] ipaddr listener is bound to.
- * @param[in] port listener is bound to.
- * @param[in] proto of listener, one of the IPPROTO_* macros.
- * @return
- *     - List of clients.
- *     - NULL if no matching listeners found.
- */
-RADCLIENT_LIST *listener_find_client_list(fr_ipaddr_t const *ipaddr, uint16_t port, int proto)
-{
-       rad_listen_t *this;
-
-       for (this = main_config.listen; this != NULL; this = this->next) {
-               listen_socket_t *sock;
-
-               if ((this->type != RAD_LISTEN_AUTH)
-#  ifdef WITH_ACCOUNTING
-                   && (this->type != RAD_LISTEN_ACCT)
-#  endif
-#  ifdef WITH_COA
-                   && (this->type != RAD_LISTEN_COA)
-#  endif
-                   ) continue;
-
-               sock = this->data;
-
-               if (sock->my_port != port) continue;
-               if (sock->proto != proto) continue;
-               if (fr_ipaddr_cmp(ipaddr, &sock->my_ipaddr) != 0) continue;
-
-               return sock->clients;
-       }
-
-       return NULL;
-}
-#endif
-
-/** Find a listener associated with an IP address/port/transport proto
- *
- * @param[in] ipaddr listener is bound to.
- * @param[in] port listener is bound to.
- * @param[in] proto of listener, one of the IPPROTO_* macros.
- * @return
- *     - Listener matching ipaddr/port/proto.
- *     - NULL if no listeners match.
- */
-rad_listen_t *listener_find_byipaddr(fr_ipaddr_t const *ipaddr, uint16_t port, int proto)
-{
-       rad_listen_t *this;
-
-       for (this = main_config.listen; this != NULL; this = this->next) {
-               listen_socket_t *sock;
-
-               sock = this->data;
-
-               if (sock->my_port != port) continue;
-               if (sock->proto != proto) continue;
-               if (fr_ipaddr_cmp(ipaddr, &sock->my_ipaddr) != 0) continue;
-
-               return this;
-       }
-
-       /*
-        *      Failed to find a specific one.  Find INADDR_ANY
-        */
-       for (this = main_config.listen; this != NULL; this = this->next) {
-               listen_socket_t *sock;
-
-               sock = this->data;
-
-               if (sock->my_port != port) continue;
-               if (sock->proto != proto) continue;
-               if (!fr_ipaddr_is_inaddr_any(&sock->my_ipaddr)) continue;
-
-               return this;
-       }
-
-       return NULL;
-}