]> granicus.if.org Git - apache/commitdiff
remove obsolete ssl_ds_{table,array} api
authorDoug MacEachern <dougm@apache.org>
Wed, 13 Mar 2002 04:14:43 +0000 (04:14 +0000)
committerDoug MacEachern <dougm@apache.org>
Wed, 13 Mar 2002 04:14:43 +0000 (04:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93891 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/config.m4
modules/ssl/mod_ssl.h
modules/ssl/ssl_engine_ds.c [deleted file]
modules/ssl/ssl_util.c

index 86313301ee4bfc203ccdb58fb4b963898a0cf50d..19da9890fe83a4903f30d2bb27262e42101bf20e 100644 (file)
@@ -54,7 +54,6 @@ ssl_objs="dnl
 mod_ssl.lo dnl
 ssl_engine_config.lo dnl
 ssl_engine_dh.lo dnl
-ssl_engine_ds.lo dnl
 ssl_engine_ext.lo dnl
 ssl_engine_init.lo dnl
 ssl_engine_io.lo dnl
index 09cbd728a05c337446e48deaae1a1d36feedd434..d77bc9c067455f14bd08084f0c71db5b4626cbc6 100644 (file)
@@ -263,22 +263,6 @@ ap_set_module_config(c->conn_config, &ssl_module, val)
 #error "mod_ssl requires OpenSSL 0.9.6 or higher"
 #endif
 
-/*
- * The own data structures
- */
-typedef struct {
-    apr_pool_t *pPool;
-    apr_pool_t *pSubPool;
-    apr_array_header_t *aData;
-} ssl_ds_array;
-
-typedef struct {
-    apr_pool_t *pPool;
-    apr_pool_t *pSubPool;
-    apr_array_header_t *aKey;
-    apr_array_header_t *aData;
-} ssl_ds_table;
-
 /*
  * Define the certificate algorithm types
  */
@@ -719,20 +703,6 @@ void         ssl_pphrase_Handle(server_rec *, apr_pool_t *);
 DH           *ssl_dh_GetTmpParam(int);
 DH           *ssl_dh_GetParamFromFile(char *);
 
-/*  Data Structures */
-ssl_ds_array *ssl_ds_array_make(apr_pool_t *, int);
-BOOL          ssl_ds_array_isempty(ssl_ds_array *);
-void         *ssl_ds_array_push(ssl_ds_array *);
-void         *ssl_ds_array_get(ssl_ds_array *, int);
-void          ssl_ds_array_wipeout(ssl_ds_array *);
-void          ssl_ds_array_kill(ssl_ds_array *);
-ssl_ds_table *ssl_ds_table_make(apr_pool_t *, int);
-BOOL          ssl_ds_table_isempty(ssl_ds_table *);
-void         *ssl_ds_table_push(ssl_ds_table *, char *);
-void         *ssl_ds_table_get(ssl_ds_table *, char *);
-void          ssl_ds_table_wipeout(ssl_ds_table *);
-void          ssl_ds_table_kill(ssl_ds_table *);
-
 unsigned char *ssl_asn1_table_set(apr_hash_t *table,
                                   const char *key,
                                   long int length);
diff --git a/modules/ssl/ssl_engine_ds.c b/modules/ssl/ssl_engine_ds.c
deleted file mode 100644 (file)
index f9e3b85..0000000
+++ /dev/null
@@ -1,259 +0,0 @@
-/*                      _             _
-**  _ __ ___   ___   __| |    ___ ___| |  mod_ssl
-** | '_ ` _ \ / _ \ / _` |   / __/ __| |  Apache Interface to OpenSSL
-** | | | | | | (_) | (_| |   \__ \__ \ |  www.modssl.org
-** |_| |_| |_|\___/ \__,_|___|___/___/_|  ftp.modssl.org
-**                      |_____|
-**  ssl_engine_ds.c
-**  Additional Data Structures
-*/
-
-/* ====================================================================
- * The Apache Software License, Version 1.1
- *
- * Copyright (c) 2000-2001 The Apache Software Foundation.  All rights
- * reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in
- *    the documentation and/or other materials provided with the
- *    distribution.
- *
- * 3. The end-user documentation included with the redistribution,
- *    if any, must include the following acknowledgment:
- *       "This product includes software developed by the
- *        Apache Software Foundation (http://www.apache.org/)."
- *    Alternately, this acknowledgment may appear in the software itself,
- *    if and wherever such third-party acknowledgments normally appear.
- *
- * 4. The names "Apache" and "Apache Software Foundation" must
- *    not be used to endorse or promote products derived from this
- *    software without prior written permission. For written
- *    permission, please contact apache@apache.org.
- *
- * 5. Products derived from this software may not be called "Apache",
- *    nor may "Apache" appear in their name, without prior written
- *    permission of the Apache Software Foundation.
- *
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
- * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- * ====================================================================
- */
-
-                             /* ``If you can't do it in
-                                  C or assembly language,
-                                  it isn't worth doing.''
-                                         -- Unknown         */
-#include "mod_ssl.h"
-
-/*  _________________________________________________________________
-**
-**  Data Structures which store _arbitrary_ data
-**  _________________________________________________________________
-*/
-
-ssl_ds_array *ssl_ds_array_make(apr_pool_t *p, int size)
-{
-    ssl_ds_array *a;
-
-    if ((a = (ssl_ds_array *)apr_palloc(p, sizeof(ssl_ds_array))) == NULL)
-        return NULL;
-    a->pPool = p;
-    apr_pool_sub_make(&a->pSubPool, p, NULL);
-    if (a->pSubPool == NULL)
-        return NULL;
-    a->aData = apr_array_make(a->pSubPool, 2, size);
-    return a;
-}
-
-BOOL ssl_ds_array_isempty(ssl_ds_array *a)
-{
-    if (a == NULL || a->aData == NULL || a->aData->nelts == 0)
-        return TRUE;
-    else
-        return FALSE;
-}
-
-void *ssl_ds_array_push(ssl_ds_array *a)
-{
-    void *d;
-
-    d = (void *)apr_array_push(a->aData);
-    return d;
-}
-
-void *ssl_ds_array_get(ssl_ds_array *a, int n)
-{
-    void *d;
-
-    if (n < 0 || n >= a->aData->nelts)
-        return NULL;
-    d = (void *)(a->aData->elts+(a->aData->elt_size*n));
-    return d;
-}
-
-void ssl_ds_array_wipeout(ssl_ds_array *a)
-{
-    if (a->aData->nelts > 0)
-        memset(a->aData->elts, 0, a->aData->elt_size*a->aData->nelts);
-    return;
-}
-
-void ssl_ds_array_kill(ssl_ds_array *a)
-{
-    apr_pool_destroy(a->pSubPool);
-    a->pSubPool = NULL;
-    a->aData    = NULL;
-    return;
-}
-
-ssl_ds_table *ssl_ds_table_make(apr_pool_t *p, int size)
-{
-    ssl_ds_table *t;
-
-    if ((t = (ssl_ds_table *)apr_palloc(p, sizeof(ssl_ds_table))) == NULL)
-        return NULL;
-    t->pPool = p;
-    apr_pool_sub_make(&t->pSubPool, p, NULL);
-    if (t->pSubPool == NULL)
-        return NULL;
-    t->aKey  = apr_array_make(t->pSubPool, 2, MAX_STRING_LEN);
-    t->aData = apr_array_make(t->pSubPool, 2, size);
-    return t;
-}
-
-BOOL ssl_ds_table_isempty(ssl_ds_table *t)
-{
-    if (t == NULL || t->aKey == NULL || t->aKey->nelts == 0)
-        return TRUE;
-    else
-        return FALSE;
-}
-
-void *ssl_ds_table_push(ssl_ds_table *t, char *key)
-{
-    char *k;
-    void *d;
-
-    k = (char *)apr_array_push(t->aKey);
-    d = (void *)apr_array_push(t->aData);
-    apr_cpystrn(k, key, t->aKey->elt_size);
-    return d;
-}
-
-void *ssl_ds_table_get(ssl_ds_table *t, char *key)
-{
-    char *k;
-    void *d;
-    int i;
-
-    d = NULL;
-    for (i = 0; i < t->aKey->nelts; i++) {
-        k = (t->aKey->elts+(t->aKey->elt_size*i));
-        if (strEQ(k, key)) {
-            d = (void *)(t->aData->elts+(t->aData->elt_size*i));
-            break;
-        }
-    }
-    return d;
-}
-
-void ssl_ds_table_wipeout(ssl_ds_table *t)
-{
-    if (t->aKey->nelts > 0) {
-        memset(t->aKey->elts, 0, t->aKey->elt_size*t->aKey->nelts);
-        memset(t->aData->elts, 0, t->aData->elt_size*t->aData->nelts);
-    }
-    return;
-}
-
-void ssl_ds_table_kill(ssl_ds_table *t)
-{
-    apr_pool_destroy(t->pSubPool);
-    t->pSubPool = NULL;
-    t->aKey     = NULL;
-    t->aData    = NULL;
-    return;
-}
-
-/*
- * certain key and cert data needs to survive restarts,
- * which are stored in the user data table of s->process->pool.
- * to prevent "leaking" of this data, we use malloc/free
- * rather than apr_palloc and these wrappers to help make sure
- * we do not leak the malloc-ed data.
- */
-unsigned char *ssl_asn1_table_set(apr_hash_t *table,
-                                  const char *key,
-                                  long int length)
-{
-    apr_ssize_t klen = strlen(key);
-    ssl_asn1_t *asn1 = apr_hash_get(table, key, klen);
-
-    /*
-     * if a value for this key already exists,
-     * reuse as much of the already malloc-ed data
-     * as possible.
-     */
-    if (asn1) {
-        if (asn1->nData != length) {
-            free(asn1->cpData); /* XXX: realloc? */
-            asn1->cpData = NULL;
-        }
-    }
-    else {
-        asn1 = malloc(sizeof(*asn1));
-        asn1->source_mtime = 0; /* used as a note for encrypted private keys */
-        asn1->cpData = NULL;
-    }
-
-    asn1->nData = length;
-    if (!asn1->cpData) {
-        asn1->cpData = malloc(length);
-    }
-
-    apr_hash_set(table, key, klen, asn1);
-
-    return asn1->cpData; /* caller will assign a value to this */
-}
-
-ssl_asn1_t *ssl_asn1_table_get(apr_hash_t *table,
-                               const char *key)
-{
-    return (ssl_asn1_t *)apr_hash_get(table, key, APR_HASH_KEY_STRING);
-}
-
-void ssl_asn1_table_unset(apr_hash_t *table,
-                          const char *key)
-{
-    apr_ssize_t klen = strlen(key);
-    ssl_asn1_t *asn1 = apr_hash_get(table, key, klen);
-
-    if (!asn1) {
-        return;
-    }
-
-    if (asn1->cpData) {
-        free(asn1->cpData);
-    }
-    free(asn1);
-
-    apr_hash_set(table, key, klen, NULL);
-}
index 2266c81d349bed07eb1f45ba98edc93216d36442..53484e5d83baa5f165237bf0be8c47a7cf20428c 100644 (file)
@@ -308,6 +308,71 @@ char *ssl_util_ptxtsub(apr_pool_t *p, const char *cpLine,
     return cpResult;
 }
 
+/*
+ * certain key and cert data needs to survive restarts,
+ * which are stored in the user data table of s->process->pool.
+ * to prevent "leaking" of this data, we use malloc/free
+ * rather than apr_palloc and these wrappers to help make sure
+ * we do not leak the malloc-ed data.
+ */
+unsigned char *ssl_asn1_table_set(apr_hash_t *table,
+                                  const char *key,
+                                  long int length)
+{
+    apr_ssize_t klen = strlen(key);
+    ssl_asn1_t *asn1 = apr_hash_get(table, key, klen);
+
+    /*
+     * if a value for this key already exists,
+     * reuse as much of the already malloc-ed data
+     * as possible.
+     */
+    if (asn1) {
+        if (asn1->nData != length) {
+            free(asn1->cpData); /* XXX: realloc? */
+            asn1->cpData = NULL;
+        }
+    }
+    else {
+        asn1 = malloc(sizeof(*asn1));
+        asn1->source_mtime = 0; /* used as a note for encrypted private keys */
+        asn1->cpData = NULL;
+    }
+
+    asn1->nData = length;
+    if (!asn1->cpData) {
+        asn1->cpData = malloc(length);
+    }
+
+    apr_hash_set(table, key, klen, asn1);
+
+    return asn1->cpData; /* caller will assign a value to this */
+}
+
+ssl_asn1_t *ssl_asn1_table_get(apr_hash_t *table,
+                               const char *key)
+{
+    return (ssl_asn1_t *)apr_hash_get(table, key, APR_HASH_KEY_STRING);
+}
+
+void ssl_asn1_table_unset(apr_hash_t *table,
+                          const char *key)
+{
+    apr_ssize_t klen = strlen(key);
+    ssl_asn1_t *asn1 = apr_hash_get(table, key, klen);
+
+    if (!asn1) {
+        return;
+    }
+
+    if (asn1->cpData) {
+        free(asn1->cpData);
+    }
+    free(asn1);
+
+    apr_hash_set(table, key, klen, NULL);
+}
+
 #if APR_HAS_THREADS
 /*
  * To ensure thread-safetyness in OpenSSL - work in progress