Commit 538ce30e authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

Use fcntl(2)-style locks instead of non-portable flock(2)-style locks.

Based on Theo Schlossnagle's Solaris portability patch.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1787 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 12ecde00
...@@ -44,6 +44,7 @@ flopen(const char *path, int flags, ...) ...@@ -44,6 +44,7 @@ flopen(const char *path, int flags, ...)
{ {
int fd, operation, serrno, trunc; int fd, operation, serrno, trunc;
struct stat sb, fsb; struct stat sb, fsb;
struct flock lock;
mode_t mode; mode_t mode;
#ifdef O_EXLOCK #ifdef O_EXLOCK
...@@ -59,9 +60,11 @@ flopen(const char *path, int flags, ...) ...@@ -59,9 +60,11 @@ flopen(const char *path, int flags, ...)
va_end(ap); va_end(ap);
} }
operation = LOCK_EX; lock.l_type = (flags & O_WRONLY || flags & O_RDWR) ? F_WRLCK : F_RDLCK;
if (flags & O_NONBLOCK) lock.l_start = 0;
operation |= LOCK_NB; lock.l_whence = SEEK_SET;
lock.l_len = 0;
operation = (flags & O_NONBLOCK) ? F_SETLK : F_SETLKW;
trunc = (flags & O_TRUNC); trunc = (flags & O_TRUNC);
flags &= ~O_TRUNC; flags &= ~O_TRUNC;
...@@ -70,7 +73,7 @@ flopen(const char *path, int flags, ...) ...@@ -70,7 +73,7 @@ flopen(const char *path, int flags, ...)
if ((fd = open(path, flags, mode)) == -1) if ((fd = open(path, flags, mode)) == -1)
/* non-existent or no access */ /* non-existent or no access */
return (-1); return (-1);
if (flock(fd, operation) == -1) { if (fcntl(fd, operation, &lock) == -1) {
/* unsupported or interrupted */ /* unsupported or interrupted */
serrno = errno; serrno = errno;
close(fd); close(fd);
......
...@@ -32,12 +32,12 @@ ...@@ -32,12 +32,12 @@
#include <sys/file.h> #include <sys/file.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h> #include <string.h>
#include <errno.h> #include <unistd.h>
#ifndef HAVE_STRLCPY #ifndef HAVE_STRLCPY
#include "compat/strlcpy.h" #include "compat/strlcpy.h"
...@@ -222,8 +222,14 @@ vpf_close(struct pidfh *pfh) ...@@ -222,8 +222,14 @@ vpf_close(struct pidfh *pfh)
static int static int
_vpf_remove(struct pidfh *pfh, int freeit) _vpf_remove(struct pidfh *pfh, int freeit)
{ {
struct flock lock;
int error; int error;
lock.l_type = F_UNLCK;
lock.l_start = 0;
lock.l_whence = SEEK_SET;
lock.l_len = 0;
error = vpf_verify(pfh); error = vpf_verify(pfh);
if (error != 0) { if (error != 0) {
errno = error; errno = error;
...@@ -232,7 +238,7 @@ _vpf_remove(struct pidfh *pfh, int freeit) ...@@ -232,7 +238,7 @@ _vpf_remove(struct pidfh *pfh, int freeit)
if (unlink(pfh->pf_path) == -1) if (unlink(pfh->pf_path) == -1)
error = errno; error = errno;
if (flock(pfh->pf_fd, LOCK_UN) == -1) { if (fcntl(pfh->pf_fd, F_SETLK, &lock) == -1) {
if (error == 0) if (error == 0)
error = errno; error = errno;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment