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: [test.*.example.com] does not match [test.*.example.com]",
28 "set CN: host: [test.*.example.com] matches [test.www.example.com]",
29 "set CN: host: [*.www.example.com] does not match [*.www.example.com]",
30 "set CN: host: [*.www.example.com] matches [test.www.example.com]",
31 "set emailAddress: email: [postmaster@example.com] does not match [Postmaster@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 dnsName: host: [*.example.com] matches [www.example.com]",
36 "set dnsName: host: [*.example.com] does not match [*.example.com]",
37 "set dnsName: host: [*.example.com] matches [a.example.com]",
38 "set dnsName: host: [*.example.com] matches [b.example.com]",
39 "set dnsName: host: [*.www.example.com] matches [test.www.example.com]",
40 "set dnsName: host: [*.www.example.com] does not match [*.www.example.com]",
41 "set dnsName: host: [test.*.example.com] matches [test.www.example.com]",
42 "set dnsName: host: [test.*.example.com] does not match [test.*.example.com]",
43 "set rfc822Name: email: [postmaster@example.com] does not match [Postmaster@example.com]",
44 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@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]",
50 static int is_exception(const char *msg)
53 for (p = exceptions; *p; ++p)
54 if (strcmp(msg, *p) == 0)
59 static int set_cn(X509 *crt, ...)
71 nid = va_arg(ap, int);
74 name = va_arg(ap, const char *);
75 if (!X509_NAME_add_entry_by_NID(n, nid, MBSTRING_ASC,
76 (unsigned char *)name,
80 if (!X509_set_subject_name(crt, n))
90 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
91 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex,
92 int nid, int crit, ASN1_OCTET_STRING *data);
93 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
96 static int set_altname(X509 *crt, ...)
99 GENERAL_NAMES *gens = NULL;
100 GENERAL_NAME *gen = NULL;
101 ASN1_IA5STRING *ia5 = NULL;
104 gens = sk_GENERAL_NAME_new_null();
110 type = va_arg(ap, int);
113 name = va_arg(ap, const char *);
115 gen = GENERAL_NAME_new();
118 ia5 = ASN1_IA5STRING_new();
121 if (!ASN1_STRING_set(ia5, name, -1))
127 GENERAL_NAME_set0_value(gen, type, ia5);
133 sk_GENERAL_NAME_push(gens, gen);
136 if (!X509_add1_ext_i2d(crt, NID_subject_alt_name, gens, 0, 0))
140 ASN1_IA5STRING_free(ia5);
141 GENERAL_NAME_free(gen);
142 GENERAL_NAMES_free(gens);
147 static int set_cn1(X509 *crt, const char *name)
149 return set_cn(crt, NID_commonName, name, 0);
153 static int set_cn_and_email(X509 *crt, const char *name)
155 return set_cn(crt, NID_commonName, name,
156 NID_pkcs9_emailAddress, "dummy@example.com", 0);
159 static int set_cn2(X509 *crt, const char *name)
161 return set_cn(crt, NID_commonName, "dummy value",
162 NID_commonName, name, 0);
165 static int set_cn3(X509 *crt, const char *name)
167 return set_cn(crt, NID_commonName, name,
168 NID_commonName, "dummy value", 0);
171 static int set_email1(X509 *crt, const char *name)
173 return set_cn(crt, NID_pkcs9_emailAddress, name, 0);
176 static int set_email2(X509 *crt, const char *name)
178 return set_cn(crt, NID_pkcs9_emailAddress, "dummy@example.com",
179 NID_pkcs9_emailAddress, name, 0);
182 static int set_email3(X509 *crt, const char *name)
184 return set_cn(crt, NID_pkcs9_emailAddress, name,
185 NID_pkcs9_emailAddress, "dummy@example.com", 0);
188 static int set_email_and_cn(X509 *crt, const char *name)
190 return set_cn(crt, NID_pkcs9_emailAddress, name,
191 NID_commonName, "www.example.org", 0);
194 static int set_altname_dns(X509 *crt, const char *name)
196 return set_altname(crt, GEN_DNS, name, 0);
199 static int set_altname_email(X509 *crt, const char *name)
201 return set_altname(crt, GEN_EMAIL, name, 0);
206 int (*fn)(X509 *, const char *);
212 static const struct set_name_fn name_fns[] =
214 {set_cn1, "set CN", 1, 0},
215 {set_cn2, "set CN", 1, 0},
216 {set_cn3, "set CN", 1, 0},
217 {set_cn_and_email, "set CN", 1, 0},
218 {set_email1, "set emailAddress", 0, 1},
219 {set_email2, "set emailAddress", 0, 1},
220 {set_email3, "set emailAddress", 0, 1},
221 {set_email_and_cn, "set emailAddress", 0, 1},
222 {set_altname_dns, "set dnsName", 1, 0},
223 {set_altname_email, "set rfc822Name", 0, 1},
227 static X509 *make_cert()
231 X509_NAME *issuer = NULL;
235 if (!X509_set_version(crt, 3))
240 X509_NAME_free(issuer);
246 static void check_message(const struct set_name_fn *fn, const char *op,
247 const char *nameincert, int match, const char *name)
252 snprintf(msg, sizeof(msg), "%s: %s: [%s] %s [%s]",
253 fn->name, op, nameincert,
254 match ? "matches" : "does not match", name);
255 if (is_exception(msg))
261 static void run_cert(X509 *crt, const char *nameincert,
262 const struct set_name_fn *fn)
264 const char *const *pname = names;
267 int samename = strcasecmp(nameincert, *pname) == 0;
268 size_t namelen = strlen(*pname);
269 char *name = malloc(namelen);
271 memcpy(name, *pname, namelen);
273 ret = X509_check_host(crt, (const unsigned char *)name,
278 if (ret && !samename)
280 if (!ret && samename)
285 check_message(fn, "host", nameincert, match, *pname);
287 ret = X509_check_host(crt, (const unsigned char *)name,
288 namelen, X509_CHECK_FLAG_NO_WILDCARDS);
292 if (ret && !samename)
294 if (!ret && samename)
299 check_message(fn, "host-no-wildcards",
300 nameincert, match, *pname);
302 ret = X509_check_email(crt, (const unsigned char *)name,
307 if (ret && !samename)
309 if (!ret && samename && strchr(nameincert, '@') != NULL)
314 check_message(fn, "email", nameincert, match, *pname);
323 const struct set_name_fn *pfn = name_fns;
325 const char *const *pname = names;
328 X509 *crt = make_cert();
331 fprintf(stderr, "make_cert failed\n");
334 if (!pfn->fn(crt, *pname))
336 fprintf(stderr, "X509 name setting failed\n");
339 run_cert(crt, *pname, pfn);
345 return errors > 0 ? 1 : 0;