v3nametest.c 11.3 KB
Newer Older
R
Rich Salz 已提交
1 2 3 4 5 6 7 8 9
/*
 * Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved.
 *
 * 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
 */

R
Rich Salz 已提交
10 11
#include <string.h>
#include "e_os.h"
D
Dr. Stephen Henson 已提交
12 13
#include <openssl/x509.h>
#include <openssl/x509v3.h>
R
Rich Salz 已提交
14
#include "testutil.h"
D
Dr. Stephen Henson 已提交
15

16 17 18
static const char *const names[] = {
    "a", "b", ".", "*", "@",
    ".a", "a.", ".b", "b.", ".*", "*.", "*@", "@*", "a@", "@a", "b@", "..",
19
    "-example.com", "example-.com",
20 21 22 23 24 25
    "@@", "**", "*.com", "*com", "*.*.com", "*com", "com*", "*example.com",
    "*@example.com", "test@*.example.com", "example.com", "www.example.com",
    "test.www.example.com", "*.example.com", "*.www.example.com",
    "test.*.example.com", "www.*.com",
    ".www.example.com", "*www.example.com",
    "example.net", "xn--rger-koa.example.com",
26 27 28
    "*.xn--rger-koa.example.com", "www.xn--rger-koa.example.com",
    "*.good--example.com", "www.good--example.com",
    "*.xn--bar.com", "xn--foo.xn--bar.com",
29 30 31 32 33
    "a.example.com", "b.example.com",
    "postmaster@example.com", "Postmaster@example.com",
    "postmaster@EXAMPLE.COM",
    NULL
};
D
Dr. Stephen Henson 已提交
34

35 36 37 38 39 40 41 42 43
static const char *const exceptions[] = {
    "set CN: host: [*.example.com] matches [a.example.com]",
    "set CN: host: [*.example.com] matches [b.example.com]",
    "set CN: host: [*.example.com] matches [www.example.com]",
    "set CN: host: [*.example.com] matches [xn--rger-koa.example.com]",
    "set CN: host: [*.www.example.com] matches [test.www.example.com]",
    "set CN: host: [*.www.example.com] matches [.www.example.com]",
    "set CN: host: [*www.example.com] matches [www.example.com]",
    "set CN: host: [test.www.example.com] matches [.www.example.com]",
44 45 46
    "set CN: host: [*.xn--rger-koa.example.com] matches [www.xn--rger-koa.example.com]",
    "set CN: host: [*.xn--bar.com] matches [xn--foo.xn--bar.com]",
    "set CN: host: [*.good--example.com] matches [www.good--example.com]",
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
    "set CN: host-no-wildcards: [*.www.example.com] matches [.www.example.com]",
    "set CN: host-no-wildcards: [test.www.example.com] matches [.www.example.com]",
    "set emailAddress: email: [postmaster@example.com] does not match [Postmaster@example.com]",
    "set emailAddress: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]",
    "set emailAddress: email: [Postmaster@example.com] does not match [postmaster@example.com]",
    "set emailAddress: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]",
    "set dnsName: host: [*.example.com] matches [www.example.com]",
    "set dnsName: host: [*.example.com] matches [a.example.com]",
    "set dnsName: host: [*.example.com] matches [b.example.com]",
    "set dnsName: host: [*.example.com] matches [xn--rger-koa.example.com]",
    "set dnsName: host: [*.www.example.com] matches [test.www.example.com]",
    "set dnsName: host-no-wildcards: [*.www.example.com] matches [.www.example.com]",
    "set dnsName: host-no-wildcards: [test.www.example.com] matches [.www.example.com]",
    "set dnsName: host: [*.www.example.com] matches [.www.example.com]",
    "set dnsName: host: [*www.example.com] matches [www.example.com]",
    "set dnsName: host: [test.www.example.com] matches [.www.example.com]",
63 64 65
    "set dnsName: host: [*.xn--rger-koa.example.com] matches [www.xn--rger-koa.example.com]",
    "set dnsName: host: [*.xn--bar.com] matches [xn--foo.xn--bar.com]",
    "set dnsName: host: [*.good--example.com] matches [www.good--example.com]",
66 67 68 69 70 71
    "set rfc822Name: email: [postmaster@example.com] does not match [Postmaster@example.com]",
    "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@example.com]",
    "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]",
    "set rfc822Name: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]",
    NULL
};
D
Dr. Stephen Henson 已提交
72 73

static int is_exception(const char *msg)
74 75
{
    const char *const *p;
R
Rich Salz 已提交
76

77 78 79 80 81
    for (p = exceptions; *p; ++p)
        if (strcmp(msg, *p) == 0)
            return 1;
    return 0;
}
D
Dr. Stephen Henson 已提交
82 83

static int set_cn(X509 *crt, ...)
84 85 86 87
{
    int ret = 0;
    X509_NAME *n = NULL;
    va_list ap;
R
Rich Salz 已提交
88

89 90 91 92
    va_start(ap, crt);
    n = X509_NAME_new();
    if (n == NULL)
        goto out;
R
Rich Salz 已提交
93

94 95 96
    while (1) {
        int nid;
        const char *name;
R
Rich Salz 已提交
97

98 99 100 101 102 103 104 105 106 107 108
        nid = va_arg(ap, int);
        if (nid == 0)
            break;
        name = va_arg(ap, const char *);
        if (!X509_NAME_add_entry_by_NID(n, nid, MBSTRING_ASC,
                                        (unsigned char *)name, -1, -1, 1))
            goto out;
    }
    if (!X509_set_subject_name(crt, n))
        goto out;
    ret = 1;
D
Dr. Stephen Henson 已提交
109
 out:
110 111 112 113
    X509_NAME_free(n);
    va_end(ap);
    return ret;
}
D
Dr. Stephen Henson 已提交
114

115
/*-
116
int             X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
D
Dr. Stephen Henson 已提交
117
X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex,
118 119
                        int nid, int crit, ASN1_OCTET_STRING *data);
int             X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
D
Dr. Stephen Henson 已提交
120 121 122
*/

static int set_altname(X509 *crt, ...)
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
{
    int ret = 0;
    GENERAL_NAMES *gens = NULL;
    GENERAL_NAME *gen = NULL;
    ASN1_IA5STRING *ia5 = NULL;
    va_list ap;
    va_start(ap, crt);
    gens = sk_GENERAL_NAME_new_null();
    if (gens == NULL)
        goto out;
    while (1) {
        int type;
        const char *name;
        type = va_arg(ap, int);
        if (type == 0)
            break;
        name = va_arg(ap, const char *);
D
Dr. Stephen Henson 已提交
140

141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
        gen = GENERAL_NAME_new();
        if (gen == NULL)
            goto out;
        ia5 = ASN1_IA5STRING_new();
        if (ia5 == NULL)
            goto out;
        if (!ASN1_STRING_set(ia5, name, -1))
            goto out;
        switch (type) {
        case GEN_EMAIL:
        case GEN_DNS:
            GENERAL_NAME_set0_value(gen, type, ia5);
            ia5 = NULL;
            break;
        default:
            abort();
        }
        sk_GENERAL_NAME_push(gens, gen);
        gen = NULL;
    }
    if (!X509_add1_ext_i2d(crt, NID_subject_alt_name, gens, 0, 0))
        goto out;
    ret = 1;
D
Dr. Stephen Henson 已提交
164
 out:
165 166 167 168 169 170
    ASN1_IA5STRING_free(ia5);
    GENERAL_NAME_free(gen);
    GENERAL_NAMES_free(gens);
    va_end(ap);
    return ret;
}
D
Dr. Stephen Henson 已提交
171 172

static int set_cn1(X509 *crt, const char *name)
173 174 175
{
    return set_cn(crt, NID_commonName, name, 0);
}
D
Dr. Stephen Henson 已提交
176 177

static int set_cn_and_email(X509 *crt, const char *name)
178 179 180 181
{
    return set_cn(crt, NID_commonName, name,
                  NID_pkcs9_emailAddress, "dummy@example.com", 0);
}
D
Dr. Stephen Henson 已提交
182 183

static int set_cn2(X509 *crt, const char *name)
184 185 186 187
{
    return set_cn(crt, NID_commonName, "dummy value",
                  NID_commonName, name, 0);
}
D
Dr. Stephen Henson 已提交
188 189

static int set_cn3(X509 *crt, const char *name)
190 191 192 193
{
    return set_cn(crt, NID_commonName, name,
                  NID_commonName, "dummy value", 0);
}
D
Dr. Stephen Henson 已提交
194 195

static int set_email1(X509 *crt, const char *name)
196 197 198
{
    return set_cn(crt, NID_pkcs9_emailAddress, name, 0);
}
D
Dr. Stephen Henson 已提交
199 200

static int set_email2(X509 *crt, const char *name)
201 202 203 204
{
    return set_cn(crt, NID_pkcs9_emailAddress, "dummy@example.com",
                  NID_pkcs9_emailAddress, name, 0);
}
D
Dr. Stephen Henson 已提交
205 206

static int set_email3(X509 *crt, const char *name)
207 208 209 210
{
    return set_cn(crt, NID_pkcs9_emailAddress, name,
                  NID_pkcs9_emailAddress, "dummy@example.com", 0);
}
D
Dr. Stephen Henson 已提交
211 212

static int set_email_and_cn(X509 *crt, const char *name)
213 214 215 216
{
    return set_cn(crt, NID_pkcs9_emailAddress, name,
                  NID_commonName, "www.example.org", 0);
}
D
Dr. Stephen Henson 已提交
217 218

static int set_altname_dns(X509 *crt, const char *name)
219 220 221
{
    return set_altname(crt, GEN_DNS, name, 0);
}
D
Dr. Stephen Henson 已提交
222 223

static int set_altname_email(X509 *crt, const char *name)
224 225 226
{
    return set_altname(crt, GEN_EMAIL, name, 0);
}
D
Dr. Stephen Henson 已提交
227

228 229 230 231 232 233
struct set_name_fn {
    int (*fn) (X509 *, const char *);
    const char *name;
    int host;
    int email;
};
D
Dr. Stephen Henson 已提交
234

235 236 237 238 239 240 241 242 243 244 245 246
static const struct set_name_fn name_fns[] = {
    {set_cn1, "set CN", 1, 0},
    {set_cn2, "set CN", 1, 0},
    {set_cn3, "set CN", 1, 0},
    {set_cn_and_email, "set CN", 1, 0},
    {set_email1, "set emailAddress", 0, 1},
    {set_email2, "set emailAddress", 0, 1},
    {set_email3, "set emailAddress", 0, 1},
    {set_email_and_cn, "set emailAddress", 0, 1},
    {set_altname_dns, "set dnsName", 1, 0},
    {set_altname_email, "set rfc822Name", 0, 1},
};
D
Dr. Stephen Henson 已提交
247 248

static X509 *make_cert()
249 250
{
    X509 *crt = NULL;
D
Dr. Stephen Henson 已提交
251

R
Rich Salz 已提交
252 253
    if (!TEST_ptr(crt = X509_new()))
        return NULL;
254
    if (!TEST_true(X509_set_version(crt, 2))) {
R
Rich Salz 已提交
255 256 257 258 259
        X509_free(crt);
        return NULL;
    }
    return crt;
}
D
Dr. Stephen Henson 已提交
260

R
Rich Salz 已提交
261 262
static int check_message(const struct set_name_fn *fn, const char *op,
                         const char *nameincert, int match, const char *name)
263 264
{
    char msg[1024];
R
Rich Salz 已提交
265

266
    if (match < 0)
R
Rich Salz 已提交
267
        return 1;
268 269 270 271
    BIO_snprintf(msg, sizeof(msg), "%s: %s: [%s] %s [%s]",
                 fn->name, op, nameincert,
                 match ? "matches" : "does not match", name);
    if (is_exception(msg))
R
Rich Salz 已提交
272 273 274
        return 1;
    TEST_error("%s", msg);
    return 0;
275
}
D
Dr. Stephen Henson 已提交
276

R
Rich Salz 已提交
277
static int run_cert(X509 *crt, const char *nameincert,
278 279 280
                     const struct set_name_fn *fn)
{
    const char *const *pname = names;
R
Rich Salz 已提交
281 282 283
    int failed = 0;

    for (; *pname != NULL; ++pname) {
284 285
        int samename = strcasecmp(nameincert, *pname) == 0;
        size_t namelen = strlen(*pname);
R
Rich Salz 已提交
286
        char *name = OPENSSL_malloc(namelen);
287
        int match, ret;
R
Rich Salz 已提交
288

289
        memcpy(name, *pname, namelen);
D
Dr. Stephen Henson 已提交
290

291
        match = -1;
R
Rich Salz 已提交
292 293 294
        if (!TEST_int_ge(ret = X509_check_host(crt, name, namelen, 0, NULL),
                         0)) {
            failed = 1;
295 296 297 298 299 300 301
        } else if (fn->host) {
            if (ret == 1 && !samename)
                match = 1;
            if (ret == 0 && samename)
                match = 0;
        } else if (ret == 1)
            match = 1;
R
Rich Salz 已提交
302 303
        if (!TEST_true(check_message(fn, "host", nameincert, match, *pname)))
            failed = 1;
D
Dr. Stephen Henson 已提交
304

305
        match = -1;
R
Rich Salz 已提交
306 307 308 309
        if (!TEST_int_ge(ret = X509_check_host(crt, name, namelen,
                                               X509_CHECK_FLAG_NO_WILDCARDS,
                                               NULL), 0)) {
            failed = 1;
310 311 312 313 314 315 316
        } else if (fn->host) {
            if (ret == 1 && !samename)
                match = 1;
            if (ret == 0 && samename)
                match = 0;
        } else if (ret == 1)
            match = 1;
R
Rich Salz 已提交
317 318 319
        if (!TEST_true(check_message(fn, "host-no-wildcards",
                                     nameincert, match, *pname)))
            failed = 1;
D
Dr. Stephen Henson 已提交
320

321
        match = -1;
R
Rich Salz 已提交
322
        ret = X509_check_email(crt, name, namelen, 0);
323 324 325 326 327 328 329
        if (fn->email) {
            if (ret && !samename)
                match = 1;
            if (!ret && samename && strchr(nameincert, '@') != NULL)
                match = 0;
        } else if (ret)
            match = 1;
R
Rich Salz 已提交
330 331 332
        if (!TEST_true(check_message(fn, "email", nameincert, match, *pname)))
            failed = 1;
        OPENSSL_free(name);
333
    }
R
Rich Salz 已提交
334 335

    return failed == 0;
336
}
D
Dr. Stephen Henson 已提交
337

R
Rich Salz 已提交
338
static int call_run_cert(int i)
339
{
R
Rich Salz 已提交
340 341 342 343 344 345 346 347 348 349 350 351
    int failed = 0;
    const struct set_name_fn *pfn = &name_fns[i];
    X509 *crt;
    const char *const *pname;

    TEST_info("%s", pfn->name);
    for (pname = names; *pname != NULL; pname++) {
        if (!TEST_ptr(crt = make_cert())
             || !TEST_true(pfn->fn(crt, *pname))
             || !run_cert(crt, *pname, pfn))
            failed = 1;
        X509_free(crt);
352
    }
R
Rich Salz 已提交
353 354 355 356 357 358
    return failed == 0;
}

void register_tests(void)
{
    ADD_ALL_TESTS(call_run_cert, sizeof(name_fns) / sizeof(name_fns[0]));
359
}