2007-05-10 14:43:31 +00:00
|
|
|
/*-
|
2017-11-26 02:00:33 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2016-11-24 14:50:21 +00:00
|
|
|
* Copyright (c) 2007-2009 Dag-Erling Coïdan Smørgrav
|
2007-05-10 14:43:31 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer
|
|
|
|
* in this position and unchanged.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2009-06-06 18:47:03 +00:00
|
|
|
#include <sys/file.h>
|
2007-05-10 14:43:31 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdarg.h>
|
2007-05-10 15:01:42 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <libutil.h>
|
2007-05-10 14:43:31 +00:00
|
|
|
|
2016-11-24 14:50:21 +00:00
|
|
|
/*
|
|
|
|
* Reliably open and lock a file.
|
|
|
|
*
|
2016-12-01 02:21:36 +00:00
|
|
|
* Please do not modify this code without first reading the revision history
|
|
|
|
* and discussing your changes with <des@freebsd.org>. Don't be fooled by the
|
|
|
|
* code's apparent simplicity; there would be no need for this function if it
|
|
|
|
* was easy to get right.
|
2016-11-24 14:50:21 +00:00
|
|
|
*/
|
2017-08-04 14:24:24 +00:00
|
|
|
static int
|
|
|
|
vflopenat(int dirfd, const char *path, int flags, va_list ap)
|
2007-05-10 14:43:31 +00:00
|
|
|
{
|
2007-05-23 12:09:33 +00:00
|
|
|
int fd, operation, serrno, trunc;
|
2007-05-10 14:43:31 +00:00
|
|
|
struct stat sb, fsb;
|
|
|
|
mode_t mode;
|
|
|
|
|
|
|
|
#ifdef O_EXLOCK
|
|
|
|
flags &= ~O_EXLOCK;
|
|
|
|
#endif
|
|
|
|
|
2007-05-10 14:52:57 +00:00
|
|
|
mode = 0;
|
2007-05-10 14:43:31 +00:00
|
|
|
if (flags & O_CREAT) {
|
2008-10-20 18:11:30 +00:00
|
|
|
mode = (mode_t)va_arg(ap, int); /* mode_t promoted to int */
|
2007-05-10 14:43:31 +00:00
|
|
|
}
|
|
|
|
|
2009-06-06 18:47:03 +00:00
|
|
|
operation = LOCK_EX;
|
|
|
|
if (flags & O_NONBLOCK)
|
|
|
|
operation |= LOCK_NB;
|
2007-05-10 14:52:57 +00:00
|
|
|
|
2007-05-23 12:09:33 +00:00
|
|
|
trunc = (flags & O_TRUNC);
|
2007-05-23 10:06:03 +00:00
|
|
|
flags &= ~O_TRUNC;
|
2007-05-23 08:12:34 +00:00
|
|
|
|
2007-05-10 14:43:31 +00:00
|
|
|
for (;;) {
|
2017-08-04 14:24:24 +00:00
|
|
|
if ((fd = openat(dirfd, path, flags, mode)) == -1)
|
2007-05-10 14:43:31 +00:00
|
|
|
/* non-existent or no access */
|
|
|
|
return (-1);
|
2009-06-06 18:47:03 +00:00
|
|
|
if (flock(fd, operation) == -1) {
|
2007-05-10 14:43:31 +00:00
|
|
|
/* unsupported or interrupted */
|
|
|
|
serrno = errno;
|
2008-10-20 18:11:30 +00:00
|
|
|
(void)close(fd);
|
2007-05-10 14:43:31 +00:00
|
|
|
errno = serrno;
|
|
|
|
return (-1);
|
|
|
|
}
|
2017-08-04 14:24:24 +00:00
|
|
|
if (fstatat(dirfd, path, &sb, 0) == -1) {
|
2007-05-10 14:43:31 +00:00
|
|
|
/* disappeared from under our feet */
|
2008-10-20 18:11:30 +00:00
|
|
|
(void)close(fd);
|
2007-05-10 14:43:31 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (fstat(fd, &fsb) == -1) {
|
|
|
|
/* can't happen [tm] */
|
|
|
|
serrno = errno;
|
2008-10-20 18:11:30 +00:00
|
|
|
(void)close(fd);
|
2007-05-10 14:43:31 +00:00
|
|
|
errno = serrno;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (sb.st_dev != fsb.st_dev ||
|
|
|
|
sb.st_ino != fsb.st_ino) {
|
|
|
|
/* changed under our feet */
|
2008-10-20 18:11:30 +00:00
|
|
|
(void)close(fd);
|
2007-05-10 14:43:31 +00:00
|
|
|
continue;
|
|
|
|
}
|
2007-05-23 12:09:33 +00:00
|
|
|
if (trunc && ftruncate(fd, 0) != 0) {
|
2007-05-23 08:12:34 +00:00
|
|
|
/* can't happen [tm] */
|
|
|
|
serrno = errno;
|
2008-10-20 18:11:30 +00:00
|
|
|
(void)close(fd);
|
2007-05-23 08:12:34 +00:00
|
|
|
errno = serrno;
|
|
|
|
return (-1);
|
|
|
|
}
|
2016-12-01 02:21:36 +00:00
|
|
|
/*
|
|
|
|
* The following change is provided as a specific example to
|
|
|
|
* avoid.
|
|
|
|
*/
|
|
|
|
#if 0
|
2016-11-24 14:50:21 +00:00
|
|
|
if (fcntl(fd, F_SETFD, FD_CLOEXEC) != 0) {
|
|
|
|
serrno = errno;
|
|
|
|
(void)close(fd);
|
|
|
|
errno = serrno;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
#endif
|
2007-05-10 14:43:31 +00:00
|
|
|
return (fd);
|
|
|
|
}
|
|
|
|
}
|
2017-08-04 14:24:24 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
flopen(const char *path, int flags, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
va_start(ap, flags);
|
|
|
|
ret = vflopenat(AT_FDCWD, path, flags, ap);
|
|
|
|
va_end(ap);
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
flopenat(int dirfd, const char *path, int flags, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
va_start(ap, flags);
|
|
|
|
ret = vflopenat(dirfd, path, flags, ap);
|
|
|
|
va_end(ap);
|
|
|
|
return (ret);
|
|
|
|
}
|