by_dir.c 11.2 KB
Newer Older
R
Rich Salz 已提交
1
/*
R
Rich Salz 已提交
2
 * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
3
 *
R
Rich Salz 已提交
4 5 6 7
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
8 9 10 11 12
 */

#include <stdio.h>
#include <time.h>
#include <errno.h>
13
#include <sys/types.h>
14

15
#include "internal/cryptlib.h"
A
Andy Polyakov 已提交
16

17
#ifndef OPENSSL_NO_POSIX_IO
A
Andy Polyakov 已提交
18 19 20
# include <sys/stat.h>
#endif

D
David Woodhouse 已提交
21

22 23
#include <openssl/lhash.h>
#include <openssl/x509.h>
D
Dr. Stephen Henson 已提交
24
#include "internal/x509_int.h"
25
#include "x509_lcl.h"
26

27
struct lookup_dir_hashes_st {
28 29
    unsigned long hash;
    int suffix;
30
};
31

32
struct lookup_dir_entry_st {
33 34 35
    char *dir;
    int dir_type;
    STACK_OF(BY_DIR_HASH) *hashes;
36
};
37

38 39 40
typedef struct lookup_dir_st {
    BUF_MEM *buffer;
    STACK_OF(BY_DIR_ENTRY) *dirs;
41
    CRYPTO_RWLOCK *lock;
42
} BY_DIR;
43

44
static int dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl,
45
                    char **ret);
46 47
static int new_dir(X509_LOOKUP *lu);
static void free_dir(X509_LOOKUP *lu);
48
static int add_cert_dir(BY_DIR *ctx, const char *dir, int type);
49 50
static int get_cert_by_subject(X509_LOOKUP *xl, X509_LOOKUP_TYPE type,
                               X509_NAME *name, X509_OBJECT *ret);
51
static X509_LOOKUP_METHOD x509_dir_lookup = {
52 53 54 55 56 57 58 59 60 61 62
    "Load certs from files in a directory",
    new_dir,                    /* new */
    free_dir,                   /* free */
    NULL,                       /* init */
    NULL,                       /* shutdown */
    dir_ctrl,                   /* ctrl */
    get_cert_by_subject,        /* get_by_subject */
    NULL,                       /* get_by_issuer_serial */
    NULL,                       /* get_by_fingerprint */
    NULL,                       /* get_by_alias */
};
63

U
Ulf Möller 已提交
64
X509_LOOKUP_METHOD *X509_LOOKUP_hash_dir(void)
65 66 67
{
    return (&x509_dir_lookup);
}
68

69
static int dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl,
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
                    char **retp)
{
    int ret = 0;
    BY_DIR *ld;
    char *dir = NULL;

    ld = (BY_DIR *)ctx->method_data;

    switch (cmd) {
    case X509_L_ADD_DIR:
        if (argl == X509_FILETYPE_DEFAULT) {
            dir = (char *)getenv(X509_get_default_cert_dir_env());
            if (dir)
                ret = add_cert_dir(ld, dir, X509_FILETYPE_PEM);
            else
                ret = add_cert_dir(ld, X509_get_default_cert_dir(),
                                   X509_FILETYPE_PEM);
            if (!ret) {
                X509err(X509_F_DIR_CTRL, X509_R_LOADING_CERT_DIR);
            }
        } else
            ret = add_cert_dir(ld, argp, (int)argl);
        break;
    }
    return (ret);
}
96

U
Ulf Möller 已提交
97
static int new_dir(X509_LOOKUP *lu)
98 99 100
{
    BY_DIR *a;

R
Rich Salz 已提交
101
    if ((a = OPENSSL_malloc(sizeof(*a))) == NULL)
102
        return 0;
103 104
    if ((a->buffer = BUF_MEM_new()) == NULL) {
        OPENSSL_free(a);
105
        return 0;
106 107
    }
    a->dirs = NULL;
108 109 110 111 112 113
    a->lock = CRYPTO_THREAD_lock_new();
    if (a->lock == NULL) {
        BUF_MEM_free(a->buffer);
        OPENSSL_free(a);
        return 0;
    }
114
    lu->method_data = (char *)a;
115
    return 1;
116
}
117

118
static void by_dir_hash_free(BY_DIR_HASH *hash)
119 120 121 122 123 124 125 126 127 128 129 130 131
{
    OPENSSL_free(hash);
}

static int by_dir_hash_cmp(const BY_DIR_HASH *const *a,
                           const BY_DIR_HASH *const *b)
{
    if ((*a)->hash > (*b)->hash)
        return 1;
    if ((*a)->hash < (*b)->hash)
        return -1;
    return 0;
}
132 133

static void by_dir_entry_free(BY_DIR_ENTRY *ent)
134
{
R
Rich Salz 已提交
135
    OPENSSL_free(ent->dir);
R
Rich Salz 已提交
136
    sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free);
137 138
    OPENSSL_free(ent);
}
139

U
Ulf Möller 已提交
140
static void free_dir(X509_LOOKUP *lu)
141 142
{
    BY_DIR *a;
143

144
    a = (BY_DIR *)lu->method_data;
R
Rich Salz 已提交
145 146
    sk_BY_DIR_ENTRY_pop_free(a->dirs, by_dir_entry_free);
    BUF_MEM_free(a->buffer);
147
    CRYPTO_THREAD_lock_free(a->lock);
148 149
    OPENSSL_free(a);
}
150

U
Ulf Möller 已提交
151
static int add_cert_dir(BY_DIR *ctx, const char *dir, int type)
152
{
D
Dmitry-Me 已提交
153
    const char *s, *p;
154 155 156 157 158 159 160 161 162 163 164

    if (dir == NULL || !*dir) {
        X509err(X509_F_ADD_CERT_DIR, X509_R_INVALID_DIRECTORY);
        return 0;
    }

    s = dir;
    p = s;
    do {
        if ((*p == LIST_SEPARATOR_CHAR) || (*p == '\0')) {
            BY_DIR_ENTRY *ent;
D
Dmitry-Me 已提交
165 166 167
            int j;
            size_t len;
            const char *ss = s;
168
            s = p + 1;
D
Dmitry-Me 已提交
169
            len = p - ss;
170 171 172 173
            if (len == 0)
                continue;
            for (j = 0; j < sk_BY_DIR_ENTRY_num(ctx->dirs); j++) {
                ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
D
Dmitry-Me 已提交
174 175
                if (strlen(ent->dir) == len &&
                    strncmp(ent->dir, ss, len) == 0)
176 177 178 179 180 181 182 183 184 185 186
                    break;
            }
            if (j < sk_BY_DIR_ENTRY_num(ctx->dirs))
                continue;
            if (ctx->dirs == NULL) {
                ctx->dirs = sk_BY_DIR_ENTRY_new_null();
                if (!ctx->dirs) {
                    X509err(X509_F_ADD_CERT_DIR, ERR_R_MALLOC_FAILURE);
                    return 0;
                }
            }
R
Rich Salz 已提交
187
            ent = OPENSSL_malloc(sizeof(*ent));
188
            if (ent == NULL)
189 190 191
                return 0;
            ent->dir_type = type;
            ent->hashes = sk_BY_DIR_HASH_new(by_dir_hash_cmp);
D
Dmitry-Me 已提交
192
            ent->dir = OPENSSL_strndup(ss, len);
193
            if (ent->dir == NULL || ent->hashes == NULL) {
194 195 196 197 198 199 200 201 202 203 204
                by_dir_entry_free(ent);
                return 0;
            }
            if (!sk_BY_DIR_ENTRY_push(ctx->dirs, ent)) {
                by_dir_entry_free(ent);
                return 0;
            }
        }
    } while (*p++ != '\0');
    return 1;
}
205

R
Rich Salz 已提交
206 207
static int get_cert_by_subject(X509_LOOKUP *xl, X509_LOOKUP_TYPE type,
                               X509_NAME *name, X509_OBJECT *ret)
208 209 210
{
    BY_DIR *ctx;
    union {
D
Dr. Stephen Henson 已提交
211
        X509 st_x509;
D
Dr. Stephen Henson 已提交
212
        X509_CRL crl;
213 214 215 216 217 218 219 220 221 222 223 224 225
    } data;
    int ok = 0;
    int i, j, k;
    unsigned long h;
    BUF_MEM *b = NULL;
    X509_OBJECT stmp, *tmp;
    const char *postfix = "";

    if (name == NULL)
        return (0);

    stmp.type = type;
    if (type == X509_LU_X509) {
D
Dr. Stephen Henson 已提交
226 227
        data.st_x509.cert_info.subject = name;
        stmp.data.x509 = &data.st_x509;
228 229
        postfix = "";
    } else if (type == X509_LU_CRL) {
D
Dr. Stephen Henson 已提交
230 231
        data.crl.crl.issuer = name;
        stmp.data.crl = &data.crl;
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
        postfix = "r";
    } else {
        X509err(X509_F_GET_CERT_BY_SUBJECT, X509_R_WRONG_LOOKUP_TYPE);
        goto finish;
    }

    if ((b = BUF_MEM_new()) == NULL) {
        X509err(X509_F_GET_CERT_BY_SUBJECT, ERR_R_BUF_LIB);
        goto finish;
    }

    ctx = (BY_DIR *)xl->method_data;

    h = X509_NAME_hash(name);
    for (i = 0; i < sk_BY_DIR_ENTRY_num(ctx->dirs); i++) {
        BY_DIR_ENTRY *ent;
        int idx;
        BY_DIR_HASH htmp, *hent;
        ent = sk_BY_DIR_ENTRY_value(ctx->dirs, i);
        j = strlen(ent->dir) + 1 + 8 + 6 + 1 + 1;
        if (!BUF_MEM_grow(b, j)) {
            X509err(X509_F_GET_CERT_BY_SUBJECT, ERR_R_MALLOC_FAILURE);
            goto finish;
        }
        if (type == X509_LU_CRL && ent->hashes) {
            htmp.hash = h;
258
            CRYPTO_THREAD_read_lock(ctx->lock);
259 260 261 262 263 264 265 266
            idx = sk_BY_DIR_HASH_find(ent->hashes, &htmp);
            if (idx >= 0) {
                hent = sk_BY_DIR_HASH_value(ent->hashes, idx);
                k = hent->suffix;
            } else {
                hent = NULL;
                k = 0;
            }
267
            CRYPTO_THREAD_unlock(ctx->lock);
268 269 270 271 272 273
        } else {
            k = 0;
            hent = NULL;
        }
        for (;;) {
            char c = '/';
274
#ifdef OPENSSL_SYS_VMS
275 276 277 278 279 280 281 282 283 284 285 286
            c = ent->dir[strlen(ent->dir) - 1];
            if (c != ':' && c != '>' && c != ']') {
                /*
                 * If no separator is present, we assume the directory
                 * specifier is a logical name, and add a colon.  We really
                 * should use better VMS routines for merging things like
                 * this, but this will do for now... -- Richard Levitte
                 */
                c = ':';
            } else {
                c = '\0';
            }
287
#endif
288 289 290 291 292 293 294 295
            if (c == '\0') {
                /*
                 * This is special.  When c == '\0', no directory separator
                 * should be added.
                 */
                BIO_snprintf(b->data, b->max,
                             "%s%08lx.%s%d", ent->dir, h, postfix, k);
            } else {
P
Pauli 已提交
296 297
                BIO_snprintf(b->data, b->max,
                             "%s%c%08lx.%s%d", ent->dir, c, h, postfix, k);
298
            }
299
#ifndef OPENSSL_NO_POSIX_IO
300 301 302 303 304 305 306 307
# ifdef _WIN32
#  define stat _stat
# endif
            {
                struct stat st;
                if (stat(b->data, &st) < 0)
                    break;
            }
308
#endif
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
            /* found one. */
            if (type == X509_LU_X509) {
                if ((X509_load_cert_file(xl, b->data, ent->dir_type)) == 0)
                    break;
            } else if (type == X509_LU_CRL) {
                if ((X509_load_crl_file(xl, b->data, ent->dir_type)) == 0)
                    break;
            }
            /* else case will caught higher up */
            k++;
        }

        /*
         * we have added it to the cache so now pull it out again
         */
324
        CRYPTO_THREAD_write_lock(ctx->lock);
325 326 327 328 329
        j = sk_X509_OBJECT_find(xl->store_ctx->objs, &stmp);
        if (j != -1)
            tmp = sk_X509_OBJECT_value(xl->store_ctx->objs, j);
        else
            tmp = NULL;
330
        CRYPTO_THREAD_unlock(ctx->lock);
331 332 333 334

        /* If a CRL, update the last file suffix added for this */

        if (type == X509_LU_CRL) {
335
            CRYPTO_THREAD_write_lock(ctx->lock);
336 337 338 339 340 341 342 343 344 345 346
            /*
             * Look for entry again in case another thread added an entry
             * first.
             */
            if (!hent) {
                htmp.hash = h;
                idx = sk_BY_DIR_HASH_find(ent->hashes, &htmp);
                if (idx >= 0)
                    hent = sk_BY_DIR_HASH_value(ent->hashes, idx);
            }
            if (!hent) {
R
Rich Salz 已提交
347
                hent = OPENSSL_malloc(sizeof(*hent));
348
                if (hent == NULL) {
349
                    CRYPTO_THREAD_unlock(ctx->lock);
350 351 352 353 354 355 356
                    X509err(X509_F_GET_CERT_BY_SUBJECT, ERR_R_MALLOC_FAILURE);
                    ok = 0;
                    goto finish;
                }
                hent->hash = h;
                hent->suffix = k;
                if (!sk_BY_DIR_HASH_push(ent->hashes, hent)) {
357
                    CRYPTO_THREAD_unlock(ctx->lock);
358 359 360 361
                    OPENSSL_free(hent);
                    ok = 0;
                    goto finish;
                }
362
            } else if (hent->suffix < k) {
363
                hent->suffix = k;
364
            }
365

366
            CRYPTO_THREAD_unlock(ctx->lock);
367 368 369 370 371 372 373

        }

        if (tmp != NULL) {
            ok = 1;
            ret->type = tmp->type;
            memcpy(&ret->data, &tmp->data, sizeof(ret->data));
R
Rich Salz 已提交
374 375 376 377 378 379 380

            /*
             * Clear any errors that might have been raised processing empty
             * or malformed files.
             */
            ERR_clear_error();

381 382 383 384
            /*
             * If we were going to up the reference count, we would need to
             * do it on a perl 'type' basis
             */
M
Matt Caswell 已提交
385 386
        /*- CRYPTO_add(&tmp->data.x509->references,1,
                    CRYPTO_LOCK_X509);*/
387 388 389 390
            goto finish;
        }
    }
 finish:
R
Rich Salz 已提交
391
    BUF_MEM_free(b);
392 393
    return (ok);
}