summaryrefslogtreecommitdiff
path: root/src/mongo/db/sessions_collection_mock.h
diff options
context:
space:
mode:
authorJason Carey <jcarey@argv.me>2017-07-21 11:54:18 -0400
committerJason Carey <jcarey@argv.me>2017-07-26 15:53:42 -0400
commitedfe3f3b1276ef3598b1af673d088e6b5c4b3ad5 (patch)
tree08f0efcdb6100dc315cf5e9ac98c0c6261be928d /src/mongo/db/sessions_collection_mock.h
parentcb36a96d7c96cf1b24c7ef3b8b086cfc04c77642 (diff)
downloadmongo-edfe3f3b1276ef3598b1af673d088e6b5c4b3ad5.tar.gz
SERVER-30298 Add UserDigest LogicalSessionID
Inclusion of a sha256 digest of the full username to the logical session id (in addition to the current guid) is necessary to fully disambiguate logical sessions in degraded clusters (when the authoritative record for a session is unreachable). Semantics for the uid are as follows: session creation via startSession() * Sessions can only be created with one, and only one, user authenticated * The composite key is created from a guid created on the spot, as well as the digest of the currently auth'd username * Only the session guid is returned to the user * This prevents outside users from attempting to send back a value we'd have to check. It's preferable to decorate the guid with the user digest per command, rather than having to check a value the user might send. session use for a command * Sessions are passed via the lsid top level field in any command * Sessions are only meaningful for commands which requireAuth. For sessions which don't require auth, we strip session information from the command at parse time * Session ids are passed as an object, which can optionally include the username digest * It is illegal to pass the username digest unless the currently auth'd user has the impersonate privilege (the __system user does). This enables sessions on shard servers via mongos
Diffstat (limited to 'src/mongo/db/sessions_collection_mock.h')
-rw-r--r--src/mongo/db/sessions_collection_mock.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/mongo/db/sessions_collection_mock.h b/src/mongo/db/sessions_collection_mock.h
index afa04bfd9db..870d0434991 100644
--- a/src/mongo/db/sessions_collection_mock.h
+++ b/src/mongo/db/sessions_collection_mock.h
@@ -29,7 +29,6 @@
#pragma once
#include "mongo/db/logical_session_id.h"
-#include "mongo/db/logical_session_record.h"
#include "mongo/db/sessions_collection.h"
#include "mongo/stdx/functional.h"
#include "mongo/stdx/mutex.h"
@@ -55,11 +54,11 @@ namespace mongo {
class MockSessionsCollectionImpl {
public:
using SessionMap =
- stdx::unordered_map<LogicalSessionId, LogicalSessionRecord, LogicalSessionId::Hash>;
+ stdx::unordered_map<LogicalSessionId, LogicalSessionRecord, LogicalSessionIdHash>;
MockSessionsCollectionImpl();
- using FetchHook = stdx::function<StatusWith<LogicalSessionRecord>(SignedLogicalSessionId)>;
+ using FetchHook = stdx::function<StatusWith<LogicalSessionRecord>(LogicalSessionId)>;
using InsertHook = stdx::function<Status(LogicalSessionRecord)>;
using RefreshHook = stdx::function<LogicalSessionIdSet(LogicalSessionIdSet)>;
using RemoveHook = stdx::function<void(LogicalSessionIdSet)>;
@@ -74,7 +73,7 @@ public:
void clearHooks();
// Forwarding methods from the MockSessionsCollection
- StatusWith<LogicalSessionRecord> fetchRecord(SignedLogicalSessionId id);
+ StatusWith<LogicalSessionRecord> fetchRecord(LogicalSessionId id);
Status insertRecord(LogicalSessionRecord record);
LogicalSessionIdSet refreshSessions(LogicalSessionIdSet sessions);
void removeRecords(LogicalSessionIdSet sessions);
@@ -88,7 +87,7 @@ public:
private:
// Default implementations, may be overridden with custom hooks.
- StatusWith<LogicalSessionRecord> _fetchRecord(SignedLogicalSessionId id);
+ StatusWith<LogicalSessionRecord> _fetchRecord(LogicalSessionId id);
Status _insertRecord(LogicalSessionRecord record);
LogicalSessionIdSet _refreshSessions(LogicalSessionIdSet sessions);
void _removeRecords(LogicalSessionIdSet sessions);
@@ -112,7 +111,7 @@ public:
explicit MockSessionsCollection(std::shared_ptr<MockSessionsCollectionImpl> impl)
: _impl(std::move(impl)) {}
- StatusWith<LogicalSessionRecord> fetchRecord(SignedLogicalSessionId id) override {
+ StatusWith<LogicalSessionRecord> fetchRecord(LogicalSessionId id) override {
return _impl->fetchRecord(std::move(id));
}