Windows2000/private/eventlog/server/eventlog.c
2020-09-30 17:12:32 +02:00

1736 lines
49 KiB
C

/*
Copyright (c) 1990 Microsoft Corporation
Module Name:
EVENTLOG.C
Abstract:
This file contains the main routines for the NT Event Logging Service.
Author:
Rajen Shah (rajens) 1-Jul-1991
Revision History:
26-Jan-1994 Danl
SetUpModules: Fixed memory leak where the buffers for the enumerated
key names were never free'd. Also fixed problem where the size of
the MULTI_SZ buffer used for the "Sources" key was calculated by
using the names in the registry, while the copying was done
using the names in the module list. When registry keys are deleted,
the module list entry is retained until the next boot. Since the
module list is larger, it would overwrite the MULTI_SZ buffer.
1-Nov-1993 Danl
Make Eventlog service a DLL and attach it to services.exe.
Pass in GlobalData to Elfmain. This GlobalData structure contains
all well-known SIDs and pointers to the Rpc Server (Start & Stop)
routines. Get rid of the service process main function.
1-Jul-1991 RajenS
created
--*/
// INCLUDES
#include <eventp.h>
#include <ntrpcp.h>
#include <elfcfg.h>
#include <string.h>
#include <tstr.h> // WCSSIZE
#include <alertmsg.h> // ALERT_ELF manifests
// Bit Flags used for Progress Reporting in SetupDataStruct().
#define LOGFILE_OPENED 0x00000001
#define MODULE_LINKED 0x00000002
#define LOGFILE_LINKED 0x00000004
HANDLE g_hTimestampWorkitem;
HANDLE g_hTimestampEvent;
ULONG g_PreviousInterval = DEFAULT_INTERVAL;
// Local Function Prorotypes
VOID
ElfInitMessageBoxTitle(
VOID
);
NTSTATUS
SetUpDataStruct(
PUNICODE_STRING LogFileName,
ULONG MaxFileSize,
ULONG Retention,
ULONG GuestAccessRestriction,
PUNICODE_STRING ModuleName,
HANDLE hLogFile,
ELF_LOG_TYPE LogType,
LOGPOPUP logpLogPopup
)
/*
Routine Description:
This routine sets up the information for one module. It is called from
ElfSetUpConfigDataStructs for each module to be configured.
Module information is passed into this routine and a LOGMODULE structure
is created for it. If the logfile associated with this module doesn't
exist, a LOGFILE structure is created for it, and added to the linked
list of LOGFILE structures. The LOGMODULE is associated with the LOGFILE,
and it is added to the linked list of LOGMODULE structures. The logfile
is opened and mapped to memory.
Finally, at the end, this function calls SetUpModules, which looks at
all the subkeys in the registry under this logfile, and adds any new ones
to the linked list, and updates the Sources MULTI_SZ for the event viewer.
Arguments:
LogFileName - Name of log file for this module. If this routine needs
a copy of this name it will make one, so that the caller can free
the name afterwards if that is desired.
MaxFileSize - Max size of the log file.
Retention - Max retention for the file.
ModuleName - Name of module that this file is associated with.
RegistryHandle - Handle to the root node for this LogFile's info
in the registry. This is used to enumerate all the
modules under this key.
Return Value:
Pointer to Module structure that is allocated in this routine.
NTSTATUS
Note:
--*/
{
NTSTATUS Status = STATUS_SUCCESS;
PLOGFILE pLogFile = NULL;
PLOGMODULE pModule = NULL;
ANSI_STRING ModuleNameA;
DWORD Type;
BOOL bLogFileAllocatedHere = FALSE;
PUNICODE_STRING SavedBackupFileName = NULL;
DWORD StringLength;
PLOGMODULE OldDefaultLogModule = NULL;
DWORD Progress = 0L;
// Argument check.
if ((LogFileName == NULL) ||
(LogFileName->Buffer == NULL) ||
(ModuleName == NULL)) {
return(STATUS_INVALID_PARAMETER);
}
// If the default log file for a module is also being used by another
// module, then we just link that same file structure with the other
// module.
// Truncate the maximum size of the log file to a 4K boundary.
// This is to allow for page granularity.
pLogFile = FindLogFileFromName(LogFileName);
pModule = ElfpAllocateBuffer(sizeof(LOGMODULE));
if (pModule == NULL) {
return(STATUS_NO_MEMORY);
}
if (pLogFile == NULL) {
// CREATE A NEW LOGFILE !!
// A logfile by this name doesn't exist yet. So we will create
// one so that we can add the module to it.
bLogFileAllocatedHere = TRUE;
pLogFile = ElfpAllocateBuffer(sizeof(LOGFILE));
if (pLogFile == NULL) {
ElfpFreeBuffer(pModule);
return(STATUS_NO_MEMORY);
}
ElfDbgPrint(("[ELF] Set up file data\n"));
// Allocate a new LogFileName that can be attached to the
// new pLogFile structure.
StringLength = LogFileName->Length + sizeof(WCHAR);
SavedBackupFileName = (PUNICODE_STRING)ElfpAllocateBuffer(
sizeof(UNICODE_STRING) + StringLength);
if (SavedBackupFileName == NULL) {
Status = STATUS_NO_MEMORY;
goto ErrorExit;
}
SavedBackupFileName->Buffer = (LPWSTR)((LPBYTE)SavedBackupFileName +
sizeof(UNICODE_STRING));
SavedBackupFileName->Length = LogFileName->Length;
SavedBackupFileName->MaximumLength = (USHORT)StringLength;
RtlMoveMemory(SavedBackupFileName->Buffer, LogFileName->Buffer,
LogFileName->Length);
SavedBackupFileName->Buffer[SavedBackupFileName->Length / sizeof(WCHAR)] =
L'\0';
// This is the first user - RefCount gets incrememted below
pLogFile->RefCount = 0;
pLogFile->FileHandle = NULL;
pLogFile->LogFileName = SavedBackupFileName;
pLogFile->ConfigMaxFileSize = ELFFILESIZE(MaxFileSize);
pLogFile->Retention = Retention;
pLogFile->ulLastPulseTime = 0;
pLogFile->logpLogPopup = logpLogPopup;
// Save away the default module name for this file
pLogFile->LogModuleName = ElfpAllocateBuffer(
sizeof(UNICODE_STRING) + ModuleName->MaximumLength);
if (pLogFile->LogModuleName == NULL) {
Status = STATUS_NO_MEMORY;
goto ErrorExit;
}
pLogFile->LogModuleName->MaximumLength = ModuleName->MaximumLength;
pLogFile->LogModuleName->Buffer =
(LPWSTR)(pLogFile->LogModuleName + 1);
RtlCopyUnicodeString(pLogFile->LogModuleName, ModuleName);
InitializeListHead(&pLogFile->Notifiees);
pLogFile->NextClearMaxFileSize = pLogFile->ConfigMaxFileSize;
RtlInitializeResource(&pLogFile->Resource);
LinkLogFile(pLogFile); // Link it in
Progress |= LOGFILE_LINKED;
} // endif (pLogfile == NULL)
// ADD THE MODULE TO THE LOG MODULE LIST
// Set up the module data structure for the default (which is
// the same as the logfile keyname).
pLogFile->RefCount++;
pModule->LogFile = pLogFile;
pModule->ModuleName = (LPWSTR)ModuleName->Buffer;
Status = RtlUnicodeStringToAnsiString(
&ModuleNameA,
ModuleName,
TRUE
);
if (!NT_SUCCESS(Status)) {
pLogFile->RefCount--;
goto ErrorExit;
}
// Link the new module in.
LinkLogModule(pModule, &ModuleNameA);
RtlFreeAnsiString(&ModuleNameA);
Progress |= MODULE_LINKED;
// Open up the file and map it to memory. Impersonate the
// caller so we can use UNC names
if (LogType == ElfBackupLog) {
Status = RpcImpersonateClient(NULL);
if (Status == RPC_S_OK) {
Status = ElfOpenLogFile(pLogFile, LogType);
RpcRevertToSelf();
} else {
ElfDbgPrint(("[ELF] SetupDataStruct: Failed to impersonate "
"client %08lx\n", Status));
}
} else {
Status = ElfOpenLogFile(pLogFile, LogType);
}
if (!NT_SUCCESS(Status)) {
ElfDbgPrintNC(("[ELF] Couldn't open %ws for module %ws\n",
LogFileName->Buffer, ModuleName->Buffer));
if (LogType != ElfBackupLog) {
ElfpCreateQueuedAlert(ALERT_ELF_LogFileNotOpened, 1,
&(ModuleName->Buffer));
}
pLogFile->RefCount--;
goto ErrorExit;
}
Progress |= LOGFILE_OPENED;
// If this is the application module, remember the pointer
// to use if a module doesn't have an entry in the registry
if (!_wcsicmp(ModuleName->Buffer, ELF_DEFAULT_MODULE_NAME)) {
OldDefaultLogModule = ElfDefaultLogModule;
ElfDefaultLogModule = pModule;
}
// Create the security descriptor for this logfile. Only
// the system and security modules are secured against
// reads and writes by world. Also, make sure we never
// pop up a "log full" message for the Security log -- this
// would be a C2 violation.
if (!_wcsicmp(ModuleName->Buffer, ELF_SYSTEM_MODULE_NAME)) {
Type = ELF_LOGFILE_SYSTEM;
} else if (!_wcsicmp(ModuleName->Buffer, ELF_SECURITY_MODULE_NAME)) {
Type = ELF_LOGFILE_SECURITY;
pLogFile->logpLogPopup = LOGPOPUP_NEVER_SHOW;
} else {
Type = ELF_LOGFILE_APPLICATION;
}
// Create a Security Descriptor for this Logfile
// (RtlDeleteSecurityObject() can be used to free
// pLogFile->Sd).
Status = ElfpCreateLogFileObject(pLogFile, Type, GuestAccessRestriction);
if (!NT_SUCCESS(Status)) {
ElfDbgPrintNC(("[ELF] Could not create the security "
"descriptor for logfile %ws\n", ModuleName->Buffer));
pLogFile->RefCount--;
goto ErrorExit;
}
// Now that we've added the default module name, see if there are any
// modules configured to log to this file, and if so, create the module
// structures for them.
SetUpModules(hLogFile, pLogFile, FALSE);
return (STATUS_SUCCESS);
ErrorExit:
if (Progress & LOGFILE_OPENED) {
ElfpCloseLogFile(pLogFile, ELF_LOG_CLOSE_BACKUP);
}
if (Progress & MODULE_LINKED) {
UnlinkLogModule(pModule);
DeleteAtom(pModule->ModuleAtom);
}
if (bLogFileAllocatedHere) {
if (Progress & LOGFILE_LINKED) {
UnlinkLogFile(pLogFile);
RtlDeleteResource(&pLogFile->Resource);
}
ElfpFreeBuffer(pLogFile->LogModuleName);
ElfpFreeBuffer(SavedBackupFileName);
ElfpFreeBuffer(pLogFile);
}
ElfpFreeBuffer(pModule);
if (OldDefaultLogModule != NULL) {
ElfDefaultLogModule = OldDefaultLogModule;
}
return(Status);
}
NTSTATUS
SetUpModules(
HANDLE hLogFile,
PLOGFILE pLogFile,
BOOLEAN bAllowDupes
)
/*
Routine Description:
This routine sets up the information for all modules for a logfile.
The subkeys under a logfile in the eventlog portion of the registry
are enumerated. For each unique subkey, a LOGMODULE structure is
created. Each new structures is added to a linked list
of modules for that logfile.
If there was one or more unique subkeys, meaning the list has changed
since we last looked, then we go through the entire linked list of
log modules, and create a MULTI_SZ list of all the modules. This list
is stored in the Sources value for that logfile for the event viewer
to use.
BUGBUG:
NOTE: A module is never un-linked from the linked list of log modules
even if the registry subkey for it is removed. This should probably
be done sometime. It would make the eventlog more robust.
Arguments:
hLogFile - Registry key for the Log File node
pLogFile - pointer to the log file structure
bAllowDupes - If true, it's ok to already have a module with the same
name (used when processing change notify of registry)
Return Value:
NTSTATUS - If unsuccessful, it is not a fatal error.
Even if this status is unsuccessful, me may have been able
to store some of the new subkeys in the LogModule list. Also, we
may have been able to update the Sources MULTI_SZ list.
Note:
--*/
{
NTSTATUS Status = STATUS_SUCCESS;
BYTE Buffer[ELF_MAX_REG_KEY_INFO_SIZE];
PKEY_NODE_INFORMATION KeyBuffer = (PKEY_NODE_INFORMATION)Buffer;
ULONG ActualSize;
PWCHAR SubKeyString;
UNICODE_STRING NewModule;
ANSI_STRING ModuleNameA;
PLOGMODULE pModule;
ULONG Index = 0;
ATOM Atom;
PWCHAR pList;
DWORD ListLength = 0;
UNICODE_STRING ListName;
BOOLEAN ListChanged = FALSE;
PLIST_ENTRY pListEntry;
// Create the module structures for all modules under this logfile. We
// don't actually need to open the key, since we don't use any information
// stored there, it's existence is all we care about here. Any data is
// used by the Event Viewer (or any viewing app). If this is used to
// setup a backup file, hLogFile is NULL since there aren't any other
// modules to map to this file.
while (NT_SUCCESS(Status) && hLogFile) {
Status = NtEnumerateKey(hLogFile, Index++, KeyNodeInformation,
KeyBuffer, ELF_MAX_REG_KEY_INFO_SIZE, &ActualSize);
if (NT_SUCCESS(Status)) {
// It turns out the Name isn't null terminated, so we need
// to copy it somewhere and null terminate it before we use it
SubKeyString = ElfpAllocateBuffer(KeyBuffer->NameLength +
sizeof(WCHAR));
if (!SubKeyString) {
return(STATUS_NO_MEMORY);
}
memcpy(SubKeyString, KeyBuffer->Name, KeyBuffer->NameLength);
SubKeyString[KeyBuffer->NameLength / sizeof(WCHAR)] = L'\0';
// Add the atom for this module name
RtlInitUnicodeString(&NewModule, SubKeyString);
Status = RtlUnicodeStringToAnsiString(
&ModuleNameA,
&NewModule,
TRUE
);
if (!NT_SUCCESS(Status)) {
// We can't continue, so we will leave the modules
// we've linked so far, and move on in an attempt to
// create the Sources MULTI_SZ list.
ElfpFreeBuffer(SubKeyString);
break;
}
Atom = FindAtomA(ModuleNameA.Buffer);
// Make sure we've not already added one by this name
if (FindModuleStrucFromAtom(Atom)) {
// We've already encountered a module by this name. If
// this is init time, it's a configuration error. Report
// it and move on. If we're processing a change notify
// from the registry, this is ok, so just press on
ElfDbgPrint(("[ELF] Same module exists in two log files - "
"%ws. This is%sOK\n",
SubKeyString,
bAllowDupes ? " " : " NOT "));
RtlFreeAnsiString(&ModuleNameA);
ElfpFreeBuffer(SubKeyString);
continue;
}
ListChanged = TRUE;
pModule = ElfpAllocateBuffer(sizeof(LOGMODULE));
if (!pModule) {
RtlFreeAnsiString(&ModuleNameA);
ElfpFreeBuffer(SubKeyString);
return(STATUS_NO_MEMORY);
}
// Set up a module data structure for this module
pModule->LogFile = pLogFile;
pModule->ModuleName = SubKeyString;
// Link the new module in.
LinkLogModule(pModule, &ModuleNameA);
RtlFreeAnsiString(&ModuleNameA);
}
}
if (Status == STATUS_NO_MORE_ENTRIES) {
// It's not required that there are configured modules for a log
// file.
Status = STATUS_SUCCESS;
}
// If the list has changed, or if we've been called during init, and not
// as the result of a changenotify on the registry (bAllowDupes == FALSE)
// then create the sources key
if (hLogFile && (ListChanged || !bAllowDupes)) {
// Now create a MULTI_SZ entry with all the module names for eventvwr
// STEP 1: Calculate amount of storage needed by running thru the
// module list, finding any module that uses this log file.
pListEntry = LogModuleHead.Flink;
while (pListEntry != &LogModuleHead) {
pModule = CONTAINING_RECORD(pListEntry, LOGMODULE, ModuleList);
if (pModule->LogFile == pLogFile) {
// This one is for the log we're working on, get the
// size of it's name.
ListLength += WCSSIZE(pModule->ModuleName);
}
pListEntry = pModule->ModuleList.Flink;
}
// STEP 2: Allocate storage for the MULTI_SZ.
pList = ElfpAllocateBuffer(ListLength + sizeof(WCHAR));
// If I can't allocate the list, just press on
if (pList) {
// STEP 3: Copy all the module names for this logfile into
// the MULTI_SZ string.
SubKeyString = pList; // Save this away
pListEntry = LogModuleHead.Flink;
while (pListEntry != &LogModuleHead) {
pModule = CONTAINING_RECORD(
pListEntry,
LOGMODULE,
ModuleList
);
if (pModule->LogFile == pLogFile) {
// This one is for the log we're working on, put it in the list
wcscpy(pList, pModule->ModuleName);
pList += wcslen(pModule->ModuleName);
pList++;
}
pListEntry = pModule->ModuleList.Flink;
}
*pList = L'\0'; // The terminating NULL
RtlInitUnicodeString(&ListName, L"Sources");
Status = NtSetValueKey(hLogFile,
&ListName,
0,
REG_MULTI_SZ,
SubKeyString,
ListLength + sizeof(WCHAR)
);
ElfpFreeBuffer(SubKeyString);
}
}
return(Status);
}
NTSTATUS
ElfSetUpConfigDataStructs(
VOID
)
/*
Routine Description:
This routine sets up all the necessary data structures for the eventlog
service. It enumerates the keys in the Logfiles registry node to
determine what to setup.
Arguments:
NONE
Return Value:
NONE
Note:
--*/
{
NTSTATUS Status = STATUS_SUCCESS;
HANDLE hLogFile;
OBJECT_ATTRIBUTES ObjectAttributes;
UNICODE_STRING SubKeyName;
PUNICODE_STRING pLogFileName = NULL;
PUNICODE_STRING pModuleName = NULL;
UNICODE_STRING EventlogModuleName;
ULONG Index = 0;
BYTE Buffer[ELF_MAX_REG_KEY_INFO_SIZE];
PKEY_NODE_INFORMATION KeyBuffer = (PKEY_NODE_INFORMATION)Buffer;
ULONG ActualSize;
LOG_FILE_INFO LogFileInfo;
PWCHAR SubKeyString;
LPWSTR ModuleName;
ElfDbgPrint(("[ELF] Set up config data structures\n"));
// Initialize the Atom table whose size is the maximum number of
// module structures possible, i.e. ELF_MAX_LOG_MODULES.
if (!(InitAtomTable(ELF_MAX_LOG_MODULES))) {
return (STATUS_UNSUCCESSFUL);
}
// Get a handle to the Logfiles subkey. If it doesn't exist, just use
// the hard-coded defaults.
if (hEventLogNode) {
// Loop thru the subkeys under Eventlog and set up each logfile
while (NT_SUCCESS(Status)) {
Status = NtEnumerateKey(hEventLogNode, Index++, KeyNodeInformation,
KeyBuffer, ELF_MAX_REG_KEY_INFO_SIZE, &ActualSize);
if (NT_SUCCESS(Status)) {
// It turns out the Name isn't null terminated, so we need
// to copy it somewhere and null terminate it before we use it
SubKeyString = ElfpAllocateBuffer(KeyBuffer->NameLength +
sizeof(WCHAR));
if (!SubKeyString) {
return(STATUS_NO_MEMORY);
}
memcpy(SubKeyString, KeyBuffer->Name, KeyBuffer->NameLength);
SubKeyString[KeyBuffer->NameLength / sizeof(WCHAR)] = L'\0';
// Open the node for this logfile and extract the information
// required by SetupDataStruct, and then call it.
RtlInitUnicodeString(&SubKeyName, SubKeyString);
InitializeObjectAttributes(&ObjectAttributes, &SubKeyName, OBJ_CASE_INSENSITIVE, hEventLogNode, NULL);
Status = NtOpenKey(&hLogFile, KEY_READ | KEY_SET_VALUE, &ObjectAttributes);
if (!NT_SUCCESS(Status)) {
// Unclear how this could happen since I just enum'ed
// it, but if I can't open it, I just pretend like it
// wasn't there to begin with.
ElfpFreeBuffer(SubKeyString);
Status = STATUS_SUCCESS; // so we don't terminate the loop
continue;
}
// Get the information from the registry. Note that we have to
// initialize the "log full" popup policy before doing so since
// ReadRegistryInfo will compare the value found in the registry
// (if there is one) to the current value.
LogFileInfo.logpLogPopup = IS_WORKSTATION() ? LOGPOPUP_NEVER_SHOW :
LOGPOPUP_CLEARED;
Status = ReadRegistryInfo(hLogFile,
&SubKeyName,
&LogFileInfo);
if (NT_SUCCESS(Status)) {
// Now set up the actual data structures. Failures are
// dealt with in the routine. Note that the check for
// the security log (i.e., for LOGPOPUP_NEVER_SHOW) is
// made in SetUpDataStruct
SetUpDataStruct(LogFileInfo.LogFileName,
LogFileInfo.MaxFileSize,
LogFileInfo.Retention,
LogFileInfo.GuestAccessRestriction,
&SubKeyName,
hLogFile,
ElfNormalLog,
LogFileInfo.logpLogPopup);
NtClose(hLogFile);
}
}
}
} // if (hEventLogNode)
else {
LOGPOPUP logpLogPopup = IS_WORKSTATION() ? LOGPOPUP_NEVER_SHOW : LOGPOPUP_CLEARED;
// The information doesn't exist in the registry, set up the
// three default logs.
pLogFileName = ElfpAllocateBuffer(sizeof(UNICODE_STRING));
pModuleName = ElfpAllocateBuffer(sizeof(UNICODE_STRING));
if (!pLogFileName || !pModuleName) {
return(STATUS_NO_MEMORY);
}
// Application log
RtlInitUnicodeString(pLogFileName, ELF_APPLICATION_DEFAULT_LOG_FILE);
RtlInitUnicodeString(pModuleName, ELF_DEFAULT_MODULE_NAME);
SetUpDataStruct(pLogFileName,
ELF_DEFAULT_MAX_FILE_SIZE,
ELF_DEFAULT_RETENTION_PERIOD,
ELF_GUEST_ACCESS_UNRESTRICTED,
pModuleName,
NULL,
ElfNormalLog,
logpLogPopup);
pLogFileName = ElfpAllocateBuffer(sizeof(UNICODE_STRING));
pModuleName = ElfpAllocateBuffer(sizeof(UNICODE_STRING));
if (!pLogFileName || !pModuleName) {
return(STATUS_NO_MEMORY);
}
// System log
RtlInitUnicodeString(pLogFileName, ELF_SYSTEM_DEFAULT_LOG_FILE);
RtlInitUnicodeString(pModuleName, ELF_SYSTEM_MODULE_NAME);
SetUpDataStruct(pLogFileName,
ELF_DEFAULT_MAX_FILE_SIZE,
ELF_DEFAULT_RETENTION_PERIOD,
ELF_GUEST_ACCESS_UNRESTRICTED,
pModuleName,
NULL,
ElfNormalLog,
logpLogPopup);
pLogFileName = ElfpAllocateBuffer(sizeof(UNICODE_STRING));
pModuleName = ElfpAllocateBuffer(sizeof(UNICODE_STRING));
if (!pLogFileName || !pModuleName) {
return(STATUS_NO_MEMORY);
}
// Security log
RtlInitUnicodeString(pLogFileName, ELF_SECURITY_DEFAULT_LOG_FILE);
RtlInitUnicodeString(pModuleName, ELF_SECURITY_MODULE_NAME);
SetUpDataStruct(pLogFileName,
ELF_DEFAULT_MAX_FILE_SIZE,
ELF_DEFAULT_RETENTION_PERIOD,
ELF_GUEST_ACCESS_UNRESTRICTED,
pModuleName,
NULL,
ElfNormalLog,
LOGPOPUP_NEVER_SHOW); // Never popup for the security log
}
// If we just ran out of keys, that's OK (unless there weren't any at all)
if (Status == STATUS_NO_MORE_ENTRIES && Index != 1) {
Status = STATUS_SUCCESS;
}
if (NT_SUCCESS(Status)) {
// Make sure we created the Application log file, since it is the
// default. If it wasn't created, use the first module created
// (this is at the tail of the list since I insert them at the
// head). If this happens, send an alert to the admin.
if (!ElfDefaultLogModule) {
ElfDbgPrintNC(("[ELF] No Logfile entry for Application module, "
"default will be created\n"));
if (IsListEmpty(&LogModuleHead)) {
// No logs were created, might as well shut down
return(STATUS_EVENTLOG_CANT_START);
}
ElfDefaultLogModule = CONTAINING_RECORD(LogModuleHead.Blink,
LOGMODULE,
ModuleList);
ModuleName = ELF_DEFAULT_MODULE_NAME;
ElfpCreateQueuedAlert(ALERT_ELF_DefaultLogCorrupt, 1,
&(ElfDefaultLogModule->LogFile->LogModuleName->Buffer));
}
// Now get the Module for the Eventlog service to use. GetModuleStruc
// always succeeds, returning the default log if the requested one
// isn't configured.
RtlInitUnicodeString(&EventlogModuleName, L"eventlog");
ElfModule = GetModuleStruc(&EventlogModuleName);
} else {
if (pLogFileName && pModuleName) {
ElfDbgPrintNC(("[ELF] Failure Setting up data structs for file %ws, "
"Module %ws - %X\n", pLogFileName->Buffer, pModuleName->Buffer,
Status));
} else {
ElfDbgPrintNC(("[ELF] Failure setting up data structs. No logs"
" defined in registry\n"));
}
}
return (Status);
}
VOID
ElfWriteTimeStamp(
TIMESTAMPEVENT EventType,
BOOLEAN CheckPreviousStamp
)
/*
Routine Description:
This routine writes a time stamp in the form of a systemtime structure
to the registry which is then used to extract reliability data.
Arguments:
EventType - Indicates what type of event we are logging
CheckPreviousStamp - Whether we should check for the existance of a previous
time stamp which indicates a prior system crash.
Return Value:
NONE
Note:
--*/
{
SYSTEMTIME stCurrentUTCTime;
SYSTEMTIME stPreviousUTCTime;
SYSTEMTIME stPreviousLocalTime;
HKEY hKey;
LONG rc;
DWORD ValueSize;
ULONG Interval = DEFAULT_INTERVAL;
ULONG wchars;
LPWSTR DateTimeBuffer[2];
rc = RegCreateKeyEx(HKEY_LOCAL_MACHINE, REGSTR_PATH_RELIABILITY, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL, &hKey, NULL);
if (rc != ERROR_SUCCESS) {
return;
}
if (EventType == EVENT_NormalShutdown) {
// Delete the time stamp registry value, this is how we indicate a clean shutdown
RegDeleteValue(hKey, REGSTR_VAL_LASTALIVESTAMP);
RegFlushKey(hKey);
RegCloseKey(hKey);
return;
}
// Get the current UTC time
GetSystemTime(&stCurrentUTCTime);
if (CheckPreviousStamp) {
ValueSize = sizeof(SYSTEMTIME);
rc = RegQueryValueEx(hKey,
REGSTR_VAL_LASTALIVESTAMP,
0,
NULL,
(PUCHAR)&stPreviousUTCTime,
&ValueSize);
// If we can successfully read a systemtime structure it indicates
// that the previous shutdown was abnormal, i.e. we didn't execute
// or normal shutdown cleanup code.
// Format the time and date of the crash time stamp
// appropriately for the locale and log a #6008 event
if ((rc == ERROR_SUCCESS) && (ValueSize == sizeof(SYSTEMTIME))) {
SYSTEMTIME lpData[2]; // Data for the event
if (!SystemTimeToTzSpecificLocalTime(NULL,
&stPreviousUTCTime,
&stPreviousLocalTime)) {
// Couldn't convert to the active time zone -- use UTC
stPreviousLocalTime = stPreviousUTCTime;
}
// Write the local time and the UTC time for the "last alive"
// timestamp since NT4SP5 shipped with only the local time
// as the event data. This allows tools that work on NT4SP5
// to continue working on NT5.
lpData[0] = stPreviousLocalTime;
lpData[1] = stPreviousUTCTime;
wchars = GetTimeFormat(LOCALE_SYSTEM_DEFAULT,
0,
&stPreviousLocalTime,
NULL,
NULL,
0);
DateTimeBuffer[0] = LocalAlloc(LPTR, wchars * sizeof(WCHAR));
if (DateTimeBuffer[0]) {
GetTimeFormat(LOCALE_SYSTEM_DEFAULT,
0,
&stPreviousLocalTime,
NULL,
DateTimeBuffer[0],
wchars);
wchars = GetDateFormat(LOCALE_SYSTEM_DEFAULT,
0,
&stPreviousLocalTime,
NULL,
NULL,
0);
DateTimeBuffer[1] = LocalAlloc(LPTR, wchars * sizeof(WCHAR));
if (DateTimeBuffer[1]) {
GetDateFormat(LOCALE_SYSTEM_DEFAULT,
0,
&stPreviousLocalTime,
NULL,
DateTimeBuffer[1],
wchars);
ElfpCreateElfEvent(
EVENT_EventlogAbnormalShutdown,
EVENTLOG_ERROR_TYPE,
0, // EventCategory
2, // NumberOfStrings
DateTimeBuffer, // Strings
lpData, // "Last alive" times
2 * sizeof(SYSTEMTIME), // Datalength
0); // flags
LocalFree(DateTimeBuffer[1]);
}
LocalFree(DateTimeBuffer[0]);
}
}
}
// Set the current time stamp
RegSetValueEx(hKey, REGSTR_VAL_LASTALIVESTAMP, 0, REG_BINARY, (PUCHAR)&stCurrentUTCTime, sizeof(SYSTEMTIME));
RegFlushKey(hKey);
RegCloseKey(hKey);
}
VOID ElfWriteProductInfoEvent(VOID)
/*
Routine Description:
This function writes an event #6009 which includes the OS version, build #, service pack level, MP/UP, and Free/Checked.
Arguments:
NONE
Return Value:
NONE
Note:
--*/
{
#define NUM_INFO_VALUES 4
HKEY hKey;
LPWSTR StringBuffers[NUM_INFO_VALUES] = {NULL, NULL, NULL, NULL};
LPWSTR lpValues[NUM_INFO_VALUES] = {
REGSTR_VAL_CURRENT_VERSION,
REGSTR_VAL_CURRENT_BUILD,
REGSTR_VAL_CURRENT_CSDVERSION,
REGSTR_VAL_CURRENT_TYPE
};
ULONG ValueSize = 0;
LPWSTR NullString = L"";
UINT i;
// Open HKLM\Software\Microsoft\Windows NT\CurrentVersion
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, REGSTR_PATH_NT_CURRENTVERSION, 0, KEY_ALL_ACCESS, &hKey) != ERROR_SUCCESS) {
return;
}
// For each of the registry values, query for the string size, allocate storage,
// and query the actual value
for (i = 0; i < NUM_INFO_VALUES; i++) {
if ((RegQueryValueEx(hKey, lpValues[i], 0, NULL, NULL, &ValueSize) == ERROR_SUCCESS) && ValueSize != 0) {
StringBuffers[i] = LocalAlloc(LPTR, ValueSize);
if (StringBuffers[i] != NULL) {
RegQueryValueEx(hKey, lpValues[i], 0, NULL, (PUCHAR)StringBuffers[i], &ValueSize);
ValueSize = 0;
}
} else {
StringBuffers[i] = NullString;
}
}
ElfpCreateElfEvent(
EVENT_EventLogProductInfo,
EVENTLOG_INFORMATION_TYPE,
0, // EventCategory
NUM_INFO_VALUES, // NumberOfStrings
StringBuffers, // Strings
NULL, // EventData
0, // Datalength
0); // flags
for (i = 0; i < NUM_INFO_VALUES; i++) {
if (StringBuffers[i] != NullString) {
LocalFree(StringBuffers[i]);
}
}
RegCloseKey(hKey);
#undef NUM_INFO_VALUES
}
VOID
TimeStampProc(
PVOID Interval,
BOOLEAN fWaitStatus
)
{
NTSTATUS ntStatus;
HANDLE hWaitHandle;
ULONG ValueSize;
HKEY hKey;
ULONG NewInterval;
ULONG rc;
// Deregister the wait (note that we must do this even
// if the WT_EXECUTEONLYONCE flag is set)
ntStatus = RtlDeregisterWait(g_hTimestampWorkitem);
if (!NT_SUCCESS(ntStatus)) {
ElfDbgPrint(("[ELF] TimeStampProc: RtlDeregisterWait FAILED %#x\n",
ntStatus));
}
if (fWaitStatus == FALSE) {
// The event log service is stopping
return;
}
// Note: NewInterval is specified in minutes
NewInterval = (ULONG)((ULONG_PTR)Interval);
// The event timed out -- write a timestamp
ElfWriteTimeStamp(EVENT_AbNormalShutdown, FALSE);
// recheck the time stamp interval value
rc = RegCreateKeyEx(HKEY_LOCAL_MACHINE, REGSTR_PATH_RELIABILITY, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL, &hKey, NULL);
if (rc == ERROR_SUCCESS) {
ValueSize = sizeof(ULONG);
rc = RegQueryValueEx(hKey, REGSTR_VAL_LASTALIVEINTERVAL, 0, NULL, (PUCHAR)&NewInterval, &ValueSize);
if (rc != ERROR_SUCCESS) {
// Couldn't get the value -- stop timestamping
return;
}
RegCloseKey(hKey);
}
if (NewInterval != 0) {
// Reregister the wait
ntStatus = RtlRegisterWait(&g_hTimestampWorkitem,
g_hTimestampEvent,
TimeStampProc, // Callback
(PVOID)NewInterval, // Context
NewInterval * 60 * 1000, // Timeout, in ms
WT_EXECUTEONLYONCE);
}
if (!NT_SUCCESS(ntStatus)) {
ElfDbgPrint(("[ELF] TimeStampProc: RtlRegisterWait FAILED %#x\n",
ntStatus));
}
}
VOID
SvcEntry_Eventlog( // (ELF_main)
DWORD argc,
LPWSTR argv[],
PSVCS_GLOBAL_DATA SvcsGlobalData,
HANDLE SvcRefHandle
)
/*
Routine Description:
This is the main routine for the Event Logging Service.
Arguments:
Command-line arguments.
--*/
{
NTSTATUS Status;
OBJECT_ATTRIBUTES ObjectAttributes;
UNICODE_STRING RootRegistryNode;
ULONG Win32Error = NO_ERROR;
ELF_REQUEST_RECORD FlushRequest;
BYTE Buffer[ELF_MAX_REG_KEY_INFO_SIZE];
#if DBG
UNICODE_STRING ValueName;
#endif // DBG
PKEY_VALUE_FULL_INFORMATION ValueBuffer =
(PKEY_VALUE_FULL_INFORMATION)Buffer;
SID_IDENTIFIER_AUTHORITY NtAuthority = SECURITY_NT_AUTHORITY;
HKEY hKey;
ULONG ValueSize = sizeof(ULONG);
UNREFERENCED_PARAMETER(argc);
UNREFERENCED_PARAMETER(argv);
ElfGlobalSvcRefHandle = SvcRefHandle;
ElfGlobalData = SvcsGlobalData;
// Initialize the list heads for the modules and log files.
InitializeListHead(&LogFilesHead);
InitializeListHead(&LogModuleHead);
InitializeListHead(&QueuedEventListHead);
InitializeListHead(&QueuedMessageListHead);
// Initialize to 0 so that we can clean up before exiting
EventFlags = 0;
// Tuck away the local computer name
ComputerNameLength = 0;
GetComputerNameW(LocalComputerName, &ComputerNameLength);
ComputerNameLength += sizeof(WCHAR); // account for the NULL
LocalComputerName = ElfpAllocateBuffer(ComputerNameLength * sizeof(WCHAR));
if (!LocalComputerName ||
!GetComputerNameW(LocalComputerName, &ComputerNameLength)) {
ComputerNameLength = 0;
}
ComputerNameLength = (ComputerNameLength + 1) * sizeof(WCHAR);
// Initialize the status data.
ElInitStatus();
// Set up control handler
ElfDbgPrint(("[ELF] Calling RegisterServiceCtrlHandler\n"));
if ((ElfServiceStatusHandle = RegisterServiceCtrlHandler(EVENTLOG_SVC_NAMEW, ElfControlResponse)) == 0) {
Win32Error = GetLastError();
// If we got an error, we need to set status to uninstalled, and end the thread.
ElfDbgPrintNC(("[ELF] RegisterServiceCtrlHandler = %d\n", Win32Error));
goto cleanupandexit;
}
// Initialize all the status fields so that subsequent calls to
// SetServiceStatus only need to update fields that changed.
// Notify the Service Controller for the first time that we are alive
// and are in a start pending state
// ** UPDATE STATUS **
ElfStatusUpdate(STARTING);
// Get the localized title for message box popups.
ElfInitMessageBoxTitle();
// Set up the object that describes the root node for the eventlog service
RtlInitUnicodeString(&RootRegistryNode, REG_EVENTLOG_NODE_PATH);
InitializeObjectAttributes(&ObjectAttributes, &RootRegistryNode, OBJ_CASE_INSENSITIVE, NULL, NULL);
// If this fails, we'll just use the defaults
NtOpenKey(&hEventLogNode, KEY_READ | KEY_NOTIFY, &ObjectAttributes);
#if DBG
// See if there's a debug key
RtlInitUnicodeString(&ValueName, VALUE_DEBUG);
NtQueryValueKey(hEventLogNode, &ValueName, KeyValueFullInformation, ValueBuffer, ELF_MAX_REG_KEY_INFO_SIZE, &ElfDebug);
#endif
// Initialize a critical section for use when adding or removing
// LogFiles or LogModules. This must be done before we process any file information.
Status = RtlInitializeCriticalSection(&LogFileCritSec);
if (!NT_SUCCESS(Status)) {
ElfDbgPrintNC(("ELF log file crit sec init failed: %X\n", Status));
goto cleanupandexit;
}
Status = RtlInitializeCriticalSection(&LogModuleCritSec);
if (!NT_SUCCESS(Status)) {
ElfDbgPrintNC(("ELF log file crit sec init failed: %X\n", Status));
goto cleanupandexit;
}
EventFlags |= ELF_INIT_LOGFILE_CRIT_SEC;
Status = RtlInitializeCriticalSection(&QueuedEventCritSec);
if (!NT_SUCCESS(Status)) {
ElfDbgPrintNC(("ELF queued event crit sec init failed: %X\n", Status));
goto cleanupandexit;
}
EventFlags |= ELF_INIT_QUEUED_EVENT_CRIT_SEC;
Status = RtlInitializeCriticalSection(&QueuedMessageCritSec);
if (!NT_SUCCESS(Status)) {
ElfDbgPrintNC(("ELF queued message crit sec init failed: %X\n", Status));
goto cleanupandexit;
}
EventFlags |= ELF_INIT_QUEUED_MESSAGE_CRIT_SEC;
// Initialize global anonymous logon sid for use in log ACL's.
Status = RtlAllocateAndInitializeSid(
&NtAuthority,
1,
SECURITY_ANONYMOUS_LOGON_RID,
0, 0, 0, 0, 0, 0, 0,
&AnonymousLogonSid);
if (!NT_SUCCESS(Status)) {
ElfDbgPrintNC(("ELF anonymous log sid creation failed: %X\n", Status));
goto cleanupandexit;
}
// Set up the data structures for the Logfiles and Modules.
Status = ElfSetUpConfigDataStructs();
if (!NT_SUCCESS(Status)) {
goto cleanupandexit;
}
// Tell service controller that we are making progress
// ** UPDATE STATUS **
ElfStatusUpdate(STARTING);
// Initialize a critical section for use when adding or removing
// context-handles (LogHandles).
Status = RtlInitializeCriticalSection(&LogHandleCritSec);
if (!NT_SUCCESS(Status)) {
ElfDbgPrintNC(("ELF log handle crit sec init failed: %X\n", Status));
goto cleanupandexit;
}
EventFlags |= ELF_INIT_LOGHANDLE_CRIT_SEC;
// Initialize the context handle (log handle) list.
InitializeListHead(&LogHandleListHead);
// Initialize the Global Resource.
RtlInitializeResource(&GlobalElfResource);
EventFlags |= ELF_INIT_GLOBAL_RESOURCE;
//Initialize a CritSec for clustering support
Status = RtlInitializeCriticalSection(&gClPropCritSec);
if (!NT_SUCCESS(Status)) {
ElfDbgPrintNC(("ELF cluster event crit sec init failed: %X\n", Status));
goto cleanupandexit;
}
EventFlags |= ELF_INIT_CLUS_CRIT_SEC;
// Tell service controller of that we are making progress
// ** UPDATE STATUS **
ElfStatusUpdate(STARTING);
// Create a thread for watching the LPC port.
if (!StartLPCThread()) {
Status = STATUS_UNSUCCESSFUL;
goto cleanupandexit;
}
EventFlags |= ELF_STARTED_LPC_THREAD;
// Tell service controller of that we are making progress
// ** UPDATE STATUS **
ElfStatusUpdate(STARTING);
// Create a thread for watching for changes in the registry.
if (!ElfStartRegistryMonitor()) {
Status = STATUS_UNSUCCESSFUL;
goto cleanupandexit;
}
EventFlags |= ELF_STARTED_REGISTRY_MONITOR;
// Write out an event that says we started
ElfpCreateElfEvent(EVENT_EventlogStarted,
EVENTLOG_INFORMATION_TYPE,
0, // EventCategory
0, // NumberOfStrings
NULL, // Strings
NULL, // Data
0, // Datalength
0); // flags
// Write a boot event with version info
ElfWriteProductInfoEvent();
// Read from the registry to determine the time stamp interval, default to 5 minutes
Status = RegOpenKeyEx(HKEY_LOCAL_MACHINE, REGSTR_PATH_RELIABILITY, 0, KEY_ALL_ACCESS, &hKey);
if (Status == ERROR_SUCCESS) {
RegQueryValueEx(hKey, REGSTR_VAL_LASTALIVEINTERVAL, 0, NULL, (PUCHAR)&g_PreviousInterval, &ValueSize);
RegCloseKey(hKey);
}
if (g_PreviousInterval != 0) {
// Write out the first timer based abnormal shutdown time stamp
ElfWriteTimeStamp(EVENT_AbNormalShutdown, TRUE);
}
// Write out any events that were queued up during initialization
FlushRequest.Command = ELF_COMMAND_WRITE_QUEUED;
ElfPerformRequest(&FlushRequest);
// Tell service controller that we are making progress
// ** UPDATE STATUS **
ElfStatusUpdate(STARTING);
// Finish setting up the RPC server
// NOTE: Now all RPC servers in services.exe share the same pipe name.
// However, in order to support communication with version 1.0 of WinNt,
// it is necessary for the Client Pipe name to remain the same as
// it was in version 1.0. Mapping to the new name is performed in
// the Named Pipe File System code.
Status = ElfGlobalData->StartRpcServer(
ElfGlobalData->SvcsRpcPipeName,
eventlog_ServerIfHandle);
if (!NT_SUCCESS(Status)) {
ElfDbgPrint(("[ELF]StartRpcServer Failed %d\n", Status));
goto cleanupandexit;
}
// Tell service controller that we are making progress
ElfStatusUpdate(RUNNING);
EventFlags |= ELF_STARTED_RPC_SERVER;
if (GetElState() == RUNNING) {
ElfDbgPrint(("[ELF] Service Running - main thread is returning\n"));
if (g_PreviousInterval != 0) {
// Create a thread to periodically write
// a time stamp to the registry.
g_hTimestampEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
if (g_hTimestampEvent != NULL) {
Status = RtlRegisterWait(&g_hTimestampWorkitem,
g_hTimestampEvent,
TimeStampProc, // Callback
(PVOID)g_PreviousInterval, // Context
0, // Timeout
WT_EXECUTEONLYONCE);
if (!NT_SUCCESS(Status)) {
ElfDbgPrint(("[ELF] SvcEntry_Eventlog: RtlRegisterWait FAILED 0x%x\n",
Status));
}
} else {
ElfDbgPrint(("[ELF] Couldn't create timestamp event %d\n",
GetLastError()));
}
}
return;
}
// Come here if there is cleanup necessary.
cleanupandexit:
ElfDbgPrint(("[ELF] Leaving the service\n"));
if (Win32Error == NO_ERROR) {
Win32Error = RtlNtStatusToDosError(Status);
}
ElfBeginForcedShutdown(PENDING, Win32Error, Status);
// If the registry monitor has been initialized, then
// let it do the shutdown cleanup. All we need to do
// here is wake it up.
// Otherwise, this thread will do the cleanup.
if (EventFlags & ELF_STARTED_REGISTRY_MONITOR) {
StopRegistryMonitor();
} else {
ElfpCleanUp(EventFlags);
}
return;
}
VOID
ElfInitMessageBoxTitle(
VOID
)
/*
Routine Description:
Obtains the title text for the message box used to display messages.
If the title is successfully obtained from the message file, then
that title is pointed to by GlobalAllocatedMsgTitle and
GlobalMessageBoxTitle. If unsuccessful, then GlobalMessageBoxTitle
left pointing to the DefaultMessageBoxTitle.
NOTE: If successful, a buffer is allocated by this function. The
pointer stored in GlobalAllocatedMsgTitle and it should be freed when
done with this buffer.
Return Value:
none
--*/
{
LPVOID hModule;
DWORD msgSize;
GlobalAllocatedMsgTitle = NULL;
hModule = LoadLibraryEx(L"netevent.dll",
NULL,
LOAD_LIBRARY_AS_DATAFILE);
if (hModule == NULL) {
ElfDbgPrint(("LoadLibraryEx() fails with winError = %d\n", GetLastError()));
return;
}
msgSize = FormatMessageW(
FORMAT_MESSAGE_FROM_HMODULE | // dwFlags
FORMAT_MESSAGE_ARGUMENT_ARRAY |
FORMAT_MESSAGE_ALLOCATE_BUFFER,
hModule,
TITLE_EventlogMessageBox, // MessageId
0, // dwLanguageId
(LPWSTR)&GlobalAllocatedMsgTitle, // lpBuffer
0, // nSize
NULL);
if (msgSize == 0) {
ElfDbgPrint((ERROR, "Could not find MessageBox title in a message file %d\n",
GetLastError()));
} else {
GlobalMessageBoxTitle = GlobalAllocatedMsgTitle;
}
FreeLibrary(hModule);
return;
}
#ifdef EXIT_PROCESS
// This code is compiled into the Eventlog to track down a DLL that's loaded
// into services.exe and calls ExitProcess. Since this DLL should never be
// unloaded, we break into the debugger on DLL_PROCESS_DETACH. To use this,
// the following need to be added to the sources file:
// DLLENTRY= DllInit
// -DEXIT_PROCESS (to the C_DEFINES line)
BOOL
DllInit(
IN HINSTANCE hDll,
IN DWORD dwReason,
IN PCONTEXT pContext OPTIONAL
)
{
switch (dwReason) {
case DLL_PROCESS_ATTACH:
// No notification of THREAD_ATTACH and THREAD_DETACH
DisableThreadLibraryCalls(hDll);
break;
case DLL_PROCESS_DETACH:
// This should NEVER happen -- it means services.exe
// is exiting via an ExitProcess call
DebugBreak();
break;
}
return TRUE;
}
#endif // EXIT_PROCESS