summaryrefslogtreecommitdiff
path: root/src/internal/tpax_readlink_impl.h
blob: d6c558071b0c94f81d6ffdd19a015c4fc3600ef0 (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
/**************************************************************/
/*  tpax: a topological pax implementation                    */
/*  Copyright (C) 2020--2021  SysDeer Technologies, LLC       */
/*  Released under GPLv2 and GPLv3; see COPYING.TPAX.         */
/**************************************************************/

#ifndef TPAX_READLINK_IMPL_H
#define TPAX_READLINK_IMPL_H

#include <unistd.h>
#include <errno.h>

static inline int tpax_readlinkat(
	int		fdat,
	const char *	restrict path,
	char *		restrict buf,
	ssize_t		bufsize)
{
	ssize_t ret;

	if ((ret = readlinkat(fdat,path,buf,bufsize)) <= 0) {
		return -1;
	} else if (ret == bufsize) {
		errno = ENOBUFS;
		return -1;
	} else {
		buf[ret] = 0;
		return 0;
	}
}

#endif