]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/crypto/X509_check_host.pod
Update API to use (char *) for email addresses and hostnames
[thirdparty/openssl.git] / doc / crypto / X509_check_host.pod
CommitLineData
d88926f1
DSH
1=pod
2
3=head1 NAME
4
5X509_check_host, X509_check_email, X509_check_ip, X509_check_ip_asc - X.509 certificate matching
6
7=head1 SYNOPSIS
8
9 #include <openssl/x509.h>
10
297c67fc
VD
11 int X509_check_host(X509 *, const char *name, size_t namelen,
12 unsigned int flags, char **peername);
13 int X509_check_email(X509 *, const char *address, size_t addresslen,
14 unsigned int flags);
15 int X509_check_ip(X509 *, const unsigned char *address, size_t addresslen,
16 unsigned int flags);
d88926f1
DSH
17 int X509_check_ip_asc(X509 *, const char *address, unsigned int flags);
18
19=head1 DESCRIPTION
20
21The certificate matching functions are intended to be called to check
22if a certificate matches a given host name, email address, or IP
23address. The validity of the certificate and its trust level has to
24be checked by other means.
25
26X509_check_host() checks if the certificate matches the specified
27host name, which must be encoded in the preferred name syntax
d241b804
VD
28described in section 3.5 of RFC 1034. Per section 6.4.2 of RFC 6125,
29B<name> values representing international domain names must be given
30in A-label form. The B<namelen> argument must be the number of
31characters in the name string or zero in which case the length is
32calculated with strlen(name). When B<name> starts with a dot (e.g
33".example.com"), it will be matched by a certificate valid for any
34sub-domain of B<name>, (see also B<X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS>
ced3d915
VD
35below). When the certificate is matched and B<peername> is not
36NULL a pointer to a copy of the matching hostname or CommonName
37from the peer certificate is stored at the address passed in
38B<peername>. The application is responsible for freeing the peername
39via OPENSSL_free() when it is no longer needed. Applications are
40advised to use X509_VERIFY_PARAM_set1_host() in preference to
41explicitly calling L<X509_check_host(3)>, hostname checks are out
42of scope with the DANE-EE(3) certificate usage, and the internal
43check will be suppressed as appropriate when DANE support is added
44to OpenSSL.
d88926f1
DSH
45
46X509_check_email() checks if the certificate matches the specified
47email address. Only the mailbox syntax of RFC 822 is supported,
48comments are not allowed, and no attempt is made to normalize quoted
49characters. The B<addresslen> argument must be the number of
50characters in the address string. The B<namelen> argument must be
51the number of characters in the name string or zero in which case the
52length is calculated with strlen(name).
53
54X509_check_ip() checks if the certificate matches a specified IPv4 or
55IPv6 address. The B<address> array is in binary format, in network
56byte order. The length is either 4 (IPv4) or 16 (IPv6). Only
57explicitly marked addresses in the certificates are considered; IP
58addresses stored in DNS names and Common Names are ignored.
59
60X509_check_ip_asc() is similar, except that the NUL-terminated
61string B<address> is first converted to the internal representation.
62
63The B<flags> argument is usually 0. It can be the bitwise OR of the
397a8e74
VD
64flags:
65
66=over 4
67
68=item B<X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT>,
69
70=item B<X509_CHECK_FLAG_NO_WILDCARDS>,
71
72=item B<X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS>,
73
74=item B<X509_CHECK_FLAG_MULTI_LABEL_WILDCARDS>.
75
a09e4d24
VD
76=item B<X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS>.
77
397a8e74 78=back
d88926f1
DSH
79
80The B<X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT> flag causes the function
397a8e74
VD
81to consider the subject DN even if the certificate contains at least
82one subject alternative name of the right type (DNS name or email
83address as appropriate); the default is to ignore the subject DN
84when at least one corresponding subject alternative names is present.
d88926f1 85
397a8e74 86If set, B<X509_CHECK_FLAG_NO_WILDCARDS> disables wildcard
d88926f1
DSH
87expansion; this only applies to B<X509_check_host>.
88
397a8e74
VD
89If set, B<X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS> suppresses support
90for "*" as wildcard pattern in labels that have a prefix or suffix,
91such as: "www*" or "*www"; this only aplies to B<X509_check_host>.
92
a09e4d24
VD
93If set, B<X509_CHECK_FLAG_MULTI_LABEL_WILDCARDS> allows a "*" that
94constitutes the complete label of a DNS name (e.g. "*.example.com")
95to match more than one label in B<name>; this flag only applies
96to B<X509_check_host>.
97
98If set, B<X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS> restricts B<name>
99values which start with ".", that would otherwise match any sub-domain
100in the peer certificate, to only match direct child sub-domains.
101Thus, for instance, with this flag set a B<name> of ".example.com"
102would match a peer certificate with a DNS name of "www.example.com",
103but would not match a peer certificate with a DNS name of
104"www.sub.example.com"; this flag only applies to B<X509_check_host>.
397a8e74 105
d88926f1
DSH
106=head1 RETURN VALUES
107
108The functions return 1 for a successful match, 0 for a failed match
109and -1 for an internal error: typically a memory allocation failure.
110
111X509_check_ip_asc() can also return -2 if the IP address string is malformed.
112
113=head1 SEE ALSO
114
d241b804
VD
115L<SSL_get_verify_result(3)|SSL_get_verify_result(3)>,
116L<X509_VERIFY_PARAM_set1_host(3)|X509_VERIFY_PARAM_set1_host(3)>,
8abffa4a 117L<X509_VERIFY_PARAM_add1_host(3)|X509_VERIFY_PARAM_add1_host(3)>,
d241b804
VD
118L<X509_VERIFY_PARAM_set1_email(3)|X509_VERIFY_PARAM_set1_email(3)>,
119L<X509_VERIFY_PARAM_set1_ip(3)|X509_VERIFY_PARAM_set1_ip(3)>,
120L<X509_VERIFY_PARAM_set1_ipasc(3)|X509_VERIFY_PARAM_set1_ipasc(3)>
d88926f1
DSH
121
122=head1 HISTORY
123
124These functions were added in OpenSSL 1.1.0.
125
126=cut