From adfd20b6fd90b2c068a6d34886370b5e78175988 Mon Sep 17 00:00:00 2001 From: Yuval Brik Date: Sun, 30 Aug 2015 00:27:14 +0300 Subject: [PATCH] tls: TLSSocket options default isServer false Upon creating a TLSSocket object, set the default isServer option to false Updated tls docs and added test-tls-socket-default-options PR-URL: https://github.com/nodejs/node/pull/2614 Reviewed-By: Fedor Indutny --- doc/api/tls.markdown | 7 ++- lib/_tls_wrap.js | 7 ++- .../test-tls-socket-default-options.js | 56 +++++++++++++++++++ 3 files changed, 65 insertions(+), 5 deletions(-) create mode 100644 test/parallel/test-tls-socket-default-options.js diff --git a/doc/api/tls.markdown b/doc/api/tls.markdown index e846869e67d0be..4907c65328cab0 100644 --- a/doc/api/tls.markdown +++ b/doc/api/tls.markdown @@ -454,18 +454,19 @@ Or Wrapper for instance of [net.Socket][], replaces internal socket read/write routines to perform transparent encryption/decryption of incoming/outgoing data. -## new tls.TLSSocket(socket, options) +## new tls.TLSSocket(socket[, options]) Construct a new TLSSocket object from existing TCP socket. `socket` is an instance of [net.Socket][] -`options` is an object that might contain following properties: +`options` is an optional object that might contain following properties: - `secureContext`: An optional TLS context object from `tls.createSecureContext( ... )` - - `isServer`: If true - TLS socket will be instantiated in server-mode + - `isServer`: If `true` - TLS socket will be instantiated in server-mode. + Default: `false` - `server`: An optional [net.Server][] instance diff --git a/lib/_tls_wrap.js b/lib/_tls_wrap.js index 6a1c295ce31034..f0273471772137 100644 --- a/lib/_tls_wrap.js +++ b/lib/_tls_wrap.js @@ -228,7 +228,10 @@ function initRead(tls, wrapped) { */ function TLSSocket(socket, options) { - this._tlsOptions = options; + if (options === undefined) + this._tlsOptions = {}; + else + this._tlsOptions = options; this._secureEstablished = false; this._securePending = false; this._newSessionPending = false; @@ -321,7 +324,7 @@ TLSSocket.prototype._wrapHandle = function(wrap) { tls.createSecureContext(); res = tls_wrap.wrap(handle._externalStream, context.context, - options.isServer); + !!options.isServer); res._parent = handle; res._parentWrap = wrap; res._secureContext = context; diff --git a/test/parallel/test-tls-socket-default-options.js b/test/parallel/test-tls-socket-default-options.js new file mode 100644 index 00000000000000..3af03a0ba9269a --- /dev/null +++ b/test/parallel/test-tls-socket-default-options.js @@ -0,0 +1,56 @@ +'use strict'; +const common = require('../common'); +const assert = require('assert'); + +if (!common.hasCrypto) { + console.log('1..0 # Skipped: missing crypto'); + return; +} +const tls = require('tls'); + +const fs = require('fs'); +const net = require('net'); + +const sent = 'hello world'; + +const serverOptions = { + isServer: true, + key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'), + cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem') +}; + +function testSocketOptions(socket, socketOptions) { + let received = ''; + const server = tls.createServer(serverOptions, function(s) { + s.on('data', function(chunk) { + received += chunk; + }); + + s.on('end', function() { + server.close(); + s.destroy(); + assert.equal(received, sent); + setImmediate(runTests); + }); + }).listen(common.PORT, function() { + let c = new tls.TLSSocket(socket, socketOptions); + c.connect(common.PORT, function() { + c.end(sent); + }); + }); + +} + +const testArgs = [ + [], + [undefined, {}] +]; + +let n = 0; +function runTests() { + if (n++ < testArgs.length) { + testSocketOptions.apply(null, testArgs[n]); + } +} + +runTests();