0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

crypto: use domains for any callback-taking method

This adds domains coverage for pdbkdf2, pseudoRandomBytes, and randomBytes.
All others should be covered by event emitters.

Fixes #5801.

Reviewed-By: Timothy J Fontaine <tjfontaine@gmail.com>
This commit is contained in:
Chris Dickinson 2014-09-16 10:14:24 -07:00 committed by Timothy J Fontaine
parent 0664ddc093
commit 6e689ece46
3 changed files with 61 additions and 0 deletions

View File

@ -3984,6 +3984,8 @@ Handle<Value> PBKDF2(const Arguments& args) {
if (args[4]->IsFunction()) {
req->obj = Persistent<Object>::New(Object::New());
req->obj->Set(String::New("ondone"), args[4]);
SetActiveDomain(req->obj);
uv_queue_work(uv_default_loop(),
&req->work_req,
EIO_PBKDF2,
@ -4111,6 +4113,7 @@ Handle<Value> RandomBytes(const Arguments& args) {
if (args[1]->IsFunction()) {
req->obj_ = Persistent<Object>::New(Object::New());
req->obj_->Set(String::New("ondone"), args[1]);
SetActiveDomain(req->obj_);
uv_queue_work(uv_default_loop(),
&req->work_req_,

View File

@ -26,6 +26,20 @@
#include "string_bytes.h"
namespace node {
// defined in node.cc
extern v8::Persistent<v8::String> process_symbol;
extern v8::Persistent<v8::String> domain_symbol;
inline void SetActiveDomain(v8::Persistent<v8::Object> obj) {
assert(!process_symbol.IsEmpty());
assert(!domain_symbol.IsEmpty());
v8::Local<v8::Value> domain = v8::Context::GetCurrent()
->Global()
->Get(process_symbol)
->ToObject()
->Get(domain_symbol);
obj->Set(domain_symbol, domain);
}
class Utf8Value {
public:

View File

@ -0,0 +1,44 @@
// Copyright Joyent, Inc. and other Node contributors.
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to permit
// persons to whom the Software is furnished to do so, subject to the
// following conditions:
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
var crypto = require('crypto');
var domain = require('domain');
var assert = require('assert');
var d = domain.create();
var expect = ['pbkdf2', 'randomBytes', 'pseudoRandomBytes']
d.on('error', function (e) {
assert.equal(e.message, expect.shift());
});
d.run(function () {
crypto.pbkdf2('a', 'b', 1, 8, function () {
throw new Error('pbkdf2');
});
crypto.randomBytes(4, function () {
throw new Error('randomBytes');
});
crypto.pseudoRandomBytes(4, function () {
throw new Error('pseudoRandomBytes');
});
});