X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ovsdb%2Fovsdb-tool.c;h=6b75f4971860aabba66a506c22ff4c5f05dc5616;hb=4780f13745796a22ac1971bb9bf90a39317d7094;hp=ad8cece2a17f4bee2b295d0c5ad7011146b715b4;hpb=e4476f74388c8d2eeed7738f26ca881ce5b8e96c;p=openvswitch diff --git a/ovsdb/ovsdb-tool.c b/ovsdb/ovsdb-tool.c index ad8cece2..6b75f497 100644 --- a/ovsdb/ovsdb-tool.c +++ b/ovsdb/ovsdb-tool.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010, 2011 Nicira Networks. + * Copyright (c) 2009, 2010, 2011, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -140,7 +140,7 @@ default_db(void) { static char *db; if (!db) { - db = xasprintf("%s/conf.db", ovs_sysconfdir()); + db = xasprintf("%s/conf.db", ovs_dbdir()); } return db; } @@ -207,29 +207,36 @@ do_create(int argc, char *argv[]) } static void -compact_or_convert(const char *src_name, const char *dst_name, +compact_or_convert(const char *src_name_, const char *dst_name_, const struct ovsdb_schema *new_schema, const char *comment) { + char *src_name, *dst_name; struct lockfile *src_lock; struct lockfile *dst_lock; - bool in_place = dst_name == NULL; + bool in_place = dst_name_ == NULL; struct ovsdb *db; int retval; + /* Dereference symlinks for source and destination names. In the in-place + * case this ensures that, if the source name is a symlink, we replace its + * target instead of replacing the symlink by a regular file. In the + * non-in-place, this has the same effect for the destination name. */ + src_name = follow_symlinks(src_name_); + dst_name = (in_place + ? xasprintf("%s.tmp", src_name) + : follow_symlinks(dst_name_)); + /* Lock the source, if we will be replacing it. */ if (in_place) { - retval = lockfile_lock(src_name, 0, &src_lock); + retval = lockfile_lock(src_name, &src_lock); if (retval) { ovs_fatal(retval, "%s: failed to lock lockfile", src_name); } } /* Get (temporary) destination and lock it. */ - if (in_place) { - dst_name = xasprintf("%s.tmp", src_name); - } - retval = lockfile_lock(dst_name, 0, &dst_lock); + retval = lockfile_lock(dst_name, &dst_lock); if (retval) { ovs_fatal(retval, "%s: failed to lock lockfile", dst_name); } @@ -252,6 +259,9 @@ compact_or_convert(const char *src_name, const char *dst_name, } lockfile_unlock(dst_lock); + + free(src_name); + free(dst_name); } static void @@ -260,8 +270,7 @@ do_compact(int argc, char *argv[]) const char *db = argc >= 2 ? argv[1] : default_db(); const char *target = argc >= 3 ? argv[2] : NULL; - compact_or_convert(db, target, NULL, - "compacted by ovsdb-tool "VERSION BUILDNR); + compact_or_convert(db, target, NULL, "compacted by ovsdb-tool "VERSION); } static void @@ -274,7 +283,7 @@ do_convert(int argc, char *argv[]) check_ovsdb_error(ovsdb_schema_from_file(schema, &new_schema)); compact_or_convert(db, target, new_schema, - "converted by ovsdb-tool "VERSION BUILDNR); + "converted by ovsdb-tool "VERSION); ovsdb_schema_destroy(new_schema); } @@ -510,7 +519,7 @@ do_show_log(int argc, char *argv[]) time_t t = json_integer(date); char s[128]; - strftime(s, sizeof s, "%Y-%m-%d %H:%M:%S", localtime(&t)); + strftime(s, sizeof s, "%Y-%m-%d %H:%M:%S", gmtime(&t)); printf(" %s", s); }