Move dump_hex() function to tls_listen.c
[freeradius.git] / src / main / tls.c
index fbc5414..e26a4c0 100644 (file)
@@ -43,15 +43,6 @@ RCSID("$Id$")
 #include <openssl/ocsp.h>
 #endif
 
-#ifdef HAVE_PTHREAD_H
-#define PTHREAD_MUTEX_LOCK pthread_mutex_lock
-#define PTHREAD_MUTEX_UNLOCK pthread_mutex_unlock
-#else
-#define PTHREAD_MUTEX_LOCK(_x)
-#define PTHREAD_MUTEX_UNLOCK(_x)
-#endif
-
-
 /* record */
 static void            record_init(record_t *buf);
 static void            record_close(record_t *buf);
@@ -60,6 +51,51 @@ static unsigned int  record_plus(record_t *buf, const void *ptr,
 static unsigned int    record_minus(record_t *buf, void *ptr,
                                     unsigned int size);
 
+#ifdef PSK_MAX_IDENTITY_LEN
+static unsigned int psk_server_callback(SSL *ssl, const char *identity,
+                                       unsigned char *psk, int max_psk_len)
+{
+       unsigned int psk_len;
+       fr_tls_server_conf_t *conf;
+
+       conf = (fr_tls_server_conf_t *)SSL_get_ex_data(ssl,
+                                                      FR_TLS_EX_INDEX_CONF);
+       if (!conf) return 0;
+
+       /*
+        *      FIXME: Look up the PSK password based on the identity!
+        */
+       if (strcmp(identity, conf->psk_identity) != 0) {
+               return 0;
+       }
+
+       psk_len = strlen(conf->psk_password);
+       if (psk_len > (2 * max_psk_len)) return 0;
+
+       return fr_hex2bin(conf->psk_password, psk, psk_len);
+}
+
+static unsigned int psk_client_callback(SSL *ssl, UNUSED const char *hint,
+                                       char *identity, unsigned int max_identity_len,
+                                       unsigned char *psk, unsigned int max_psk_len)
+{
+       unsigned int psk_len;
+       fr_tls_server_conf_t *conf;
+
+       conf = (fr_tls_server_conf_t *)SSL_get_ex_data(ssl,
+                                                      FR_TLS_EX_INDEX_CONF);
+       if (!conf) return 0;
+
+       psk_len = strlen(conf->psk_password);
+       if (psk_len > (2 * max_psk_len)) return 0;
+
+       strlcpy(identity, conf->psk_identity, max_identity_len);
+
+       return fr_hex2bin(conf->psk_password, psk, psk_len);
+}
+
+#endif
+
 tls_session_t *tls_new_client_session(fr_tls_server_conf_t *conf, int fd)
 {
        int verify_mode;
@@ -428,29 +464,12 @@ void session_init(tls_session_t *ssn)
 
 void session_close(tls_session_t *ssn)
 {      
-       if (ssn->ssl->session) {
-               VALUE_PAIR *vp;
-
-               vp = SSL_SESSION_get_ex_data(ssn->ssl->session,
-                                            FR_TLS_EX_INDEX_VPS);
-               if (vp) pairfree(&vp);
-       }
-
        SSL_set_quiet_shutdown(ssn->ssl, 1);
        SSL_shutdown(ssn->ssl);
 
        if(ssn->ssl)
                SSL_free(ssn->ssl);
-#if 0
-/*
- * WARNING: SSL_free seems to decrement the reference counts already,
- *     so doing this might crash the application.
- */
-       if(ssn->into_ssl)
-               BIO_free(ssn->into_ssl);
-       if(ssn->from_ssl)
-               BIO_free(ssn->from_ssl);
-#endif
+
        record_close(&ssn->clean_in);
        record_close(&ssn->clean_out);
        record_close(&ssn->dirty_in);
@@ -751,6 +770,12 @@ static CONF_PARSER ocsp_config[] = {
          offsetof(fr_tls_server_conf_t, ocsp_override_url), NULL, "no"},
        { "url", PW_TYPE_STRING_PTR,
          offsetof(fr_tls_server_conf_t, ocsp_url), NULL, NULL },
+       { "use_nonce", PW_TYPE_BOOLEAN,
+         offsetof(fr_tls_server_conf_t, ocsp_use_nonce), NULL, "yes"},
+       { "timeout", PW_TYPE_INTEGER,
+         offsetof(fr_tls_server_conf_t, ocsp_timeout), NULL, "yes"},
+       { "softfail", PW_TYPE_BOOLEAN,
+         offsetof(fr_tls_server_conf_t, ocsp_softfail), NULL, "yes"},
        { NULL, -1, 0, NULL, NULL }           /* end the list */
 };
 #endif
@@ -778,6 +803,12 @@ static CONF_PARSER tls_server_config[] = {
          offsetof(fr_tls_server_conf_t, ca_file), NULL, NULL },
        { "private_key_password", PW_TYPE_STRING_PTR,
          offsetof(fr_tls_server_conf_t, private_key_password), NULL, NULL },
+#ifdef PSK_MAX_IDENTITY_LEN
+       { "psk_identity", PW_TYPE_STRING_PTR,
+         offsetof(fr_tls_server_conf_t, psk_identity), NULL, NULL },
+       { "psk_hexphrase", PW_TYPE_STRING_PTR,
+         offsetof(fr_tls_server_conf_t, psk_password), NULL, NULL },
+#endif
        { "dh_file", PW_TYPE_STRING_PTR,
          offsetof(fr_tls_server_conf_t, dh_file), NULL, NULL },
        { "random_file", PW_TYPE_STRING_PTR,
@@ -801,6 +832,13 @@ static CONF_PARSER tls_server_config[] = {
        { "require_client_cert", PW_TYPE_BOOLEAN,
          offsetof(fr_tls_server_conf_t, require_client_cert), NULL, NULL },
 
+#if OPENSSL_VERSION_NUMBER >= 0x0090800fL
+#ifndef OPENSSL_NO_ECDH
+       { "ecdh_curve", PW_TYPE_STRING_PTR,
+         offsetof(fr_tls_server_conf_t, ecdh_curve), NULL, "prime256v1"},
+#endif
+#endif
+
        { "cache", PW_TYPE_SUBSECTION, 0, NULL, (const void *) cache_config },
 
        { "verify", PW_TYPE_SUBSECTION, 0, NULL, (const void *) verify_config },
@@ -853,6 +891,13 @@ static CONF_PARSER tls_client_config[] = {
        { "check_cert_issuer", PW_TYPE_STRING_PTR,
          offsetof(fr_tls_server_conf_t, check_cert_issuer), NULL, NULL},
 
+#if OPENSSL_VERSION_NUMBER >= 0x0090800fL
+#ifndef OPENSSL_NO_ECDH
+       { "ecdh_curve", PW_TYPE_STRING_PTR,
+         offsetof(fr_tls_server_conf_t, ecdh_curve), NULL, "prime256v1"},
+#endif
+#endif
+
        { NULL, -1, 0, NULL, NULL }           /* end the list */
 };
 
@@ -909,8 +954,7 @@ static int generate_eph_rsa_key(SSL_CTX *ctx)
 
 
 /*
- *     These functions don't do anything other than print debugging
- *     messages.
+ *     Print debugging messages, and free data.
  *
  *     FIXME: Write sessions to some long-term storage, so that
  *            session resumption can still occur after the server
@@ -929,7 +973,6 @@ static void cbtls_remove_session(UNUSED SSL_CTX *ctx, SSL_SESSION *sess)
        fr_bin2hex(sess->session_id, buffer, size);
 
         DEBUG2("  SSL: Removing session %s from the cache", buffer);
-        SSL_SESSION_free(sess);
 
         return;
 }
@@ -946,12 +989,12 @@ static int cbtls_new_session(UNUSED SSL *s, SSL_SESSION *sess)
 
        DEBUG2("  SSL: adding session %s to cache", buffer);
 
-       return 1;
+       return 0;
 }
 
 static SSL_SESSION *cbtls_get_session(UNUSED SSL *s,
                                      unsigned char *data, int len,
-                                     UNUSED int *copy)
+                                     int *copy)
 {
        size_t size;
        char buffer[2 * MAX_SESSION_SIZE + 1];
@@ -964,6 +1007,7 @@ static SSL_SESSION *cbtls_get_session(UNUSED SSL *s,
         DEBUG2("  SSL: Client requested nonexistent cached session %s",
               buffer);
 
+       *copy = 0;
        return NULL;
 }
 
@@ -999,20 +1043,33 @@ static int ocsp_parse_cert_url(X509 *cert, char **phost, char **pport,
  * This function sends a OCSP request to a defined OCSP responder
  * and checks the OCSP response for correctness.
  */
+
+/* Maximum leeway in validity period: default 5 minutes */
+#define MAX_VALIDITY_PERIOD     (5 * 60)
+
 static int ocsp_check(X509_STORE *store, X509 *issuer_cert, X509 *client_cert,
                      fr_tls_server_conf_t *conf)
 {
        OCSP_CERTID *certid;
        OCSP_REQUEST *req;
-       OCSP_RESPONSE *resp;
+       OCSP_RESPONSE *resp = NULL;
        OCSP_BASICRESP *bresp = NULL;
        char *host = NULL;
        char *port = NULL;
        char *path = NULL;
        int use_ssl = -1;
-       BIO *cbio;
-       int ocsp_ok;
-       int status;
+       long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
+       BIO *cbio, *bio_out;
+       int ocsp_ok = 0;
+       int status ;
+       ASN1_GENERALIZEDTIME *rev, *thisupd, *nextupd;
+       int reason;
+#if OPENSSL_VERSION_NUMBER >= 0x1000003f
+       OCSP_REQ_CTX *ctx;
+       int rc;
+       struct timeval now;
+       struct timeval when;
+#endif
 
        /*
         * Create OCSP Request
@@ -1020,7 +1077,9 @@ static int ocsp_check(X509_STORE *store, X509 *issuer_cert, X509 *client_cert,
        certid = OCSP_cert_to_id(NULL, client_cert, issuer_cert);
        req = OCSP_REQUEST_new();
        OCSP_request_add0_id(req, certid);
-       OCSP_request_add1_nonce(req, NULL, 8);
+       if(conf->ocsp_use_nonce) {
+               OCSP_request_add1_nonce(req, NULL, 8);
+       }
 
        /*
         * Send OCSP Request and get OCSP Response
@@ -1038,37 +1097,117 @@ static int ocsp_check(X509_STORE *store, X509 *issuer_cert, X509 *client_cert,
 
        /* Setup BIO socket to OCSP responder */
        cbio = BIO_new_connect(host);
+
+       bio_out = BIO_new_fp(stdout, BIO_NOCLOSE);
+
        BIO_set_conn_port(cbio, port);
+#if OPENSSL_VERSION_NUMBER < 0x1000003f
        BIO_do_connect(cbio);
-
        /* Send OCSP request and wait for response */
        resp = OCSP_sendreq_bio(cbio, path, req);
-       if(resp==0) {
+       if (!resp) {
                radlog(L_ERR, "Error: Couldn't get OCSP response");
-               ocsp_ok = 0;
+               ocsp_ok = 2;
+               goto ocsp_end;
+       }
+#else
+       if (conf->ocsp_timeout)
+               BIO_set_nbio(cbio, 1);
+
+       rc = BIO_do_connect(cbio);
+       if ((rc <= 0) && ((!conf->ocsp_timeout) || !BIO_should_retry(cbio))) {
+               radlog(L_ERR, "Error: Couldn't connect to OCSP responder");
+               ocsp_ok = 2;
                goto ocsp_end;
        }
 
-       /* Verify OCSP response */
+       ctx = OCSP_sendreq_new(cbio, path, req, -1);
+       if (!ctx) {
+               radlog(L_ERR, "Error: Couldn't send OCSP request");
+               ocsp_ok = 2;
+               goto ocsp_end;
+       }
+
+       gettimeofday(&when, NULL);
+       when.tv_sec += conf->ocsp_timeout;
+
+       do {
+               rc = OCSP_sendreq_nbio(&resp, ctx);
+               if (conf->ocsp_timeout) {
+                       gettimeofday(&now, NULL);
+                       if (!timercmp(&now, &when, <))
+                               break;
+               }
+       } while ((rc == -1) && BIO_should_retry(cbio));
+
+       if (conf->ocsp_timeout && (rc == -1) && BIO_should_retry(cbio)) {
+               radlog(L_ERR, "Error: OCSP response timed out");
+               ocsp_ok = 2;
+               goto ocsp_end;
+       }
+
+       OCSP_REQ_CTX_free(ctx);
+
+       if (rc == 0) {
+               radlog(L_ERR, "Error: Couldn't get OCSP response");
+               ocsp_ok = 2;
+               goto ocsp_end;
+       }
+#endif
+
+       /* Verify OCSP response status */
        status = OCSP_response_status(resp);
+       DEBUG2("[ocsp] --> Response status: %s",OCSP_response_status_str(status));
        if(status != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
                radlog(L_ERR, "Error: OCSP response status: %s", OCSP_response_status_str(status));
-               ocsp_ok = 0;
                goto ocsp_end;
        }
        bresp = OCSP_response_get1_basic(resp);
-       if(OCSP_check_nonce(req, bresp)!=1) {
+       if(conf->ocsp_use_nonce && OCSP_check_nonce(req, bresp)!=1) {
                radlog(L_ERR, "Error: OCSP response has wrong nonce value");
-               ocsp_ok = 0;
                goto ocsp_end;
        }
        if(OCSP_basic_verify(bresp, NULL, store, 0)!=1){
                radlog(L_ERR, "Error: Couldn't verify OCSP basic response");
-               ocsp_ok = 0;
                goto ocsp_end;
        }
 
-       ocsp_ok = 1;
+       /*      Verify OCSP cert status */
+       if(!OCSP_resp_find_status(bresp, certid, &status, &reason,
+                                                     &rev, &thisupd, &nextupd)) {
+               radlog(L_ERR, "ERROR: No Status found.\n");
+               goto ocsp_end;
+       }
+
+       if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage)) {
+               BIO_puts(bio_out, "WARNING: Status times invalid.\n");
+               ERR_print_errors(bio_out);
+               goto ocsp_end;
+       }
+       BIO_puts(bio_out, "\tThis Update: ");
+        ASN1_GENERALIZEDTIME_print(bio_out, thisupd);
+        BIO_puts(bio_out, "\n");
+       BIO_puts(bio_out, "\tNext Update: ");
+        ASN1_GENERALIZEDTIME_print(bio_out, nextupd);
+        BIO_puts(bio_out, "\n");
+
+       switch (status) {
+       case V_OCSP_CERTSTATUS_GOOD:
+               DEBUG2("[oscp] --> Cert status: good");
+               ocsp_ok = 1;
+               break;
+
+       default:
+               /* REVOKED / UNKNOWN */
+               DEBUG2("[ocsp] --> Cert status: %s",OCSP_cert_status_str(status));
+                if (reason != -1)
+                       DEBUG2("[ocsp] --> Reason: %s", OCSP_crl_reason_str(reason));
+                BIO_puts(bio_out, "\tRevocation Time: ");
+                ASN1_GENERALIZEDTIME_print(bio_out, rev);
+                BIO_puts(bio_out, "\n");
+               break;
+       }
 
 ocsp_end:
        /* Free OCSP Stuff */
@@ -1080,10 +1219,23 @@ ocsp_end:
        BIO_free_all(cbio);
        OCSP_BASICRESP_free(bresp);
 
-       if (ocsp_ok) {
+       switch (ocsp_ok) {
+       case 1:
                DEBUG2("[ocsp] --> Certificate is valid!");
-       } else {
+               break;
+       case 2:
+               if (conf->ocsp_softfail) {
+                       DEBUG2("[ocsp] --> Unable to check certificate; assuming valid.");
+                       DEBUG2("[ocsp] --> Warning! This may be insecure.");
+                       ocsp_ok = 1;
+               } else {
+                       DEBUG2("[ocsp] --> Unable to check certificate; failing!");
+                       ocsp_ok = 0;
+               }
+               break;
+       default:
                DEBUG2("[ocsp] --> Certificate has been expired/revoked!");
+               break;
        }
 
        return ocsp_ok;
@@ -1093,12 +1245,13 @@ ocsp_end:
 /*
  *     For creating certificate attributes.
  */
-static const char *cert_attr_names[5][2] = {
+static const char *cert_attr_names[6][2] = {
   { "TLS-Client-Cert-Serial",          "TLS-Cert-Serial" },
   { "TLS-Client-Cert-Expiration",      "TLS-Cert-Expiration" },
   { "TLS-Client-Cert-Subject",         "TLS-Cert-Subject" },
   { "TLS-Client-Cert-Issuer",          "TLS-Cert-Issuer" },
-  { "TLS-Client-Cert-Common-Name",     "TLS-Cert-Common-Name" }
+  { "TLS-Client-Cert-Common-Name",     "TLS-Cert-Common-Name" },
+  { "TLS-Client-Cert-Subject-Alt-Name-Email",  "TLS-Cert-Subject-Alt-Name-Email" }
 };
 
 #define FR_TLS_SERIAL          (0)
@@ -1106,6 +1259,7 @@ static const char *cert_attr_names[5][2] = {
 #define FR_TLS_SUBJECT         (2)
 #define FR_TLS_ISSUER          (3)
 #define FR_TLS_CN              (4)
+#define FR_TLS_SAN_EMAIL               (5)
 
 /*
  *     Before trusting a certificate, you must make sure that the
@@ -1141,7 +1295,7 @@ int cbtls_verify(int ok, X509_STORE_CTX *ctx)
        char buf[64];
        X509 *client_cert;
        SSL *ssl;
-       int err, depth, lookup;
+       int err, depth, lookup, loc;
        fr_tls_server_conf_t *conf;
        int my_ok = ok;
        REQUEST *request;
@@ -1195,9 +1349,12 @@ int cbtls_verify(int ok, X509_STORE_CTX *ctx)
 
        /*
         *      For this next bit, we create the attributes *only* if
-        *      we're at the client or issuing certificate.
+        *      we're at the client or issuing certificate, AND we
+        *      have a user identity.  i.e. we don't create the
+        *      attributes for RadSec connections.
         */
-       if ((lookup <= 1) && sn && ((size_t) sn->length < (sizeof(buf) / 2))) {
+       if (identity && 
+           (lookup <= 1) && sn && ((size_t) sn->length < (sizeof(buf) / 2))) {
                char *p = buf;
                int i;
 
@@ -1215,7 +1372,8 @@ int cbtls_verify(int ok, X509_STORE_CTX *ctx)
         */
        buf[0] = '\0';
        asn_time = X509_get_notAfter(client_cert);
-       if ((lookup <= 1) && asn_time && (asn_time->length < MAX_STRING_LEN)) {
+       if (identity && (lookup <= 1) && asn_time &&
+           (asn_time->length < MAX_STRING_LEN)) {
                memcpy(buf, (char*) asn_time->data, asn_time->length);
                buf[asn_time->length] = '\0';
                pairadd(certs,
@@ -1229,7 +1387,8 @@ int cbtls_verify(int ok, X509_STORE_CTX *ctx)
        X509_NAME_oneline(X509_get_subject_name(client_cert), subject,
                          sizeof(subject));
        subject[sizeof(subject) - 1] = '\0';
-       if ((lookup <= 1) && subject[0] && (strlen(subject) < MAX_STRING_LEN)) {
+       if (identity && (lookup <= 1) && subject[0] &&
+           (strlen(subject) < MAX_STRING_LEN)) {
                pairadd(certs,
                        pairmake(cert_attr_names[FR_TLS_SUBJECT][lookup], subject, T_OP_SET));
        }
@@ -1237,7 +1396,8 @@ int cbtls_verify(int ok, X509_STORE_CTX *ctx)
        X509_NAME_oneline(X509_get_issuer_name(ctx->current_cert), issuer,
                          sizeof(issuer));
        issuer[sizeof(issuer) - 1] = '\0';
-       if ((lookup <= 1) && issuer[0] && (strlen(issuer) < MAX_STRING_LEN)) {
+       if (identity && (lookup <= 1) && issuer[0] &&
+           (strlen(issuer) < MAX_STRING_LEN)) {
                pairadd(certs,
                        pairmake(cert_attr_names[FR_TLS_ISSUER][lookup], issuer, T_OP_SET));
        }
@@ -1248,11 +1408,47 @@ int cbtls_verify(int ok, X509_STORE_CTX *ctx)
        X509_NAME_get_text_by_NID(X509_get_subject_name(client_cert),
                                  NID_commonName, common_name, sizeof(common_name));
        common_name[sizeof(common_name) - 1] = '\0';
-       if ((lookup <= 1) && common_name[0] && (strlen(common_name) < MAX_STRING_LEN)) {
+       if (identity && (lookup <= 1) && common_name[0] &&
+           (strlen(common_name) < MAX_STRING_LEN)) {
                pairadd(certs,
                        pairmake(cert_attr_names[FR_TLS_CN][lookup], common_name, T_OP_SET));
        }
 
+#ifdef GEN_EMAIL
+       /*
+        *      Get the RFC822 Subject Alternative Name
+        */
+       loc = X509_get_ext_by_NID(client_cert, NID_subject_alt_name, 0);
+       if (lookup <= 1 && loc >= 0) {
+               X509_EXTENSION *ext = NULL;
+               GENERAL_NAMES *names = NULL;
+               int i;
+
+               if ((ext = X509_get_ext(client_cert, loc)) &&
+                   (names = X509V3_EXT_d2i(ext))) {
+                       for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
+                               GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
+
+                               switch (name->type) {
+                               case GEN_EMAIL:
+                                       if (ASN1_STRING_length(name->d.rfc822Name) >= MAX_STRING_LEN)
+                                               break;
+
+                                       pairadd(certs,
+                                               pairmake(cert_attr_names[FR_TLS_SAN_EMAIL][lookup],
+                                                        ASN1_STRING_data(name->d.rfc822Name), T_OP_SET));
+                                       break;
+                               default:
+                                       /* XXX TODO handle other SAN types */
+                                       break;
+                               }
+                       }
+               }
+               if (names != NULL)
+                       sk_GENERAL_NAME_free(names);
+       }
+#endif /* GEN_EMAIL */
+
        /*
         *      If the CRL has expired, that might still be OK.
         */
@@ -1398,7 +1594,7 @@ int cbtls_verify(int ok, X509_STORE_CTX *ctx)
                RDEBUG2("chain-depth=%d, ", depth);
                RDEBUG2("error=%d", err);
 
-               RDEBUG2("--> User-Name = %s", *identity);
+               if (identity) RDEBUG2("--> User-Name = %s", *identity);
                RDEBUG2("--> BUF-Name = %s", common_name);
                RDEBUG2("--> subject = %s", subject);
                RDEBUG2("--> issuer  = %s", issuer);
@@ -1438,6 +1634,64 @@ static X509_STORE *init_revocation_store(fr_tls_server_conf_t *conf)
 }
 #endif /* HAVE_OPENSSL_OCSP_H */
 
+#if OPENSSL_VERSION_NUMBER >= 0x0090800fL
+#ifndef OPENSSL_NO_ECDH
+static int set_ecdh_curve(SSL_CTX *ctx, const char *ecdh_curve)
+{
+       int      nid; 
+       EC_KEY  *ecdh; 
+
+       if (!ecdh_curve || !*ecdh_curve) return 0;
+
+       nid = OBJ_sn2nid(ecdh_curve); 
+       if (!nid) { 
+               radlog(L_ERR, "Unknown ecdh_curve \"%s\"", ecdh_curve);
+               return -1;
+       }
+
+       ecdh = EC_KEY_new_by_curve_name(nid); 
+       if (!ecdh) { 
+               radlog(L_ERR, "Unable to create new curve \"%s\"", ecdh_curve);
+               return -1;
+       } 
+
+       SSL_CTX_set_tmp_ecdh(ctx, ecdh); 
+
+       SSL_CTX_set_options(ctx, SSL_OP_SINGLE_ECDH_USE); 
+
+       EC_KEY_free(ecdh);
+
+       return 0;
+}
+#endif
+#endif
+
+/* index we use to store cached session VPs
+ * needs to be dynamic so we can supply a "free" function
+ */
+static int FR_TLS_EX_INDEX_VPS = -1;
+
+/*
+ * DIE OPENSSL DIE DIE DIE
+ *
+ * What a palaver, just to free some data attached the
+ * session. We need to do this because the "remove" callback
+ * is called when refcount > 0 sometimes, if another thread
+ * is using the session
+ */
+static void sess_free_vps(UNUSED void *parent, void *data_ptr,
+                                UNUSED CRYPTO_EX_DATA *ad, UNUSED int idx,
+                                UNUSED long argl, UNUSED void *argp)
+{
+       VALUE_PAIR *vp = data_ptr;
+       if (!vp) return;
+
+       DEBUG2("  Freeing cached session VPs %p", vp);
+
+       pairfree(&vp);
+}
+
+
 /*
  *     Create Global context SSL and use it in every new session
  *
@@ -1445,7 +1699,7 @@ static X509_STORE *init_revocation_store(fr_tls_server_conf_t *conf)
  *     - Load the Private key & the certificate
  *     - Set the Context options & Verify options
  */
-static SSL_CTX *init_tls_ctx(fr_tls_server_conf_t *conf)
+static SSL_CTX *init_tls_ctx(fr_tls_server_conf_t *conf, int client)
 {
        const SSL_METHOD *meth;
        SSL_CTX *ctx;
@@ -1533,6 +1787,51 @@ static SSL_CTX *init_tls_ctx(fr_tls_server_conf_t *conf)
                SSL_CTX_set_default_passwd_cb(ctx, cbtls_password);
        }
 
+#ifdef PSK_MAX_IDENTITY_LEN
+       if ((conf->psk_identity && !conf->psk_password) ||
+           (!conf->psk_identity && conf->psk_password) ||
+           (conf->psk_identity && !*conf->psk_identity) ||
+           (conf->psk_password && !*conf->psk_password)) {
+               radlog(L_ERR, "Invalid PSK Configuration: psk_identity or psk_password are empty");
+               return NULL;
+       }
+
+       if (conf->psk_identity) {
+               size_t psk_len, hex_len;
+               char buffer[PSK_MAX_PSK_LEN];
+
+               if (conf->certificate_file ||
+                   conf->private_key_password || conf->private_key_file ||
+                   conf->ca_file || conf->ca_path) {
+                       radlog(L_ERR, "When PSKs are used, No certificate configuration is permitted");
+                       return NULL;
+               }
+
+               if (client) {
+                       SSL_CTX_set_psk_client_callback(ctx,
+                                                       psk_client_callback);
+               } else {
+                       SSL_CTX_set_psk_server_callback(ctx,
+                                                       psk_server_callback);
+               }
+
+               psk_len = strlen(conf->psk_password);
+               if (strlen(conf->psk_password) > (2 * PSK_MAX_PSK_LEN)) {
+                       radlog(L_ERR, "psk_hexphrase is too long (max %d)",
+                              PSK_MAX_PSK_LEN);
+                       return NULL;                        
+               }
+
+               hex_len = fr_hex2bin(conf->psk_password, buffer, psk_len);
+               if (psk_len != (2 * hex_len)) {
+                       radlog(L_ERR, "psk_hexphrase is not all hex");
+                       return NULL;                        
+               }
+
+               goto post_ca;
+       }
+#endif
+
        /*
         *      Load our keys and certificates
         *
@@ -1587,6 +1886,10 @@ load_ca:
                }
        }
 
+#ifdef PSK_MAX_IDENTITY_LEN
+post_ca:
+#endif
+
        /*
         *      Set ctx_options
         */
@@ -1631,6 +1934,17 @@ load_ca:
         *      SSL_CTX_set_msg_callback(ctx, cbtls_msg);
         */
 
+       /*
+        *      Set eliptical curve crypto configuration.
+        */
+#if OPENSSL_VERSION_NUMBER >= 0x0090800fL
+#ifndef OPENSSL_NO_ECDH
+       if (set_ecdh_curve(ctx, conf->ecdh_curve) < 0) {
+               return NULL;
+       }
+#endif
+#endif
+
        /* Set Info callback */
        SSL_CTX_set_info_callback(ctx, cbtls_info);
 
@@ -1643,6 +1957,8 @@ load_ca:
                SSL_CTX_sess_set_remove_cb(ctx, cbtls_remove_session);
 
                SSL_CTX_set_quiet_shutdown(ctx, 1);
+               if (FR_TLS_EX_INDEX_VPS < 0)
+                       FR_TLS_EX_INDEX_VPS = SSL_SESSION_get_ex_new_index(0, NULL, NULL, NULL, sess_free_vps);
        }
 
        /*
@@ -1700,12 +2016,12 @@ load_ca:
                if (conf->session_id_name) {
                        snprintf(conf->session_context_id,
                                 sizeof(conf->session_context_id),
-                                "FreeRADIUS EAP-TLS %s",
+                                "FR eap %s",
                                 conf->session_id_name);
                } else {
                        snprintf(conf->session_context_id,
                                 sizeof(conf->session_context_id),
-                                "FreeRADIUS EAP-TLS %p", conf);
+                                "FR eap %p", conf);
                }
 
                /*
@@ -1801,11 +2117,6 @@ fr_tls_server_conf_t *tls_server_conf_parse(CONF_SECTION *cs)
                goto error;
        }
 
-       if (!conf->private_key_password) {
-               radlog(L_ERR, "TLS Server requires a private key password");
-               goto error;
-       }
-
        if (!conf->certificate_file) {
                radlog(L_ERR, "TLS Server requires a certificate file");
                goto error;
@@ -1814,7 +2125,7 @@ fr_tls_server_conf_t *tls_server_conf_parse(CONF_SECTION *cs)
        /*
         *      Initialize TLS
         */
-       conf->ctx = init_tls_ctx(conf);
+       conf->ctx = init_tls_ctx(conf, 0);
        if (conf->ctx == NULL) {
                goto error;
        }
@@ -1827,7 +2138,7 @@ fr_tls_server_conf_t *tls_server_conf_parse(CONF_SECTION *cs)
                conf->ocsp_store = init_revocation_store(conf);
                if (conf->ocsp_store == NULL) goto error;
        }
-#endif HAVE_OPENSSL_OCSP_H
+#endif /*HAVE_OPENSSL_OCSP_H*/
 
        if (load_dh_params(conf->ctx, conf->dh_file) < 0) {
                goto error;
@@ -1877,7 +2188,7 @@ fr_tls_server_conf_t *tls_client_conf_parse(CONF_SECTION *cs)
        /*
         *      Initialize TLS
         */
-       conf->ctx = init_tls_ctx(conf);
+       conf->ctx = init_tls_ctx(conf, 1);
        if (conf->ctx == NULL) {
                goto error;
        }
@@ -1931,7 +2242,14 @@ int tls_success(tls_session_t *ssn, REQUEST *request)
                 *      user data in the cache.
                 */
        } else if (!SSL_session_reused(ssn->ssl)) {
-               RDEBUG2("Saving response in the cache");
+               size_t size;
+               char buffer[2 * MAX_SESSION_SIZE + 1];
+
+               size = ssn->ssl->session->session_id_length;
+               if (size > MAX_SESSION_SIZE) size = MAX_SESSION_SIZE;
+
+               fr_bin2hex(ssn->ssl->session->session_id, buffer, size);
+
                
                vp = paircopy2(request->reply->vps, PW_USER_NAME, 0);
                if (vp) pairadd(&vps, vp);
@@ -1943,10 +2261,11 @@ int tls_success(tls_session_t *ssn, REQUEST *request)
                if (vp) pairadd(&vps, vp);
                
                if (vps) {
+                       RDEBUG2("Saving session %s vps %p in the cache", buffer, vps);
                        SSL_SESSION_set_ex_data(ssn->ssl->session,
                                                FR_TLS_EX_INDEX_VPS, vps);
                } else {
-                       RDEBUG2("WARNING: No information to cache: session caching will be disabled for this session.");
+                       RDEBUG2("WARNING: No information to cache: session caching will be disabled for session %s", buffer);
                        SSL_CTX_remove_session(ssn->ctx,
                                               ssn->ssl->session);
                }
@@ -1956,15 +2275,23 @@ int tls_success(tls_session_t *ssn, REQUEST *request)
                 *      reply.
                 */
        } else {
+               size_t size;
+               char buffer[2 * MAX_SESSION_SIZE + 1];
+
+               size = ssn->ssl->session->session_id_length;
+               if (size > MAX_SESSION_SIZE) size = MAX_SESSION_SIZE;
+
+               fr_bin2hex(ssn->ssl->session->session_id, buffer, size);
+
               
                vp = SSL_SESSION_get_ex_data(ssn->ssl->session,
                                             FR_TLS_EX_INDEX_VPS);
                if (!vp) {
-                       RDEBUG("WARNING: No information in cached session!");
+                       RDEBUG("WARNING: No information in cached session %s", buffer);
                        return -1;
 
                } else {
-                       RDEBUG("Adding cached attributes to the reply:");
+                       RDEBUG("Adding cached attributes for session %s vps %p to the reply:", buffer, vp);
                        debug_pair_list(vp);
                        pairadd(&request->reply->vps, paircopy(vp));
 
@@ -2124,565 +2451,4 @@ fr_tls_status_t tls_ack_handler(tls_session_t *ssn, REQUEST *request)
        }
 }
 
-static void dump_hex(const char *msg, const uint8_t *data, size_t data_len)
-{
-       size_t i;
-
-       if (debug_flag < 3) return;
-
-       printf("%s %d\n", msg, (int) data_len);
-       if (data_len > 256) data_len = 256;
-
-       for (i = 0; i < data_len; i++) {
-               if ((i & 0x0f) == 0x00) printf ("%02x: ", (unsigned int) i);
-               printf("%02x ", data[i]);
-               if ((i & 0x0f) == 0x0f) printf ("\n");
-       }
-       printf("\n");
-       fflush(stdout);
-}
-
-static void tls_socket_close(rad_listen_t *listener)
-{
-       listen_socket_t *sock = listener->data;
-
-       listener->status = RAD_LISTEN_STATUS_REMOVE_FD;
-       listener->tls = NULL; /* parent owns this! */
-       
-       if (sock->parent) {
-               /*
-                *      Decrement the number of connections.
-                */
-               if (sock->parent->num_connections > 0) {
-                       sock->parent->num_connections--;
-               }
-               if (sock->client->num_connections > 0) {
-                       sock->client->num_connections--;
-               }
-       }
-       
-       /*
-        *      Tell the event handler that an FD has disappeared.
-        */
-       DEBUG("Client has closed connection");
-       event_new_fd(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()
-        */
-}
-
-static int tls_socket_write(rad_listen_t *listener, REQUEST *request)
-{
-       uint8_t *p;
-       ssize_t rcode;
-       listen_socket_t *sock = listener->data;
-
-       p = sock->ssn->dirty_out.data;
-       
-       while (p < (sock->ssn->dirty_out.data + sock->ssn->dirty_out.used)) {
-               RDEBUG3("Writing to socket %d", request->packet->sockfd);
-               rcode = write(request->packet->sockfd, p,
-                             (sock->ssn->dirty_out.data + sock->ssn->dirty_out.used) - p);
-               if (rcode <= 0) {
-                       RDEBUG("Error writing to TLS socket: %s", strerror(errno));
-                       
-                       tls_socket_close(listener);
-                       return 0;
-               }
-               p += rcode;
-       }
-
-       sock->ssn->dirty_out.used = 0;
-       
-       return 1;
-}
-
-
-static int tls_socket_recv(rad_listen_t *listener)
-{
-       int doing_init = FALSE;
-       ssize_t rcode;
-       RADIUS_PACKET *packet;
-       REQUEST *request;
-       listen_socket_t *sock = listener->data;
-       fr_tls_status_t status;
-       RADCLIENT *client = sock->client;
-
-       if (!sock->packet) {
-               sock->packet = rad_alloc(0);
-               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;
-
-               if (sock->request) sock->request->packet = sock->packet;
-       }
-
-       /*
-        *      Allocate a REQUEST for debugging.
-        */
-       if (!sock->request) {
-               sock->request = request = request_alloc();
-               if (!sock->request) {
-                       radlog(L_ERR, "Out of memory");
-                       return 0;
-               }
-
-               rad_assert(request->packet == NULL);
-               rad_assert(sock->packet != NULL);
-               request->packet = sock->packet;
-
-               request->component = "<core>";
-               request->component = "<tls-connect>";
-
-               /*
-                *      Not sure if we should do this on every packet...
-                */
-               request->reply = rad_alloc(0);
-               if (!request->reply) return 0;
-
-               request->options = RAD_REQUEST_OPTION_DEBUG2;
-
-               rad_assert(sock->ssn == NULL);
-
-               sock->ssn = tls_new_session(listener->tls, sock->request,
-                                           listener->tls->require_client_cert);
-               if (!sock->ssn) {
-                       request_free(&sock->request);
-                       sock->packet = NULL;
-                       return 0;
-               }
-
-               SSL_set_ex_data(sock->ssn->ssl, FR_TLS_EX_INDEX_REQUEST, (void *)request);
-               SSL_set_ex_data(sock->ssn->ssl, FR_TLS_EX_INDEX_CERTS, (void *)&request->packet->vps);
-
-               doing_init = TRUE;
-       }
-
-       rad_assert(sock->request != NULL);
-       rad_assert(sock->request->packet != NULL);
-       rad_assert(sock->packet != NULL);
-       rad_assert(sock->ssn != NULL);
-
-       request = sock->request;
-
-       RDEBUG3("Reading from socket %d", request->packet->sockfd);
-       PTHREAD_MUTEX_LOCK(&sock->mutex);
-       rcode = read(request->packet->sockfd,
-                    sock->ssn->dirty_in.data,
-                    sizeof(sock->ssn->dirty_in.data));
-       if ((rcode < 0) && (errno == ECONNRESET)) {
-       do_close:
-               PTHREAD_MUTEX_UNLOCK(&sock->mutex);
-               tls_socket_close(listener);
-               return 0;
-       }
-       
-       if (rcode < 0) {
-               RDEBUG("Error reading TLS socket: %s", strerror(errno));
-               goto do_close;
-       }
-
-       /*
-        *      Normal socket close.
-        */
-       if (rcode == 0) goto do_close;
-       
-       sock->ssn->dirty_in.used = rcode;
-       memset(sock->ssn->dirty_in.data + sock->ssn->dirty_in.used,
-              0, 16);
-
-       dump_hex("READ FROM SSL", sock->ssn->dirty_in.data, sock->ssn->dirty_in.used);
-
-       /*
-        *      Catch attempts to use non-SSL.
-        */
-       if (doing_init && (sock->ssn->dirty_in.data[0] != handshake)) {
-               RDEBUG("Non-TLS data sent to TLS socket: closing");
-               goto do_close;
-       }
-       
-       /*
-        *      Skip ahead to reading application data.
-        */
-       if (SSL_is_init_finished(sock->ssn->ssl)) goto app;
-
-       if (!tls_handshake_recv(request, sock->ssn)) {
-               RDEBUG("FAILED in TLS handshake receive");
-               goto do_close;
-       }
-       
-       if (sock->ssn->dirty_out.used > 0) {
-               tls_socket_write(listener, request);
-               PTHREAD_MUTEX_UNLOCK(&sock->mutex);
-               return 0;
-       }
-
-app:
-       status = tls_application_data(sock->ssn, request);
-       RDEBUG("Application data status %d", status);
-
-       if (status == FR_TLS_MORE_FRAGMENTS) {
-               PTHREAD_MUTEX_UNLOCK(&sock->mutex);
-               return 0;
-       }
-
-       if (sock->ssn->clean_out.used == 0) {
-               PTHREAD_MUTEX_UNLOCK(&sock->mutex);
-               return 0;
-       }
-
-       dump_hex("TUNNELED DATA", sock->ssn->clean_out.data, sock->ssn->clean_out.used);
-
-       /*
-        *      If the packet is a complete RADIUS packet, return it to
-        *      the caller.  Otherwise...
-        */
-       if ((sock->ssn->clean_out.used < 20) ||
-           (((sock->ssn->clean_out.data[2] << 8) | sock->ssn->clean_out.data[3]) != (int) sock->ssn->clean_out.used)) {
-               RDEBUG("Received bad packet: Length %d contents %d",
-                      sock->ssn->clean_out.used,
-                      (sock->ssn->clean_out.data[2] << 8) | sock->ssn->clean_out.data[3]);
-               goto do_close;
-       }
-
-       packet = sock->packet;
-       packet->data = rad_malloc(sock->ssn->clean_out.used);
-       packet->data_len = sock->ssn->clean_out.used;
-       memcpy(packet->data, sock->ssn->clean_out.data, packet->data_len);
-       packet->vps = NULL;
-       PTHREAD_MUTEX_UNLOCK(&sock->mutex);
-
-       if (!rad_packet_ok(packet, 0)) {
-               RDEBUG("Received bad packet: %s", fr_strerror());
-               tls_socket_close(listener);
-               return 0;       /* do_close unlocks the mutex */
-       }
-
-       /*
-        *      Copied from src/lib/radius.c, rad_recv();
-        */
-       if (fr_debug_flag) {
-               char host_ipaddr[128];
-
-               if ((packet->code > 0) && (packet->code < FR_MAX_PACKET_CODE)) {
-                       RDEBUG("tls_recv: %s packet from host %s port %d, id=%d, length=%d",
-                              fr_packet_codes[packet->code],
-                              inet_ntop(packet->src_ipaddr.af,
-                                        &packet->src_ipaddr.ipaddr,
-                                        host_ipaddr, sizeof(host_ipaddr)),
-                              packet->src_port,
-                              packet->id, (int) packet->data_len);
-               } else {
-                       RDEBUG("tls_recv: Packet from host %s port %d code=%d, id=%d, length=%d",
-                              inet_ntop(packet->src_ipaddr.af,
-                                        &packet->src_ipaddr.ipaddr,
-                                        host_ipaddr, sizeof(host_ipaddr)),
-                              packet->src_port,
-                              packet->code,
-                              packet->id, (int) packet->data_len);
-               }
-       }
-
-       FR_STATS_INC(auth, total_requests);
-
-       return 1;
-}
-
-
-int dual_tls_recv(rad_listen_t *listener)
-{
-       RADIUS_PACKET *packet;
-       REQUEST *request;
-       RAD_REQUEST_FUNP fun = NULL;
-       listen_socket_t *sock = listener->data;
-       RADCLIENT       *client = sock->client;
-
-       if (!tls_socket_recv(listener)) {
-               return 0;
-       }
-
-       rad_assert(sock->request != NULL);
-       rad_assert(sock->request->packet != NULL);
-       rad_assert(sock->packet != NULL);
-       rad_assert(sock->ssn != NULL);
-
-       request = sock->request;
-       packet = sock->packet;
-
-       /*
-        *      Some sanity checks, based on the packet code.
-        */
-       switch(packet->code) {
-       case PW_AUTHENTICATION_REQUEST:
-               if (listener->type != RAD_LISTEN_AUTH) goto bad_packet;
-               FR_STATS_INC(auth, total_requests);
-               fun = rad_authenticate;
-               break;
-
-       case PW_ACCOUNTING_REQUEST:
-               if (listener->type != RAD_LISTEN_ACCT) goto bad_packet;
-               FR_STATS_INC(acct, total_requests);
-               fun = rad_accounting;
-               break;
-
-       case PW_STATUS_SERVER:
-               if (!mainconfig.status_server) {
-                       FR_STATS_INC(auth, total_unknown_types);
-                       DEBUG("WARNING: Ignoring Status-Server request due to security configuration");
-                       rad_free(&sock->packet);
-                       request->packet = NULL;
-                       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);
-               rad_free(&sock->packet);
-               request->packet = NULL;
-               return 0;
-       } /* switch over packet types */
-
-       if (!request_receive(listener, packet, client, fun)) {
-               FR_STATS_INC(auth, total_packets_dropped);
-               rad_free(&sock->packet);
-               request->packet = NULL;
-               return 0;
-       }
-
-       sock->packet = NULL;    /* we have no need for more partial reads */
-       request->packet = NULL;
-
-       return 1;
-}
-
-
-/*
- *     Send a response packet
- */
-int dual_tls_send(rad_listen_t *listener, REQUEST *request)
-{
-       listen_socket_t *sock = listener->data;
-
-       rad_assert(request->listener == listener);
-       rad_assert(listener->send == dual_tls_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;
-
-       /*
-        *      Pack the VPs
-        */
-       if (rad_encode(request->reply, request->packet,
-                      request->client->secret) < 0) {
-               RDEBUG("Failed encoding packet: %s", fr_strerror());
-               return 0;
-       }
-
-       /*
-        *      Sign the packet.
-        */
-       if (rad_sign(request->reply, request->packet,
-                      request->client->secret) < 0) {
-               RDEBUG("Failed signing packet: %s", fr_strerror());
-               return 0;
-       }
-       
-       PTHREAD_MUTEX_LOCK(&sock->mutex);
-       /*
-        *      Write the packet to the SSL buffers.
-        */
-       record_plus(&sock->ssn->clean_in,
-                   request->reply->data, request->reply->data_len);
-
-       /*
-        *      Do SSL magic to get encrypted data.
-        */
-       tls_handshake_send(request, sock->ssn);
-
-       /*
-        *      And finally write the data to the socket.
-        */
-       if (sock->ssn->dirty_out.used > 0) {
-               dump_hex("WRITE TO SSL", sock->ssn->dirty_out.data, sock->ssn->dirty_out.used);
-
-               tls_socket_write(listener, request);
-       }
-       PTHREAD_MUTEX_UNLOCK(&sock->mutex);
-
-       return 0;
-}
-
-
-int proxy_tls_recv(rad_listen_t *listener)
-{
-       int rcode;
-       size_t length;
-       listen_socket_t *sock = listener->data;
-       char buffer[256];
-       uint8_t data[1024];
-       RADIUS_PACKET *packet;
-       RAD_REQUEST_FUNP fun = NULL;
-
-       DEBUG3("Proxy SSL socket has data to read");
-       PTHREAD_MUTEX_LOCK(&sock->mutex);
-redo:
-       rcode = SSL_read(sock->ssn->ssl, data, 4);
-       if (rcode <= 0) {
-               int err = SSL_get_error(sock->ssn->ssl, rcode);
-               switch (err) {
-               case SSL_ERROR_WANT_READ:
-               case SSL_ERROR_WANT_WRITE:
-                       rcode = 0;
-                       goto redo;
-               case SSL_ERROR_ZERO_RETURN:
-                       /* remote end sent close_notify, send one back */
-                       SSL_shutdown(sock->ssn->ssl);
-
-               case SSL_ERROR_SYSCALL:
-               do_close:
-                       PTHREAD_MUTEX_UNLOCK(&sock->mutex);
-                       tls_socket_close(listener);
-                       return 0;
-
-               default:
-                       while ((err = ERR_get_error())) {
-                               DEBUG("proxy recv says %s",
-                                     ERR_error_string(err, NULL));
-                       }
-                       
-                       goto do_close;
-               }
-       }
-
-       length = (data[2] << 8) | data[3];
-       DEBUG3("Proxy received header saying we have a packet of %u bytes",
-              (unsigned int) length);
-
-       if (length > sizeof(data)) {
-               DEBUG("Received packet will be too large! (%u)",
-                     (data[2] << 8) | data[3]);
-               goto do_close;
-       }
-       
-       rcode = SSL_read(sock->ssn->ssl, data + 4, length);
-       if (rcode <= 0) {
-               switch (SSL_get_error(sock->ssn->ssl, rcode)) {
-               case SSL_ERROR_WANT_READ:
-               case SSL_ERROR_WANT_WRITE:
-                       rcode = 0;
-                       break;
-
-               case SSL_ERROR_ZERO_RETURN:
-                       /* remote end sent close_notify, send one back */
-                       SSL_shutdown(sock->ssn->ssl);
-                       goto do_close;
-               default:
-                       goto do_close;
-               }
-       }
-       PTHREAD_MUTEX_UNLOCK(&sock->mutex);
-
-       packet = rad_alloc(0);
-       packet->sockfd = listener->fd;
-       packet->src_ipaddr = sock->other_ipaddr;
-       packet->src_port = sock->other_port;
-       packet->dst_ipaddr = sock->my_ipaddr;
-       packet->dst_port = sock->my_port;
-       packet->code = data[0];
-       packet->id = data[1];
-       packet->data_len = length;
-       packet->data = rad_malloc(packet->data_len);
-       memcpy(packet->data, data, packet->data_len);
-       memcpy(packet->vector, packet->data + 4, 16);
-
-       /*
-        *      FIXME: Client MIB updates?
-        */
-       switch(packet->code) {
-       case PW_AUTHENTICATION_ACK:
-       case PW_ACCESS_CHALLENGE:
-       case PW_AUTHENTICATION_REJECT:
-               fun = rad_authenticate;
-               break;
-
-#ifdef WITH_ACCOUNTING
-       case PW_ACCOUNTING_RESPONSE:
-               fun = rad_accounting;
-               break;
-#endif
-
-       default:
-               /*
-                *      FIXME: Update MIB for packet types?
-                */
-               radlog(L_ERR, "Invalid packet code %d sent to a proxy port "
-                      "from home server %s port %d - ID %d : IGNORED",
-                      packet->code,
-                      ip_ntoh(&packet->src_ipaddr, buffer, sizeof(buffer)),
-                      packet->src_port, packet->id);
-               rad_free(&packet);
-               return 0;
-       }
-
-       if (!request_proxy_reply(packet)) {
-               rad_free(&packet);
-               return 0;
-       }
-
-       return 1;
-}
-
-int proxy_tls_send(rad_listen_t *listener, REQUEST *request)
-{
-       int rcode;
-       listen_socket_t *sock = listener->data;
-
-       /*
-        *      Normal proxying calls us with the data already
-        *      encoded.  The "ping home server" code does not.  So,
-        *      if there's no packet, encode it here.
-        */
-       if (!request->proxy->data) {
-               request->proxy_listener->encode(request->proxy_listener,
-                                               request);
-       }
-
-       DEBUG3("Proxy is writing %u bytes to SSL",
-              (unsigned int) request->proxy->data_len);
-       PTHREAD_MUTEX_LOCK(&sock->mutex);
-       while ((rcode = SSL_write(sock->ssn->ssl, request->proxy->data,
-                                 request->proxy->data_len)) < 0) {
-               int err;
-               while ((err = ERR_get_error())) {
-                       DEBUG("proxy SSL_write says %s",
-                             ERR_error_string(err, NULL));
-               }
-               PTHREAD_MUTEX_UNLOCK(&sock->mutex);
-               tls_socket_close(listener);
-               return 0;
-       }
-       PTHREAD_MUTEX_UNLOCK(&sock->mutex);
-
-       return 1;
-}
-
 #endif /* WITH_TLS */