在“<name>.exe”中的 0x00007FFF168E1657 (vcruntime140d.dll) 抛出异常:0xC0000005:访问冲突写入位置 0x0000000000000000

Exception thrown at 0x00007FFF168E1657 (vcruntime140d.dll) in "<name>.exe": 0xC0000005: Access violation writing location 0x0000000000000000

我尝试为进程间通信 (IPC) 创建两个不同的 visual c++ 控制台应用程序。这两个代码的构建都是 successful.But,当我尝试调试它时,我得到这样的异常“Exception thrown at 0x00007FFF168E1657 (vcruntime140d.dll) in FileMapServer_Parent.exe: 0xC0000005:访问冲突写入位置 0x0000000000000000"

//PARENT PROCESS:

#include "stdafx.h"
#include <iostream>
#include <windows.h>
#include <Tlhelp32.h>
#include <stdio.h>
#include <conio.h>
#include <string.h>
#include <cstring>
#include <cctype>
#include <fstream>
using namespace std
int main()
{
cout << "\t\t.....FILEMAPPING SERVER or PARENT....." << endl;
cout << endl;

//Local Variable Definitions


    HANDLE  hFileMap;
    BOOL    bResult;
    PCHAR   lpBuffer = NULL;
    char    Buffer[256] = "Hello From File Map Server";
    size_t  szBuffer = size(Buffer);


// STEP 1 : Create File Map

        hFileMap = CreateFileMapping(
            INVALID_HANDLE_VALUE,
            NULL,
            PAGE_READWRITE,
            0,
            256,
            L"LOCAL\MyFileMap);


if (hFileMap == FALSE)
{
    cout << "CreateFileMapping Failed & Error Number - " << GetLastError() << endl;
}
else
    cout << "CreateFileMapping Success - " <<  endl;


// STEP 2 : Map View of File
lpBuffer = (PCHAR)MapViewOfFile(
    hFileMap,
    FILE_MAP_ALL_ACCESS,
    0,
    0,
    256);

if (lpBuffer == NULL)
{
    cout << "MapViewOf File Failes & Error No - " << GetLastError() << endl;
}
else
    cout << "MapViewOf File Success "  << endl;


//STEP 3 : Copy Memory Function

CopyMemory(lpBuffer,Buffer,szBuffer);


//STEP 4 : Unmap View Of File
bResult = UnmapViewOfFile(lpBuffer);
if (bResult == FALSE)
{
    cout << "UnMapViewOfFile Failed & Error No - " << GetLastError() << endl;
}
else
    cout << "UnMapViewOfFile FSuccess - " << endl;

system("PAUSE");
return 0;
}

运行 父进程发生异常: [1]: https://i.stack.imgur.com/bomQB.png

//CHILD PREOCESS:

#include "stdafx.h"
#include <iostream>
#include <windows.h>
#include <Tlhelp32.h>
#include <stdio.h>
#include <conio.h>
#include <string.h>
#include <cstring>
#include <cctype>
#include <fstream>
using namespace std;

int main()
{
cout << "\t\t.....FILEMAPPING CLIENT or CHILD....." << endl;
cout << endl;

// Local Variable Definitions

HANDLE  hFileMap;
BOOL    bResult;
PCHAR   lpBuffer = NULL;

// STEP 1 : OpenFileMapping

hFileMap = OpenFileMapping(
    FILE_MAP_ALL_ACCESS,
    FALSE,
    L"LOCAL\MyFileMap");
if(hFileMap == NULL)
{
    cout << "OpenFileMap Failed & error - " << GetLastError() << endl;
}
else
    cout << "OpenFileMap success " << endl;


//STEP 2 : MapViewOfFile

lpBuffer = (PCHAR)MapViewOfFile(
    hFileMap,
    FILE_MAP_ALL_ACCESS,
    0,
    0,
    256);

    if (lpBuffer == NULL)
    {
        cout << "MapViewOf File Failes & Error No - " << GetLastError() << endl;
    }
    else
        cout << "MapViewOf File Success " << endl;

//STEP 3 : Reading the data from File Map Object

    cout << "DATA READING FROM PARENT PROCESS--->" <<lpBuffer<< endl;

//STEP 4 : UnMapViewOfFile

    bResult = UnmapViewOfFile(lpBuffer);
    if (bResult == FALSE)
    {
        cout << "UnMapViewOfFile Failed & Error No - " << GetLastError() << endl;
    }
    else
        cout << "UnMapViewOfFile FSuccess - " << endl;

//STEP 5 : Close Handle

    CloseHandle(hFileMap);

system("PAUSE");
return 0;
}

问题出在这里:

hFileMap = CreateFileMapping(
    INVALID_HANDLE_VALUE,
    NULL,
    PAGE_READWRITE,
    0,
    256,
    L"LOCAL\MyFileMap");

根据内核对象名称空间的文档,它们区分大小写,因此您必须将 LOCAL 更改为 Local 才能正常工作。

除了 "Global\" 前缀之外,客户端进程还可以使用 "Local\" 前缀在其会话命名空间中显式创建对象。这些关键字区分大小写。

https://msdn.microsoft.com/en-us/library/aa382954(v=vs.85).aspx

在调试这个问题时我也修改了映射失败退出的代码:

if (hFileMap == NULL)
{
    cout << "CreateFileMapping Failed & Error Number - " << GetLastError() << endl;
    return -1;
}
else
    cout << "CreateFileMapping Success - " << endl;

这避免了原来 "LOCAL" 的崩溃(映射失败)。