1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/**
* SECTION: e-db3-utils
* @short_description: Utilities for Berkeley DB databases
*
* Utilities for coping with Berkeley DB file format changes.
**/
#include "config.h"
#include <errno.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#ifndef O_BINARY
#define O_BINARY 0
#endif
#include <glib/gstdio.h>
#include "db.h"
#include "e-db3-utils.h"
static gchar *
get_check_filename (const gchar *filename)
{
return g_strdup_printf ("%s-upgrading", filename);
}
static gchar *
get_copy_filename (const gchar *filename)
{
return g_strdup_printf ("%s-copy", filename);
}
static gint
cp_file (const gchar *src,
const gchar *dest)
{
gint i;
gint o;
gchar buffer[1024];
gint length;
gint place;
i = g_open (src, O_RDONLY | O_BINARY, 0);
if (i == -1)
return -1;
o = g_open (
dest, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
S_IREAD | S_IWRITE);
if (o == -1) {
close (i);
return -1;
}
while (1) {
length = read (i, &buffer, sizeof (buffer));
if (length == 0)
break;
if (length == -1) {
if (errno == EINTR)
continue;
else {
close (i);
close (o);
g_unlink (dest);
return -1;
}
}
place = 0;
while (length != 0) {
gint count;
count = write (o, buffer + place, length);
if (count == -1) {
if (errno == EINTR)
continue;
else {
close (i);
close (o);
g_unlink (dest);
return -1;
}
}
length -= count;
place += count;
}
}
i = close (i);
if (close (o) == -1)
i = -1;
return (i == -1) ? -1 : 0;
}
static gint
touch_file (const gchar *file)
{
gint fd;
fd = g_open (
file, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
S_IREAD | S_IWRITE);
if (fd == -1)
return -1;
return close (fd);
}
static gint
resume_upgrade (const gchar *filename,
const gchar *copy_filename,
const gchar *check_filename)
{
DB *db;
gint ret_val;
ret_val = db_create (&db, NULL, 0);
if (ret_val == 0)
ret_val = cp_file (copy_filename, filename);
if (ret_val == 0)
ret_val = db->upgrade (db, filename, 0);
if (ret_val == 0)
ret_val = g_unlink (check_filename);
if (ret_val == 0)
ret_val = g_unlink (copy_filename);
db->close (db, 0);
return ret_val;
}
/**
* e_db3_utils_maybe_recover:
* @filename: path to a Berkeley DB file
*
* Tries to recover from a failed file format upgrade.
*
* Returns: 0 if successful, -1 on failure
**/
gint
e_db3_utils_maybe_recover (const gchar *filename)
{
gint ret_val = 0;
gchar *copy_filename;
gchar *check_filename;
copy_filename = get_copy_filename (filename);
check_filename = get_check_filename (filename);
if (g_file_test (check_filename, G_FILE_TEST_EXISTS)) {
ret_val = resume_upgrade (filename, copy_filename, check_filename);
} else if (g_file_test (copy_filename, G_FILE_TEST_EXISTS)) {
g_unlink (copy_filename);
}
g_free (copy_filename);
g_free (check_filename);
return ret_val;
}
/**
* e_db3_utils_upgrade_format:
* @filename: path to a Berkeley DB file
*
* Upgrades the file format of a Berkeley DB file from a previous version.
*
* Returns: 0 if successful, -1 on failure
**/
gint
e_db3_utils_upgrade_format (const gchar *filename)
{
gchar *copy_filename;
gchar *check_filename;
DB *db;
gint ret_val;
ret_val = db_create (&db, NULL, 0);
if (ret_val != 0)
return ret_val;
copy_filename = get_copy_filename (filename);
check_filename = get_check_filename (filename);
ret_val = cp_file (filename, copy_filename);
if (ret_val == 0)
ret_val = touch_file (check_filename);
if (ret_val == 0)
ret_val = db->upgrade (db, filename, 0);
if (ret_val == 0)
ret_val = g_unlink (check_filename);
if (ret_val == 0)
ret_val = g_unlink (copy_filename);
db->close (db, 0);
g_free (check_filename);
g_free (copy_filename);
return ret_val;
}
|