forked from pmem/pmdk-convert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pmemobj_convert_v2.c
209 lines (184 loc) · 5.65 KB
/
pmemobj_convert_v2.c
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
/*
* Copyright 2014-2019, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* * Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <assert.h>
#include <endian.h>
#include <errno.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <sys/mman.h>
#include "libpmem.h"
#include "pmemobj_convert.h"
#include "nvml-1.1/src/include/libpmemobj.h"
#include "nvml-1.1/src/tools/pmempool/common.h"
#include "nvml-1.1/src/tools/pmempool/output.h"
/*
* outv_err_vargs -- print error message
*/
void
outv_err_vargs(const char *fmt, va_list ap)
{
fprintf(stderr, "error: ");
vfprintf(stderr, fmt, ap);
if (!strchr(fmt, '\n'))
fprintf(stderr, "\n");
}
/*
* outv_err -- print error message
*/
void
outv_err(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
outv_err_vargs(fmt, ap);
va_end(ap);
}
/*
* pool_set_file_unmap_headers -- unmap headers of each pool set part file
*/
static void
pool_set_file_unmap_headers(struct pool_set_file *file)
{
if (!file->poolset)
return;
for (unsigned r = 0; r < file->poolset->nreplicas; r++) {
struct pool_replica *rep = file->poolset->replica[r];
for (unsigned p = 0; p < rep->nparts; p++) {
struct pool_set_part *part = &rep->part[p];
util_unmap_hdr(part);
}
}
}
/*
* pool_set_file_map_headers -- map headers of each pool set part file
*/
static int
pool_set_file_map_headers(struct pool_set_file *file, int rdonly)
{
if (!file->poolset)
return -1;
int flags = rdonly ? MAP_PRIVATE : MAP_SHARED;
for (unsigned r = 0; r < file->poolset->nreplicas; r++) {
struct pool_replica *rep = file->poolset->replica[r];
for (unsigned p = 0; p < rep->nparts; p++) {
struct pool_set_part *part = &rep->part[p];
if (util_map_hdr(part, flags)) {
part->hdr = NULL;
goto err;
}
}
}
return 0;
err:
pool_set_file_unmap_headers(file);
return -1;
}
/*
* pmemobj_convert - convert a pool to the next layout version
*/
const char *
pmemobj_convert(const char *path, unsigned force)
{
/* open the pool and perform recovery */
PMEMobjpool *pop = pmemobj_open(path, NULL);
if (!pop)
return pmemobj_errormsg();
pmemobj_close(pop);
printf(
"\nThe conversion to 1.2 can only be made automatically if the PMEMmutex,\n"
"PMEMrwlock and PMEMcond types are not used in the pool or all of the variables\n"
"of those three types are aligned to 8 bytes. Proceed only if you are sure that\n"
"the above is true for this pool.\n");
if (force & QUEST_12_PMEMMUTEX) {
printf("Operation forced by user.\n");
} else {
char ans = ask_yN('?', "convert the pool?");
if (ans != 'y') {
errno = ECANCELED;
return "Operation canceled by user";
}
}
const char *ret = NULL;
struct pmem_pool_params params;
if (pmem_pool_parse_params(path, ¶ms, 1))
return get_error("cannot open pool: %s", strerror(errno));
struct pool_set_file *psf = pool_set_file_open(path, 0, 1);
if (psf == NULL) {
return get_error("pool_set_file_open failed: %s",
strerror(errno));
}
void *addr = pool_set_file_map(psf, 0);
if (addr == NULL) {
ret = "mapping file failed";
goto pool_set_close;
}
struct pool_hdr *phdr = addr;
uint32_t m = le32toh(phdr->major);
if (m != OBJ_FORMAT_MAJOR) {
/* shouldn't be possible, because pool open succeeded earlier */
ret = get_error("invalid pool version: %d", m);
goto pool_set_close;
}
if (pool_set_file_map_headers(psf, 0)) {
ret = get_error("mapping headers failed: %s", strerror(errno));
goto pool_set_close;
}
/* need to update every header of every part */
for (unsigned r = 0; r < psf->poolset->nreplicas; ++r) {
struct pool_replica *rep = psf->poolset->replica[r];
for (unsigned p = 0; p < rep->nparts; ++p) {
struct pool_set_part *part = &rep->part[p];
struct pool_hdr *hdr = part->hdr;
assert(hdr->major == OBJ_FORMAT_MAJOR);
hdr->major = htole32(OBJ_FORMAT_MAJOR + 1);
util_checksum(hdr, sizeof(*hdr), &hdr->checksum, 1);
pmem_msync(hdr, sizeof(struct pool_hdr));
}
}
pool_set_file_unmap_headers(psf);
pool_set_close:
pool_set_file_close(psf);
return ret;
}
/*
* pmemobj_convert_try_open - return if a pool is openable by this pmdk verison
*/
int
pmemobj_convert_try_open(char *path)
{
PMEMobjpool *pop = pmemobj_open(path, NULL);
if (!pop)
return 1;
pmemobj_close(pop);
return 0;
}