1 #include <openssl/x509.h>
2 #include <openssl/x509v3.h>
5 static const char *const names[] =
7 "a", "b", ".", "*", "@",
8 ".a", "a.", ".b", "b.", ".*", "*.", "*@", "@*", "a@", "@a", "b@", "..",
10 "*.com", "*com", "*.*.com", "*com", "com*", "*example.com",
11 "*@example.com", "test@*.example.com",
12 "example.com", "www.example.com", "test.www.example.com",
13 "*.example.com", "*.www.example.com", "test.*.example.com", "www.*.com",
14 "example.net", "xn--rger-koa.example.com",
15 "a.example.com", "b.example.com",
16 "postmaster@example.com", "Postmaster@example.com",
17 "postmaster@EXAMPLE.COM",
21 static const char *const exceptions[] =
23 "set CN: host: [*.example.com] does not match [*.example.com]",
24 "set CN: host: [*.example.com] matches [a.example.com]",
25 "set CN: host: [*.example.com] matches [b.example.com]",
26 "set CN: host: [*.example.com] matches [www.example.com]",
27 "set CN: host: [*.example.com] matches [xn--rger-koa.example.com]",
28 "set CN: host: [test.*.example.com] does not match [test.*.example.com]",
29 "set CN: host: [test.*.example.com] matches [test.www.example.com]",
30 "set CN: host: [*.www.example.com] does not match [*.www.example.com]",
31 "set CN: host: [*.www.example.com] matches [test.www.example.com]",
32 "set emailAddress: email: [postmaster@example.com] does not match [Postmaster@example.com]",
33 "set emailAddress: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]",
34 "set emailAddress: email: [Postmaster@example.com] does not match [postmaster@example.com]",
35 "set emailAddress: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]",
36 "set dnsName: host: [*.example.com] matches [www.example.com]",
37 "set dnsName: host: [*.example.com] does not match [*.example.com]",
38 "set dnsName: host: [*.example.com] matches [a.example.com]",
39 "set dnsName: host: [*.example.com] matches [b.example.com]",
40 "set dnsName: host: [*.example.com] matches [xn--rger-koa.example.com]",
41 "set dnsName: host: [*.www.example.com] matches [test.www.example.com]",
42 "set dnsName: host: [*.www.example.com] does not match [*.www.example.com]",
43 "set dnsName: host: [test.*.example.com] matches [test.www.example.com]",
44 "set dnsName: host: [test.*.example.com] does not match [test.*.example.com]",
45 "set rfc822Name: email: [postmaster@example.com] does not match [Postmaster@example.com]",
46 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@example.com]",
47 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]",
48 "set rfc822Name: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]",
52 static int is_exception(const char *msg)
55 for (p = exceptions; *p; ++p)
56 if (strcmp(msg, *p) == 0)
61 static int set_cn(X509 *crt, ...)
73 nid = va_arg(ap, int);
76 name = va_arg(ap, const char *);
77 if (!X509_NAME_add_entry_by_NID(n, nid, MBSTRING_ASC,
78 (unsigned char *)name,
82 if (!X509_set_subject_name(crt, n))
92 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
93 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex,
94 int nid, int crit, ASN1_OCTET_STRING *data);
95 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
98 static int set_altname(X509 *crt, ...)
101 GENERAL_NAMES *gens = NULL;
102 GENERAL_NAME *gen = NULL;
103 ASN1_IA5STRING *ia5 = NULL;
106 gens = sk_GENERAL_NAME_new_null();
112 type = va_arg(ap, int);
115 name = va_arg(ap, const char *);
117 gen = GENERAL_NAME_new();
120 ia5 = ASN1_IA5STRING_new();
123 if (!ASN1_STRING_set(ia5, name, -1))
129 GENERAL_NAME_set0_value(gen, type, ia5);
135 sk_GENERAL_NAME_push(gens, gen);
138 if (!X509_add1_ext_i2d(crt, NID_subject_alt_name, gens, 0, 0))
142 ASN1_IA5STRING_free(ia5);
143 GENERAL_NAME_free(gen);
144 GENERAL_NAMES_free(gens);
149 static int set_cn1(X509 *crt, const char *name)
151 return set_cn(crt, NID_commonName, name, 0);
155 static int set_cn_and_email(X509 *crt, const char *name)
157 return set_cn(crt, NID_commonName, name,
158 NID_pkcs9_emailAddress, "dummy@example.com", 0);
161 static int set_cn2(X509 *crt, const char *name)
163 return set_cn(crt, NID_commonName, "dummy value",
164 NID_commonName, name, 0);
167 static int set_cn3(X509 *crt, const char *name)
169 return set_cn(crt, NID_commonName, name,
170 NID_commonName, "dummy value", 0);
173 static int set_email1(X509 *crt, const char *name)
175 return set_cn(crt, NID_pkcs9_emailAddress, name, 0);
178 static int set_email2(X509 *crt, const char *name)
180 return set_cn(crt, NID_pkcs9_emailAddress, "dummy@example.com",
181 NID_pkcs9_emailAddress, name, 0);
184 static int set_email3(X509 *crt, const char *name)
186 return set_cn(crt, NID_pkcs9_emailAddress, name,
187 NID_pkcs9_emailAddress, "dummy@example.com", 0);
190 static int set_email_and_cn(X509 *crt, const char *name)
192 return set_cn(crt, NID_pkcs9_emailAddress, name,
193 NID_commonName, "www.example.org", 0);
196 static int set_altname_dns(X509 *crt, const char *name)
198 return set_altname(crt, GEN_DNS, name, 0);
201 static int set_altname_email(X509 *crt, const char *name)
203 return set_altname(crt, GEN_EMAIL, name, 0);
208 int (*fn)(X509 *, const char *);
214 static const struct set_name_fn name_fns[] =
216 {set_cn1, "set CN", 1, 0},
217 {set_cn2, "set CN", 1, 0},
218 {set_cn3, "set CN", 1, 0},
219 {set_cn_and_email, "set CN", 1, 0},
220 {set_email1, "set emailAddress", 0, 1},
221 {set_email2, "set emailAddress", 0, 1},
222 {set_email3, "set emailAddress", 0, 1},
223 {set_email_and_cn, "set emailAddress", 0, 1},
224 {set_altname_dns, "set dnsName", 1, 0},
225 {set_altname_email, "set rfc822Name", 0, 1},
229 static X509 *make_cert()
233 X509_NAME *issuer = NULL;
237 if (!X509_set_version(crt, 3))
242 X509_NAME_free(issuer);
248 static void check_message(const struct set_name_fn *fn, const char *op,
249 const char *nameincert, int match, const char *name)
254 snprintf(msg, sizeof(msg), "%s: %s: [%s] %s [%s]",
255 fn->name, op, nameincert,
256 match ? "matches" : "does not match", name);
257 if (is_exception(msg))
263 static void run_cert(X509 *crt, const char *nameincert,
264 const struct set_name_fn *fn)
266 const char *const *pname = names;
269 int samename = strcasecmp(nameincert, *pname) == 0;
270 size_t namelen = strlen(*pname);
271 char *name = malloc(namelen);
273 memcpy(name, *pname, namelen);
275 ret = X509_check_host(crt, (const unsigned char *)name,
280 fprintf(stderr, "internal error in X509_check_host");
285 if (ret == 1 && !samename)
287 if (ret == 0 && samename)
292 check_message(fn, "host", nameincert, match, *pname);
294 ret = X509_check_host(crt, (const unsigned char *)name,
295 namelen, X509_CHECK_FLAG_NO_WILDCARDS);
299 fprintf(stderr, "internal error in X509_check_host");
304 if (ret == 1 && !samename)
306 if (ret == 0 && samename)
311 check_message(fn, "host-no-wildcards",
312 nameincert, match, *pname);
314 ret = X509_check_email(crt, (const unsigned char *)name,
319 if (ret && !samename)
321 if (!ret && samename && strchr(nameincert, '@') != NULL)
326 check_message(fn, "email", nameincert, match, *pname);
335 const struct set_name_fn *pfn = name_fns;
337 const char *const *pname = names;
340 X509 *crt = make_cert();
343 fprintf(stderr, "make_cert failed\n");
346 if (!pfn->fn(crt, *pname))
348 fprintf(stderr, "X509 name setting failed\n");
351 run_cert(crt, *pname, pfn);
357 return errors > 0 ? 1 : 0;