summaryrefslogtreecommitdiffhomepage
path: root/src/main/pe_map_raw_image.c
blob: dc37e35f3e2929bb1f9dda52a567c1a94d16564c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <stdint.h>
#include <unistd.h>
#include <fcntl.h>
#include <limits.h>
#include <errno.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>

#include <perk/perk.h>

int pe_map_raw_image (int fd, const char * fname, struct pe_raw_image * map)
{
	struct stat stat;
	int nfd, ret;

	if ((nfd = !fd))
		fd  = open(fname,O_RDONLY | O_CLOEXEC);

	if ((fd < 0) || (fstat(fd,&stat) < 0))
		return errno;

	map->size = stat.st_size;
	map->addr = (char *)mmap(0,map->size,PROT_READ,MAP_PRIVATE,fd,0);

	if (map->addr == MAP_FAILED) {
		map->addr = 0;
		ret = PERK_MAP_ERROR;
	} else
		ret = 0;

	if (nfd) close(fd);

	return ret;
}

int pe_unmap_raw_image (struct pe_raw_image * map)
{
	return munmap(map->addr, map->size);
}