ReactOS 0.4.15-dev-7942-gd23573b
config.c File Reference
#include "ndissys.h"
#include <ntifs.h>
Include dependency graph for config.c:

Go to the source code of this file.

Macros

#define PARAMETERS_KEY   L"Parameters" /* The parameters subkey under the device-specific key */
 

Functions

VOID EXPORT NdisWriteConfiguration (OUT PNDIS_STATUS Status, IN NDIS_HANDLE ConfigurationHandle, IN PNDIS_STRING Keyword, IN PNDIS_CONFIGURATION_PARAMETER ParameterValue)
 
VOID EXPORT NdisCloseConfiguration (IN NDIS_HANDLE ConfigurationHandle)
 
VOID EXPORT NdisOpenConfiguration (OUT PNDIS_STATUS Status, OUT PNDIS_HANDLE ConfigurationHandle, IN NDIS_HANDLE WrapperConfigurationContext)
 
VOID EXPORT NdisOpenProtocolConfiguration (OUT PNDIS_STATUS Status, OUT PNDIS_HANDLE ConfigurationHandle, IN PNDIS_STRING ProtocolSection)
 
UCHAR UnicodeToHexByte (WCHAR chr)
 
BOOLEAN IsValidNumericString (PNDIS_STRING String, ULONG Base)
 
VOID EXPORT NdisReadConfiguration (OUT PNDIS_STATUS Status, OUT PNDIS_CONFIGURATION_PARAMETER *ParameterValue, IN NDIS_HANDLE ConfigurationHandle, IN PNDIS_STRING Keyword, IN NDIS_PARAMETER_TYPE ParameterType)
 
VOID EXPORT NdisReadNetworkAddress (OUT PNDIS_STATUS Status, OUT PVOID *NetworkAddress, OUT PUINT NetworkAddressLength, IN NDIS_HANDLE ConfigurationHandle)
 
VOID EXPORT NdisOpenConfigurationKeyByIndex (OUT PNDIS_STATUS Status, IN NDIS_HANDLE ConfigurationHandle, IN ULONG Index, OUT PNDIS_STRING KeyName, OUT PNDIS_HANDLE KeyHandle)
 
VOID EXPORT NdisOpenConfigurationKeyByName (OUT PNDIS_STATUS Status, IN NDIS_HANDLE ConfigurationHandle, IN PNDIS_STRING KeyName, OUT PNDIS_HANDLE KeyHandle)
 

Macro Definition Documentation

◆ PARAMETERS_KEY

#define PARAMETERS_KEY   L"Parameters" /* The parameters subkey under the device-specific key */

Definition at line 38 of file config.c.

Function Documentation

◆ IsValidNumericString()

BOOLEAN IsValidNumericString ( PNDIS_STRING  String,
ULONG  Base 
)

Definition at line 376 of file config.c.

384{
385 ULONG i;
386
387 /* I don't think this will ever happen, but we warn it if it does */
388 if (String->Length == 0)
389 {
390 NDIS_DbgPrint(MIN_TRACE, ("Got an empty string; not sure what to do here\n"));
391 return FALSE;
392 }
393
394 for (i = 0; i < String->Length / sizeof(WCHAR); i++)
395 {
396 /* Skip any NULL characters we find */
397 if (String->Buffer[i] == UNICODE_NULL)
398 continue;
399
400 /* Make sure the character is valid for a numeric string of this base */
401 if (UnicodeToHexByte(String->Buffer[i]) >= Base)
402 return FALSE;
403 }
404
405 /* It's valid */
406 return TRUE;
407}
#define MIN_TRACE
Definition: debug.h:14
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define NDIS_DbgPrint(_t_, _x_)
Definition: debug.h:40
UCHAR UnicodeToHexByte(WCHAR chr)
Definition: config.c:332
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
_In_opt_ ULONG Base
Definition: rtlfuncs.h:2439
#define UNICODE_NULL
uint32_t ULONG
Definition: typedefs.h:59
_Must_inspect_result_ _In_ WDFDEVICE _In_ WDFSTRING String
Definition: wdfdevice.h:2433
__wchar_t WCHAR
Definition: xmlstorage.h:180

Referenced by NdisReadConfiguration().

◆ NdisCloseConfiguration()

VOID EXPORT NdisCloseConfiguration ( IN NDIS_HANDLE  ConfigurationHandle)

Definition at line 136 of file config.c.

143{
147 PLIST_ENTRY CurrentEntry;
148
149 while((CurrentEntry = ExInterlockedRemoveHeadList(&ConfigurationContext->ResourceListHead,
150 &ConfigurationContext->ResourceLock)) != NULL)
151 {
152 Resource = CONTAINING_RECORD(CurrentEntry, MINIPORT_RESOURCE, ListEntry);
153 switch(Resource->ResourceType)
154 {
156 ParameterValue = Resource->Resource;
157
158 switch (ParameterValue->ParameterType)
159 {
161 ExFreePool(ParameterValue->ParameterData.BinaryData.Buffer);
162 break;
163
166 ExFreePool(ParameterValue->ParameterData.StringData.Buffer);
167 break;
168
169 default:
170 break;
171 }
172
173 /* Fall through to free NDIS_CONFIGURATION_PARAMETER struct */
174
176 NDIS_DbgPrint(MAX_TRACE,("freeing 0x%x\n", Resource->Resource));
177 ExFreePool(Resource->Resource);
178 break;
179
180 default:
181 NDIS_DbgPrint(MIN_TRACE,("Unknown resource type: %d\n", Resource->ResourceType));
182 break;
183 }
184
186 }
187
188 ZwClose(ConfigurationContext->Handle);
189}
#define MAX_TRACE
Definition: debug.h:16
_Acquires_exclusive_lock_ Resource _Acquires_shared_lock_ Resource _Inout_ PERESOURCE Resource
Definition: cdprocs.h:843
_In_opt_ PWSTR _In_ PWSTR _Inout_ PULONG ParameterValue
Definition: cdrom.h:963
#define NULL
Definition: types.h:112
#define MINIPORT_RESOURCE_TYPE_REGISTRY_DATA
Definition: miniport.h:41
#define MINIPORT_RESOURCE_TYPE_MEMORY
Definition: miniport.h:42
struct _MINIPORT_CONFIGURATION_CONTEXT * PMINIPORT_CONFIGURATION_CONTEXT
#define ExFreePool(addr)
Definition: env_spec_w32.h:352
PLIST_ENTRY NTAPI ExInterlockedRemoveHeadList(IN OUT PLIST_ENTRY ListHead, IN OUT PKSPIN_LOCK Lock)
Definition: interlocked.c:166
@ NdisParameterBinary
Definition: ndis.h:930
@ NdisParameterString
Definition: ndis.h:928
@ NdisParameterMultiString
Definition: ndis.h:929
_Must_inspect_result_ _Out_ PNDIS_STATUS _Out_ PNDIS_HANDLE ConfigurationHandle
Definition: ndis.h:3945
NTSYSAPI NTSTATUS NTAPI ZwClose(_In_ HANDLE Handle)
Definition: typedefs.h:120
#define CONTAINING_RECORD(address, type, field)
Definition: typedefs.h:260

Referenced by DcReadConfiguration(), MiniportInitialize(), NdisIPnPStartDevice(), NvNetReadConfiguration(), and ReadNicConfiguration().

◆ NdisOpenConfiguration()

VOID EXPORT NdisOpenConfiguration ( OUT PNDIS_STATUS  Status,
OUT PNDIS_HANDLE  ConfigurationHandle,
IN NDIS_HANDLE  WrapperConfigurationContext 
)

Definition at line 197 of file config.c.

213{
215 PMINIPORT_CONFIGURATION_CONTEXT ConfigurationContext;
217 HANDLE RootKeyHandle = WrapperContext->RegistryHandle;
220
221 NDIS_DbgPrint(MAX_TRACE, ("Called\n"));
222
224
226 &NoName,
228 RootKeyHandle,
229 NULL);
231 if(!NT_SUCCESS(*Status))
232 {
233 NDIS_DbgPrint(MIN_TRACE, ("Failed to open registry configuration for this miniport\n"));
235 return;
236 }
237
238 ConfigurationContext = ExAllocatePool(NonPagedPool, sizeof(MINIPORT_CONFIGURATION_CONTEXT));
239 if(!ConfigurationContext)
240 {
241 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
244 return;
245 }
246
247 KeInitializeSpinLock(&ConfigurationContext->ResourceLock);
248 InitializeListHead(&ConfigurationContext->ResourceListHead);
249
250 ConfigurationContext->Handle = KeyHandle;
251
252 *ConfigurationHandle = (NDIS_HANDLE)ConfigurationContext;
254
255 NDIS_DbgPrint(MAX_TRACE,("returning success\n"));
256}
IN PUNICODE_STRING IN POBJECT_ATTRIBUTES ObjectAttributes
Definition: conport.c:36
#define NT_SUCCESS(StatCode)
Definition: apphelp.c:32
struct _NDIS_WRAPPER_CONTEXT * PNDIS_WRAPPER_CONTEXT
#define NonPagedPool
Definition: env_spec_w32.h:307
#define InitializeListHead(ListHead)
Definition: env_spec_w32.h:944
#define KeInitializeSpinLock(sl)
Definition: env_spec_w32.h:604
#define ExAllocatePool(type, size)
Definition: fbtusb.h:44
Status
Definition: gdiplustypes.h:25
#define OBJ_KERNEL_HANDLE
Definition: winternl.h:231
#define InitializeObjectAttributes(p, n, a, r, s)
Definition: reg.c:106
PVOID NDIS_HANDLE
Definition: ndis.h:338
#define NDIS_STATUS_FAILURE
Definition: ndis.h:465
#define NDIS_STATUS_SUCCESS
Definition: ndis.h:346
_Must_inspect_result_ _Out_ PNDIS_STATUS _Out_ PNDIS_HANDLE _In_ NDIS_HANDLE WrapperConfigurationContext
Definition: ndis.h:3946
_Must_inspect_result_ _Out_ PNDIS_STATUS _In_ NDIS_HANDLE _In_ ULONG _Out_ PNDIS_STRING _Out_ PNDIS_HANDLE KeyHandle
Definition: ndis.h:4715
#define NDIS_STATUS_RESOURCES
Definition: ndis.h:466
#define KEY_ALL_ACCESS
Definition: nt_native.h:1041
#define L(x)
Definition: ntvdm.h:50
#define RTL_CONSTANT_STRING(s)
Definition: tunneltest.c:14

Referenced by DcReadConfiguration(), MiniportInitialize(), NdisIPnPStartDevice(), NvNetReadConfiguration(), and ParaNdis_OpenNICConfiguration().

◆ NdisOpenConfigurationKeyByIndex()

VOID EXPORT NdisOpenConfigurationKeyByIndex ( OUT PNDIS_STATUS  Status,
IN NDIS_HANDLE  ConfigurationHandle,
IN ULONG  Index,
OUT PNDIS_STRING  KeyName,
OUT PNDIS_HANDLE  KeyHandle 
)

Definition at line 855 of file config.c.

875{
876 KEY_BASIC_INFORMATION *KeyInformation;
877 ULONG KeyInformationLength;
879 NDIS_HANDLE RegKeyHandle;
880 PMINIPORT_CONFIGURATION_CONTEXT ConfigurationContext;
881
882 *KeyHandle = NULL;
883
884 *Status = ZwEnumerateKey(ConfigurationHandle, Index, KeyBasicInformation, NULL, 0, &KeyInformationLength);
886 {
887 NDIS_DbgPrint(MIN_TRACE, ("ZwEnumerateKey failed (%x)\n", *Status));
889 return;
890 }
891
892 KeyInformation = ExAllocatePool(PagedPool, KeyInformationLength + sizeof(KEY_BASIC_INFORMATION));
893 if(!KeyInformation)
894 {
895 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
897 return;
898 }
899
900 *Status = ZwEnumerateKey(ConfigurationHandle, Index, KeyBasicInformation, KeyInformation,
901 KeyInformationLength + sizeof(KEY_BASIC_INFORMATION), &KeyInformationLength);
902
903 if(*Status != STATUS_SUCCESS)
904 {
905 NDIS_DbgPrint(MIN_TRACE, ("ZwEnumerateKey failed (%x)\n", *Status));
906 ExFreePool(KeyInformation);
908 return;
909 }
910
911 /* should i fail instead if the passed-in string isn't long enough? */
912 wcsncpy(KeyName->Buffer, KeyInformation->Name, KeyName->MaximumLength/sizeof(WCHAR));
913 KeyName->Length = (USHORT)min(KeyInformation->NameLength, KeyName->MaximumLength);
914
916
917 *Status = ZwOpenKey(&RegKeyHandle, KEY_ALL_ACCESS, &KeyAttributes);
918
919 ExFreePool(KeyInformation);
920
921 if(*Status != STATUS_SUCCESS)
922 {
923 NDIS_DbgPrint(MIN_TRACE, ("ZwOpenKey failed (%x)\n", *Status));
925 return;
926 }
927
928 ConfigurationContext = ExAllocatePool(NonPagedPool, sizeof(MINIPORT_CONFIGURATION_CONTEXT));
929 if(!ConfigurationContext)
930 {
931 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
932 ZwClose(RegKeyHandle);
934 return;
935 }
936
937 KeInitializeSpinLock(&ConfigurationContext->ResourceLock);
938 InitializeListHead(&ConfigurationContext->ResourceListHead);
939
940 ConfigurationContext->Handle = RegKeyHandle;
941
942 *KeyHandle = (NDIS_HANDLE)ConfigurationContext;
943
945}
#define PagedPool
Definition: env_spec_w32.h:308
#define OBJ_CASE_INSENSITIVE
Definition: winternl.h:228
#define min(a, b)
Definition: monoChain.cc:55
@ KeyBasicInformation
Definition: nt_native.h:1131
unsigned short USHORT
Definition: pedump.c:61
_CRTIMP wchar_t *__cdecl wcsncpy(wchar_t *_Dest, const wchar_t *_Source, size_t _Count)
#define STATUS_SUCCESS
Definition: shellext.h:65
#define STATUS_BUFFER_TOO_SMALL
Definition: shellext.h:69
#define STATUS_BUFFER_OVERFLOW
Definition: shellext.h:66
_In_ WDFCOLLECTION _In_ ULONG Index
_Must_inspect_result_ _In_ WDFDEVICE _In_ ULONG _In_ ACCESS_MASK _In_opt_ PWDF_OBJECT_ATTRIBUTES KeyAttributes
Definition: wdfdevice.h:2660
_Must_inspect_result_ _In_ WDFDEVICE _In_ PCUNICODE_STRING KeyName
Definition: wdfdevice.h:2699

◆ NdisOpenConfigurationKeyByName()

VOID EXPORT NdisOpenConfigurationKeyByName ( OUT PNDIS_STATUS  Status,
IN NDIS_HANDLE  ConfigurationHandle,
IN PNDIS_STRING  KeyName,
OUT PNDIS_HANDLE  KeyHandle 
)

Definition at line 953 of file config.c.

971{
972 PMINIPORT_CONFIGURATION_CONTEXT ConfigurationContext;
974 NDIS_HANDLE RegKeyHandle;
975
976 *KeyHandle = NULL;
977
979 *Status = ZwOpenKey(&RegKeyHandle, KEY_ALL_ACCESS, &KeyAttributes);
980
981 if(*Status != STATUS_SUCCESS)
982 {
983 NDIS_DbgPrint(MIN_TRACE, ("ZwOpenKey failed (%x)\n", *Status));
985 return;
986 }
987
988 ConfigurationContext = ExAllocatePool(NonPagedPool, sizeof(MINIPORT_CONFIGURATION_CONTEXT));
989 if(!ConfigurationContext)
990 {
991 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
992 ZwClose(RegKeyHandle);
994 return;
995 }
996
997 KeInitializeSpinLock(&ConfigurationContext->ResourceLock);
998 InitializeListHead(&ConfigurationContext->ResourceListHead);
999
1000 ConfigurationContext->Handle = RegKeyHandle;
1001
1002 *KeyHandle = (NDIS_HANDLE)ConfigurationContext;
1003
1005}

◆ NdisOpenProtocolConfiguration()

VOID EXPORT NdisOpenProtocolConfiguration ( OUT PNDIS_STATUS  Status,
OUT PNDIS_HANDLE  ConfigurationHandle,
IN PNDIS_STRING  ProtocolSection 
)

Definition at line 264 of file config.c.

280{
282 UNICODE_STRING KeyNameU;
284 PMINIPORT_CONFIGURATION_CONTEXT ConfigurationContext;
285
286 KeyNameU.Length = 0;
287 KeyNameU.MaximumLength = ProtocolSection->Length + sizeof(PARAMETERS_KEY) + sizeof(UNICODE_NULL);
288 KeyNameU.Buffer = ExAllocatePool(PagedPool, KeyNameU.MaximumLength);
289 if(!KeyNameU.Buffer)
290 {
291 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
294 return;
295 }
296
300
302
303 ExFreePool(KeyNameU.Buffer);
304
306 {
307 NDIS_DbgPrint(MIN_TRACE, ("ZwOpenKey failed (%x)\n", *Status));
310 return;
311 }
312
313 ConfigurationContext = ExAllocatePool(NonPagedPool, sizeof(MINIPORT_CONFIGURATION_CONTEXT));
314 if(!ConfigurationContext)
315 {
316 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
320 return;
321 }
322
323 KeInitializeSpinLock(&ConfigurationContext->ResourceLock);
324 InitializeListHead(&ConfigurationContext->ResourceListHead);
325
326 ConfigurationContext->Handle = KeyHandle;
327
328 *ConfigurationHandle = (NDIS_HANDLE)ConfigurationContext;
330}
#define PARAMETERS_KEY
Definition: config.c:38
NTSTATUS RtlAppendUnicodeToString(IN PUNICODE_STRING Str1, IN PWSTR Str2)
Definition: string_lib.cpp:62
_Out_ PNDIS_HANDLE _In_ PNDIS_STRING ProtocolSection
Definition: ndis.h:6073
NTSYSAPI VOID NTAPI RtlCopyUnicodeString(PUNICODE_STRING DestinationString, PUNICODE_STRING SourceString)
USHORT MaximumLength
Definition: env_spec_w32.h:370

◆ NdisReadConfiguration()

VOID EXPORT NdisReadConfiguration ( OUT PNDIS_STATUS  Status,
OUT PNDIS_CONFIGURATION_PARAMETER ParameterValue,
IN NDIS_HANDLE  ConfigurationHandle,
IN PNDIS_STRING  Keyword,
IN NDIS_PARAMETER_TYPE  ParameterType 
)

Definition at line 414 of file config.c.

435{
436 KEY_VALUE_PARTIAL_INFORMATION *KeyInformation;
437 ULONG KeyDataLength;
438 PMINIPORT_RESOURCE MiniportResource;
441
442 //*ParameterValue = NULL;
444
445 NDIS_DbgPrint(MAX_TRACE,("requested read of %wZ\n", Keyword));
446 NDIS_DbgPrint(MID_TRACE,("requested parameter type: %d\n", ParameterType));
447
448 if (ConfigurationContext == NULL)
449 {
450 NDIS_DbgPrint(MIN_TRACE,("invalid parameter ConfigurationContext (0x%x)\n",ConfigurationContext));
451 return;
452 }
453
454 if(!wcsncmp(Keyword->Buffer, L"Environment", Keyword->Length/sizeof(WCHAR)) &&
455 wcslen(L"Environment") == Keyword->Length/sizeof(WCHAR))
456 {
458 if(!*ParameterValue)
459 {
460 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
462 return;
463 }
464
465 MiniportResource = ExAllocatePool(PagedPool, sizeof(MINIPORT_RESOURCE));
466 if(!MiniportResource)
467 {
468 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
472 return;
473 }
474
476 MiniportResource->Resource = *ParameterValue;
477
478 NDIS_DbgPrint(MID_TRACE,("inserting 0x%x into the resource list\n",
479 MiniportResource->Resource));
480
481 ExInterlockedInsertTailList(&ConfigurationContext->ResourceListHead,
482 &MiniportResource->ListEntry, &ConfigurationContext->ResourceLock);
483
484 (*ParameterValue)->ParameterType = NdisParameterInteger;
485 (*ParameterValue)->ParameterData.IntegerData = NdisEnvironmentWindowsNt;
487
488 return;
489 }
490
491 if(!wcsncmp(Keyword->Buffer, L"ProcessorType", Keyword->Length/sizeof(WCHAR)) &&
492 wcslen(L"ProcessorType") == Keyword->Length/sizeof(WCHAR))
493 {
495 if(!*ParameterValue)
496 {
497 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
499 return;
500 }
501
502 MiniportResource = ExAllocatePool(PagedPool, sizeof(MINIPORT_RESOURCE));
503 if(!MiniportResource)
504 {
505 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
509 return;
510 }
511
513 MiniportResource->Resource = *ParameterValue;
514 NDIS_DbgPrint(MID_TRACE,("inserting 0x%x into the resource list\n", MiniportResource->Resource));
515 ExInterlockedInsertTailList(&ConfigurationContext->ResourceListHead,
516 &MiniportResource->ListEntry, &ConfigurationContext->ResourceLock);
517
518 (*ParameterValue)->ParameterType = NdisParameterInteger;
519 (*ParameterValue)->ParameterData.IntegerData = NdisProcessorX86; /* XXX non-portable */
521
522 return;
523 }
524
525 if(!wcsncmp(Keyword->Buffer, L"NdisVersion", Keyword->Length/sizeof(WCHAR)) &&
526 wcslen(L"NdisVersion") == Keyword->Length/sizeof(WCHAR))
527 {
529 if(!*ParameterValue)
530 {
531 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
533 return;
534 }
535
536 MiniportResource = ExAllocatePool(PagedPool, sizeof(MINIPORT_RESOURCE));
537 if(!MiniportResource)
538 {
539 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
543 return;
544 }
545
547 MiniportResource->Resource = *ParameterValue;
548 NDIS_DbgPrint(MID_TRACE,("inserting 0x%x into the resource list\n", MiniportResource->Resource));
549 ExInterlockedInsertTailList(&ConfigurationContext->ResourceListHead,
550 &MiniportResource->ListEntry, &ConfigurationContext->ResourceLock);
551
552 (*ParameterValue)->ParameterType = NdisParameterInteger;
553 (*ParameterValue)->ParameterData.IntegerData = NDIS_VERSION;
555
556 NDIS_DbgPrint(MAX_TRACE,("ParameterType = 0x%x, ParameterValue = 0x%x\n",
557 (*ParameterValue)->ParameterType, (*ParameterValue)->ParameterData.IntegerData));
558 return;
559 }
560
561 /* figure out how much buffer i should allocate */
562 *Status = ZwQueryValueKey(ConfigurationContext->Handle, Keyword, KeyValuePartialInformation, NULL, 0, &KeyDataLength);
564 {
565 NDIS_DbgPrint(MID_TRACE,("ZwQueryValueKey #1 failed for %wZ, status 0x%x\n", Keyword, *Status));
567 return;
568 }
569
570 /* allocate it */
571 KeyInformation = ExAllocatePool(PagedPool, KeyDataLength + sizeof(KEY_VALUE_PARTIAL_INFORMATION));
572 if(!KeyInformation)
573 {
574 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
576 return;
577 }
578
579 /* grab the value */
580 *Status = ZwQueryValueKey(ConfigurationContext->Handle, Keyword, KeyValuePartialInformation,
581 KeyInformation, KeyDataLength + sizeof(KEY_VALUE_PARTIAL_INFORMATION), &KeyDataLength);
582 if(*Status != STATUS_SUCCESS)
583 {
584 ExFreePool(KeyInformation);
585 NDIS_DbgPrint(MIN_TRACE,("ZwQueryValueKey #2 failed for %wZ, status 0x%x\n", Keyword, *Status));
587 return;
588 }
589
590 MiniportResource = ExAllocatePool(PagedPool, sizeof(MINIPORT_RESOURCE));
591 if(!MiniportResource)
592 {
593 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
594 ExFreePool(KeyInformation);
596 return;
597 }
598
600 if (!*ParameterValue)
601 {
602 NDIS_DbgPrint(MIN_TRACE, ("Insufficient resources.\n"));
603 ExFreePool(MiniportResource);
604 ExFreePool(KeyInformation);
606 return;
607 }
608
610
611 if (KeyInformation->Type == REG_BINARY)
612 {
613 NDIS_DbgPrint(MAX_TRACE, ("NdisParameterBinary\n"));
614
615 (*ParameterValue)->ParameterType = NdisParameterBinary;
616
617 Buffer = ExAllocatePool(PagedPool, KeyInformation->DataLength);
618 if (!Buffer)
619 {
620 NDIS_DbgPrint(MIN_TRACE, ("Insufficient resources.\n"));
621 ExFreePool(MiniportResource);
622 ExFreePool(KeyInformation);
624 return;
625 }
626
627 RtlCopyMemory(Buffer, KeyInformation->Data, KeyInformation->DataLength);
628
629 (*ParameterValue)->ParameterData.BinaryData.Buffer = Buffer;
630 (*ParameterValue)->ParameterData.BinaryData.Length = KeyInformation->DataLength;
631 }
632 else if (KeyInformation->Type == REG_MULTI_SZ)
633 {
634 NDIS_DbgPrint(MAX_TRACE, ("NdisParameterMultiString\n"));
635
636 (*ParameterValue)->ParameterType = NdisParameterMultiString;
637
638 Buffer = ExAllocatePool(PagedPool, KeyInformation->DataLength);
639 if (!Buffer)
640 {
641 NDIS_DbgPrint(MIN_TRACE, ("Insufficient resources.\n"));
642 ExFreePool(MiniportResource);
643 ExFreePool(KeyInformation);
645 return;
646 }
647
648 RtlCopyMemory(Buffer, KeyInformation->Data, KeyInformation->DataLength);
649
650 (*ParameterValue)->ParameterData.StringData.Buffer = Buffer;
651 (*ParameterValue)->ParameterData.StringData.Length = KeyInformation->DataLength;
652 }
653 else if (KeyInformation->Type == REG_DWORD)
654 {
655 ASSERT(KeyInformation->DataLength == sizeof(ULONG));
656 NDIS_DbgPrint(MAX_TRACE, ("NdisParameterInteger\n"));
657 (*ParameterValue)->ParameterType = NdisParameterInteger;
658 (*ParameterValue)->ParameterData.IntegerData = * (ULONG *) &KeyInformation->Data[0];
659 }
660 else if (KeyInformation->Type == REG_SZ)
661 {
663 ULONG Base;
664
666 Base = 10;
668 Base = 16;
669 else
670 Base = 0;
671
672 str.Length = str.MaximumLength = (USHORT)KeyInformation->DataLength;
673 str.Buffer = (PWCHAR)KeyInformation->Data;
674
675 if (Base != 0 && IsValidNumericString(&str, Base))
676 {
677 *Status = RtlUnicodeStringToInteger(&str, Base, &(*ParameterValue)->ParameterData.IntegerData);
679
680 NDIS_DbgPrint(MAX_TRACE, ("NdisParameter(Hex)Integer\n"));
681
682 /* MSDN documents that this is returned for all integers, regardless of the ParameterType passed in */
683 (*ParameterValue)->ParameterType = NdisParameterInteger;
684 }
685 else
686 {
687 NDIS_DbgPrint(MAX_TRACE, ("NdisParameterString\n"));
688
689 (*ParameterValue)->ParameterType = NdisParameterString;
690
691 Buffer = ExAllocatePool(PagedPool, KeyInformation->DataLength);
692 if (!Buffer)
693 {
694 NDIS_DbgPrint(MIN_TRACE, ("Insufficient resources.\n"));
695 ExFreePool(MiniportResource);
696 ExFreePool(KeyInformation);
698 return;
699 }
700
701 RtlCopyMemory(Buffer, KeyInformation->Data, KeyInformation->DataLength);
702
703 (*ParameterValue)->ParameterData.StringData.Buffer = Buffer;
704 (*ParameterValue)->ParameterData.StringData.Length = KeyInformation->DataLength;
705 }
706 }
707 else
708 {
709 NDIS_DbgPrint(MIN_TRACE, ("Invalid type for NdisReadConfiguration (%d)\n", KeyInformation->Type));
710 NDIS_DbgPrint(MIN_TRACE, ("Requested type: %d\n", ParameterType));
711 NDIS_DbgPrint(MIN_TRACE, ("Registry entry: %wZ\n", Keyword));
713 ExFreePool(KeyInformation);
714 return;
715 }
716
717 if (((*ParameterValue)->ParameterType != ParameterType) &&
718 !((ParameterType == NdisParameterHexInteger) && ((*ParameterValue)->ParameterType == NdisParameterInteger)))
719 {
720 NDIS_DbgPrint(MIN_TRACE, ("Parameter type mismatch! (Requested: %d | Received: %d)\n",
721 ParameterType, (*ParameterValue)->ParameterType));
722 NDIS_DbgPrint(MIN_TRACE, ("Registry entry: %wZ\n", Keyword));
723 }
724
726 MiniportResource->Resource = *ParameterValue;
727
728 ExInterlockedInsertTailList(&ConfigurationContext->ResourceListHead, &MiniportResource->ListEntry, &ConfigurationContext->ResourceLock);
729
730 ExFreePool(KeyInformation);
731
733}
#define MID_TRACE
Definition: debug.h:15
Definition: bufpool.h:45
BOOLEAN IsValidNumericString(PNDIS_STRING String, ULONG Base)
Definition: config.c:376
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
PLIST_ENTRY NTAPI ExInterlockedInsertTailList(IN OUT PLIST_ENTRY ListHead, IN OUT PLIST_ENTRY ListEntry, IN OUT PKSPIN_LOCK Lock)
Definition: interlocked.c:140
#define REG_SZ
Definition: layer.c:22
#define ASSERT(a)
Definition: mode.c:44
_Must_inspect_result_ _Out_ PNDIS_STATUS _Out_ PNDIS_CONFIGURATION_PARAMETER _In_ NDIS_HANDLE _In_ PNDIS_STRING _In_ NDIS_PARAMETER_TYPE ParameterType
Definition: ndis.h:4417
@ NdisParameterInteger
Definition: ndis.h:926
@ NdisParameterHexInteger
Definition: ndis.h:927
@ NdisProcessorX86
Definition: ndis.h:885
@ NdisEnvironmentWindowsNt
Definition: ndis.h:895
#define NDIS_VERSION
Definition: ndissys.h:27
#define REG_BINARY
Definition: nt_native.h:1496
@ KeyValuePartialInformation
Definition: nt_native.h:1182
NTSYSAPI NTSTATUS NTAPI RtlUnicodeStringToInteger(PUNICODE_STRING String, ULONG Base, PULONG Value)
#define REG_MULTI_SZ
Definition: nt_native.h:1501
const WCHAR * str
#define REG_DWORD
Definition: sdbapi.c:596
_Check_return_ _CRTIMP int __cdecl wcsncmp(_In_reads_or_z_(_MaxCount) const wchar_t *_Str1, _In_reads_or_z_(_MaxCount) const wchar_t *_Str2, _In_ size_t _MaxCount)
LIST_ENTRY ListEntry
Definition: miniport.h:44
ULONG ResourceType
Definition: miniport.h:45
NDIS_PARAMETER_TYPE ParameterType
Definition: ndis.h:939
#define RtlCopyMemory(Destination, Source, Length)
Definition: typedefs.h:263
#define RtlZeroMemory(Destination, Length)
Definition: typedefs.h:262
uint16_t * PWCHAR
Definition: typedefs.h:56

Referenced by DcConfigQueryInteger(), GetConfigurationEntry(), MiniportInitialize(), NdisIPnPStartDevice(), NdisReadNetworkAddress(), and QueryInteger().

◆ NdisReadNetworkAddress()

VOID EXPORT NdisReadNetworkAddress ( OUT PNDIS_STATUS  Status,
OUT PVOID NetworkAddress,
OUT PUINT  NetworkAddressLength,
IN NDIS_HANDLE  ConfigurationHandle 
)

Definition at line 740 of file config.c.

757{
759 PMINIPORT_RESOURCE MiniportResource = NULL;
762 UINT *IntArray = 0;
763 UINT i,j = 0;
764 WCHAR Buff[11];
766
767 NdisInitUnicodeString(&Keyword, L"NetworkAddress");
770 {
771 NDIS_DbgPrint(MID_TRACE, ("NdisReadConfiguration failed (%x)\n", *Status));
773 return;
774 }
775
776 if (ParameterValue->ParameterType == NdisParameterInteger)
777 {
778 NDIS_DbgPrint(MAX_TRACE, ("Read integer data %lx\n",
779 ParameterValue->ParameterData.IntegerData));
780
781 str.Buffer = Buff;
782 str.MaximumLength = (USHORT)sizeof(Buff);
783 str.Length = 0;
784
785 *Status = RtlIntegerToUnicodeString(ParameterValue->ParameterData.IntegerData,
786 10,
787 &str);
788
790 {
791 NDIS_DbgPrint(MIN_TRACE, ("RtlIntegerToUnicodeString failed (%x)\n", *Status));
793 return;
794 }
795
796 NDIS_DbgPrint(MAX_TRACE, ("Converted integer data into %wZ\n", &str));
797 }
798 else
799 {
800 ASSERT(ParameterValue->ParameterType == NdisParameterString);
801 str = ParameterValue->ParameterData.StringData;
802 }
803
804 while (j < str.Length && str.Buffer[j] != '\0') j++;
805
806 *NetworkAddressLength = (j+1) >> 1;
807
808 if ((*NetworkAddressLength) == 0)
809 {
810 NDIS_DbgPrint(MIN_TRACE,("Empty NetworkAddress registry entry.\n"));
812 return;
813 }
814
815 IntArray = ExAllocatePool(PagedPool, (*NetworkAddressLength)*sizeof(UINT));
816 if(!IntArray)
817 {
818 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
820 return;
821 }
822
823 MiniportResource = ExAllocatePool(PagedPool, sizeof(MINIPORT_RESOURCE));
824 if(!MiniportResource)
825 {
826 NDIS_DbgPrint(MIN_TRACE,("Insufficient resources.\n"));
827 ExFreePool(IntArray);
829 return;
830 }
831
833 MiniportResource->Resource = IntArray;
834 NDIS_DbgPrint(MID_TRACE,("inserting 0x%x into the resource list\n", MiniportResource->Resource));
835 ExInterlockedInsertTailList(&ConfigurationContext->ResourceListHead, &MiniportResource->ListEntry, &ConfigurationContext->ResourceLock);
836
837 /* convert from string to bytes */
838 for(i=0; i<(*NetworkAddressLength); i++)
839 {
840 IntArray[i] = (UnicodeToHexByte((str.Buffer)[2*i]) << 4) +
841 UnicodeToHexByte((str.Buffer)[2*i+1]);
842 }
843
844 *NetworkAddress = IntArray;
845
847}
VOID EXPORT NdisReadConfiguration(OUT PNDIS_STATUS Status, OUT PNDIS_CONFIGURATION_PARAMETER *ParameterValue, IN NDIS_HANDLE ConfigurationHandle, IN PNDIS_STRING Keyword, IN NDIS_PARAMETER_TYPE ParameterType)
Definition: config.c:414
VOID EXPORT NdisInitUnicodeString(IN OUT PNDIS_STRING DestinationString, IN PCWSTR SourceString)
Definition: string.c:130
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint GLint GLint j
Definition: glfuncs.h:250
_Must_inspect_result_ _Out_ PNDIS_STATUS _Outptr_result_bytebuffer_to_ NetworkAddressLength PVOID * NetworkAddress
Definition: ndis.h:3956
unsigned int UINT
Definition: ndis.h:50
_Must_inspect_result_ _Out_ PNDIS_STATUS _Outptr_result_bytebuffer_to_ NetworkAddressLength PVOID _Out_ PUINT NetworkAddressLength
Definition: ndis.h:3958
NTSYSAPI NTSTATUS NTAPI RtlIntegerToUnicodeString(ULONG Value, ULONG Base, PUNICODE_STRING String)

Referenced by DcReadConfiguration(), MiniportInitialize(), NvNetReadConfiguration(), and ReadNicConfiguration().

◆ NdisWriteConfiguration()

VOID EXPORT NdisWriteConfiguration ( OUT PNDIS_STATUS  Status,
IN NDIS_HANDLE  ConfigurationHandle,
IN PNDIS_STRING  Keyword,
IN PNDIS_CONFIGURATION_PARAMETER  ParameterValue 
)

Definition at line 45 of file config.c.

66{
69 PVOID Data;
70 WCHAR Buff[11];
71
72 NDIS_DbgPrint(MAX_TRACE, ("Called.\n"));
73
74 NDIS_DbgPrint(MID_TRACE, ("Parameter type: %d\n", ParameterValue->ParameterType));
75
76 /* reset parameter type to standard reg types */
77 switch(ParameterValue->ParameterType)
78 {
81 {
83
84 Str.Buffer = (PWSTR) &Buff;
85 Str.MaximumLength = (USHORT)sizeof(Buff);
86 Str.Length = 0;
87
90 ParameterValue->ParameterData.IntegerData,
91 (ParameterValue->ParameterType == NdisParameterInteger) ? 10 : 16, &Str)))
92 {
93 NDIS_DbgPrint(MIN_TRACE, ("RtlIntegerToUnicodeString failed (%x)\n", *Status));
95 return;
96 }
97 Data = Str.Buffer;
98 DataSize = Str.Length;
99 }
100 break;
104 Data = ParameterValue->ParameterData.StringData.Buffer;
105 DataSize = ParameterValue->ParameterData.StringData.Length;
106 break;
107
108 /* New (undocumented) addition to 2k ddk */
111 Data = ParameterValue->ParameterData.BinaryData.Buffer;
112 DataSize = ParameterValue->ParameterData.BinaryData.Length;
113 break;
114
115 default:
117 return;
118 }
119
122
123 if(*Status != STATUS_SUCCESS) {
124 NDIS_DbgPrint(MIN_TRACE, ("ZwSetValueKey failed (%x)\n", *Status));
126 } else
128}
ULONG Handle
Definition: gdb_input.c:15
_In_ NDIS_STATUS _In_ ULONG _In_ USHORT _In_opt_ PVOID _In_ ULONG DataSize
Definition: ndis.h:4755
#define NDIS_STATUS_NOT_SUPPORTED
Definition: ndis.h:479
uint16_t * PWSTR
Definition: typedefs.h:56

◆ UnicodeToHexByte()

UCHAR UnicodeToHexByte ( WCHAR  chr)

Definition at line 332 of file config.c.

340{
341 switch(chr)
342 {
343 case L'0': return 0;
344 case L'1': return 1;
345 case L'2': return 2;
346 case L'3': return 3;
347 case L'4': return 4;
348 case L'5': return 5;
349 case L'6': return 6;
350 case L'7': return 7;
351 case L'8': return 8;
352 case L'9': return 9;
353 case L'A':
354 case L'a':
355 return 10;
356 case L'B':
357 case L'b':
358 return 11;
359 case L'C':
360 case L'c':
361 return 12;
362 case L'D':
363 case L'd':
364 return 13;
365 case L'E':
366 case L'e':
367 return 14;
368 case L'F':
369 case L'f':
370 return 15;
371 }
372 return 0xFF;
373}

Referenced by IsValidNumericString(), and NdisReadNetworkAddress().