summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheahuychou Mao <cheahuychou.mao@mongodb.com>2020-04-09 03:03:41 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-04-14 15:05:47 +0000
commit20364840b8f1af16917e4c23c1b5f5efd8b352f8 (patch)
treed24fd0e190c78831d27718c19988db7cfd2596a7
parentfafc69977611a6ee306f3e8dd2b8bad065556d29 (diff)
downloadmongo-r4.2.6-rc0.tar.gz
SERVER-47436 Make shards validate shardKey in dataSize commandr4.2.6-rc0r4.2.6
(cherry picked from commit 59e005fea0e1ca575083ded8c02c518048fb8af0)
-rw-r--r--buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards.yml2
-rw-r--r--jstests/sharding/mongos_dataSize.js113
-rw-r--r--jstests/sharding/mongos_dataSize_test.js14
-rw-r--r--src/mongo/db/commands/dbcommands.cpp26
-rw-r--r--src/mongo/s/commands/cluster_data_size_cmd.cpp25
5 files changed, 139 insertions, 41 deletions
diff --git a/buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards.yml b/buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards.yml
index cf792981219..266f193a29c 100644
--- a/buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards.yml
+++ b/buildscripts/resmokeconfig/suites/sharding_last_stable_mongos_and_mixed_shards.yml
@@ -149,6 +149,8 @@ selector:
- jstests/sharding/server_status.js
# Enable after SERVER-31083 is backported and available on 4.2 and 4.0 binaries
- jstests/sharding/enable_sharding_with_primary.js
+ # SERVER-47534: Unblacklist mongos_dataSize.js from sharding_last_stable_mongos_and_mixed_shards suite.
+ - jstests/sharding/mongos_dataSize.js
# Enable when SERVER-44733 is backported
- jstests/sharding/change_streams_update_lookup_shard_metadata_missing.js
# Enable if SERVER-43310 is backported to 4.0
diff --git a/jstests/sharding/mongos_dataSize.js b/jstests/sharding/mongos_dataSize.js
new file mode 100644
index 00000000000..f29e8ce6dfd
--- /dev/null
+++ b/jstests/sharding/mongos_dataSize.js
@@ -0,0 +1,113 @@
+/*
+ * Tests the dataSize command on mongos.
+ */
+(function() {
+'use strict';
+
+const kDbName = "foo";
+const kCollName = "bar";
+const kNs = kDbName + "." + kCollName;
+const kNumDocs = 100;
+
+/*
+ * Returns the global min and max key for the given key pattern.
+ */
+function getGlobalMinMaxKey(keyPattern) {
+ let globalMin = {};
+ let globalMax = {};
+ for (let field in keyPattern) {
+ globalMin[field] = MinKey;
+ globalMax[field] = MaxKey;
+ }
+ return {globalMin, globalMax};
+}
+
+/*
+ * Runs a dataSize command with the given key pattern on the given connection, and
+ * asserts that command works and that the returned numObjects is equal to expectedNumObjects.
+ */
+function assertDataSizeCmdWorked(conn, keyPattern, expectedNumObjects) {
+ let res = assert.commandWorked(conn.adminCommand({dataSize: kNs, keyPattern: keyPattern}));
+ assert.eq(res.numObjects, expectedNumObjects);
+
+ const {globalMin, globalMax} = getGlobalMinMaxKey(keyPattern);
+ res = assert.commandWorked(
+ conn.adminCommand({dataSize: kNs, keyPattern: keyPattern, min: globalMin, max: globalMax}));
+ assert.eq(res.numObjects, expectedNumObjects);
+}
+
+/*
+ * Runs a dataSize command with the given key pattern on the given connection, and
+ * asserts that command failed with BadValue error.
+ */
+function assertDataSizeCmdFailedWithBadValue(conn, keyPattern) {
+ assert.commandFailedWithCode(conn.adminCommand({dataSize: kNs, keyPattern: keyPattern}),
+ ErrorCodes.BadValue);
+}
+
+/*
+ * Runs dataSize commands on the given connection. Asserts the command fails if run with an invalid
+ * namespace or with the min and max as given by each range in invalidRanges. Asserts that the
+ * command succeeds if run with valid min and max and returns the expected numObjects.
+ */
+function testDataSizeCmd(conn, keyPattern, invalidRanges, numObjects) {
+ assert.commandFailedWithCode(conn.adminCommand({dataSize: kCollName}),
+ ErrorCodes.InvalidNamespace);
+
+ for (const {min, max, errorCode} of invalidRanges) {
+ const cmdObj = {dataSize: kNs, keyPattern: keyPattern, min: min, max: max};
+ assert.commandFailedWithCode(conn.adminCommand(cmdObj), errorCode);
+ }
+
+ assertDataSizeCmdWorked(conn, {}, numObjects);
+ assertDataSizeCmdWorked(conn, keyPattern, numObjects);
+}
+
+const st = new ShardingTest({mongos: 3, shards: 2});
+assert.commandWorked(st.s.adminCommand({enableSharding: kDbName}));
+st.ensurePrimaryShard(kDbName, st.shard0.shardName);
+
+const shardKey1 = {
+ x: 1
+};
+jsTest.log(`Sharding the collection with key ${tojson(shardKey1)}`);
+assert.commandWorked(st.s0.adminCommand({shardCollection: kNs, key: shardKey1}));
+
+let bulk = st.s0.getCollection(kNs).initializeUnorderedBulkOp();
+for (let i = 0; i < kNumDocs; ++i) {
+ bulk.insert({_id: i, x: i, y: -i});
+}
+assert.commandWorked(bulk.execute());
+
+jsTest.log("Verify that keyPattern and key range validation works");
+const invalidRanges1 = [
+ {min: {y: MinKey}, max: {y: MaxKey}, errorCode: ErrorCodes.BadValue},
+ {min: {x: MinKey, y: MinKey}, max: {x: MaxKey, y: MaxKey}, errorCode: ErrorCodes.BadValue},
+ // The command does not throw any particular error when only one of min or max is specified.
+ {min: {}, max: {x: MaxKey}, errorCode: ErrorCodes.UnknownError},
+ {min: {x: MinKey}, max: {}, errorCode: ErrorCodes.UnknownError},
+];
+testDataSizeCmd(st.s0, shardKey1, invalidRanges1, kNumDocs);
+testDataSizeCmd(st.s1, shardKey1, invalidRanges1, kNumDocs);
+testDataSizeCmd(st.s2, shardKey1, invalidRanges1, kNumDocs);
+
+jsTest.log("Dropping the collection");
+st.s0.getCollection(kNs).drop();
+
+const shardKey2 = {
+ y: 1
+};
+jsTest.log(`Resharding the collection with key ${tojson(shardKey2)}`);
+assert.commandWorked(st.s0.adminCommand({shardCollection: kNs, key: shardKey2}));
+
+jsTest.log("Verify that validation occurs on shards not on mongos");
+// If validation occurs on mongos, the command would fail with BadValue as st.s1 is stale so
+// it thinks that shardKey1 is the shard key.
+assertDataSizeCmdWorked(st.s1, shardKey2, 0);
+
+// If validation occurs on mongos, the command would succeed as st.s2 is stale so it thinks
+// that shardKey1 is the shard key.
+assertDataSizeCmdFailedWithBadValue(st.s2, shardKey1);
+
+st.stop();
+})();
diff --git a/jstests/sharding/mongos_dataSize_test.js b/jstests/sharding/mongos_dataSize_test.js
deleted file mode 100644
index 9dc9ceac78f..00000000000
--- a/jstests/sharding/mongos_dataSize_test.js
+++ /dev/null
@@ -1,14 +0,0 @@
-// This tests the command dataSize on sharded clusters to ensure that they can use the command.
-
-(function() {
-'use strict';
-
-let s = new ShardingTest({shards: 2, mongos: 1});
-let db = s.getDB("test");
-assert.commandWorked(s.s0.adminCommand({enableSharding: "test"}));
-assert.commandWorked(s.s0.adminCommand({shardcollection: "test.foo", key: {num: 1}}));
-assert.commandWorked(s.getPrimaryShard("test").getDB("admin").runCommand({datasize: "test.foo"}));
-assert.commandFailedWithCode(s.getPrimaryShard("test").getDB("admin").runCommand({datasize: "foo"}),
- ErrorCodes.InvalidNamespace);
-s.stop();
-})();
diff --git a/src/mongo/db/commands/dbcommands.cpp b/src/mongo/db/commands/dbcommands.cpp
index 24d2b4aaea7..63e72e2a3f0 100644
--- a/src/mongo/db/commands/dbcommands.cpp
+++ b/src/mongo/db/commands/dbcommands.cpp
@@ -455,9 +455,31 @@ public:
BSONObj keyPattern = jsobj.getObjectField("keyPattern");
bool estimate = jsobj["estimate"].trueValue();
- AutoGetCollectionForReadCommand ctx(opCtx, NamespaceString(ns));
-
+ const NamespaceString nss(ns);
+ AutoGetCollectionForReadCommand ctx(opCtx, nss);
Collection* collection = ctx.getCollection();
+
+ const auto metadata = CollectionShardingState::get(opCtx, nss)->getCurrentMetadata();
+
+ if (metadata->isSharded()) {
+ const ShardKeyPattern shardKeyPattern(metadata->getKeyPattern());
+ uassert(ErrorCodes::BadValue,
+ "keyPattern must be empty or must be an object that equals the shard key",
+ keyPattern.isEmpty() ||
+ (SimpleBSONObjComparator::kInstance.evaluate(shardKeyPattern.toBSON() ==
+ keyPattern)));
+
+ uassert(ErrorCodes::BadValue,
+ str::stream() << "min value " << min << " does not have shard key",
+ min.isEmpty() || shardKeyPattern.isShardKey(min));
+ min = shardKeyPattern.normalizeShardKey(min);
+
+ uassert(ErrorCodes::BadValue,
+ str::stream() << "max value " << max << " does not have shard key",
+ max.isEmpty() || shardKeyPattern.isShardKey(max));
+ max = shardKeyPattern.normalizeShardKey(max);
+ }
+
long long numRecords = 0;
if (collection) {
numRecords = collection->numRecords(opCtx);
diff --git a/src/mongo/s/commands/cluster_data_size_cmd.cpp b/src/mongo/s/commands/cluster_data_size_cmd.cpp
index c8d410e1634..6cf3670bfbc 100644
--- a/src/mongo/s/commands/cluster_data_size_cmd.cpp
+++ b/src/mongo/s/commands/cluster_data_size_cmd.cpp
@@ -76,31 +76,6 @@ public:
auto routingInfo =
uassertStatusOK(Grid::get(opCtx)->catalogCache()->getCollectionRoutingInfo(opCtx, nss));
- const auto cm = routingInfo.cm();
-
- BSONObj min = cmdObj.getObjectField("min");
- BSONObj max = cmdObj.getObjectField("max");
-
- if (cm) {
- auto keyPattern = cmdObj["keyPattern"];
-
- uassert(ErrorCodes::BadValue,
- "keyPattern must be empty or must be an object that equals the shard key",
- !keyPattern ||
- (keyPattern.type() == Object &&
- SimpleBSONObjComparator::kInstance.evaluate(
- cm->getShardKeyPattern().toBSON() == keyPattern.Obj())));
-
- uassert(ErrorCodes::BadValue,
- str::stream() << "min value " << min << " does not have shard key",
- cm->getShardKeyPattern().isShardKey(min));
- min = cm->getShardKeyPattern().normalizeShardKey(min);
-
- uassert(ErrorCodes::BadValue,
- str::stream() << "max value " << max << " does not have shard key",
- cm->getShardKeyPattern().isShardKey(max));
- max = cm->getShardKeyPattern().normalizeShardKey(max);
- }
auto shardResults = scatterGatherVersionedTargetByRoutingTable(
opCtx,