-
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.
tls: emit errors on close whilst async action
When loading session, OCSP response, SNI, always check that the `self._handle` is present. If it is not - the socket was closed - and we should emit the error instead of throwing an uncaught exception. Fix: nodejs/node-v0.x-archive#8780 Fix: #1696 PR-URL: #1702 Reviewed-By: Trevor Norris <[email protected]>
- Loading branch information
Showing
2 changed files
with
88 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,73 @@ | ||
'use strict'; | ||
|
||
var common = require('../common'); | ||
|
||
var assert = require('assert'); | ||
var path = require('path'); | ||
var fs = require('fs'); | ||
var constants = require('constants'); | ||
|
||
if (!common.hasCrypto) { | ||
console.log('1..0 # Skipped: missing crypto'); | ||
process.exit(); | ||
} | ||
|
||
var tls = require('tls'); | ||
|
||
var options = { | ||
secureOptions: constants.SSL_OP_NO_TICKET, | ||
key: fs.readFileSync(path.join(common.fixturesDir, 'test_key.pem')), | ||
cert: fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem')) | ||
}; | ||
|
||
var server = tls.createServer(options, function(c) { | ||
}); | ||
|
||
var sessionCb = null; | ||
var client = null; | ||
|
||
server.on('newSession', function(key, session, done) { | ||
done(); | ||
}); | ||
|
||
server.on('resumeSession', function(id, cb) { | ||
sessionCb = cb; | ||
|
||
next(); | ||
}); | ||
|
||
server.listen(1443, function() { | ||
var clientOpts = { | ||
port: 1443, | ||
rejectUnauthorized: false, | ||
session: false | ||
}; | ||
|
||
var s1 = tls.connect(clientOpts, function() { | ||
clientOpts.session = s1.getSession(); | ||
console.log('1st secure'); | ||
|
||
s1.destroy(); | ||
var s2 = tls.connect(clientOpts, function(s) { | ||
console.log('2nd secure'); | ||
|
||
s2.destroy(); | ||
}).on('connect', function() { | ||
console.log('2nd connected'); | ||
client = s2; | ||
|
||
next(); | ||
}); | ||
}); | ||
}); | ||
|
||
function next() { | ||
if (!client || !sessionCb) | ||
return; | ||
|
||
client.destroy(); | ||
setTimeout(function() { | ||
sessionCb(); | ||
server.close(); | ||
}, 100); | ||
} |
@indutny
cb
is undefined here. This just came up in my linter with theno-undef
rule enabled.