/**
* Copyright (C) 2013 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 .
*
* 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 GNU Affero General 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/audit.h"
#if MONGO_ENTERPRISE_VERSION
#define MONGO_AUDIT_STUB ;
#else
#define MONGO_AUDIT_STUB {}
#endif
namespace mongo {
namespace audit {
void logAuthentication(ClientBasic* client,
StringData mechanism,
const UserName& user,
ErrorCodes::Error result) MONGO_AUDIT_STUB
void logCommandAuthzCheck(ClientBasic* client,
const std::string& dbname,
const BSONObj& cmdObj,
Command* command,
ErrorCodes::Error result) MONGO_AUDIT_STUB
void logDeleteAuthzCheck(
ClientBasic* client,
const NamespaceString& ns,
const BSONObj& pattern,
ErrorCodes::Error result) MONGO_AUDIT_STUB
void logFsyncUnlockAuthzCheck(
ClientBasic* client,
ErrorCodes::Error result) MONGO_AUDIT_STUB
void logGetMoreAuthzCheck(
ClientBasic* client,
const NamespaceString& ns,
long long cursorId,
ErrorCodes::Error result) MONGO_AUDIT_STUB
void logInProgAuthzCheck(
ClientBasic* client,
const BSONObj& filter,
ErrorCodes::Error result) MONGO_AUDIT_STUB
void logInsertAuthzCheck(
ClientBasic* client,
const NamespaceString& ns,
const BSONObj& insertedObj,
ErrorCodes::Error result) MONGO_AUDIT_STUB
void logKillCursorsAuthzCheck(
ClientBasic* client,
const NamespaceString& ns,
long long cursorId,
ErrorCodes::Error result) MONGO_AUDIT_STUB
void logKillOpAuthzCheck(
ClientBasic* client,
const BSONObj& filter,
ErrorCodes::Error result) MONGO_AUDIT_STUB
void logQueryAuthzCheck(
ClientBasic* client,
const NamespaceString& ns,
const BSONObj& query,
ErrorCodes::Error result) MONGO_AUDIT_STUB
void logUpdateAuthzCheck(
ClientBasic* client,
const NamespaceString& ns,
const BSONObj& query,
const BSONObj& updateObj,
bool isUpsert,
bool isMulti,
ErrorCodes::Error result) MONGO_AUDIT_STUB
void logCreateUser(ClientBasic* client,
const UserName& username,
bool password,
const BSONObj* customData,
const std::vector& roles) MONGO_AUDIT_STUB
void logDropUser(ClientBasic* client,
const UserName& username) MONGO_AUDIT_STUB
void logDropAllUsersFromDatabase(ClientBasic* client,
StringData dbname) MONGO_AUDIT_STUB
void logUpdateUser(ClientBasic* client,
const UserName& username,
bool password,
const BSONObj* customData,
const std::vector* roles) MONGO_AUDIT_STUB
void logGrantRolesToUser(ClientBasic* client,
const UserName& username,
const std::vector& roles) MONGO_AUDIT_STUB
void logRevokeRolesFromUser(ClientBasic* client,
const UserName& username,
const std::vector& roles) MONGO_AUDIT_STUB
void logCreateRole(ClientBasic* client,
const RoleName& role,
const std::vector& roles,
const PrivilegeVector& privileges) MONGO_AUDIT_STUB
void logUpdateRole(ClientBasic* client,
const RoleName& role,
const std::vector* roles,
const PrivilegeVector* privileges) MONGO_AUDIT_STUB
void logDropRole(ClientBasic* client,
const RoleName& role) MONGO_AUDIT_STUB
void logDropAllRolesFromDatabase(ClientBasic* client,
StringData dbname) MONGO_AUDIT_STUB
void logGrantRolesToRole(ClientBasic* client,
const RoleName& role,
const std::vector& roles) MONGO_AUDIT_STUB
void logRevokeRolesFromRole(ClientBasic* client,
const RoleName& role,
const std::vector& roles) MONGO_AUDIT_STUB
void logGrantPrivilegesToRole(ClientBasic* client,
const RoleName& role,
const PrivilegeVector& privileges) MONGO_AUDIT_STUB
void logRevokePrivilegesFromRole(ClientBasic* client,
const RoleName& role,
const PrivilegeVector& privileges) MONGO_AUDIT_STUB
void logReplSetReconfig(ClientBasic* client,
const BSONObj* oldConfig,
const BSONObj* newConfig) MONGO_AUDIT_STUB
void logApplicationMessage(ClientBasic* client,
StringData msg) MONGO_AUDIT_STUB
void logShutdown(ClientBasic* client) MONGO_AUDIT_STUB
void logCreateIndex(ClientBasic* client,
const BSONObj* indexSpec,
StringData indexname,
StringData nsname) MONGO_AUDIT_STUB
void logCreateCollection(ClientBasic* client,
StringData nsname) MONGO_AUDIT_STUB
void logCreateDatabase(ClientBasic* client,
StringData dbname) MONGO_AUDIT_STUB
void logDropIndex(ClientBasic* client,
StringData indexname,
StringData nsname) MONGO_AUDIT_STUB
void logDropCollection(ClientBasic* client,
StringData nsname) MONGO_AUDIT_STUB
void logDropDatabase(ClientBasic* client,
StringData dbname) MONGO_AUDIT_STUB
void logRenameCollection(ClientBasic* client,
StringData source,
StringData target) MONGO_AUDIT_STUB
void logEnableSharding(ClientBasic* client,
StringData dbname) MONGO_AUDIT_STUB
void logAddShard(ClientBasic* client,
StringData name,
const std::string& servers,
long long maxSize) MONGO_AUDIT_STUB
void logRemoveShard(ClientBasic* client,
StringData shardname) MONGO_AUDIT_STUB
void logShardCollection(ClientBasic* client,
StringData ns,
const BSONObj& keyPattern,
bool unique) MONGO_AUDIT_STUB
void appendImpersonatedUsers(BSONObjBuilder* cmd) MONGO_AUDIT_STUB
void parseAndRemoveImpersonatedUsersField(
BSONObj cmdObj,
AuthorizationSession* authSession,
std::vector* parsedUserNames,
bool* fieldIsPresent) MONGO_AUDIT_STUB
void parseAndRemoveImpersonatedRolesField(
BSONObj cmdObj,
AuthorizationSession* authSession,
std::vector* parsedRoleNames,
bool* fieldIsPresent) MONGO_AUDIT_STUB
} // namespace audit
} // namespace mongo