summaryrefslogtreecommitdiff
path: root/src/libstddjb/cdb_read.c
blob: fa7b1d3cbbcd1cdd2bcfe61a2ee40a96085b99ad (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 <unistd.h>
#include <string.h>
#include <errno.h>
#include <skalibs/error.h>
#include <skalibs/allreadwrite.h>
#include <skalibs/cdb.h>

int cdb_read (struct cdb *c, char *buf, unsigned int len, uint32_t pos)
{
  if (c->map)
  {
    if ((pos > c->size) || (c->size - pos < len)) return (errno = EPROTO, -1) ;
    memcpy(buf, c->map + pos, len) ;
  }
  else
  {
    if (lseek(c->fd, pos, SEEK_SET) < 0) return -1 ;
    if (allread(c->fd, buf, len) < len) return -1 ;
  }
  return 0 ;
}