#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#endif
#include <sys/cdefs.h>
__RCSID("$NetBSD: dbfile.c,v 1.2 2018/01/04 20:57:29 kamil Exp $");
#include "namespace.h"
#include <sys/stat.h>
#include <stdio.h>
#include <fcntl.h>
#include <signal.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <paths.h>
#include <db.h>
int
__dbopen(const char *file, int flags, mode_t mode, struct stat *sb)
{
int fd;
int serrno;
#ifndef O_CLOEXEC
#define O_CLOEXEC 0
#endif
if ((fd = open(file, flags | O_CLOEXEC, mode)) == -1)
return -1;
#if O_CLOEXEC == 0
if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
goto out;
#endif
if (sb && fstat(fd, sb) == -1)
goto out;
return fd;
out:
serrno = errno;
close(fd);
errno = serrno;
return -1;
}
int
__dbtemp(const char *prefix, struct stat *sb)
{
sigset_t set, oset;
int len;
int fd, serrno;
char *envtmp;
char path[PATH_MAX];
if (issetugid())
envtmp = NULL;
else
envtmp = getenv("TMPDIR");
len = snprintf(path, sizeof(path), "%s/%sXXXXXX",
envtmp ? envtmp : _PATH_TMP, prefix);
if ((size_t)len >= sizeof(path)) {
errno = ENAMETOOLONG;
return -1;
}
(void)sigfillset(&set);
(void)sigprocmask(SIG_BLOCK, &set, &oset);
if ((fd = mkstemp(path)) != -1) {
if (unlink(path) == -1)
goto out;
if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
goto out;
if (sb && fstat(fd, sb) == -1)
goto out;
}
(void)sigprocmask(SIG_SETMASK, &oset, NULL);
return fd;
out:
serrno = errno;
(void)sigprocmask(SIG_SETMASK, &oset, NULL);
close(fd);
errno = serrno;
return -1;
}