Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

423 lines
9.9 KiB

/*++
Copyright (c) 1997-2000 Microsoft Corporation
Module Name:
utils.c
Abstract:
This module contains utility functions for the pcmcia driver
Authors:
Bob Rinne (BobRi) 3-Aug-1994
Jeff McLeman 12-Apr-1994
Ravisankar Pudipeddi (ravisp) 1-Nov-96
Neil Sandlin (neilsa) June 1 1999
Environment:
Kernel mode
Revision History :
6-Apr-95
Modified for databook support - John Keys Databook
1-Nov-96
Total overhaul to make this a bus enumerator - Ravisankar Pudipeddi (ravisp)
30-Mar-99
Turn this module into really just utility routines
--*/
#include "pch.h"
#pragma alloc_text(PAGE, PcmciaReportControllerError)
//
// Internal References
//
NTSTATUS
PcmciaAdapterIoCompletion(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN PKEVENT pdoIoCompletedEvent
);
//
//
//
NTSTATUS
PcmciaIoCallDriverSynchronous(
PDEVICE_OBJECT deviceObject,
PIRP Irp
)
/*++
Routine Description
Arguments
Return Value
--*/
{
NTSTATUS status;
KEVENT event;
KeInitializeEvent(&event, NotificationEvent, FALSE);
IoCopyCurrentIrpStackLocationToNext(Irp);
IoSetCompletionRoutine(
Irp,
PcmciaAdapterIoCompletion,
&event,
TRUE,
TRUE,
TRUE
);
status = IoCallDriver(deviceObject, Irp);
if (status == STATUS_PENDING) {
KeWaitForSingleObject(&event, Executive, KernelMode, FALSE, NULL);
status = Irp->IoStatus.Status;
}
return status;
}
NTSTATUS
PcmciaAdapterIoCompletion(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp,
IN PKEVENT pdoIoCompletedEvent
)
/*++
Routine Description:
Generic completion routine used by the driver
Arguments:
DeviceObject
Irp
pdoIoCompletedEvent - this event will be signalled before return of this routine
Return value:
Status
--*/
{
KeSetEvent(pdoIoCompletedEvent, IO_NO_INCREMENT, FALSE);
return STATUS_MORE_PROCESSING_REQUIRED;
}
VOID
PcmciaWait(
IN ULONG MicroSeconds
)
/*++
Routine Description
Waits for the specified interval before returning,
by yielding execution.
Arguments
MicroSeconds - Amount of time to delay in microseconds
Return Value
None. Must succeed.
--*/
{
LARGE_INTEGER dueTime;
NTSTATUS status;
if ((KeGetCurrentIrql() < DISPATCH_LEVEL) && (MicroSeconds > 50)) {
//
// Convert delay to 100-nanosecond intervals
//
dueTime.QuadPart = -((LONG) MicroSeconds*10);
//
// We wait for an event that'll never be set.
//
status = KeWaitForSingleObject(&PcmciaDelayTimerEvent,
Executive,
KernelMode,
FALSE,
&dueTime);
ASSERT(status == STATUS_TIMEOUT);
} else {
KeStallExecutionProcessor(MicroSeconds);
}
}
ULONG
PcmciaCountOnes(
IN ULONG Data
)
/*++
Routine Description:
Counts the number of 1's in the binary representation of the supplied argument
Arguments:
Data - supplied argument for which 1's need to be counted
Return value:
Number of 1's in binary rep. of Data
--*/
{
ULONG count=0;
while (Data) {
Data &= (Data-1);
count++;
}
return count;
}
VOID
PcmciaLogError(
IN PFDO_EXTENSION DeviceExtension,
IN ULONG ErrorCode,
IN ULONG UniqueId,
IN ULONG Argument
)
/*++
Routine Description:
This function logs an error.
Arguments:
DeviceExtension - Supplies a pointer to the port device extension.
ErrorCode - Supplies the error code for this error.
UniqueId - Supplies the UniqueId for this error.
Return Value:
None.
--*/
{
PIO_ERROR_LOG_PACKET packet;
packet = (PIO_ERROR_LOG_PACKET) IoAllocateErrorLogEntry(DeviceExtension->DeviceObject,
sizeof(IO_ERROR_LOG_PACKET) + sizeof(ULONG));
if (packet) {
packet->ErrorCode = ErrorCode;
packet->SequenceNumber = DeviceExtension->SequenceNumber++;
packet->MajorFunctionCode = 0;
packet->RetryCount = (UCHAR) 0;
packet->UniqueErrorValue = UniqueId;
packet->FinalStatus = STATUS_SUCCESS;
packet->DumpDataSize = sizeof(ULONG);
packet->DumpData[0] = Argument;
IoWriteErrorLogEntry(packet);
}
}
VOID
PcmciaLogErrorWithStrings(
IN PFDO_EXTENSION DeviceExtension,
IN ULONG ErrorCode,
IN ULONG UniqueId,
IN PUNICODE_STRING String1,
IN PUNICODE_STRING String2
)
/*++
Routine Description
This function logs an error and includes the strings provided.
Arguments:
DeviceExtension - Supplies a pointer to the port device extension.
ErrorCode - Supplies the error code for this error.
UniqueId - Supplies the UniqueId for this error.
String1 - The first string to be inserted.
String2 - The second string to be inserted.
Return Value:
None.
--*/
{
ULONG length;
PCHAR dumpData;
PIO_ERROR_LOG_PACKET packet;
length = String1->Length + sizeof(IO_ERROR_LOG_PACKET) + 4;
if (String2) {
length += String2->Length;
}
if (length > ERROR_LOG_MAXIMUM_SIZE) {
//
// Don't have code to truncate strings so don't log this.
//
return;
}
packet = (PIO_ERROR_LOG_PACKET) IoAllocateErrorLogEntry(DeviceExtension->DeviceObject,
(UCHAR) length);
if (packet) {
packet->ErrorCode = ErrorCode;
packet->SequenceNumber = DeviceExtension->SequenceNumber++;
packet->MajorFunctionCode = 0;
packet->RetryCount = (UCHAR) 0;
packet->UniqueErrorValue = UniqueId;
packet->FinalStatus = STATUS_SUCCESS;
packet->NumberOfStrings = 1;
packet->StringOffset = (USHORT) ((PUCHAR)&packet->DumpData[0] - (PUCHAR)packet);
packet->DumpDataSize = (USHORT) (length - sizeof(IO_ERROR_LOG_PACKET));
packet->DumpDataSize /= sizeof(ULONG);
dumpData = (PUCHAR) &packet->DumpData[0];
RtlCopyMemory(dumpData, String1->Buffer, String1->Length);
dumpData += String1->Length;
if (String2) {
*dumpData++ = '\\';
*dumpData++ = '\0';
RtlCopyMemory(dumpData, String2->Buffer, String2->Length);
dumpData += String2->Length;
}
*dumpData++ = '\0';
*dumpData++ = '\0';
IoWriteErrorLogEntry(packet);
}
return;
}
BOOLEAN
PcmciaReportControllerError(
IN PFDO_EXTENSION FdoExtension,
NTSTATUS ErrorCode
)
/*++
Routine Description
Causes a pop-up dialog to appear indicating an error that
we should tell the user about. The device description of the
controller is also included in the text of the pop-up.
Arguments
FdoExtension - Pointer to device extension for pcmcia controller
ErrorCode - the ntstatus code for the error
Return Value
TRUE - If a an error was queued
FALSE - If it failed for some reason
--*/
{
UNICODE_STRING unicodeString;
PWSTR deviceDesc = NULL;
NTSTATUS status;
ULONG length = 0;
BOOLEAN retVal;
PAGED_CODE();
//
// Obtain the device description for the PCMCIA controller
// that is used in the error pop-up. If one cannot be obtained,
// still pop-up the error dialog, indicating the controller as unknown
//
// First, find out the length of the buffer required to obtain
// device description for this pcmcia controller
//
status = IoGetDeviceProperty(FdoExtension->Pdo,
DevicePropertyDeviceDescription,
0,
NULL,
&length
);
ASSERT(!NT_SUCCESS(status));
if (status == STATUS_BUFFER_TOO_SMALL) {
deviceDesc = ExAllocatePool(PagedPool, length);
if (deviceDesc != NULL) {
status = IoGetDeviceProperty(FdoExtension->Pdo,
DevicePropertyDeviceDescription,
length,
deviceDesc,
&length);
if (!NT_SUCCESS(status)) {
ExFreePool(deviceDesc);
}
} else {
status = STATUS_INSUFFICIENT_RESOURCES;
}
}
if (!NT_SUCCESS(status)) {
deviceDesc = L"[unknown]";
}
RtlInitUnicodeString(&unicodeString, deviceDesc);
retVal = IoRaiseInformationalHardError(
ErrorCode,
&unicodeString,
NULL);
//
// Note: successful status here indicates success of
// IoGetDeviceProperty above. This would mean we still have an
// allocated buffer.
//
if (NT_SUCCESS(status)) {
ExFreePool(deviceDesc);
}
return retVal;
}