summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/authz_manager_external_state_s.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-70415 Attach tenantId to dbStats during initial syncjannaerin2022-11-151-0/+10
|
* SERVER-67081 Use DatabaseName instead of StringData in AuthzManagerExeternalSara Golemon2022-06-131-1/+1
|
* SERVER-51864 IDLify usersInfo and rolesInfo commandsSara Golemon2020-11-091-3/+16
|
* SERVER-51084 easy XCode12 fixes (excludes the int to double fixes)Billy Donahue2020-10-011-1/+1
|
* SERVER-50292 Refactor user acuisition via externalStateSara Golemon2020-09-021-1/+1
|
* SERVER-50204 Refactor role acquisition using resolveRolesSara Golemon2020-08-241-6/+4
|
* SERVER-50187 Use AuthzManagerExternalState::roleExists() to simplify role checksSara Golemon2020-08-201-8/+9
|
* SERVER-46498 Store connection specified roles in authorization cache keySpencer Jackson2020-03-031-1/+1
|
* SERVER-39338 Remove `stdx/functional.h`ADAM David Alan Martin2019-06-101-1/+1
|
* SERVER-40357 expand all calls to MONGO_DISALLOW_COPYINGBilly Donahue2019-03-281-2/+2
| | | | | | | | | | | produced by: hits="$(git grep -n MONGO_DISALLOW_COPYING | cut -d: -f1 )" for f in "$hits"; do sed -i.orig ' s/^\( *\)MONGO_DISALLOW_COPYING(\(.*\));/\1\2(const \2\&) = delete;\n\1\2\& operator=(const \2\&) = delete;/; ' $f done
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-26/+28
|
* SERVER-37563 Remove all usages of getGlobalAuthorizationManagerKaloian Manassiev2018-10-121-2/+0
|
* SERVER-8240 Convert std::string parameters in auth module to StringData, as ↵Kashish Garg2018-06-081-1/+1
| | | | appropriate
* SERVER-29183 Add restriction support to rolesInfoSara Golemon2017-07-241-19/+24
|
* SERVER-27938 Rename all OperationContext variables to opCtxMaria van Keulen2017-03-071-7/+7
| | | | | | This commit is an automated rename of all whole word instances of txn, _txn, and txnPtr to opCtx, _opCtx, and opCtxPtr, respectively in all .cpp and .h files in src/mongo.
* SERVER-22826 Support X509 AuthorizationSpencer Jackson2016-08-111-2/+6
|
* Revert "SERVER-22826 Support X509 Authorization"Spencer Jackson2016-08-101-6/+2
| | | | This reverts commit d930f4832631eca7092ada4328d780f2b8d19d31.
* SERVER-22826 Support X509 AuthorizationSpencer Jackson2016-08-091-2/+6
|
* SERVER-19543 Thread OperationContext through to everywhere that accesses the ↵Spencer T Brody2015-08-121-2/+4
| | | | CatalogManager
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-24/+25
|
* SERVER-18478 Remove lingering unused mutex in AuthzManagerExternalStateLocalDaniel Alabi2015-05-261-1/+0
| | | | | Also removes unused includes in AuthzManagerExternalState* files as a result of recent cleanup
* SERVER-18328 SERVER-18478 AuthzManagerExternalState for mongos should go ↵Daniel Alabi2015-05-221-22/+1
| | | | through the catalog manager
* SERVER-18478 Clean up AuthzManagerExternalStateDaniel Alabi2015-05-211-18/+0
| | | | Removed insert/remove/update from the AuthzManagerExternalState* interfaces
* SERVER-18478 Get rid of UpdateGuard and simplify locking for user management ↵Daniel Alabi2015-05-181-6/+0
| | | | commands on mongod
* SERVER-17592 Move legacy dist lock code under catalogRandolph Tan2015-05-051-1/+1
|
* SERVER-17592 Refactor legacy logic into distributed lock managerRandolph Tan2015-04-241-5/+3
|
* SERVER-17817 When setting up ClientBasic, get AuthorizationSession object ↵Andy Schwerin2015-04-061-0/+2
| | | | from AuthorizationManager.
* SERVER-16940 Change pass-by-const-ref of StringData to pass-by-valueTyler Brock2015-02-061-1/+1
|
* SERVER-13256 Remove scoped_ptr from pch.hAndrew Morrow2015-01-051-1/+1
|
* SERVER-15882 Remove dead index creation/deletion operations from ↵Andy Schwerin2014-11-041-8/+0
| | | | AuthzManagerExternalState.
* SERVER-15549 Remove AuthzManagerExternalState::getAllDatabaseNamesKaloian Manassiev2014-10-071-2/+0
|
* SERVER-14668 remove no-OpCtx DBDirectClient and update all former usersHari Khalsa2014-09-091-5/+10
|
* SERVER-14668 Distlock constants to enums and fix some includesKaloian Manassiev2014-08-281-1/+3
| | | | | The macros were conflicting with LockManager enums, which are in different namespaces (LOCK_TIMEOUT in particular).
* SERVER-13961 Thread through OperationContext to the AuthorizationManagerKaloian Manassiev2014-07-231-2/+3
|
* SERVER-13961 Start using LockState from the OperationContextKaloian Manassiev2014-06-021-1/+1
|
* SERVER-13961 Pass LockState to DBWrite and DBRead directlyKaloian Manassiev2014-05-301-3/+5
| | | | | This is part of the changes to move LockState be part of OperationContext and not retrieved from TLS.
* Revert "SERVER-13961 Pass LockState to DBWrite and DBRead directly"Kaloian Manassiev2014-05-281-5/+3
| | | | This reverts commit 0672061deb58aac931912bed68d014247c581968.
* SERVER-13961 Pass LockState to DBWrite and DBRead directlyKaloian Manassiev2014-05-281-3/+5
| | | | | This is part of the changes to move LockState be part of OperationContext and not retrieved from TLS.
* SERVER-13256: Remove pch - qualify std in headersMark Benvenuto2014-05-191-1/+1
|
* SERVER-13882 Replace boost::function with stdx::function and boost::bind ↵Andy Schwerin2014-05-161-2/+2
| | | | with stdx::bind.
* SERVER-12664 Change nUpdated to nMatched in bulk api resultsRandolph Tan2014-02-131-1/+1
|
* SERVER-11681 move distlock to s/ directory - not part of clientGreg Studer2014-01-081-1/+1
|
* SERVER-7246 legacy user authentication should use primary preferred read prefGreg Studer2013-12-111-0/+14
|
* SERVER-11411 Give rolesInfo command the ability to list all roles defined ↵Spencer T Brody2013-11-131-1/+7
| | | | | | | for a given database. This commit also introduces the "showPrivileges" option, which defaults to false, to rolesInfo to control whether or not privilege information is included in the result.
* SERVER-9516 Remove unused methods from AuthzManagerExternalState.Andy Schwerin2013-11-081-16/+2
|
* SERVER-9516 Support for determining and examining the version of the auth ↵Andy Schwerin2013-10-181-1/+1
| | | | schema in durable storage.
* SERVER-6246 SERVER-9515 Update usersInfo and rolesInfo commands to new APISpencer T Brody2013-10-061-0/+1
|
* SERVER-10670 Maintain role graph consistency.Andy Schwerin2013-10-051-0/+5
| | | | | | | | Keeps the RoleGraph up to date in mongod, and converts MongoS to simply ask the config server for required information about users and roles. Performs somewhat aggressive cache invalidation of the users cache in mongod. Still no cache invalidation in mongos.
* SERVER-9515 Add generic update method to AuthzManagerExternalStateSpencer T Brody2013-10-021-5/+7
|