/* Editor Settings: expandtabs and use 4 spaces for indentation * ex: set softtabstop=4 tabstop=8 expandtab shiftwidth=4: * * -*- mode: c, c-basic-offset: 4 -*- */ /* * Copyright Likewise Software 2004-2008 * All rights reserved. * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the license, or (at * your option) any later version. * * This library 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 Lesser * General Public License for more details. You should have received a copy * of the GNU Lesser General Public License along with this program. If * not, see . * * LIKEWISE SOFTWARE MAKES THIS SOFTWARE AVAILABLE UNDER OTHER LICENSING * TERMS AS WELL. IF YOU HAVE ENTERED INTO A SEPARATE LICENSE AGREEMENT * WITH LIKEWISE SOFTWARE, THEN YOU MAY ELECT TO USE THE SOFTWARE UNDER THE * TERMS OF THAT SOFTWARE LICENSE AGREEMENT INSTEAD OF THE TERMS OF THE GNU * LESSER GENERAL PUBLIC LICENSE, NOTWITHSTANDING THE ABOVE NOTICE. IF YOU * HAVE QUESTIONS, OR WISH TO REQUEST A COPY OF THE ALTERNATE LICENSING * TERMS OFFERED BY LIKEWISE SOFTWARE, PLEASE CONTACT LIKEWISE SOFTWARE AT * license@likewisesoftware.com */ /* * Copyright (C) Likewise Software. All rights reserved. * * Module Name: * * filelog.h * * Abstract: * * Likewise Security and Authentication Subsystem (LSASS) * * Logging API * * Implemenation of logging to file * * Authors: Sriram Nambakam (snambakam@likewisesoftware.com) * */ #include "includes.h" DWORD LsaOpenConsoleLog( LsaLogLevel maxAllowedLogLevel, PHANDLE phLog ) { DWORD dwError = 0; PLSA_CONSOLE_LOG pConsoleLog = NULL; dwError = LwAllocateMemory( sizeof(LSA_CONSOLE_LOG), (PVOID*)&pConsoleLog); if (dwError) { goto error; } pConsoleLog->fp_out = stdout; pConsoleLog->fp_err = stderr; dwError = LsaSetupLogging( (HANDLE)pConsoleLog, maxAllowedLogLevel, &LsaLogToConsole ); if (dwError) { goto error; } *phLog = (HANDLE)pConsoleLog; cleanup: return dwError; error: *phLog = (HANDLE)NULL; if (pConsoleLog) { LsaFreeConsoleLogInfo(pConsoleLog); } goto cleanup; } DWORD LsaCloseConsoleLog( HANDLE hLog ) { PLSA_CONSOLE_LOG pConsoleLog = (PLSA_CONSOLE_LOG)hLog; LsaResetLogging(); if (pConsoleLog) { LsaFreeConsoleLogInfo(pConsoleLog); } return 0; } VOID LsaLogToConsole( HANDLE hLog, LsaLogLevel logLevel, PCSTR pszFormat, va_list msgList ) { PLSA_CONSOLE_LOG pConsoleLog = (PLSA_CONSOLE_LOG)hLog; PSTR pszEntryType = NULL; time_t currentTime; struct tm tmp = {0}; char timeBuf[128]; FILE* pTarget = NULL; switch (logLevel) { case LSA_LOG_LEVEL_ALWAYS: { pszEntryType = LSA_INFO_TAG; pTarget = pConsoleLog->fp_out; break; } case LSA_LOG_LEVEL_ERROR: { pszEntryType = LW_ERROR_TAG; pTarget = pConsoleLog->fp_err; break; } case LSA_LOG_LEVEL_WARNING: { pszEntryType = LSA_WARN_TAG; pTarget = pConsoleLog->fp_err; break; } case LSA_LOG_LEVEL_INFO: { pszEntryType = LSA_INFO_TAG; pTarget = pConsoleLog->fp_out; break; } case LSA_LOG_LEVEL_VERBOSE: { pszEntryType = LSA_VERBOSE_TAG; pTarget = pConsoleLog->fp_out; break; } case LSA_LOG_LEVEL_DEBUG: { pszEntryType = LSA_DEBUG_TAG; pTarget = pConsoleLog->fp_out; break; } case LSA_LOG_LEVEL_TRACE: { pszEntryType = LSA_TRACE_TAG; pTarget = pConsoleLog->fp_out; break; } default: { pszEntryType = LSA_VERBOSE_TAG; pTarget = pConsoleLog->fp_out; break; } } currentTime = time(NULL); localtime_r(¤tTime, &tmp); strftime(timeBuf, sizeof(timeBuf), LSA_LOG_TIME_FORMAT, &tmp); fprintf(pTarget, "%s:%s:", timeBuf, pszEntryType); vfprintf(pTarget, pszFormat, msgList); fprintf(pTarget, "\n"); fflush(pTarget); } VOID LsaFreeConsoleLogInfo( PLSA_CONSOLE_LOG pConsoleLog ) { LwFreeMemory(pConsoleLog); }