summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/authz_manager_external_state_local.h
diff options
context:
space:
mode:
authorSpencer T Brody <spencer@mongodb.com>2015-11-25 14:40:17 -0500
committerSpencer T Brody <spencer@mongodb.com>2015-11-30 10:44:18 -0500
commit16b5070833b20c73f87fc37df1f6a21afca825ba (patch)
tree56d814c448c3f85fed7c708395796de9136875c0 /src/mongo/db/auth/authz_manager_external_state_local.h
parent909b13f0ac6ed6d0de5a37ae3b833494f9a12218 (diff)
downloadmongo-16b5070833b20c73f87fc37df1f6a21afca825ba.tar.gz
SERVER-21659 Move logic for redacting 'bypassDocumentValidation' privilege for backwards compatibility up to the usersInfo command
Diffstat (limited to 'src/mongo/db/auth/authz_manager_external_state_local.h')
-rw-r--r--src/mongo/db/auth/authz_manager_external_state_local.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/mongo/db/auth/authz_manager_external_state_local.h b/src/mongo/db/auth/authz_manager_external_state_local.h
index 2a43cacd630..954374cf961 100644
--- a/src/mongo/db/auth/authz_manager_external_state_local.h
+++ b/src/mongo/db/auth/authz_manager_external_state_local.h
@@ -131,23 +131,10 @@ private:
* resolve roles and add the 'inheritedRoles', 'inheritedPrivileges',
* and 'warnings' fields.
*/
- void _resolveUserRoles(OperationContext* txn,
- mutablebson::Document* userDoc,
+ void _resolveUserRoles(mutablebson::Document* userDoc,
const std::vector<RoleName>& directRoles);
/**
- * Gets the Protocol from 'txn' of the operation being run to determine if it was from
- * OP_COMMAND or OP_QUERY. If OP_COMMAND, does nothing. If OP_QUERY, assumes that means it is
- * a 3.0 mongos talking to us, and modifies the input PrivilegeVector to remove all references
- * to any ActionTypes that didn't exist 3.0. This is because when a 3.0 mongos parses the
- * privileges from a user document at authentication time, it skips any privileges containing
- * any actions it doesn't know about. See SERVER-2146 for more details.
- * TODO(SERVER-21561): Remove this after 3.2
- */
- void _redactPrivilegesForBackwardsCompatibilityIfNeeded(OperationContext* txn,
- PrivilegeVector* privileges);
-
- /**
* Eventually consistent, in-memory representation of all roles in the system (both
* user-defined and built-in). Synchronized via _roleGraphMutex.
*/