/** * Copyright (C) 2018-present MongoDB, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the Server Side Public License, version 1, * as published by MongoDB, Inc. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * Server Side Public License for more details. * * You should have received a copy of the Server Side Public License * along with this program. If not, see * . * * As a special exception, the copyright holders give permission to link the * code of portions of this program with the OpenSSL library under certain * conditions as described in each individual source file and distribute * linked combinations including the program with the OpenSSL library. You * must comply with the Server Side Public License in all respects for * all of the code used other than as permitted herein. If you modify file(s) * with this exception, you may extend this exception to your version of the * file(s), but you are not obligated to do so. If you do not wish to do so, * delete this exception statement from your version. If you delete this * exception statement from all source files in the program, then also delete * it in the license file. */ /** * Connect to a Mongo database as a database, from C++. */ #define MONGO_LOGV2_DEFAULT_COMPONENT ::mongo::logv2::LogComponent::kNetwork #include "mongo/platform/basic.h" #include "mongo/client/dbclient_base.h" #include #include #include "mongo/base/status.h" #include "mongo/base/status_with.h" #include "mongo/bson/util/bson_extract.h" #include "mongo/bson/util/builder.h" #include "mongo/client/authenticate.h" #include "mongo/client/client_api_version_parameters_gen.h" #include "mongo/client/constants.h" #include "mongo/client/dbclient_cursor.h" #include "mongo/config.h" #include "mongo/db/api_parameters_gen.h" #include "mongo/db/auth/security_token.h" #include "mongo/db/commands.h" #include "mongo/db/json.h" #include "mongo/db/namespace_string.h" #include "mongo/db/query/kill_cursors_gen.h" #include "mongo/db/wire_version.h" #include "mongo/executor/remote_command_request.h" #include "mongo/executor/remote_command_response.h" #include "mongo/logv2/log.h" #include "mongo/platform/mutex.h" #include "mongo/rpc/factory.h" #include "mongo/rpc/get_status_from_command_result.h" #include "mongo/rpc/metadata.h" #include "mongo/rpc/metadata/client_metadata.h" #include "mongo/rpc/reply_interface.h" #include "mongo/s/stale_exception.h" #include "mongo/util/assert_util.h" #include "mongo/util/concurrency/mutex.h" #include "mongo/util/debug_util.h" #include "mongo/util/net/ssl_manager.h" #include "mongo/util/net/ssl_options.h" namespace mongo { using std::endl; using std::list; using std::string; using std::stringstream; using std::unique_ptr; using std::vector; using executor::RemoteCommandRequest; using executor::RemoteCommandResponse; AtomicWord DBClientBase::ConnectionIdSequence; void (*DBClientBase::withConnection_do_not_use)(std::string host, std::function) = nullptr; /* --- dbclientcommands --- */ bool DBClientBase::isOk(const BSONObj& o) { return o["ok"].trueValue(); } bool DBClientBase::isNotPrimaryErrorString(const BSONElement& e) { return e.type() == String && (str::contains(e.valueStringData(), "not primary") || str::contains(e.valueStringData(), "not master")); } void DBClientBase::setRequestMetadataWriter(rpc::RequestMetadataWriter writer) { _metadataWriter = std::move(writer); } const rpc::RequestMetadataWriter& DBClientBase::getRequestMetadataWriter() { return _metadataWriter; } void DBClientBase::setReplyMetadataReader(rpc::ReplyMetadataReader reader) { _metadataReader = std::move(reader); } const rpc::ReplyMetadataReader& DBClientBase::getReplyMetadataReader() { return _metadataReader; } rpc::UniqueReply DBClientBase::parseCommandReplyMessage(const std::string& host, const Message& replyMsg) { auto commandReply = rpc::makeReply(&replyMsg); if (_metadataReader) { auto opCtx = haveClient() ? cc().getOperationContext() : nullptr; uassertStatusOK(_metadataReader(opCtx, commandReply->getCommandReply(), host)); } // StaleConfig is thrown because clients acting as routers handle the exception at a higher // level. Routing clients only expect StaleConfig from shards, so the exception should not be // thrown when connected to a mongos, which allows StaleConfig to be returned to clients that // connect to a mongos with DBClient, e.g. the shell. if (!isMongos()) { auto status = getStatusFromCommandResult(commandReply->getCommandReply()); if (status == ErrorCodes::StaleConfig) { uassertStatusOK(status.withContext("stale config in runCommand")); } } return rpc::UniqueReply(replyMsg, std::move(commandReply)); } namespace { void appendMetadata(OperationContext* opCtx, const rpc::RequestMetadataWriter& metadataWriter, const ClientAPIVersionParameters& apiParameters, OpMsgRequest& request) { if (!metadataWriter && !apiParameters.getVersion()) { return; } BSONObjBuilder bob(std::move(request.body)); if (metadataWriter) { uassertStatusOK(metadataWriter(opCtx, &bob)); } if (apiParameters.getVersion()) { bool hasVersion = false, hasStrict = false, hasDeprecationErrors = false; auto i = bob.iterator(); while (i.more()) { auto elem = i.next(); if (elem.fieldNameStringData() == APIParametersFromClient::kApiVersionFieldName) { hasVersion = true; } else if (elem.fieldNameStringData() == APIParametersFromClient::kApiStrictFieldName) { hasStrict = true; } else if (elem.fieldNameStringData() == APIParametersFromClient::kApiDeprecationErrorsFieldName) { hasDeprecationErrors = true; } } if (!hasVersion) { bob.append(APIParametersFromClient::kApiVersionFieldName, *apiParameters.getVersion()); } // Include apiStrict/apiDeprecationErrors if they are not boost::none. if (!hasStrict && apiParameters.getStrict()) { bob.append(APIParametersFromClient::kApiStrictFieldName, *apiParameters.getStrict()); } if (!hasDeprecationErrors && apiParameters.getDeprecationErrors()) { bob.append(APIParametersFromClient::kApiDeprecationErrorsFieldName, *apiParameters.getDeprecationErrors()); } } request.body = bob.obj(); if (opCtx) { if (auto securityToken = auth::getSecurityToken(opCtx)) { request.securityToken = securityToken->toBSON(); } } } } // namespace DBClientBase* DBClientBase::runFireAndForgetCommand(OpMsgRequest request) { // Make sure to reconnect if needed before building our request. checkConnection(); auto opCtx = haveClient() ? cc().getOperationContext() : nullptr; appendMetadata(opCtx, _metadataWriter, _apiParameters, request); auto requestMsg = request.serialize(); OpMsg::setFlag(&requestMsg, OpMsg::kMoreToCome); say(requestMsg); return this; } std::pair DBClientBase::runCommandWithTarget( OpMsgRequest request) { // Make sure to reconnect if needed before building our request. checkConnection(); // call() oddly takes this by pointer, so we need to put it on the stack. auto host = getServerAddress(); auto opCtx = haveClient() ? cc().getOperationContext() : nullptr; appendMetadata(opCtx, _metadataWriter, _apiParameters, request); auto requestMsg = request.serialize(); Message replyMsg; // We always want to throw if there was a network error, we do it here // instead of passing 'true' for the 'assertOk' parameter so we can construct a // more helpful error message. Note that call() can itself throw a socket exception. uassert(ErrorCodes::HostUnreachable, str::stream() << "network error while attempting to run " << "command '" << request.getCommandName() << "' " << "on host '" << host << "' ", call(requestMsg, replyMsg, false, &host)); auto commandReply = parseCommandReplyMessage(host, replyMsg); uassert(ErrorCodes::RPCProtocolNegotiationFailed, str::stream() << "Mismatched RPC protocols - request was '" << networkOpToString(requestMsg.operation()) << "' '" << " but reply was '" << networkOpToString(replyMsg.operation()) << "' ", rpc::protocolForMessage(requestMsg) == commandReply->getProtocol()); return {std::move(commandReply), this}; } std::pair> DBClientBase::runCommandWithTarget( OpMsgRequest request, std::shared_ptr me) { auto out = runCommandWithTarget(std::move(request)); return {std::move(out.first), std::move(me)}; } std::tuple DBClientBase::runCommandWithTarget(const string& dbname, BSONObj cmd, BSONObj& info, int options) { // TODO: This will be downconverted immediately if the underlying // requestBuilder is a legacyRequest builder. Not sure what the best // way to get around that is without breaking the abstraction. auto result = runCommandWithTarget(rpc::upconvertRequest(dbname, std::move(cmd), options)); info = result.first->getCommandReply().getOwned(); return std::make_tuple(isOk(info), result.second); } std::tuple> DBClientBase::runCommandWithTarget( const string& dbname, BSONObj cmd, BSONObj& info, std::shared_ptr me, int options) { auto result = runCommandWithTarget(rpc::upconvertRequest(dbname, std::move(cmd), options), std::move(me)); info = result.first->getCommandReply().getOwned(); return std::make_tuple(isOk(info), result.second); } bool DBClientBase::runCommand(const string& dbname, BSONObj cmd, BSONObj& info, int options) { auto res = runCommandWithTarget(dbname, std::move(cmd), info, options); return std::get<0>(res); } long long DBClientBase::count(const NamespaceStringOrUUID nsOrUuid, const BSONObj& query, int options, int limit, int skip, boost::optional readConcernObj) { auto dbName = (nsOrUuid.uuid() ? nsOrUuid.dbname() : (*nsOrUuid.nss()).db().toString()); BSONObj cmd = _countCmd(nsOrUuid, query, options, limit, skip, readConcernObj); BSONObj res; if (!runCommand(dbName, cmd, res, options)) { auto status = getStatusFromCommandResult(res); uassertStatusOK(status.withContext("count fails:")); } uassert(ErrorCodes::NoSuchKey, "Missing 'n' field for count command.", res.hasField("n")); return res["n"].numberLong(); } BSONObj DBClientBase::_countCmd(const NamespaceStringOrUUID nsOrUuid, const BSONObj& query, int options, int limit, int skip, boost::optional readConcernObj) { BSONObjBuilder b; if (nsOrUuid.uuid()) { const auto uuid = *nsOrUuid.uuid(); uuid.appendToBuilder(&b, "count"); } else { b.append("count", (*nsOrUuid.nss()).coll()); } b.append("query", query); if (limit) b.append("limit", limit); if (skip) b.append("skip", skip); if (readConcernObj) { b.append(repl::ReadConcernArgs::kReadConcernFieldName, *readConcernObj); } return b.obj(); } namespace { class ScopedMetadataWriterRemover { ScopedMetadataWriterRemover(const ScopedMetadataWriterRemover&) = delete; ScopedMetadataWriterRemover& operator=(const ScopedMetadataWriterRemover&) = delete; public: ScopedMetadataWriterRemover(DBClientBase* cli) : _cli(cli), _oldWriter(cli->getRequestMetadataWriter()) { _cli->setRequestMetadataWriter(rpc::RequestMetadataWriter{}); } ~ScopedMetadataWriterRemover() { _cli->setRequestMetadataWriter(_oldWriter); } private: DBClientBase* const _cli; rpc::RequestMetadataWriter _oldWriter; }; } // namespace auth::RunCommandHook DBClientBase::_makeAuthRunCommandHook() { return [this](OpMsgRequest request) -> Future { try { auto ret = runCommand(std::move(request)); auto status = getStatusFromCommandResult(ret->getCommandReply()); if (!status.isOK()) { return status; } return Future::makeReady(std::move(ret->getCommandReply())); } catch (const DBException& e) { return Future::makeReady(e.toStatus()); } }; } void DBClientBase::_auth(const BSONObj& params) { ScopedMetadataWriterRemover remover{this}; // We will only have a client name if SSL is enabled std::string clientName = ""; #ifdef MONGO_CONFIG_SSL auto sslConfiguration = getSSLConfiguration(); if (sslConfiguration) { clientName = sslConfiguration->clientSubjectName.toString(); } #endif HostAndPort remote(getServerAddress()); auth::authenticateClient(params, remote, clientName, _makeAuthRunCommandHook()).get(); } Status DBClientBase::authenticateInternalUser(auth::StepDownBehavior stepDownBehavior) { ScopedMetadataWriterRemover remover{this}; if (!auth::isInternalAuthSet()) { if (!serverGlobalParams.quiet.load()) { LOGV2(20116, "ERROR: No authentication parameters set for internal user"); } return {ErrorCodes::AuthenticationFailed, "No authentication parameters set for internal user"}; } // We will only have a client name if SSL is enabled std::string clientName = ""; #ifdef MONGO_CONFIG_SSL auto sslConfiguration = getSSLConfiguration(); if (sslConfiguration) { clientName = sslConfiguration->clientSubjectName.toString(); } #endif auto authProvider = auth::createDefaultInternalAuthProvider(); auto status = auth::authenticateInternalClient(clientName, HostAndPort(getServerAddress()), boost::none, stepDownBehavior, _makeAuthRunCommandHook(), authProvider) .getNoThrow(); if (status.isOK()) { return status; } if (!serverGlobalParams.quiet.load()) { LOGV2(20117, "Can't authenticate to {connString} as internal user, error: {error}", "Can't authenticate as internal user", "connString"_attr = toString(), "error"_attr = status); } return status; } void DBClientBase::auth(const BSONObj& params) { _auth(params); } bool DBClientBase::auth(const string& dbname, const string& username, const string& password_text, string& errmsg) { UserName user{username, dbname}; StatusWith mechResult = auth::negotiateSaslMechanism(_makeAuthRunCommandHook(), user, boost::none, auth::StepDownBehavior::kKeepConnectionOpen) .getNoThrow(); // To prevent unexpected behavior for existing clients, default to SCRAM-SHA-1 if the SASL // negotiation does not succeeed for some reason. StringData mech = mechResult.isOK() ? mechResult.getValue() : "SCRAM-SHA-1"_sd; try { const auto authParams = auth::buildAuthParams(dbname, username, password_text, mech); auth(authParams); return true; } catch (const AssertionException& ex) { if (ex.code() != ErrorCodes::AuthenticationFailed) throw; errmsg = ex.what(); return false; } } void DBClientBase::logout(const string& dbname, BSONObj& info) { runCommand(dbname, BSON("logout" << 1), info); } bool DBClientBase::isPrimary(bool& isPrimary, BSONObj* info) { BSONObjBuilder bob; bob.append(_apiParameters.getVersion() ? "hello" : "ismaster", 1); if (auto wireSpec = WireSpec::instance().get(); wireSpec->isInternalClient) { WireSpec::appendInternalClientWireVersion(wireSpec->outgoing, &bob); } BSONObj o; if (info == nullptr) info = &o; bool ok = runCommand("admin", bob.obj(), *info); isPrimary = info->getField(_apiParameters.getVersion() ? "isWritablePrimary" : "ismaster").trueValue(); return ok; } bool DBClientBase::createCollection(const string& ns, long long size, bool capped, int max, BSONObj* info, boost::optional writeConcernObj) { verify(!capped || size); BSONObj o; if (info == nullptr) info = &o; BSONObjBuilder b; string db = nsToDatabase(ns); b.append("create", ns.c_str() + db.length() + 1); if (size) b.append("size", size); if (capped) b.append("capped", true); if (max) b.append("max", max); if (writeConcernObj) { b.append(WriteConcernOptions::kWriteConcernField, *writeConcernObj); } return runCommand(db.c_str(), b.done(), *info); } list DBClientBase::getCollectionInfos(const string& db, const BSONObj& filter) { list infos; BSONObj res; if (runCommand(db, BSON("listCollections" << 1 << "filter" << filter << "cursor" << BSONObj()), res, QueryOption_SecondaryOk)) { BSONObj cursorObj = res["cursor"].Obj(); BSONObj collections = cursorObj["firstBatch"].Obj(); BSONObjIterator it(collections); while (it.more()) { BSONElement e = it.next(); infos.push_back(e.Obj().getOwned()); } if (res.hasField(LogicalTime::kOperationTimeFieldName)) { setOperationTime(LogicalTime::fromOperationTime(res).asTimestamp()); } const long long id = cursorObj["id"].Long(); if (id != 0) { const std::string ns = cursorObj["ns"].String(); unique_ptr cursor = getMore(ns, id); while (cursor->more()) { infos.push_back(cursor->nextSafe().getOwned()); } if (cursor->getOperationTime()) { setOperationTime(*(cursor->getOperationTime())); } } return infos; } // command failed uassertStatusOKWithContext(getStatusFromCommandResult(res), "'listCollections' failed: "); MONGO_UNREACHABLE; } vector DBClientBase::getDatabaseInfos(const BSONObj& filter, const bool nameOnly, const bool authorizedDatabases) { vector infos; BSONObjBuilder bob; bob.append("listDatabases", 1); bob.append("filter", filter); if (nameOnly) { bob.append("nameOnly", 1); } if (authorizedDatabases) { bob.append("authorizedDatabases", 1); } BSONObj cmd = bob.done(); BSONObj res; if (runCommand("admin", cmd, res, QueryOption_SecondaryOk)) { BSONObj dbs = res["databases"].Obj(); BSONObjIterator it(dbs); while (it.more()) { BSONElement e = it.next(); infos.push_back(e.Obj().getOwned()); } if (res.hasField(LogicalTime::kOperationTimeFieldName)) { setOperationTime(LogicalTime::fromOperationTime(res).asTimestamp()); } return infos; } uassertStatusOKWithContext(getStatusFromCommandResult(res), str::stream() << "Command 'listDatabases' failed. Full command: " << cmd); MONGO_UNREACHABLE; } bool DBClientBase::exists(const string& ns) { BSONObj filter = BSON("name" << nsToCollectionSubstring(ns)); list results = getCollectionInfos(nsToDatabase(ns), filter); return !results.empty(); } const uint64_t DBClientBase::INVALID_SOCK_CREATION_TIME = std::numeric_limits::max(); unique_ptr DBClientBase::query_DEPRECATED(const NamespaceStringOrUUID& nsOrUuid, const BSONObj& filter, const Query& querySettings, int limit, int nToSkip, const BSONObj* fieldsToReturn, int queryOptions, int batchSize, boost::optional readConcernObj) { unique_ptr c(new DBClientCursor(this, nsOrUuid, filter, querySettings, limit, nToSkip, fieldsToReturn, queryOptions, batchSize, readConcernObj)); if (c->init()) return c; return nullptr; } std::unique_ptr DBClientBase::find(FindCommandRequest findRequest, const ReadPreferenceSetting& readPref) { auto cursor = std::make_unique(this, std::move(findRequest), readPref); if (cursor->init()) { return cursor; } return nullptr; } void DBClientBase::find(FindCommandRequest findRequest, const ReadPreferenceSetting& readPref, std::function callback) { auto cursor = this->find(std::move(findRequest), readPref); while (cursor->more()) { callback(cursor->nextSafe()); } } BSONObj DBClientBase::findOne(FindCommandRequest findRequest, const ReadPreferenceSetting& readPref) { tassert(5951200, "caller cannot provide a limit when calling DBClientBase::findOne()", !findRequest.getLimit()); findRequest.setLimit(1); auto cursor = this->find(std::move(findRequest), readPref); uassert(5951201, "DBClientBase::findOne() could not produce cursor", cursor); return cursor->more() ? cursor->nextSafe() : BSONObj{}; } BSONObj DBClientBase::findOne(const NamespaceStringOrUUID& nssOrUuid, BSONObj filter) { FindCommandRequest findRequest{nssOrUuid}; findRequest.setFilter(std::move(filter)); return findOne(std::move(findRequest)); } unique_ptr DBClientBase::getMore(const string& ns, long long cursorId) { unique_ptr c( new DBClientCursor(this, NamespaceString(ns), cursorId, 0 /* limit */, 0 /* options */)); if (c->init()) return c; return nullptr; } unsigned long long DBClientBase::query_DEPRECATED( std::function f, const NamespaceStringOrUUID& nsOrUuid, const BSONObj& filter, const Query& querySettings, const BSONObj* fieldsToReturn, int queryOptions, int batchSize, boost::optional readConcernObj) { // mask options queryOptions &= (int)(QueryOption_NoCursorTimeout | QueryOption_SecondaryOk); unique_ptr c(this->query_DEPRECATED(nsOrUuid, filter, querySettings, 0, 0, fieldsToReturn, queryOptions, batchSize, readConcernObj)); // query_DEPRECATED() throws on network error so OK to uassert with numeric code here. uassert(16090, "socket error for mapping query", c.get()); unsigned long long n = 0; while (c->more()) { DBClientCursorBatchIterator i(*c); f(i); n += i.n(); } return n; } namespace { OpMsgRequest createInsertRequest(const string& ns, const vector& v, bool ordered, boost::optional writeConcernObj) { auto nss = NamespaceString(ns); BSONObjBuilder cmdBuilder; cmdBuilder.append("insert", nss.coll()); cmdBuilder.append("ordered", ordered); if (writeConcernObj) { cmdBuilder.append(WriteConcernOptions::kWriteConcernField, *writeConcernObj); } auto request = OpMsgRequest::fromDBAndBody(nss.db(), cmdBuilder.obj()); request.sequences.push_back({"documents", v}); return request; } OpMsgRequest createUpdateRequest(const string& ns, const BSONObj& filter, BSONObj updateSpec, bool upsert, bool multi, boost::optional writeConcernObj) { auto nss = NamespaceString(ns); BSONObjBuilder cmdBuilder; cmdBuilder.append("update", nss.coll()); if (writeConcernObj) { cmdBuilder.append(WriteConcernOptions::kWriteConcernField, *writeConcernObj); } auto request = OpMsgRequest::fromDBAndBody(nss.db(), cmdBuilder.obj()); request.sequences.push_back( {"updates", {BSON("q" << filter << "u" << updateSpec << "upsert" << upsert << "multi" << multi)}}); return request; } OpMsgRequest createRemoveRequest(const string& ns, const BSONObj& filter, bool removeMany, boost::optional writeConcernObj) { const int limit = removeMany ? 0 : 1; auto nss = NamespaceString(ns); BSONObjBuilder cmdBuilder; cmdBuilder.append("delete", nss.coll()); if (writeConcernObj) { cmdBuilder.append(WriteConcernOptions::kWriteConcernField, *writeConcernObj); } auto request = OpMsgRequest::fromDBAndBody(nss.db(), cmdBuilder.obj()); request.sequences.push_back({"deletes", {BSON("q" << filter << "limit" << limit)}}); return request; } } // namespace BSONObj DBClientBase::insertAcknowledged(const string& ns, const vector& v, bool ordered, boost::optional writeConcernObj) { OpMsgRequest request = createInsertRequest(ns, v, ordered, writeConcernObj); rpc::UniqueReply reply = runCommand(std::move(request)); return reply->getCommandReply(); } void DBClientBase::insert(const string& ns, BSONObj obj, bool ordered, boost::optional writeConcernObj) { insert(ns, std::vector{obj}, ordered, writeConcernObj); } void DBClientBase::insert(const string& ns, const vector& v, bool ordered, boost::optional writeConcernObj) { auto request = createInsertRequest(ns, v, ordered, writeConcernObj); runFireAndForgetCommand(std::move(request)); } BSONObj DBClientBase::removeAcknowledged(const string& ns, const BSONObj& filter, bool removeMany, boost::optional writeConcernObj) { OpMsgRequest request = createRemoveRequest(ns, filter, removeMany, writeConcernObj); rpc::UniqueReply reply = runCommand(std::move(request)); return reply->getCommandReply(); } void DBClientBase::remove(const string& ns, const BSONObj& filter, bool removeMany, boost::optional writeConcernObj) { auto request = createRemoveRequest(ns, filter, removeMany, writeConcernObj); runFireAndForgetCommand(std::move(request)); } BSONObj DBClientBase::updateAcknowledged(const string& ns, const BSONObj& filter, BSONObj updateSpec, bool upsert, bool multi, boost::optional writeConcernObj) { auto request = createUpdateRequest(ns, filter, updateSpec, upsert, multi, writeConcernObj); rpc::UniqueReply reply = runCommand(std::move(request)); return reply->getCommandReply(); } void DBClientBase::update(const string& ns, const BSONObj& filter, BSONObj updateSpec, bool upsert, bool multi, boost::optional writeConcernObj) { auto request = createUpdateRequest(ns, filter, updateSpec, upsert, multi, writeConcernObj); runFireAndForgetCommand(std::move(request)); } void DBClientBase::killCursor(const NamespaceString& ns, long long cursorId) { runFireAndForgetCommand(OpMsgRequest::fromDBAndBody( ns.db(), KillCursorsCommandRequest(ns, {cursorId}).toBSON(BSONObj{}))); } namespace { /** * Constructs command object for listIndexes. */ BSONObj makeListIndexesCommand(const NamespaceStringOrUUID& nsOrUuid, bool includeBuildUUIDs) { BSONObjBuilder bob; if (nsOrUuid.nss()) { bob.append("listIndexes", (*nsOrUuid.nss()).coll()); bob.append("cursor", BSONObj()); } else { const auto uuid = (*nsOrUuid.uuid()); uuid.appendToBuilder(&bob, "listIndexes"); bob.append("cursor", BSONObj()); } if (includeBuildUUIDs) { bob.appendBool("includeBuildUUIDs", true); } return bob.obj(); } } // namespace std::list DBClientBase::getIndexSpecs(const NamespaceStringOrUUID& nsOrUuid, bool includeBuildUUIDs, int options) { return _getIndexSpecs(nsOrUuid, makeListIndexesCommand(nsOrUuid, includeBuildUUIDs), options); } std::list DBClientBase::_getIndexSpecs(const NamespaceStringOrUUID& nsOrUuid, const BSONObj& cmd, int options) { list specs; auto dbName = (nsOrUuid.uuid() ? nsOrUuid.dbname() : (*nsOrUuid.nss()).db().toString()); BSONObj res; if (runCommand(dbName, cmd, res, options)) { BSONObj cursorObj = res["cursor"].Obj(); BSONObjIterator i(cursorObj["firstBatch"].Obj()); while (i.more()) { specs.push_back(i.next().Obj().getOwned()); } if (res.hasField(LogicalTime::kOperationTimeFieldName)) { setOperationTime(LogicalTime::fromOperationTime(res).asTimestamp()); } const long long id = cursorObj["id"].Long(); if (id != 0) { const auto cursorNs = cursorObj["ns"].String(); if (nsOrUuid.nss()) { invariant((*nsOrUuid.nss()).toString() == cursorNs); } unique_ptr cursor = getMore(cursorNs, id); while (cursor->more()) { specs.push_back(cursor->nextSafe().getOwned()); } if (cursor->getOperationTime()) { setOperationTime(*(cursor->getOperationTime())); } } return specs; } Status status = getStatusFromCommandResult(res); // "NamespaceNotFound" is an error for UUID but returns an empty list for NamespaceString; this // matches the behavior for other commands such as 'find' and 'count'. if (nsOrUuid.nss() && status.code() == ErrorCodes::NamespaceNotFound) { return specs; } uassertStatusOK(status.withContext(str::stream() << "listIndexes failed: " << res)); MONGO_UNREACHABLE; } void DBClientBase::dropIndex(const string& ns, BSONObj keys, boost::optional writeConcernObj) { dropIndex(ns, genIndexName(keys), writeConcernObj); } void DBClientBase::dropIndex(const string& ns, const string& indexName, boost::optional writeConcernObj) { BSONObjBuilder cmdBuilder; cmdBuilder.append("dropIndexes", nsToCollectionSubstring(ns)); cmdBuilder.append("index", indexName); if (writeConcernObj) { cmdBuilder.append(WriteConcernOptions::kWriteConcernField, *writeConcernObj); } BSONObj info; if (!runCommand(nsToDatabase(ns), cmdBuilder.obj(), info)) { LOGV2_DEBUG(20118, _logLevel.toInt(), "dropIndex failed: {info}", "dropIndex failed", "info"_attr = info); uassert(10007, "dropIndex failed", 0); } } void DBClientBase::dropIndexes(const string& ns, boost::optional writeConcernObj) { BSONObjBuilder cmdBuilder; cmdBuilder.append("dropIndexes", nsToCollectionSubstring(ns)); cmdBuilder.append("index", "*"); if (writeConcernObj) { cmdBuilder.append(WriteConcernOptions::kWriteConcernField, *writeConcernObj); } BSONObj info; uassert(10008, "dropIndexes failed", runCommand(nsToDatabase(ns), cmdBuilder.obj(), info)); } void DBClientBase::reIndex(const string& ns) { BSONObj info; uassert(18908, str::stream() << "reIndex failed: " << info, runCommand(nsToDatabase(ns), BSON("reIndex" << nsToCollectionSubstring(ns)), info)); } string DBClientBase::genIndexName(const BSONObj& keys) { stringstream ss; bool first = 1; for (BSONObjIterator i(keys); i.more();) { BSONElement f = i.next(); if (first) first = 0; else ss << "_"; ss << f.fieldName() << "_"; if (f.isNumber()) ss << f.numberInt(); else ss << f.str(); // this should match up with shell command } return ss.str(); } void DBClientBase::createIndexes(StringData ns, const std::vector& descriptors, boost::optional writeConcernObj) { BSONObjBuilder command; command.append("createIndexes", nsToCollectionSubstring(ns)); { BSONArrayBuilder indexes(command.subarrayStart("indexes")); for (const auto& desc : descriptors) { indexes.append(desc->toBSON()); } } if (writeConcernObj) { command.append(WriteConcernOptions::kWriteConcernField, *writeConcernObj); } const BSONObj commandObj = command.done(); BSONObj infoObj; if (!runCommand(nsToDatabase(ns), commandObj, infoObj)) { Status runCommandStatus = getStatusFromCommandResult(infoObj); invariant(!runCommandStatus.isOK()); uassertStatusOK(runCommandStatus); } } void DBClientBase::createIndexes(StringData ns, const std::vector& specs, boost::optional writeConcernObj) { BSONObjBuilder command; command.append("createIndexes", nsToCollectionSubstring(ns)); { BSONArrayBuilder indexes(command.subarrayStart("indexes")); for (const auto& spec : specs) { indexes.append(spec); } } if (writeConcernObj) { command.append(WriteConcernOptions::kWriteConcernField, *writeConcernObj); } const BSONObj commandObj = command.done(); BSONObj infoObj; if (!runCommand(nsToDatabase(ns), commandObj, infoObj)) { Status runCommandStatus = getStatusFromCommandResult(infoObj); invariant(!runCommandStatus.isOK()); uassertStatusOK(runCommandStatus); } } BSONElement getErrField(const BSONObj& o) { return o["$err"]; } bool hasErrField(const BSONObj& o) { return !getErrField(o).eoo(); } /** @return the database name portion of an ns string */ string nsGetDB(const string& ns) { string::size_type pos = ns.find("."); if (pos == string::npos) return ns; return ns.substr(0, pos); } /** @return the collection name portion of an ns string */ string nsGetCollection(const string& ns) { string::size_type pos = ns.find("."); if (pos == string::npos) return ""; return ns.substr(pos + 1); } Timestamp DBClientBase::getOperationTime() { return _lastOperationTime; } void DBClientBase::setOperationTime(Timestamp operationTime) { _lastOperationTime = operationTime; } } // namespace mongo