summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/authz_session_external_state_d.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/auth/authz_session_external_state_d.h')
-rw-r--r--src/mongo/db/auth/authz_session_external_state_d.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/mongo/db/auth/authz_session_external_state_d.h b/src/mongo/db/auth/authz_session_external_state_d.h
new file mode 100644
index 00000000000..ee5295f5c80
--- /dev/null
+++ b/src/mongo/db/auth/authz_session_external_state_d.h
@@ -0,0 +1,49 @@
+/**
+* Copyright (C) 2012 10gen Inc.
+*
+* This program is free software: you can redistribute it and/or modify
+* it under the terms of the GNU Affero General Public License, version 3,
+* as published by the Free Software Foundation.
+*
+* 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
+* GNU Affero General Public License for more details.
+*
+* You should have received a copy of the GNU Affero General Public License
+* along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#pragma once
+
+#include "mongo/base/disallow_copying.h"
+#include "mongo/base/status.h"
+#include "mongo/db/auth/authz_session_external_state_server_common.h"
+
+namespace mongo {
+
+ /**
+ * The implementation of AuthzSessionExternalState functionality for mongod.
+ */
+ class AuthzSessionExternalStateMongod : public AuthzSessionExternalStateServerCommon {
+ MONGO_DISALLOW_COPYING(AuthzSessionExternalStateMongod);
+
+ public:
+ AuthzSessionExternalStateMongod();
+ virtual ~AuthzSessionExternalStateMongod();
+
+ virtual bool shouldIgnoreAuthChecks() const;
+
+ virtual void startRequest();
+
+ virtual void onAddAuthorizedPrincipal(Principal*);
+
+ virtual void onLogoutDatabase(const std::string&);
+
+ protected:
+ virtual bool _findUser(const string& usersNamespace,
+ const BSONObj& query,
+ BSONObj* result) const;
+ };
+
+} // namespace mongo