1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
|
/**
* 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
* <http://www.mongodb.com/licensing/server-side-public-license>.
*
* 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.
*/
#include "mongo/db/dbdirectclient.h"
#include <boost/move/utility_core.hpp>
#include <utility>
#include <boost/none.hpp>
#include <boost/optional/optional.hpp>
#include "mongo/base/status.h"
#include "mongo/bson/bsonelement.h"
#include "mongo/db/api_parameters.h"
#include "mongo/db/client.h"
#include "mongo/db/curop.h"
#include "mongo/db/database_name.h"
#include "mongo/db/dbmessage.h"
#include "mongo/db/operation_context.h"
#include "mongo/db/query/write_ops/write_ops.h"
#include "mongo/db/repl/replication_coordinator.h"
#include "mongo/db/service_context.h"
#include "mongo/db/wire_version.h"
#include "mongo/rpc/get_status_from_command_result.h"
#include "mongo/rpc/op_msg.h"
#include "mongo/rpc/reply_interface.h"
#include "mongo/rpc/unique_message.h"
#include "mongo/transport/service_entry_point.h"
#include "mongo/util/assert_util.h"
#include "mongo/util/future.h"
#define MONGO_LOGV2_DEFAULT_COMPONENT ::mongo::logv2::LogComponent::kDefault
namespace mongo {
using std::string;
using std::unique_ptr;
namespace {
class DirectClientScope {
DirectClientScope(const DirectClientScope&) = delete;
DirectClientScope& operator=(const DirectClientScope&) = delete;
public:
explicit DirectClientScope(OperationContext* opCtx)
: _opCtx(opCtx), _prev(_opCtx->getClient()->isInDirectClient()) {
_opCtx->getClient()->setInDirectClient(true);
}
~DirectClientScope() {
_opCtx->getClient()->setInDirectClient(_prev);
}
private:
OperationContext* const _opCtx;
const bool _prev;
};
} // namespace
DBDirectClient::DBDirectClient(OperationContext* opCtx) : _opCtx(opCtx) {}
void DBDirectClient::_auth(const BSONObj& params) {
uasserted(2625701, "DBDirectClient should not authenticate");
}
bool DBDirectClient::isFailed() const {
return false;
}
bool DBDirectClient::isStillConnected() {
return true;
}
std::string DBDirectClient::toString() const {
return "DBDirectClient";
}
std::string DBDirectClient::getServerAddress() const {
return "localhost"; // TODO: should this have the port?
}
// Returned version should match the incoming connections restrictions.
int DBDirectClient::getMinWireVersion() {
return WireSpec::getWireSpec(_opCtx->getServiceContext())
.get()
->incomingExternalClient.minWireVersion;
}
// Returned version should match the incoming connections restrictions.
int DBDirectClient::getMaxWireVersion() {
return WireSpec::getWireSpec(_opCtx->getServiceContext())
.get()
->incomingExternalClient.maxWireVersion;
}
bool DBDirectClient::isReplicaSetMember() const {
auto const* replCoord = repl::ReplicationCoordinator::get(_opCtx);
return replCoord && replCoord->getSettings().isReplSet();
}
ConnectionString::ConnectionType DBDirectClient::type() const {
return ConnectionString::ConnectionType::kStandalone;
}
double DBDirectClient::getSoTimeout() const {
return 0;
}
namespace {
DbResponse loopbackBuildResponse(OperationContext* const opCtx, Message& toSend) {
auth::ValidatedTenancyScopeGuard tenancyStasher(opCtx);
DirectClientScope directClientScope(opCtx);
// TODO SERVER-77213: Refactor the stashing performed here. Right now this is working fine
// because the opCtx will reuse the Locker instance in the sub-operation since it's not yet part
// of TransactionResources. However, in case the Locker is stored in them then this has the
// potential for a deadlock. An example of this is as follows:
// * The parent operation is holding a MODE_IX lock on collA
// * A strong MODE_X lock is enqueued for collA
// * Sub-operation begins and attempts to acquire a MODE_IS lock on collA.
// This would deadlock as the sub-operation's MODE_IS acquisition is enqueued after the MODE_X
// lock request which will only be acquired once the parent operation finishes. However, this
// functions properly today since we reuse the Locker.
//
// In theory this stashing could be done at a higher level when we aren't certain if we are
// going to perform a remote call. Directly calling DBDirectClient implies opCtx reuse so the
// operation already wants to reuse existing lock acquisitions and is just using the client as a
// cheap API for existing functionality.
StashTransactionResourcesForDBDirect stashedTxnResources(opCtx);
CurOp curOp;
curOp.push(opCtx);
toSend.header().setId(nextMessageId());
toSend.header().setResponseToMsgId(0);
IgnoreAPIParametersBlock ignoreApiParametersBlock(opCtx);
return opCtx->getService()->getServiceEntryPoint()->handleRequest(opCtx, toSend).get();
}
} // namespace
Message DBDirectClient::_call(Message& toSend, string* actualServer) {
auto dbResponse = loopbackBuildResponse(_opCtx, toSend);
invariant(!dbResponse.response.empty());
return std::move(dbResponse.response);
}
auth::ValidatedTenancyScope DBDirectClient::_createInnerRequestVTS(
const boost::optional<TenantId>& tenantId) const {
const auto vtsOnOpCtx = auth::ValidatedTenancyScope::get(_opCtx);
if (tenantId && vtsOnOpCtx && vtsOnOpCtx->hasTenantId()) {
invariant(vtsOnOpCtx->tenantId() == tenantId,
str::stream() << "The tenant id '" << vtsOnOpCtx->tenantId()
<< "' on opCtx does not match the requested tenant id "
<< tenantId);
}
return DBClientBase::_createInnerRequestVTS(tenantId);
}
void DBDirectClient::say(Message& toSend, bool isRetry, string* actualServer) {
auto dbResponse = loopbackBuildResponse(_opCtx, toSend);
invariant(dbResponse.response.empty());
}
std::unique_ptr<DBClientCursor> DBDirectClient::find(FindCommandRequest findRequest,
const ReadPreferenceSetting& readPref,
ExhaustMode exhaustMode) {
invariant(!findRequest.getReadConcern(),
"passing readConcern to DBDirectClient::find() is not supported as it has to use the "
"parent operation's readConcern");
return DBClientBase::find(std::move(findRequest), readPref, exhaustMode);
}
write_ops::FindAndModifyCommandReply DBDirectClient::findAndModify(
const write_ops::FindAndModifyCommandRequest& findAndModify) {
auto request = findAndModify.serialize();
request.validatedTenancyScope = _createInnerRequestVTS(findAndModify.getDbName().tenantId());
auto response = runCommand(std::move(request));
return FindAndModifyOp::parseResponse(response->getCommandReply());
}
write_ops::InsertCommandReply DBDirectClient::insert(
const write_ops::InsertCommandRequest& insert) {
auto request = insert.serialize();
request.validatedTenancyScope = _createInnerRequestVTS(insert.getDbName().tenantId());
auto response = runCommand(request);
return InsertOp::parseResponse(response->getCommandReply());
}
write_ops::UpdateCommandReply DBDirectClient::update(
const write_ops::UpdateCommandRequest& update) {
auto request = update.serialize();
request.validatedTenancyScope = _createInnerRequestVTS(update.getDbName().tenantId());
auto response = runCommand(request);
return UpdateOp::parseResponse(response->getCommandReply());
}
write_ops::DeleteCommandReply DBDirectClient::remove(
const write_ops::DeleteCommandRequest& remove) {
auto request = remove.serialize();
request.validatedTenancyScope = _createInnerRequestVTS(remove.getDbName().tenantId());
auto response = runCommand(request);
return DeleteOp::parseResponse(response->getCommandReply());
}
long long DBDirectClient::count(const NamespaceStringOrUUID nsOrUuid,
const BSONObj& query,
int options,
int limit,
int skip,
boost::optional<repl::ReadConcernArgs> readConcern) {
invariant(!readConcern,
"passing readConcern to DBDirectClient functions is not supported as it has to use "
"the parent operation's readConcern");
BSONObj cmdObj = _countCmd(nsOrUuid, query, options, limit, skip, boost::none);
auto request = OpMsgRequestBuilder::create(
_createInnerRequestVTS(nsOrUuid.dbName().tenantId()), nsOrUuid.dbName(), cmdObj);
// Calls runCommand instead of runCommandDirectly to ensure the tenant inforamtion of this
// command gets validated and is used for parsing the command request.
auto response = runCommand(request);
auto& result = response->getCommandReply();
uassertStatusOK(getStatusFromCommandResult(result));
return result["n"].numberLong();
}
} // namespace mongo
|