Skip to content

Commit 67dcf70

Browse files
authored
feat(NODE-6773): add multiple collinfo option (#70)
1 parent 62e7a59 commit 67dcf70

File tree

4 files changed

+22
-20
lines changed

4 files changed

+22
-20
lines changed

.github/scripts/libmongocrypt.mjs

+11-16
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ import events from 'node:events';
88
import path from 'node:path';
99
import https from 'node:https';
1010
import stream from 'node:stream/promises';
11-
import { buildLibmongocryptDownloadUrl, getLibmongocryptPrebuildName, resolveRoot, run } from './utils.mjs';
11+
import {
12+
buildLibmongocryptDownloadUrl,
13+
getLibmongocryptPrebuildName,
14+
resolveRoot,
15+
run
16+
} from './utils.mjs';
1217

1318
async function parseArguments() {
1419
const pkg = JSON.parse(await fs.readFile(resolveRoot('package.json'), 'utf8'));
@@ -72,19 +77,11 @@ export async function buildLibMongoCrypt(libmongocryptRoot, nodeDepsRoot, option
7277

7378
const CMAKE_FLAGS = toCLIFlags({
7479
/**
75-
* We provide crypto hooks from Node.js binding to openssl (so disable system crypto)
76-
* TODO: NODE-5455
80+
* We provide crypto hooks from Node.js binding to openssl (so disable **system** crypto)
7781
*
78-
* One thing that is not obvious from the build instructions for libmongocrypt
79-
* and the Node.js bindings is that the Node.js driver uses libmongocrypt in
80-
* DISABLE_NATIVE_CRYPTO aka nocrypto mode, that is, instead of using native
81-
* system libraries for crypto operations, it provides callbacks to libmongocrypt
82-
* which, in the Node.js addon case, call JS functions that in turn call built-in
83-
* Node.js crypto methods.
84-
*
85-
* That’s way more convoluted than it needs to be, considering that we always
86-
* have a copy of OpenSSL available directly, but for now it seems to make sense
87-
* to stick with what the Node.js addon does here.
82+
* Node.js ships with openssl statically compiled into the runtime.
83+
* We provide hooks to libmongocrypt that uses Node.js copy of openssl
84+
* instead of the operating system's copy so we build without linking to the system crypto.
8885
*/
8986
DDISABLE_NATIVE_CRYPTO: '1',
9087
/** A consistent name for the output "library" directory */
@@ -185,9 +182,7 @@ async function buildBindings(args, pkg) {
185182

186183
gypDefines = gypDefines.trim();
187184
const prebuildOptions =
188-
gypDefines.length > 0
189-
? { env: { ...process.env, GYP_DEFINES: gypDefines } }
190-
: undefined;
185+
gypDefines.length > 0 ? { env: { ...process.env, GYP_DEFINES: gypDefines } } : undefined;
191186

192187
await run('npm', ['run', 'prebuild'], prebuildOptions);
193188
// Compile Typescript

addon/mongocrypt.cc

+5
Original file line numberDiff line numberDiff line change
@@ -577,6 +577,11 @@ MongoCrypt::MongoCrypt(const CallbackInfo& info) : ObjectWrap(info) {
577577

578578
mongocrypt_setopt_retry_kms(mongo_crypt(), true);
579579

580+
if (options.Get("enableMultipleCollinfo").ToBoolean()) {
581+
/** TODO(NODE-6793): remove this option and have it always set in the next major */
582+
mongocrypt_setopt_enable_multiple_collinfo(mongo_crypt());
583+
}
584+
580585
// Initialize after all options are set.
581586
if (!mongocrypt_init(mongo_crypt())) {
582587
throw TypeError::New(Env(), errorStringFromStatus(mongo_crypt()));

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
"license": "Apache-2.0",
3737
"gypfile": true,
38-
"mongodb:libmongocrypt": "1.12.0",
38+
"mongodb:libmongocrypt": "1.13.0",
3939
"dependencies": {
4040
"node-addon-api": "^4.3.0",
4141
"prebuild-install": "^7.1.3"
@@ -96,4 +96,4 @@
9696
"moduleResolution": "node"
9797
}
9898
}
99-
}
99+
}

src/index.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ export interface MongoCryptContext {
5454
finishKMSRequests(): void;
5555
finalize(): Buffer;
5656

57-
readonly status: MongoCryptStatus;
58-
readonly state: number;
57+
get status(): MongoCryptStatus;
58+
get state(): number;
5959
}
6060

6161
type MongoCryptConstructorOptions = {
@@ -67,6 +67,8 @@ type MongoCryptConstructorOptions = {
6767
cryptSharedLibSearchPaths?: string[];
6868
cryptSharedLibPath?: string;
6969
bypassQueryAnalysis?: boolean;
70+
/** TODO(NODE-6793): remove this option and have it always set in the next major */
71+
enableMultipleCollinfo?: boolean;
7072
};
7173

7274
export interface MongoCryptConstructor {

0 commit comments

Comments
 (0)