-
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.
build: export openssl symbols on windows
Export symbols from the bundled openssl for add-ons to link against. Fixes: nodejs/node-v0.x-archive#4051 PR-URL: #6274 Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
1 parent
b829a49
commit 15a32dd
Showing
5 changed files
with
152 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,35 @@ | ||
#include "node.h" | ||
#include "../../../src/util.h" | ||
#include "../../../src/util-inl.h" | ||
|
||
#include <assert.h> | ||
#include <openssl/rand.h> | ||
|
||
namespace { | ||
|
||
inline void RandomBytes(const v8::FunctionCallbackInfo<v8::Value>& info) { | ||
assert(info[0]->IsArrayBufferView()); | ||
auto view = info[0].As<v8::ArrayBufferView>(); | ||
auto byte_offset = view->ByteOffset(); | ||
auto byte_length = view->ByteLength(); | ||
assert(view->HasBuffer()); | ||
auto buffer = view->Buffer(); | ||
auto contents = buffer->GetContents(); | ||
auto data = static_cast<unsigned char*>(contents.Data()) + byte_offset; | ||
assert(RAND_poll()); | ||
auto rval = RAND_bytes(data, static_cast<int>(byte_length)); | ||
info.GetReturnValue().Set(rval > 0); | ||
} | ||
|
||
inline void Initialize(v8::Local<v8::Object> exports, | ||
v8::Local<v8::Value> module, | ||
v8::Local<v8::Context> context) { | ||
auto isolate = context->GetIsolate(); | ||
auto key = v8::String::NewFromUtf8(isolate, "randomBytes"); | ||
auto value = v8::FunctionTemplate::New(isolate, RandomBytes)->GetFunction(); | ||
assert(exports->Set(context, key, value).IsJust()); | ||
} | ||
|
||
} // anonymous namespace | ||
|
||
NODE_MODULE_CONTEXT_AWARE(binding, Initialize) |
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,9 @@ | ||
{ | ||
'targets': [ | ||
{ | ||
'target_name': 'binding', | ||
'sources': ['binding.cc'], | ||
'include_dirs': ['../../../deps/openssl/openssl/include'], | ||
}, | ||
] | ||
} |
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,8 @@ | ||
'use strict'; | ||
|
||
require('../../common'); | ||
const assert = require('assert'); | ||
const binding = require('./build/Release/binding'); | ||
const bytes = new Uint8Array(1024); | ||
assert(binding.randomBytes(bytes)); | ||
assert(bytes.reduce((v, a) => v + a) > 0); |
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,44 @@ | ||
#!/usr/bin/env python | ||
|
||
from __future__ import print_function | ||
import re | ||
import sys | ||
|
||
categories = [] | ||
defines = [] | ||
excludes = [] | ||
|
||
if __name__ == '__main__': | ||
out = sys.stdout | ||
filenames = sys.argv[1:] | ||
|
||
while filenames and filenames[0].startswith('-'): | ||
option = filenames.pop(0) | ||
if option == '-o': out = open(filenames.pop(0), 'w') | ||
elif option.startswith('-C'): categories += option[2:].split(',') | ||
elif option.startswith('-D'): defines += option[2:].split(',') | ||
elif option.startswith('-X'): excludes += option[2:].split(',') | ||
|
||
excludes = map(re.compile, excludes) | ||
exported = [] | ||
|
||
for filename in filenames: | ||
for line in open(filename).readlines(): | ||
name, _, meta, _ = re.split('\s+', line) | ||
if any(map(lambda p: p.match(name), excludes)): continue | ||
meta = meta.split(':') | ||
assert meta[0] in ('EXIST', 'NOEXIST') | ||
assert meta[2] in ('FUNCTION', 'VARIABLE') | ||
if meta[0] != 'EXIST': continue | ||
if meta[2] != 'FUNCTION': continue | ||
def satisfy(expr, rules): | ||
def test(expr): | ||
if expr.startswith('!'): return not expr[1:] in rules | ||
return expr == '' or expr in rules | ||
return all(map(test, expr.split(','))) | ||
if not satisfy(meta[1], defines): continue | ||
if not satisfy(meta[3], categories): continue | ||
exported.append(name) | ||
|
||
print('EXPORTS', file=out) | ||
for name in sorted(exported): print(' ', name, file=out) |