/*++ Copyright (c) 1991 Microsoft Corporation Module Name: rtbatcr.c Abstract: NT level registry api test program, basic non-error paths. Do a batch create. rtbatcr <#children> <#values> Will attempt to create key as child of If <#children> and <#values> are 0, this is all it does. If already exists, it will simply be used. Will create <#children> child cells, with names of the form 0 1, etc. Will create <#values> value entries, with similar names, for each created child key. Data of values will be a constant string including their name. Example: rtbatcr \REGISTRY\MACHINE\TEST bigkey runa_ 100 100 rtbatcr \REGISTRY\MACHINE\TEST\bigkey runa_1 runb_ 100 100 Will create bigkey, give it 100 values calls runa_1 through runa_100, create 100 subkeys called runa_1 through runa_100 for each of those children. It will then open bigkey\runa_1, and create 100 subkeys and 100 values each for that. Author: Bryan Willman (bryanwi) 10-Dec-91 Revision History: --*/ #include "cmp.h" #include #include #include #define WORK_SIZE 1024 void _CRTAPI1 main(int, char *); void processargs(); ULONG failure = 0; UNICODE_STRING KeyPath; UNICODE_STRING KeyName; ULONG NumberChildren; ULONG NumberValues; UCHAR BaseName[WORK_SIZE]; UCHAR formatbuffer[WORK_SIZE]; STRING format; BOOLEAN CreateVolatile = FALSE; UNICODE_STRING WorkName; WCHAR workbuffer[WORK_SIZE]; void _CRTAPI1 main( int argc, char *argv[] ) { NTSTATUS status; OBJECT_ATTRIBUTES ObjectAttributes; HANDLE BaseHandle; HANDLE WorkHandle; ULONG Disposition; UNICODE_STRING ClassName; ULONG i; ULONG j; PUCHAR p; ULONG CreateOption; // // Process args // processargs(argc, argv); // // Set up and create/open KeyPath|KeyName // printf("rtbatcr: starting\n"); WorkName.MaximumLength = WORK_SIZE; WorkName.Length = 0L; WorkName.Buffer = &(workbuffer[0]); RtlCopyString((PSTRING)&WorkName, (PSTRING)&KeyPath); p = WorkName.Buffer; p += WorkName.Length; *p = '\\'; p++; *p = '\0'; WorkName.Length += 2; RtlAppendStringToString((PSTRING)&WorkName, (PSTRING)&KeyName); RtlInitUnicodeString( &ClassName, L"Test Class Name" ); InitializeObjectAttributes( &ObjectAttributes, &WorkName, 0, (HANDLE)NULL, NULL ); ObjectAttributes.Attributes |= OBJ_CASE_INSENSITIVE; if (CreateVolatile) { CreateOption = REG_OPTION_VOLATILE; } else { CreateOption = 0; } status = NtCreateKey( &BaseHandle, MAXIMUM_ALLOWED, &ObjectAttributes, 0, &ClassName, CreateOption, &Disposition ); if (!NT_SUCCESS(status)) { printf("rtbatcr: t0: %08lx\n", status); failure++; goto punt; } // // Create NumberChildren subkeys // for (i = 0; i < NumberChildren; i++) { sprintf(formatbuffer, "%s%d", BaseName, i); RtlInitString(&format, formatbuffer); RtlAnsiStringToUnicodeString(&WorkName, &format, FALSE); InitializeObjectAttributes( &ObjectAttributes, &WorkName, 0, BaseHandle, NULL ); ObjectAttributes.Attributes |= OBJ_CASE_INSENSITIVE; status = NtCreateKey( &WorkHandle, MAXIMUM_ALLOWED, &ObjectAttributes, 0, &ClassName, CreateOption, &Disposition ); if (!NT_SUCCESS(status)) { printf("rtbatcr: t1: status = %08lx i = %d\n", status, i); failure++; } // // Create NumberValues value entries for each (current) key // for (j = 0; j < NumberValues; j++) { sprintf(formatbuffer, "%s%d", BaseName, j); RtlInitString(&format, formatbuffer); RtlAnsiStringToUnicodeString(&WorkName, &format, FALSE); sprintf( formatbuffer, "This is a rtbatcr value for %s%d", BaseName, j ); status = NtSetValueKey( WorkHandle, &WorkName, j, j, formatbuffer, strlen(formatbuffer)+1 ); if (!NT_SUCCESS(status)) { printf("rtbatcr: t2: status = %08lx j = %d\n", status, j); failure++; } } NtClose(WorkHandle); } punt: printf("rtbatcr: %d failures\n", failure); exit(failure); } void processargs( int argc, char *argv[] ) { ANSI_STRING temp; if ( (argc < 3) || (argc > 7) ) { printf("Usage: %s [volatile] [ <#children> <#values>]\n", argv[0]); exit(1); } if (_stricmp(argv[1],"volatile")==0) { CreateVolatile = TRUE; ++argv; } RtlInitAnsiString( &temp, argv[1] ); RtlAnsiStringToUnicodeString( &KeyPath, &temp, TRUE ); RtlInitAnsiString( &temp, argv[2] ); RtlAnsiStringToUnicodeString( &KeyName, &temp, TRUE ); if (argc < 6) { NumberChildren = 0; NumberValues = 0; } else { strcpy(BaseName, argv[3]); NumberChildren = atoi(argv[4]); NumberValues = atoi(argv[5]); } return; }