首页
社区
课程
招聘
未解决 CreateFileMapping映射的最大值是多少
发表于: 2020-3-31 15:33 2680

未解决 CreateFileMapping映射的最大值是多少

2020-3-31 15:33
2680
就是看到分割文件用到的api,是不大于4GB吗?
自己查了一下,的确是4GB大小。

[课程]FART 脱壳王!加量不加价!FART作者讲授!

最后于 2020-3-31 16:13 被limee编辑 ,原因:
收藏
免费 0
支持
分享
最新回复 (6)
雪    币: 433
活跃值: (1895)
能力值: ( LV4,RANK:40 )
在线值:
发帖
回帖
粉丝
2
自 问 自 答
2020-3-31 18:13
0
雪    币: 897
活跃值: (5916)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
The main purpose of the CreateFileMapping function is to ensure that enough physical storage is
available for the file-mapping object. These two parameters tell the system the maximum size of the file in bytes. Two 32-bit
values are required because Windows supports file sizes that can be expressed using a 64-bit value; the
dwMaximumSizeHigh parameter specifies the high 32 bits, and the dwMaximumSizeLow parameter specifies the low 32
bits. For files that are less than 4 GB, dwMaximumSizeHigh will always be 0.
Using a 64-bit value means that Windows can process files as large as 16 EB (exabytes). If you want to create the
file-mapping object so that it reflects the current size of the file, you can pass 0 for both parameters. If you intend only to
read from the file or to access the file without changing its size, pass 0 for both parameters. If you intend to append data to
the file, you will want to choose a maximum file size that leaves you some breathing room. If the file on disk currently
contains 0 bytes, you can't pass two zeros to CreateFileMapping's dwMaximumSizeHigh and dwMaximumSizeLow
parameters. Doing so tells the system that you want a file-mapping object with 0 bytes of storage in it. This is an error and
CreateFileMapping will return NULL.
If you've paid attention so far, you must be thinking that something is terribly wrong here. It's nice that Windows supports
files and file-mapping objects that can be anywhere up to 16 EB, but how are you ever going to map a file that big into a
32-bit process' address space, which has a maximum limit of 4 GB (little of which is even usable)? I'll explain how you can
accomplish this in the next section. Of course, a 64-bit process has a 16-EB address space so that you can work with much
larger file mappings, but a similar limitation still exists if the file is super-big.
To really understand how CreateFile and CreateFileMapping work, you should try the following experiment. Take
the following code, build it, and then run it in a debugger. As you single-step through each statement, jump to a command
shell and execute a dir command on the C:\ directory. Notice the changes that are appearing in the directory as you
execute each statement in the debugger.
int WINAPI _tWinMain(HINSTANCE, HINSTANCE, PTSTR, int) {
// Before executing the line below, C:\ does not have
// a file called "MMFTest.Dat"
HANDLE hFile = CreateFile(TEXT("C:\\MMFTest.Dat"),
GENERIC_READ | GENERIC_WRITE,
FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, CREATE_ALWAYS,
FILE_ATTRIBUTE_NORMAL, NULL);
// Before executing the line below, the MMFTest.Dat
// file does exist but has a file size of 0 bytes.
HANDLE hFileMap = CreateFileMapping(hFile, NULL, PAGE_READWRITE,
0, 100, NULL);Windows via C/C++, Fifth Edition by Jeffrey Richter and Christophe Nasarre
// After executing the line above, the MMFTest.Dat
// file has a size of 100 bytes.
// Cleanup
CloseHandle(hFileMap);
CloseHandle(hFile);
// When the process terminates, MMFTest.Dat remains
// on the disk with a size of 100 bytes.
return(0);
}
If you call CreateFileMapping, passing the PAGE_READWRITE flag, the system checks to make sure that the
associated data file on the disk is at least the same size as the size specified in the dwMaximumSizeHigh and
dwMaximumSizeLow parameters. If the file is smaller than the specified size, CreateFileMapping makes the file on the
disk larger by extending its size. This enlargement is required so that the physical storage will already exist when the file is
used later as a memory-mapped file. If the file-mapping object is being created with the PAGE_READONLY or the PAGE_
WRITECOPY flag, the size specified to CreateFileMapping must be no larger than the physical size of the disk file. This
is because you won't be able to append any data to the file.
The last parameter of CreateFileMapping, pszName, is a zero-terminated string that assigns a name to this
file-mapping object. The name is used to share the object with another process. (An example of this is shown later in this
chapter. Chapter 3, "Kernel Objects," also discusses kernel object sharing in greater detail.) A memory-mapped data file
usually doesn't need to be shared; therefore, this parameter is usually NULL.
The system creates the file-mapping object and returns a handle identifying the object back to the calling thread. If the
system cannot create the file-mapping object, a NULL handle value is returned. Again, please remember that CreateFile
returns INVALID_HANDLE_VALUE (defined as -1) when it fails and CreateFileMapping returns NULL when it fails.
Don't get these error values confused.
上传的附件:
2020-4-2 21:07
0
雪    币: 1540
活跃值: (2807)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4
这个小手册收下了,谢谢。
2020-4-2 22:56
0
雪    币: 1540
活跃值: (2807)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
https://pan.baidu.com/s/1m6tf6CEj6DXE5onHiygSCA
fwy8
最后于 2020-4-3 05:23 被limee编辑 ,原因:
2020-4-3 05:20
0
雪    币: 1540
活跃值: (2807)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
6
萌克力 自 问 自 答
里面的东西打不开的,有原版的pdf吗?
2020-4-3 14:34
0
雪    币: 897
活跃值: (5916)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
7
Jeffrey Richter, Christophe Nasarre - Windows via C_C++-Microsoft Press (2011).pdf
上传的附件:
2020-4-4 05:26
0
游客
登录 | 注册 方可回帖
返回
//