Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 8fcef69

Browse files
committed
fix(wire-protocol): don't allow override of slaveOk
The wire protocol refactor accidentally allowed the `slaveOk` bit to be set in layers above the common `command` method. This change reverts that, and always explicitly sets the value based on the current read preference.
1 parent 94a6066 commit 8fcef69

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

lib/wireprotocol/2_6_support.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,16 @@ class WireProtocol {
130130
const commandOptions = Object.assign(
131131
{
132132
command: true,
133-
slaveOk: readPreference.slaveOk(),
134133
numberToSkip: 0,
135134
numberToReturn: -1,
136135
checkKeys: false
137136
},
138137
options
139138
);
140139

140+
// This value is not overridable
141+
commandOptions.slaveOk = readPreference.slaveOk();
142+
141143
try {
142144
const query = new Query(bson, `${databaseNamespace(ns)}.$cmd`, finalCmd, commandOptions);
143145
pool.write(query, commandOptions, callback);

lib/wireprotocol/3_2_support.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,16 @@ class WireProtocol {
171171
const commandOptions = Object.assign(
172172
{
173173
command: true,
174-
slaveOk: readPreference.slaveOk(),
175174
numberToSkip: 0,
176175
numberToReturn: -1,
177176
checkKeys: false
178177
},
179178
options
180179
);
181180

181+
// This value is not overridable
182+
commandOptions.slaveOk = readPreference.slaveOk();
183+
182184
try {
183185
const query = new Query(bson, `${databaseNamespace(ns)}.$cmd`, finalCmd, commandOptions);
184186
pool.write(query, commandOptions, callback);

test/tests/unit/pool_tests.js

+30
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const expect = require('chai').expect;
44
const mock = require('mongodb-mock-server');
55
const Server = require('../../../lib/topologies/server');
66
const MongoWriteConcernError = require('../../../lib/error').MongoWriteConcernError;
7+
const sinon = require('sinon');
78

89
const test = {};
910
describe('Pool (unit)', function() {
@@ -47,4 +48,33 @@ describe('Pool (unit)', function() {
4748

4849
client.connect();
4950
});
51+
52+
it('should not allow overriding `slaveOk` when connected to a mongos', function(done) {
53+
test.server.setMessageHandler(request => {
54+
const doc = request.document;
55+
if (doc.ismaster) {
56+
request.reply(Object.assign({ msg: 'isdbgrid' }, mock.DEFAULT_ISMASTER));
57+
} else if (doc.insert) {
58+
request.reply({ ok: 1 });
59+
}
60+
});
61+
62+
const client = new Server(test.server.address());
63+
client.on('error', done);
64+
client.once('connect', () => {
65+
const poolWrite = sinon.spy(client.s.pool, 'write');
66+
67+
client.insert('fake.ns', { a: 1 }, { slaveOk: true }, err => {
68+
expect(err).to.not.exist;
69+
70+
const query = poolWrite.getCalls()[0].args[0];
71+
expect(query.slaveOk).to.be.false;
72+
73+
client.s.pool.write.restore();
74+
done();
75+
});
76+
});
77+
78+
client.connect();
79+
});
5080
});

0 commit comments

Comments
 (0)