#include <sys/types.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
#include <unistd.h>
#include "stress.h"
static char file[128];
static int fd;
static int freespace;
int
setup(int nb)
{
int64_t bl;
int64_t in;
int64_t reserve_bl;
int64_t reserve_in;
int i;
char buf[1024];
if (nb == 0) {
getdf(&bl, &in);
reserve_in = 1 * op->incarnations;
reserve_bl = 1081344 * op->incarnations;
freespace = (reserve_bl <= bl && reserve_in <= in);
if (!freespace)
reserve_bl = reserve_in = 0;
if (op->verbose > 1)
printf("lockf2(incarnations=%d). Free(%jdk, %jd), reserve(%jdk, %jd)\n",
op->incarnations, bl/1024, in, reserve_bl/1024, reserve_in);
reservedf(reserve_bl, reserve_in);
putval(freespace);
} else {
freespace = getval();
}
if (!freespace)
exit (0);
sprintf(file, "lockf.%d", getpid());
if ((fd = open(file,O_CREAT | O_TRUNC | O_RDWR, 0600)) == -1)
err(1, "creat(%s)", file);
bzero(buf, sizeof(buf));
for (i = 0; i < 1024; i++)
if (write(fd, &buf, sizeof(buf)) != sizeof(buf))
err(1, "write");
close(fd);
return (0);
}
void
cleanup(void)
{
unlink(file);
}
int
test(void)
{
off_t pos;
off_t size;
int i, r;
if ((fd = open(file, O_RDWR, 0600)) == -1)
err(1, "open(%s)", file);
for (i = 0; i < 1024 && done_testing == 0; i++) {
pos = random_int(0, 1024 * 1024 - 1);
if (lseek(fd, pos, SEEK_SET) == -1)
err(1, "lseek");
size = random_int(1, 1024 * 1024 - pos);
if (size > 64)
size = 64;
do {
r = lockf(fd, F_LOCK, size);
} while (r == -1 && errno == EINTR);
if (r == -1)
err(1, "lockf(%s, F_LOCK)", file);
size = random_int(1, size);
if (lockf(fd, F_ULOCK, size) == -1)
err(1, "lockf(%s, F_ULOCK)", file);
}
close(fd);
return (0);
}