/** * 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 . */ #include "mongo/platform/basic.h" #include "mongo/base/init.h" #include "mongo/bson/util/builder.h" #include "mongo/db/auth/authorization_manager.h" #include "mongo/db/auth/principal_set.h" #include "mongo/db/client_basic.h" #include "mongo/db/server_parameters.h" #include "mongo/util/log.h" namespace mongo { namespace { // Server parameter controlling whether or not user ids are included in log entries. // // TODO: Only really settable at startup. Changes at runtime won't change behavior; disable // them. MONGO_EXPORT_SERVER_PARAMETER(logUserIds, int, 0); void appendServerExtraLogContext(BufBuilder& builder) { ClientBasic* clientBasic = ClientBasic::getCurrent(); if (!clientBasic) return; if (!clientBasic->hasAuthorizationManager()) return; PrincipalSet::NameIterator principals = clientBasic->getAuthorizationManager()->getAuthenticatedPrincipalNames(); if (!principals.more()) return; builder.appendStr("user:", false); builder.appendStr(principals.next().toString()); while (principals.more()) { builder.appendChar(','); builder.appendStr(principals.next().toString(), false); } builder.appendChar(' '); } MONGO_INITIALIZER_WITH_PREREQUISITES(SetServerLogContextFunction, ())(InitializerContext*) { if (!logUserIds) return Status::OK(); return Logstream::registerExtraLogContextFn(appendServerExtraLogContext); } } // namespace } // namespace mongo