blob: 0499c3569723727eb92600d6178274b1dd91f3f6 (
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
|
/**********************************************************/
/* apimagic: cparser-based API normalization utility */
/* Copyright (C) 2015--2016 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.APIMAGIC. */
/**********************************************************/
#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 <apimagic/apimagic.h>
int amgc_map_input(
int fd,
const char * path,
int prot,
struct amgc_input * map)
{
struct stat stat;
bool fnew;
int ret;
if ((fnew = (fd < 0)))
fd = open(path,O_RDONLY | O_CLOEXEC);
if (fd < 0)
return -1;
if ((ret = fstat(fd,&stat) < 0) && fnew)
close(fd);
if (ret < 0)
return -1;
map->size = stat.st_size;
map->addr = mmap(0,map->size,prot,MAP_PRIVATE,fd,0);
if (fnew)
close(fd);
return (map->addr == MAP_FAILED) ? -1 : 0;
}
int amgc_unmap_input(struct amgc_input * map)
{
return munmap(map->addr,map->size);
}
|