summaryrefslogtreecommitdiffhomepage
path: root/src/logic/pe_map_raw_image.c
blob: 91fc738683552d4adc63b4e3898c6a58cb38e896 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/***************************************************************/
/*  perk: PE Resource Kit                                      */
/*  Copyright (C) 2015--2017  Z. Gilboa                        */
/*  Released under GPLv2 and GPLv3; see COPYING.PERK.          */
/***************************************************************/

#include <stdint.h>
#include <stdbool.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>

#include <perk/perk.h>
#include "perk_driver_impl.h"
#include "perk_errinfo_impl.h"

int pe_map_raw_image(
	const struct pe_driver_ctx *	dctx,
	int				fd,
	const char *			path,
	int				prot,
	struct pe_raw_image *		map)
{
	int		ret;
	struct stat	st;
	bool		fnew;
	int		fdcwd;

	fdcwd = pe_driver_fdcwd(dctx);

	if ((fnew = (fd < 0)))
		fd  = openat(fdcwd,path,O_RDONLY | O_CLOEXEC);

	if (fd < 0)
		return PERK_SYSTEM_ERROR(dctx);

	if ((ret = fstat(fd,&st) < 0) && fnew)
		close(fd);

	else if ((st.st_size == 0) && fnew)
		close(fd);

	if (ret < 0)
		return PERK_SYSTEM_ERROR(dctx);

	else if (st.st_size == 0)
		return PERK_CUSTOM_ERROR(
			dctx,PERK_ERR_IMAGE_SIZE_ZERO);

	map->map_size = st.st_size;
	map->map_addr = mmap(0,map->map_size,prot,MAP_PRIVATE,fd,0);

	if (fnew)
		close(fd);

	return (map->map_addr == MAP_FAILED)
		? PERK_SYSTEM_ERROR(dctx)
		: 0;
}

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