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
|
// Test that including intermediate certificates
// in the certificate key file will be sent to the remote.
(function() {
'use strict';
load('jstests/ssl/libs/ssl_helpers.js');
// server-intermediate-ca was signed by ca.pem, not trusted-ca.pem
const VALID_CA = 'jstests/libs/ca.pem';
const INVALID_CA = 'jstests/libs/trusted-ca.pem';
function runTest(inbound, outbound) {
const mongod = MongoRunner.runMongod({
sslMode: 'requireSSL',
sslAllowConnectionsWithoutCertificates: '',
sslPEMKeyFile: 'jstests/libs/server-intermediate-ca.pem',
sslCAFile: outbound,
sslClusterCAFile: inbound,
});
assert(mongod);
assert.commandWorked(mongod.getDB('admin').runCommand('serverStatus'));
assert.eq(mongod.getDB('admin').system.users.find({}).toArray(), []);
MongoRunner.stopMongod(mongod);
}
// Normal mode, we have a valid CA being presented for outbound and inbound.
runTest(VALID_CA, VALID_CA);
// Alternate CA mode, only the inbound CA is valid.
runTest(VALID_CA, INVALID_CA);
// Validate we can make a connection from the shell with the intermediate certs
{
const mongod = MongoRunner.runMongod({
sslMode: 'requireSSL',
sslAllowConnectionsWithoutCertificates: '',
sslPEMKeyFile: 'jstests/libs/server.pem',
sslCAFile: VALID_CA,
});
assert(mongod);
assert.eq(mongod.getDB('admin').system.users.find({}).toArray(), []);
const smoke = runMongoProgram("mongo",
"--host",
"localhost",
"--port",
mongod.port,
"--ssl",
"--sslCAFile",
VALID_CA,
"--sslPEMKeyFile",
"jstests/libs/server-intermediate-ca.pem",
"--eval",
"1;");
assert.eq(smoke, 0, "Could not connect with intermediate certificate");
MongoRunner.stopMongod(mongod);
}
// Validate we can make a chain with intermediate certs in ca file instead of key file
if (determineSSLProvider() === 'apple') {
print("Skipping test as this configuration is not supported on OSX");
return;
}
// Validate the server can build a certificate chain when the chain is split across the CA and PEM
// files.
{
const mongod = MongoRunner.runMongod({
sslMode: 'requireSSL',
sslAllowConnectionsWithoutCertificates: '',
sslPEMKeyFile: 'jstests/libs/server-intermediate-leaf.pem',
sslCAFile: 'jstests/libs/intermediate-ca-chain.pem',
});
assert(mongod);
assert.eq(mongod.getDB('admin').system.users.find({}).toArray(), []);
const smoke = runMongoProgram("mongo",
"--host",
"localhost",
"--port",
mongod.port,
"--ssl",
"--sslCAFile",
VALID_CA,
"--sslPEMKeyFile",
"jstests/libs/client.pem",
"--eval",
"1;");
assert.eq(smoke, 0, "Could not connect with intermediate certificate");
MongoRunner.stopMongod(mongod);
}
})();
|