我正在嘗試在文件系統(例如ext2)中搜索特定字節(例如0xAB)的項目。我能用malloc()
,realloc()
和memchr()
找到我需要的東西,但它看起來很慢,所以我正在使用mmap()
進行調查。我試圖做的是找到一個特定的字節,然後將它們複製到一個結構中,所以我有兩個問題:(1)使用mmap()
最好的策略,(2)爲什麼不是下面的代碼工作(我得到EINVAL錯誤)?使用mmap()來搜索大文件(〜1TB)
UPDATE:下面的程序編譯和運行,但我仍然有一對夫婦的問題:
1),它不會顯示在大文件正確的文件大小(顯示1GB的閃存驅動器大小正確,而不是32GB)* 。
2)它沒有正確地搜索映射**。
*是否THIS是使用stat64()
獲得正確尺寸的可能解決方案?如果是這樣,是我在我的Makefile中添加的東西嗎?我沒有使用makefiles太多,所以我不知道如何添加類似的東西。
**這甚至是正確的搜索方式嗎?
#define _LARGEFILE64_SOURCE
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
#define handle_error(msg) \
do { perror(msg); exit(EXIT_FAILURE); } while (0)
int main(int argc, char **argv) {
int fd = open("/dev/sdb1", O_RDONLY);
if(fd < 0) {
printf("Error %s\n", strerror(errno));
return -1;
}
const char * map;
off64_t size;
size = lseek64(fd, 0, SEEK_END);
printf("file size: %llu\n", size);
lseek64(fd, 0, SEEK_SET);
map = mmap(0, size, PROT_READ, MAP_SHARED, fd, 0);
if (map == MAP_FAILED) { handle_error("mmap error"); }
printf("Searching for magic numbers...\n");
for (i=0; i < size; i++) {
if(map[i] == 0X53 && map[i + 1] == 0XEF) {
if ((map[i-32] == 0X00 && map[i-31] == 0X00) ||
(map[i-32] == 0X01 && map[i-31] == 0X00) ||
(map[i-32] == 0X02 && map[i-31] == 0X00)) {
if(j <= 5) {
printf("superblock %d found\n", j);
++j;
} else break;
int q;
for(q=0; q<j; q++) {
printf("SUPERBLOCK[%d]: %d\n", q+1, sb_pos[q]);
}
fclose(fd);
munmap(map, size);
return 0;
}
感謝您的幫助。
你應該檢查errno變量來理解爲什麼mmap失敗 –
你讀過[THIS](http://stackoverflow.com/questions/10088962/mmap-returns-einval)的問題嗎? – Shark
它可能會失敗,因爲它無法找到您請求的長度的連續內存條(「大小」)。 – Shark