blob: 7a6c2f6010efa8e5cd4592913e95dbc887da2041 (
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
|
/* ISC license. */
#include <sys/stat.h>
#include <sys/mman.h>
#include <stdint.h>
#include <errno.h>
#include <skalibs/djbunix.h>
#include <skalibs/cdb.h>
int cdb_init (cdb *c, char const *file)
{
char *map ;
struct stat st ;
int fd = openc_read(file) ;
if (fd < 0) return 0 ;
if (fstat(fd, &st) < 0) goto err ;
if (st.st_size > UINT32_MAX) goto eoverf ;
map = mmap(0, st.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
if (map == MAP_FAILED) goto err ;
c->map = map ;
c->size = st.st_size ;
fd_close(fd) ;
return 1 ;
eoverf:
errno = EOVERFLOW ;
err:
fd_close(fd) ;
return 0 ;
}
|