2009-10-14 16:52:04 -07:00
|
|
|
/*
|
2012-07-26 14:36:24 -07:00
|
|
|
* Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc.
|
2009-10-14 16:52:04 -07:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at:
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "lockfile.h"
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
2012-07-26 14:36:24 -07:00
|
|
|
#include <sys/stat.h>
|
2009-10-14 16:52:04 -07:00
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "process.h"
|
|
|
|
#include "timeval.h"
|
|
|
|
#include "util.h"
|
2010-07-16 11:23:31 -07:00
|
|
|
#include "vlog.h"
|
2009-10-14 16:52:04 -07:00
|
|
|
|
|
|
|
struct test {
|
|
|
|
const char *name;
|
|
|
|
void (*function)(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct test tests[];
|
|
|
|
|
2011-09-29 10:39:49 -07:00
|
|
|
#define CHECK(A, B) check(A, B, #A, #B, __FILE__, __LINE__)
|
|
|
|
static void
|
|
|
|
check(int a, int b,
|
|
|
|
const char *a_string, const char *b_string, const char *file, int line)
|
|
|
|
{
|
|
|
|
if (a != b) {
|
|
|
|
fprintf(stderr, "%s:%d: expected %s == %s but %d != %d\n",
|
|
|
|
file, line, a_string, b_string, a, b);
|
|
|
|
fflush(stderr);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-14 16:52:04 -07:00
|
|
|
static void
|
|
|
|
run_lock_and_unlock(void)
|
|
|
|
{
|
|
|
|
struct lockfile *lockfile;
|
|
|
|
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), 0);
|
2009-10-14 16:52:04 -07:00
|
|
|
lockfile_unlock(lockfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_lock_and_unlock_twice(void)
|
|
|
|
{
|
|
|
|
struct lockfile *lockfile;
|
|
|
|
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), 0);
|
2009-10-14 16:52:04 -07:00
|
|
|
lockfile_unlock(lockfile);
|
|
|
|
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), 0);
|
2009-10-14 16:52:04 -07:00
|
|
|
lockfile_unlock(lockfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_lock_blocks_same_process(void)
|
|
|
|
{
|
|
|
|
struct lockfile *lockfile;
|
|
|
|
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), 0);
|
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), EDEADLK);
|
2009-10-14 16:52:04 -07:00
|
|
|
lockfile_unlock(lockfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_lock_blocks_same_process_twice(void)
|
|
|
|
{
|
|
|
|
struct lockfile *lockfile;
|
|
|
|
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), 0);
|
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), EDEADLK);
|
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), EDEADLK);
|
2009-10-14 16:52:04 -07:00
|
|
|
lockfile_unlock(lockfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
static enum { PARENT, CHILD }
|
|
|
|
do_fork(void)
|
|
|
|
{
|
|
|
|
switch (fork()) {
|
|
|
|
case 0:
|
|
|
|
time_postfork();
|
|
|
|
lockfile_postfork();
|
|
|
|
return CHILD;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return PARENT;
|
|
|
|
|
|
|
|
case -1:
|
|
|
|
/* Error. */
|
|
|
|
ovs_fatal(errno, "fork failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_lock_blocks_other_process(void)
|
|
|
|
{
|
2010-02-01 14:57:48 -08:00
|
|
|
/* Making this static prevents a memory leak warning from valgrind for the
|
|
|
|
* parent process, which cannot easily unlock (and free) 'lockfile' because
|
|
|
|
* it can only do so after the child has exited, and it's the caller of
|
|
|
|
* this function that does the wait() call. */
|
|
|
|
static struct lockfile *lockfile;
|
2009-10-14 16:52:04 -07:00
|
|
|
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), 0);
|
2009-10-14 16:52:04 -07:00
|
|
|
if (do_fork() == CHILD) {
|
2010-02-01 14:57:48 -08:00
|
|
|
lockfile_unlock(lockfile);
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), EAGAIN);
|
2009-10-14 16:52:04 -07:00
|
|
|
exit(11);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_lock_twice_blocks_other_process(void)
|
|
|
|
{
|
|
|
|
struct lockfile *lockfile, *dummy;
|
|
|
|
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), 0);
|
|
|
|
CHECK(lockfile_lock("file", 0, &dummy), EDEADLK);
|
2009-10-14 16:52:04 -07:00
|
|
|
if (do_fork() == CHILD) {
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &dummy), EAGAIN);
|
2009-10-14 16:52:04 -07:00
|
|
|
exit(11);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_lock_and_unlock_allows_other_process(void)
|
|
|
|
{
|
|
|
|
struct lockfile *lockfile;
|
|
|
|
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), 0);
|
2009-10-14 16:52:04 -07:00
|
|
|
lockfile_unlock(lockfile);
|
|
|
|
|
|
|
|
if (do_fork() == CHILD) {
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), 0);
|
2009-10-14 16:52:04 -07:00
|
|
|
exit(11);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_lock_timeout_gets_the_lock(void)
|
|
|
|
{
|
|
|
|
struct lockfile *lockfile;
|
|
|
|
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), 0);
|
2009-10-14 16:52:04 -07:00
|
|
|
|
|
|
|
if (do_fork() == CHILD) {
|
2010-02-01 14:57:48 -08:00
|
|
|
lockfile_unlock(lockfile);
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", TIME_UPDATE_INTERVAL * 3, &lockfile), 0);
|
2009-10-14 16:52:04 -07:00
|
|
|
exit(11);
|
|
|
|
} else {
|
|
|
|
long long int now = time_msec();
|
|
|
|
while (time_msec() < now + TIME_UPDATE_INTERVAL) {
|
|
|
|
pause();
|
|
|
|
}
|
|
|
|
lockfile_unlock(lockfile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_lock_timeout_runs_out(void)
|
|
|
|
{
|
|
|
|
struct lockfile *lockfile;
|
|
|
|
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", 0, &lockfile), 0);
|
2009-10-14 16:52:04 -07:00
|
|
|
|
|
|
|
if (do_fork() == CHILD) {
|
2010-02-01 14:57:48 -08:00
|
|
|
lockfile_unlock(lockfile);
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("file", TIME_UPDATE_INTERVAL, &lockfile),
|
|
|
|
ETIMEDOUT);
|
2009-10-14 16:52:04 -07:00
|
|
|
exit(11);
|
|
|
|
} else {
|
|
|
|
long long int now = time_msec();
|
|
|
|
while (time_msec() < now + TIME_UPDATE_INTERVAL * 3) {
|
|
|
|
pause();
|
|
|
|
}
|
|
|
|
lockfile_unlock(lockfile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
run_lock_multiple(void)
|
|
|
|
{
|
|
|
|
struct lockfile *a, *b, *c, *dummy;
|
|
|
|
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("a", 0, &a), 0);
|
|
|
|
CHECK(lockfile_lock("b", 0, &b), 0);
|
|
|
|
CHECK(lockfile_lock("c", 0, &c), 0);
|
2009-10-14 16:52:04 -07:00
|
|
|
|
|
|
|
lockfile_unlock(a);
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("a", 0, &a), 0);
|
|
|
|
CHECK(lockfile_lock("a", 0, &dummy), EDEADLK);
|
2009-10-14 16:52:04 -07:00
|
|
|
lockfile_unlock(a);
|
|
|
|
|
|
|
|
lockfile_unlock(b);
|
2011-09-29 10:39:49 -07:00
|
|
|
CHECK(lockfile_lock("a", 0, &a), 0);
|
2009-10-14 16:52:04 -07:00
|
|
|
|
|
|
|
lockfile_unlock(c);
|
|
|
|
lockfile_unlock(a);
|
|
|
|
}
|
|
|
|
|
2012-07-26 14:36:24 -07:00
|
|
|
/* Checks that locking a dangling symlink works OK. (It used to hang.) */
|
|
|
|
static void
|
|
|
|
run_lock_symlink(void)
|
|
|
|
{
|
|
|
|
struct lockfile *a, *b, *dummy;
|
|
|
|
struct stat s;
|
|
|
|
|
|
|
|
/* Create a symlink .a.~lock~ pointing to .b.~lock~. */
|
|
|
|
CHECK(symlink(".b.~lock~", ".a.~lock~"), 0);
|
|
|
|
CHECK(lstat(".a.~lock~", &s), 0);
|
|
|
|
CHECK(S_ISLNK(s.st_mode) != 0, 1);
|
|
|
|
CHECK(stat(".a.~lock~", &s), -1);
|
|
|
|
CHECK(errno, ENOENT);
|
|
|
|
CHECK(stat(".b.~lock~", &s), -1);
|
|
|
|
CHECK(errno, ENOENT);
|
|
|
|
|
|
|
|
CHECK(lockfile_lock("a", 0, &a), 0);
|
|
|
|
CHECK(lockfile_lock("a", 0, &dummy), EDEADLK);
|
|
|
|
CHECK(lockfile_lock("b", 0, &dummy), EDEADLK);
|
|
|
|
lockfile_unlock(a);
|
|
|
|
|
|
|
|
CHECK(lockfile_lock("b", 0, &b), 0);
|
|
|
|
CHECK(lockfile_lock("b", 0, &dummy), EDEADLK);
|
|
|
|
CHECK(lockfile_lock("a", 0, &dummy), EDEADLK);
|
|
|
|
lockfile_unlock(b);
|
|
|
|
|
|
|
|
CHECK(lstat(".a.~lock~", &s), 0);
|
|
|
|
CHECK(S_ISLNK(s.st_mode) != 0, 1);
|
|
|
|
CHECK(stat(".a.~lock~", &s), 0);
|
|
|
|
CHECK(S_ISREG(s.st_mode) != 0, 1);
|
|
|
|
CHECK(stat(".b.~lock~", &s), 0);
|
|
|
|
CHECK(S_ISREG(s.st_mode) != 0, 1);
|
|
|
|
}
|
|
|
|
|
2009-10-14 16:52:04 -07:00
|
|
|
static void
|
|
|
|
run_help(void)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
printf("usage: %s TESTNAME\n"
|
|
|
|
"where TESTNAME is one of the following:\n",
|
|
|
|
program_name);
|
|
|
|
for (i = 0; tests[i].name; i++) {
|
|
|
|
fprintf(stderr, "\t%s\n", tests[i].name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct test tests[] = {
|
|
|
|
#define TEST(NAME) { #NAME, run_##NAME }
|
|
|
|
TEST(lock_and_unlock),
|
|
|
|
TEST(lock_and_unlock_twice),
|
|
|
|
TEST(lock_blocks_same_process),
|
|
|
|
TEST(lock_blocks_same_process_twice),
|
|
|
|
TEST(lock_blocks_other_process),
|
|
|
|
TEST(lock_twice_blocks_other_process),
|
|
|
|
TEST(lock_and_unlock_allows_other_process),
|
|
|
|
TEST(lock_timeout_gets_the_lock),
|
|
|
|
TEST(lock_timeout_runs_out),
|
|
|
|
TEST(lock_multiple),
|
2012-07-26 14:36:24 -07:00
|
|
|
TEST(lock_symlink),
|
2009-10-14 16:52:04 -07:00
|
|
|
TEST(help),
|
2011-05-04 13:49:42 -07:00
|
|
|
{ NULL, NULL }
|
2009-10-14 16:52:04 -07:00
|
|
|
#undef TEST
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2010-07-16 10:53:14 -07:00
|
|
|
extern struct vlog_module VLM_lockfile;
|
2009-10-14 16:52:04 -07:00
|
|
|
size_t i;
|
|
|
|
|
|
|
|
set_program_name(argv[0]);
|
2010-07-16 10:53:14 -07:00
|
|
|
vlog_set_levels(&VLM_lockfile, VLF_ANY_FACILITY, VLL_ERR);
|
2009-10-14 16:52:04 -07:00
|
|
|
|
|
|
|
if (argc != 2) {
|
|
|
|
ovs_fatal(0, "exactly one argument required; use \"%s help\" for help",
|
|
|
|
program_name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; tests[i].name; i++) {
|
|
|
|
if (!strcmp(argv[1], tests[i].name)) {
|
|
|
|
int n_children;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
(tests[i].function)();
|
|
|
|
|
|
|
|
n_children = 0;
|
|
|
|
while (wait(&status) > 0) {
|
|
|
|
if (WIFEXITED(status) && WEXITSTATUS(status) == 11) {
|
|
|
|
n_children++;
|
|
|
|
} else {
|
|
|
|
ovs_fatal(0, "child exited in unexpected way: %s",
|
|
|
|
process_status_msg(status));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (errno != ECHILD) {
|
|
|
|
ovs_fatal(errno, "wait");
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("%s: success (%d child%s)\n",
|
|
|
|
tests[i].name, n_children, n_children != 1 ? "ren" : "");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ovs_fatal(0, "unknown test \"%s\"; use \"%s help\" for help",
|
|
|
|
argv[1], program_name);
|
|
|
|
}
|
|
|
|
|