blob: c9d8112d8671a9bd959a1cdf85b181d5d8965994 [file] [log] [blame]
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -07001/***************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
7 *
Alex Deymo486467e2017-12-19 19:04:07 +01008 * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -07009 *
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
Alex Deymo8f1a2142016-06-28 14:49:26 -070012 * are also available at https://curl.haxx.se/docs/copyright.html.
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070013 *
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ***************************************************************************/
22
23#include "curl_setup.h"
24
Elliott Hughes82be86d2017-09-20 17:00:17 -070025#if defined(USE_OPENSSL) \
26 || defined(USE_AXTLS) \
27 || defined(USE_GSKIT) \
Elliott Hughes1ef06ba2018-05-30 15:43:58 -070028 || defined(USE_SCHANNEL)
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070029/* these backends use functions from this file */
30
31#ifdef HAVE_NETINET_IN_H
32#include <netinet/in.h>
33#endif
Elliott Hughes0128fe42018-02-27 14:57:55 -080034#ifdef HAVE_NETINET_IN6_H
35#include <netinet/in6.h>
36#endif
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070037
38#include "hostcheck.h"
Elliott Hughescee03382017-06-23 12:17:18 -070039#include "strcase.h"
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070040#include "inet_pton.h"
41
42#include "curl_memory.h"
43/* The last #include file should be: */
44#include "memdebug.h"
45
46/*
47 * Match a hostname against a wildcard pattern.
48 * E.g.
49 * "foo.host.com" matches "*.host.com".
50 *
51 * We use the matching rule described in RFC6125, section 6.4.3.
Alex Deymo8f1a2142016-06-28 14:49:26 -070052 * https://tools.ietf.org/html/rfc6125#section-6.4.3
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070053 *
54 * In addition: ignore trailing dots in the host names and wildcards, so that
55 * the names are used normalized. This is what the browsers do.
56 *
57 * Do not allow wildcard matching on IP numbers. There are apparently
58 * certificates being used with an IP address in the CN field, thus making no
59 * apparent distinction between a name and an IP. We need to detect the use of
60 * an IP address and not wildcard match on such names.
61 *
62 * NOTE: hostmatch() gets called with copied buffers so that it can modify the
63 * contents at will.
64 */
65
66static int hostmatch(char *hostname, char *pattern)
67{
68 const char *pattern_label_end, *pattern_wildcard, *hostname_label_end;
69 int wildcard_enabled;
70 size_t prefixlen, suffixlen;
71 struct in_addr ignored;
72#ifdef ENABLE_IPV6
73 struct sockaddr_in6 si6;
74#endif
75
76 /* normalize pattern and hostname by stripping off trailing dots */
77 size_t len = strlen(hostname);
78 if(hostname[len-1]=='.')
Alex Deymo486467e2017-12-19 19:04:07 +010079 hostname[len-1] = 0;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070080 len = strlen(pattern);
81 if(pattern[len-1]=='.')
Alex Deymo486467e2017-12-19 19:04:07 +010082 pattern[len-1] = 0;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070083
84 pattern_wildcard = strchr(pattern, '*');
85 if(pattern_wildcard == NULL)
Elliott Hughescee03382017-06-23 12:17:18 -070086 return strcasecompare(pattern, hostname) ?
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070087 CURL_HOST_MATCH : CURL_HOST_NOMATCH;
88
89 /* detect IP address as hostname and fail the match if so */
90 if(Curl_inet_pton(AF_INET, hostname, &ignored) > 0)
91 return CURL_HOST_NOMATCH;
92#ifdef ENABLE_IPV6
Elliott Hughes82be86d2017-09-20 17:00:17 -070093 if(Curl_inet_pton(AF_INET6, hostname, &si6.sin6_addr) > 0)
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070094 return CURL_HOST_NOMATCH;
95#endif
96
97 /* We require at least 2 dots in pattern to avoid too wide wildcard
98 match. */
99 wildcard_enabled = 1;
100 pattern_label_end = strchr(pattern, '.');
Alex Deymo486467e2017-12-19 19:04:07 +0100101 if(pattern_label_end == NULL || strchr(pattern_label_end + 1, '.') == NULL ||
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700102 pattern_wildcard > pattern_label_end ||
Elliott Hughescee03382017-06-23 12:17:18 -0700103 strncasecompare(pattern, "xn--", 4)) {
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700104 wildcard_enabled = 0;
105 }
106 if(!wildcard_enabled)
Elliott Hughescee03382017-06-23 12:17:18 -0700107 return strcasecompare(pattern, hostname) ?
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700108 CURL_HOST_MATCH : CURL_HOST_NOMATCH;
109
110 hostname_label_end = strchr(hostname, '.');
111 if(hostname_label_end == NULL ||
Elliott Hughescee03382017-06-23 12:17:18 -0700112 !strcasecompare(pattern_label_end, hostname_label_end))
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700113 return CURL_HOST_NOMATCH;
114
115 /* The wildcard must match at least one character, so the left-most
116 label of the hostname is at least as large as the left-most label
117 of the pattern. */
118 if(hostname_label_end - hostname < pattern_label_end - pattern)
119 return CURL_HOST_NOMATCH;
120
121 prefixlen = pattern_wildcard - pattern;
Alex Deymo486467e2017-12-19 19:04:07 +0100122 suffixlen = pattern_label_end - (pattern_wildcard + 1);
Elliott Hughescee03382017-06-23 12:17:18 -0700123 return strncasecompare(pattern, hostname, prefixlen) &&
Alex Deymo486467e2017-12-19 19:04:07 +0100124 strncasecompare(pattern_wildcard + 1, hostname_label_end - suffixlen,
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700125 suffixlen) ?
126 CURL_HOST_MATCH : CURL_HOST_NOMATCH;
127}
128
129int Curl_cert_hostcheck(const char *match_pattern, const char *hostname)
130{
131 char *matchp;
132 char *hostp;
133 int res = 0;
134 if(!match_pattern || !*match_pattern ||
135 !hostname || !*hostname) /* sanity check */
136 ;
137 else {
138 matchp = strdup(match_pattern);
139 if(matchp) {
140 hostp = strdup(hostname);
141 if(hostp) {
142 if(hostmatch(hostp, matchp) == CURL_HOST_MATCH)
Alex Deymo486467e2017-12-19 19:04:07 +0100143 res = 1;
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -0700144 free(hostp);
145 }
146 free(matchp);
147 }
148 }
149
150 return res;
151}
152
Elliott Hughes82be86d2017-09-20 17:00:17 -0700153#endif /* OPENSSL, AXTLS, GSKIT or schannel+wince */