summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/tests/unit/test_cert_eku.js
blob: 5a7e28de16c3c0980da997b8522f3eb8941ce3d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
// -*- indent-tabs-mode: nil; js-indent-level: 2 -*-
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

// Tests that the extended key usage extension is properly processed by the
// platform when verifying certificates. There are already comprehensive tests
// in mozilla::pkix itself, but these tests serve as integration tests to ensure
// that the cases we're particularly concerned about are correctly handled.

"use strict";

do_get_profile(); // must be called before getting nsIX509CertDB
const certdb = Cc["@mozilla.org/security/x509certdb;1"]
                 .getService(Ci.nsIX509CertDB);

function certFromFile(certName) {
  return constructCertFromFile(`test_cert_eku/${certName}.pem`);
}

function loadCertWithTrust(certName, trustString) {
  addCertFromFile(certdb, `test_cert_eku/${certName}.pem`, trustString);
}

function checkEndEntity(cert, expectedResult) {
  checkCertErrorGeneric(certdb, cert, expectedResult, certificateUsageSSLServer);
}

function checkCertOn25August2016(cert, expectedResult) {
  // (new Date("2016-08-25T00:00:00Z")).getTime() / 1000
  const VALIDATION_TIME = 1472083200;
  checkCertErrorGenericAtTime(certdb, cert, expectedResult,
                              certificateUsageSSLServer, VALIDATION_TIME);
}

function run_test() {
  loadCertWithTrust("ca", "CTu,,");
  // end-entity has id-kp-serverAuth => success
  checkEndEntity(certFromFile("ee-SA"), PRErrorCodeSuccess);
  // end-entity has id-kp-serverAuth => success
  checkEndEntity(certFromFile("ee-SA-CA"), PRErrorCodeSuccess);
  // end-entity has extended key usage, but id-kp-serverAuth is not present =>
  // failure
  checkEndEntity(certFromFile("ee-CA"), SEC_ERROR_INADEQUATE_CERT_TYPE);
  // end-entity has id-kp-serverAuth => success
  checkEndEntity(certFromFile("ee-SA-nsSGC"), PRErrorCodeSuccess);

  // end-entity has extended key usage, but id-kp-serverAuth is not present =>
  // failure (in particular, Netscape Server Gated Crypto (also known as
  // Netscape Step Up) is not an acceptable substitute for end-entity
  // certificates).
  // Verify this for all Netscape Step Up policy configurations.
  // 0 = "always accept nsSGC in place of serverAuth for CA certificates"
  Services.prefs.setIntPref("security.pki.netscape_step_up_policy", 0);
  checkEndEntity(certFromFile("ee-nsSGC"), SEC_ERROR_INADEQUATE_CERT_TYPE);
  // 1 = "accept nsSGC before 23 August 2016"
  Services.prefs.setIntPref("security.pki.netscape_step_up_policy", 1);
  checkEndEntity(certFromFile("ee-nsSGC"), SEC_ERROR_INADEQUATE_CERT_TYPE);
  // 2 = "accept nsSGC before 23 August 2015"
  Services.prefs.setIntPref("security.pki.netscape_step_up_policy", 2);
  checkEndEntity(certFromFile("ee-nsSGC"), SEC_ERROR_INADEQUATE_CERT_TYPE);
  // 3 = "never accept nsSGC"
  Services.prefs.setIntPref("security.pki.netscape_step_up_policy", 3);
  checkEndEntity(certFromFile("ee-nsSGC"), SEC_ERROR_INADEQUATE_CERT_TYPE);

  // end-entity has id-kp-OCSPSigning, which is not acceptable for end-entity
  // certificates being verified as TLS server certificates => failure
  checkEndEntity(certFromFile("ee-SA-OCSP"), SEC_ERROR_INADEQUATE_CERT_TYPE);

  // intermediate has id-kp-serverAuth => success
  loadCertWithTrust("int-SA", ",,");
  checkEndEntity(certFromFile("ee-int-SA"), PRErrorCodeSuccess);
  // intermediate has id-kp-serverAuth => success
  loadCertWithTrust("int-SA-CA", ",,");
  checkEndEntity(certFromFile("ee-int-SA-CA"), PRErrorCodeSuccess);
  // intermediate has extended key usage, but id-kp-serverAuth is not present
  // => failure
  loadCertWithTrust("int-CA", ",,");
  checkEndEntity(certFromFile("ee-int-CA"), SEC_ERROR_INADEQUATE_CERT_TYPE);
  // intermediate has id-kp-serverAuth => success
  loadCertWithTrust("int-SA-nsSGC", ",,");
  checkEndEntity(certFromFile("ee-int-SA-nsSGC"), PRErrorCodeSuccess);

  // Intermediate has Netscape Server Gated Crypto. Success will depend on the
  // Netscape Step Up policy configuration and the notBefore property of the
  // intermediate.
  loadCertWithTrust("int-nsSGC-recent", ",,");
  loadCertWithTrust("int-nsSGC-old", ",,");
  loadCertWithTrust("int-nsSGC-older", ",,");
  // 0 = "always accept nsSGC in place of serverAuth for CA certificates"
  Services.prefs.setIntPref("security.pki.netscape_step_up_policy", 0);
  do_print("Netscape Step Up policy: always accept");
  checkCertOn25August2016(certFromFile("ee-int-nsSGC-recent"),
                          PRErrorCodeSuccess);
  checkCertOn25August2016(certFromFile("ee-int-nsSGC-old"),
                          PRErrorCodeSuccess);
  checkCertOn25August2016(certFromFile("ee-int-nsSGC-older"),
                          PRErrorCodeSuccess);
  // 1 = "accept nsSGC before 23 August 2016"
  do_print("Netscape Step Up policy: accept before 23 August 2016");
  Services.prefs.setIntPref("security.pki.netscape_step_up_policy", 1);
  checkCertOn25August2016(certFromFile("ee-int-nsSGC-recent"),
                          SEC_ERROR_INADEQUATE_CERT_TYPE);
  checkCertOn25August2016(certFromFile("ee-int-nsSGC-old"),
                          PRErrorCodeSuccess);
  checkCertOn25August2016(certFromFile("ee-int-nsSGC-older"),
                          PRErrorCodeSuccess);
  // 2 = "accept nsSGC before 23 August 2015"
  do_print("Netscape Step Up policy: accept before 23 August 2015");
  Services.prefs.setIntPref("security.pki.netscape_step_up_policy", 2);
  checkCertOn25August2016(certFromFile("ee-int-nsSGC-recent"),
                          SEC_ERROR_INADEQUATE_CERT_TYPE);
  checkCertOn25August2016(certFromFile("ee-int-nsSGC-old"),
                          SEC_ERROR_INADEQUATE_CERT_TYPE);
  checkCertOn25August2016(certFromFile("ee-int-nsSGC-older"),
                          PRErrorCodeSuccess);
  // 3 = "never accept nsSGC"
  do_print("Netscape Step Up policy: never accept");
  Services.prefs.setIntPref("security.pki.netscape_step_up_policy", 3);
  checkCertOn25August2016(certFromFile("ee-int-nsSGC-recent"),
                          SEC_ERROR_INADEQUATE_CERT_TYPE);
  checkCertOn25August2016(certFromFile("ee-int-nsSGC-old"),
                          SEC_ERROR_INADEQUATE_CERT_TYPE);
  checkCertOn25August2016(certFromFile("ee-int-nsSGC-older"),
                          SEC_ERROR_INADEQUATE_CERT_TYPE);

  // intermediate has id-kp-OCSPSigning, which is acceptable for CA
  // certificates => success
  loadCertWithTrust("int-SA-OCSP", ",,");
  checkEndEntity(certFromFile("ee-int-SA-OCSP"), PRErrorCodeSuccess);
}