-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https: evict cached sessions on error
Instead of using the same session over and over, evict it when the socket emits error. This could be used as a mitigation of #3692, until OpenSSL fix will be merged/released. See: #3692 PR-URL: #4982 Reviewed-By: Evan Lucas <[email protected]> Reviewed-By: Shigeki Ohtsu <[email protected]>
- Loading branch information
Showing
2 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
|
||
if (!common.hasCrypto) { | ||
console.log('1..0 # Skipped: missing crypto'); | ||
return; | ||
} | ||
|
||
const assert = require('assert'); | ||
const https = require('https'); | ||
const fs = require('fs'); | ||
const constants = require('constants'); | ||
|
||
const options = { | ||
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'), | ||
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem'), | ||
secureOptions: constants.SSL_OP_NO_TICKET | ||
}; | ||
|
||
// Create TLS1.2 server | ||
https.createServer(options, function(req, res) { | ||
res.end('ohai'); | ||
}).listen(common.PORT, function() { | ||
first(this); | ||
}); | ||
|
||
// Do request and let agent cache the session | ||
function first(server) { | ||
const req = https.request({ | ||
port: common.PORT, | ||
rejectUnauthorized: false | ||
}, function(res) { | ||
res.resume(); | ||
|
||
server.close(function() { | ||
faultyServer(); | ||
}); | ||
}); | ||
req.end(); | ||
} | ||
|
||
// Create TLS1 server | ||
function faultyServer() { | ||
options.secureProtocol = 'TLSv1_method'; | ||
https.createServer(options, function(req, res) { | ||
res.end('hello faulty'); | ||
}).listen(common.PORT, function() { | ||
second(this); | ||
}); | ||
} | ||
|
||
// Attempt to request using cached session | ||
function second(server, session) { | ||
const req = https.request({ | ||
port: common.PORT, | ||
rejectUnauthorized: false | ||
}, function(res) { | ||
res.resume(); | ||
}); | ||
|
||
// Let it fail | ||
req.on('error', common.mustCall(function(err) { | ||
assert(/wrong version number/.test(err.message)); | ||
|
||
req.on('close', function() { | ||
third(server); | ||
}); | ||
})); | ||
req.end(); | ||
} | ||
|
||
// Try on more time - session should be evicted! | ||
function third(server) { | ||
const req = https.request({ | ||
port: common.PORT, | ||
rejectUnauthorized: false | ||
}, function(res) { | ||
res.resume(); | ||
assert(!req.socket.isSessionReused()); | ||
server.close(); | ||
}); | ||
req.on('error', function(err) { | ||
// never called | ||
assert(false); | ||
}); | ||
req.end(); | ||
} |