X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ovsdb%2Flog.c;h=ea3c3f348f036bdffe4dc05903c0af7ec52447d8;hb=69fc54f47bbc35e81bfe2e38e57f5dcfd9858df4;hp=09b9f1f7adc809c2eb6dcb1fcac13bed428f7568;hpb=3762274e6359f4afe04107851f4c71347fa0afa0;p=sliver-openvswitch.git diff --git a/ovsdb/log.c b/ovsdb/log.c index 09b9f1f7a..ea3c3f348 100644 --- a/ovsdb/log.c +++ b/ovsdb/log.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2010 Nicira Networks +/* Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,7 +17,6 @@ #include "log.h" -#include #include #include #include @@ -33,22 +32,23 @@ #include "socket-util.h" #include "transaction.h" #include "util.h" - -#define THIS_MODULE VLM_ovsdb_log #include "vlog.h" +VLOG_DEFINE_THIS_MODULE(ovsdb_log); + enum ovsdb_log_mode { OVSDB_LOG_READ, OVSDB_LOG_WRITE }; struct ovsdb_log { + off_t prev_offset; off_t offset; char *name; struct lockfile *lockfile; FILE *stream; struct ovsdb_error *read_error; - struct ovsdb_error *write_error; + bool write_error; enum ovsdb_log_mode mode; }; @@ -74,12 +74,12 @@ ovsdb_log_open(const char *name, enum ovsdb_log_open_mode open_mode, *filep = NULL; - assert(locking == -1 || locking == false || locking == true); + ovs_assert(locking == -1 || locking == false || locking == true); if (locking < 0) { locking = open_mode != OVSDB_LOG_READ_ONLY; } if (locking) { - int retval = lockfile_lock(name, 0, &lockfile); + int retval = lockfile_lock(name, &lockfile); if (retval) { error = ovsdb_io_error(retval, "%s: failed to lock lockfile", name); @@ -94,7 +94,16 @@ ovsdb_log_open(const char *name, enum ovsdb_log_open_mode open_mode, } else if (open_mode == OVSDB_LOG_READ_WRITE) { flags = O_RDWR; } else if (open_mode == OVSDB_LOG_CREATE) { - flags = O_RDWR | O_CREAT | O_EXCL; + if (stat(name, &s) == -1 && errno == ENOENT + && lstat(name, &s) == 0 && S_ISLNK(s.st_mode)) { + /* 'name' is a dangling symlink. We want to create the file that + * the symlink points to, but POSIX says that open() with O_EXCL + * must fail with EEXIST if the named file is a symlink. So, we + * have to leave off O_EXCL and accept the race. */ + flags = O_RDWR | O_CREAT; + } else { + flags = O_RDWR | O_CREAT | O_EXCL; + } } else { NOT_REACHED(); } @@ -121,9 +130,10 @@ ovsdb_log_open(const char *name, enum ovsdb_log_open_mode open_mode, file->name = xstrdup(name); file->lockfile = lockfile; file->stream = stream; + file->prev_offset = 0; file->offset = 0; file->read_error = NULL; - file->write_error = NULL; + file->write_error = false; file->mode = OVSDB_LOG_READ; *filep = file; return NULL; @@ -144,7 +154,6 @@ ovsdb_log_close(struct ovsdb_log *file) fclose(file->stream); lockfile_unlock(file->lockfile); ovsdb_error_destroy(file->read_error); - ovsdb_error_destroy(file->write_error); free(file); } } @@ -284,9 +293,10 @@ ovsdb_log_read(struct ovsdb_log *file, struct json **jsonp) goto error; } + file->prev_offset = file->offset; file->offset = data_offset + data_length; *jsonp = json; - return 0; + return NULL; error: file->read_error = ovsdb_error_clone(error); @@ -294,6 +304,22 @@ error: return error; } +/* Causes the log record read by the previous call to ovsdb_log_read() to be + * effectively discarded. The next call to ovsdb_log_write() will overwrite + * that previously read record. + * + * Calling this function more than once has no additional effect. + * + * This function is useful when ovsdb_log_read() successfully reads a record + * but that record does not make sense at a higher level (e.g. it specifies an + * invalid transaction). */ +void +ovsdb_log_unread(struct ovsdb_log *file) +{ + ovs_assert(file->mode == OVSDB_LOG_READ); + file->offset = file->prev_offset; +} + struct ovsdb_error * ovsdb_log_write(struct ovsdb_log *file, struct json *json) { @@ -305,10 +331,9 @@ ovsdb_log_write(struct ovsdb_log *file, struct json *json) json_string = NULL; - if (file->write_error) { - return ovsdb_error_clone(file->write_error); - } else if (file->mode == OVSDB_LOG_READ) { + if (file->mode == OVSDB_LOG_READ || file->write_error) { file->mode = OVSDB_LOG_WRITE; + file->write_error = false; if (fseeko(file->stream, file->offset, SEEK_SET)) { error = ovsdb_io_error(errno, "%s: cannot seek to offset %lld", file->name, (long long int) file->offset); @@ -353,10 +378,10 @@ ovsdb_log_write(struct ovsdb_log *file, struct json *json) file->offset += strlen(header) + length; free(json_string); - return 0; + return NULL; error: - file->write_error = ovsdb_error_clone(error); + file->write_error = true; free(json_string); return error; } @@ -367,7 +392,7 @@ ovsdb_log_commit(struct ovsdb_log *file) if (fsync(fileno(file->stream))) { return ovsdb_io_error(errno, "%s: fsync failed", file->name); } - return 0; + return NULL; } /* Returns the current offset into the file backing 'log', in bytes. This