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
|
// Check that rotation works for the CRL
(function() {
"use strict";
load('jstests/ssl/libs/ssl_helpers.js');
if (determineSSLProvider() === "apple") {
return;
}
const dbPath = MongoRunner.toRealDir("$dataDir/cluster_x509_rotate_test/");
mkdir(dbPath);
copyCertificateFile("jstests/libs/crl.pem", dbPath + "/crl-test.pem");
const mongod = MongoRunner.runMongod({
sslMode: "requireSSL",
sslPEMKeyFile: "jstests/libs/server.pem",
sslCAFile: "jstests/libs/ca.pem",
sslCRLFile: dbPath + "/crl-test.pem"
});
const host = "localhost:" + mongod.port;
// Make sure that client-revoked can connect at first
let out = runMongoProgram("mongo",
"--host",
host,
"--ssl",
"--sslPEMKeyFile",
"jstests/libs/client_revoked.pem",
"--sslCAFile",
"jstests/libs/ca.pem",
"--eval",
";");
assert.eq(out, 0, "Initial mongo invocation failed");
// Rotate in new CRL
copyCertificateFile("jstests/libs/crl_client_revoked.pem", dbPath + "/crl-test.pem");
assert.commandWorked(mongod.adminCommand({rotateCertificates: 1}));
// Make sure client-revoked can't connect
out = runMongoProgram("mongo",
"--host",
host,
"--ssl",
"--sslPEMKeyFile",
"jstests/libs/client_revoked.pem",
"--sslCAFile",
"jstests/libs/ca.pem",
"--eval",
";");
assert.neq(out, 0, "Mongo invocation did not fail");
// Make sure client can still connect
out = runMongoProgram("mongo",
"--host",
host,
"--ssl",
"--sslPEMKeyFile",
"jstests/libs/client.pem",
"--sslCAFile",
"jstests/libs/ca.pem",
"--eval",
";");
assert.eq(out, 0, "Mongo invocation failed");
MongoRunner.stopMongod(mongod);
}());
|