Im having trouble creating a named shared memory and inspecting its size. The function GetFileSizeEx fails when I call it in a function like this. Any ideas on how to debug this?

void test_getsize(const char* lpName, int size){

    HANDLE handle = CreateFileMapping(
                     INVALID_HANDLE_VALUE,    // use paging file
                     NULL,                    // default security
                     PAGE_READWRITE,          // read/write access
                     0,                       // maximum object size (high-order DWORD)
                     size,                // maximum object size (low-order DWORD)
                     lpName);                 // name of mapping object

    if (handle== NULL || handle== INVALID_HANDLE_VALUE){
        last_error = get_error_from_errorno();
        *error_return =1;
    }


    LARGE_INTEGER new_size;

    err = GetFileSizeEx(handle, &new_size);

    if (err==0){ printf("err ");} else {printf("pass ");}
    printf("size=%lu\n", (unsigned long)new_size.QuadPart);
}
link|improve this question

62% accept rate
And what is the result of this code? – David Heffernan Sep 29 '11 at 20:11
You are not using a file, can't get the size of a non-existing file. – Hans Passant Sep 29 '11 at 20:23
feedback

1 Answer

up vote 4 down vote accepted

The handle you pass to GetFileSizeEx must be a handle to a file. You are passing it a handle to a file mapping, which is a completely different thing, so it won't work.

Since apparently you want the size of the file mapping (called a section object), and I don't think the Win32 API provides this feature, you would need to use the native Windows API called NtQuerySection. Here's an idea of how it might work (I haven't tried it):

typedef enum _SECTION_INFORMATION_CLASS
{
    SectionBasicInformation,
    SectionImageInformation
} SECTION_INFORMATION_CLASS;

typedef struct _SECTION_BASIC_INFORMATION {
  PVOID         Base;
  ULONG         Attributes;
  LARGE_INTEGER Size;
} SECTION_BASIC_INFORMATION;

typedef DWORD (WINAPI* NTQUERYSECTION)
    (HANDLE, SECTION_INFORMATION_CLASS, PVOID, ULONG, PULONG);
NTQUERYSECTION NtQuerySection =
    (NTQUERYSECTION)GetProcAddress(LoadLibrary("ntdll.dll"), "NtQuerySection");

SECTION_BASIC_INFORMATION SectionInfo = { 0 };
NTSTATUS = NtQuerySection(handle, SectionBasicInformation, &SectionInfo,
    sizeof(SectionInfo), 0);
link|improve this answer
Thanks for the reply. I have since found that the HANDLE returned is a Section Object. how do I query the size of a section object? I've read about 'ZwQuerySection' but it only seems to be on windows NT. – sean Sep 29 '11 at 20:53
1  
@sean: You don't call Zw* functions from user mode. Use the NtQuerySection function as I've outlined in my updated answer. – Gabe Sep 29 '11 at 21:27
Since NtQuerySection is an undocumented API, there's no guarantee it'll be there or work the same way in a future version of Windows. Why not simply remember the size used to create the section object? – Adrian McCarthy Sep 29 '11 at 23:41
I can't remember the size because the memory mapped handle was created in another process. – sean Sep 30 '11 at 15:53
I'm still having trouble with NtQuerySection. It is returning the Status 0xC0000004 (STATUS_INFO_LENGTH_MISMATCH). The specified information record length does not match the length that is required for the specified information class. But I have not seen any headers that show the SECTION_BASIC_INFORMATION struct as being any different. does anyone have a working example of NtQuerySection? – sean Sep 30 '11 at 15:54
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.