@@ -248,19 +248,28 @@ exports.checkServerIdentity = function checkServerIdentity(hostname, cert) {
248
248
let valid = false ;
249
249
let reason = 'Unknown reason' ;
250
250
251
+ const hasAltNames =
252
+ dnsNames . length > 0 || ips . length > 0 || uriNames . length > 0 ;
253
+
254
+ hostname = unfqdn ( hostname ) ; // Remove trailing dot for error messages.
255
+
251
256
if ( net . isIP ( hostname ) ) {
252
257
valid = ips . includes ( canonicalizeIP ( hostname ) ) ;
253
258
if ( ! valid )
254
259
reason = `IP: ${ hostname } is not in the cert's list: ${ ips . join ( ', ' ) } ` ;
255
260
// TODO(bnoordhuis) Also check URI SANs that are IP addresses.
256
- } else if ( subject ) {
257
- hostname = unfqdn ( hostname ) ; // Remove trailing dot for error messages.
261
+ } else if ( hasAltNames || subject ) {
258
262
const hostParts = splitHost ( hostname ) ;
259
263
const wildcard = ( pattern ) => check ( hostParts , pattern , true ) ;
260
- const noWildcard = ( pattern ) => check ( hostParts , pattern , false ) ;
261
264
262
- // Match against Common Name only if no supported identifiers are present.
263
- if ( dnsNames . length === 0 && ips . length === 0 && uriNames . length === 0 ) {
265
+ if ( hasAltNames ) {
266
+ const noWildcard = ( pattern ) => check ( hostParts , pattern , false ) ;
267
+ valid = dnsNames . some ( wildcard ) || uriNames . some ( noWildcard ) ;
268
+ if ( ! valid )
269
+ reason =
270
+ `Host: ${ hostname } . is not in the cert's altnames: ${ altNames } ` ;
271
+ } else {
272
+ // Match against Common Name only if no supported identifiers exist.
264
273
const cn = subject . CN ;
265
274
266
275
if ( ArrayIsArray ( cn ) )
@@ -270,11 +279,6 @@ exports.checkServerIdentity = function checkServerIdentity(hostname, cert) {
270
279
271
280
if ( ! valid )
272
281
reason = `Host: ${ hostname } . is not cert's CN: ${ cn } ` ;
273
- } else {
274
- valid = dnsNames . some ( wildcard ) || uriNames . some ( noWildcard ) ;
275
- if ( ! valid )
276
- reason =
277
- `Host: ${ hostname } . is not in the cert's altnames: ${ altNames } ` ;
278
282
}
279
283
} else {
280
284
reason = 'Cert is empty' ;
0 commit comments