summaryrefslogtreecommitdiff
path: root/src/libstddjb/cdb_init_fromfd.c
blob: 7446f4a22dfc63cd22c46283545186fd48d40556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ISC license. */

#include <skalibs/bsdsnowflake.h>

#include <sys/stat.h>
#include <sys/mman.h>
#include <stdint.h>
#include <errno.h>

#include <skalibs/cdb.h>

int cdb_init_fromfd (cdb *c, int fd)
{
  char *map ;
  struct stat st ;
  if (fstat(fd, &st) < 0) return 0 ;
  if (st.st_size > UINT32_MAX) return (errno = EOVERFLOW, 0) ;
  map = mmap(0, st.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
  if (map == MAP_FAILED) return 0 ;
  c->map = map ;
  c->size = st.st_size ;
  return 1 ;
}