summaryrefslogtreecommitdiff
path: root/lib/format_text/import.c
blob: 5656044004b8884ca089cf98ecba531c624fb207 (plain)
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/*
 * Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
 *
 * This file is part of LVM2.
 *
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
 * of the GNU Lesser General Public License v.2.1.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include "lib.h"
#include "metadata.h"
#include "import-export.h"

/* FIXME Use tidier inclusion method */
static struct text_vg_version_ops *(_text_vsn_list[2]);

static int _text_import_initialised = 0;

static void _init_text_import(void)
{
	if (_text_import_initialised)
		return;

	_text_vsn_list[0] = text_vg_vsn1_init();
	_text_vsn_list[1] = NULL;
	_text_import_initialised = 1;
}

int text_read_metadata_summary(const struct format_type *fmt,
		       struct device *dev,
		       struct label_read_data *ld,
		       off_t offset, uint32_t size,
		       off_t offset2, uint32_t size2,
		       checksum_fn_t checksum_fn,
		       int checksum_only,
		       struct lvmcache_vgsummary *vgsummary,
		       uint64_t *failed_flags)
{
	struct dm_config_tree *cft;
	struct text_vg_version_ops **vsn;
	char *buf = NULL;
	int r = 0;

	if (ld) {
		if (ld->buf_len >= (offset + size))
			buf = ld->buf;
		else {
			/*
			 * Needs data beyond the end of the ld buffer.
			 * Will do a new synchronous read to get the data.
			 * (scan_size could also be made larger.)
			 */
			log_debug_metadata("label scan buffer for %s too small %u for metadata offset %llu size %u",
					   dev_name(dev), ld->buf_len, (unsigned long long)offset, size);
			buf = NULL;
		}
	}

	_init_text_import();

	if (!(cft = config_open(CONFIG_FILE_SPECIAL, NULL, 0))) {
		*failed_flags |= FAILED_INTERNAL;
		return_0;
	}

	if (dev) {
		if (buf)
			log_debug_metadata("Copying metadata summary for %s at %llu size %d (+%d)",
					   dev_name(dev), (unsigned long long)offset,
					   size, size2);
		else
			log_debug_metadata("Reading metadata summary from %s at %llu size %d (+%d)",
					    dev_name(dev), (unsigned long long)offset,
					    size, size2);

		if (!config_file_read_fd(cft, dev, buf, offset, size,
					 offset2, size2, checksum_fn,
					 vgsummary->mda_checksum,
					 checksum_only, 1, failed_flags)) {
			log_error("Couldn't read volume group metadata from %s at %llu.", dev_name(dev), (unsigned long long)offset);
			goto out;
		}
	} else {
		if (!config_file_read(cft)) {
			log_error("Couldn't read volume group metadata from file.");
			goto out;
		}
	}

	if (checksum_only) {
		/* Checksum matches already-cached content - no need to reparse. */
		log_debug_metadata("Metadata summary checksum matches previous for %s.", dev ? dev_name(dev) : "file");
		r = 1;
		goto out;
	}

	/*
	 * Find a set of version functions that can read this file
	 */
	for (vsn = &_text_vsn_list[0]; *vsn; vsn++) {
		if (!(*vsn)->check_version(cft))
			continue;

		if (!(*vsn)->read_vgsummary(fmt, cft, vgsummary, failed_flags)) {
			log_debug_metadata("Metadata summary is invalid for %s.", dev ? dev_name(dev) : "file");
			goto_out;
		}

		r = 1;
		break;
	}

      out:
	config_destroy(cft);
	return r;
}

struct volume_group *text_read_metadata_vg(struct format_instance *fid,
				       struct device *dev,
				       const char *file,
				       struct label_read_data *ld,
				       off_t offset, uint32_t size,
				       off_t offset2, uint32_t size2,
                                       uint32_t last_meta_checksum,
                                       size_t last_meta_size,
                                       unsigned *last_meta_matches,
				       checksum_fn_t checksum_fn,
				       uint32_t checksum,
				       time_t *when, char **desc,
				       uint64_t *failed_flags)
{
	struct volume_group *vg = NULL;
	struct dm_config_tree *cft;
	struct text_vg_version_ops **vsn;
	char *buf = NULL;
	unsigned last_matches;

	_init_text_import();

	*desc = NULL;
	*when = 0;

	if (!(cft = config_open(CONFIG_FILE_SPECIAL, file, 0))) {
		*failed_flags |= FAILED_INTERNAL;
		return_NULL;
	}

	if (last_meta_checksum && last_meta_size &&
	    (checksum == last_meta_checksum) && ((size + size2) == last_meta_size))
		last_matches = 1;
	else
		last_matches = 0;

	if (last_meta_matches)
		*last_meta_matches = last_matches;

	if (ld) {
		if (ld->buf_len >= (offset + size))
			buf = ld->buf;
		else {
			/*
			 * Needs data beyond the end of the ld buffer.
			 * Will do a new synchronous read to get the data.
			 * (scan_size could also be made larger.)
			 */
			log_debug_metadata("scan buffer for %s too small %u for metadata offset %llu size %u",
					   dev_name(dev), ld->buf_len, (unsigned long long)offset, size);
			buf = NULL;
		}
	}

	if (dev) {
		if (buf)
			log_debug_metadata("Copying metadata for %s at %llu size %d (+%d)",
					   dev_name(dev), (unsigned long long)offset,
					   size, size2);
		else
			log_debug_metadata("Reading metadata from %s at %llu size %d (+%d)",
				   	   dev_name(dev), (unsigned long long)offset,
				           size, size2);

		if (!config_file_read_fd(cft, dev, buf, offset, size,
					 offset2, size2, checksum_fn, checksum,
					 last_matches, 1, failed_flags)) {
			log_error("Couldn't read volume group metadata from %s.", dev_name(dev));

			/* We have to be certain this has been set since it's the
			 * only way the caller knows if the function failed or not. */
			if (!*failed_flags)
				*failed_flags |= FAILED_VG_METADATA;
			goto out;
		}
	} else {
		if (!config_file_read(cft)) {
			log_error("Couldn't read volume group metadata from file.");

			if (!*failed_flags)
				*failed_flags |= FAILED_VG_METADATA;
			goto out;
		}
	}

	if (last_matches) {
		log_debug_metadata("Skipped parsing metadata on %s with matching checksum 0x%x size %zu.",
				   dev_name(dev), last_meta_checksum, last_meta_size);
		goto out;
	}

	/*
	 * Find a set of version functions that can read this file
	 */
	for (vsn = &_text_vsn_list[0]; *vsn; vsn++) {
		if (!(*vsn)->check_version(cft))
			continue;

		if (!(vg = (*vsn)->read_vg(fid, cft, 0, failed_flags))) {
			if (!*failed_flags)
				*failed_flags |= FAILED_VG_METADATA;
			goto_out;
		}

		(*vsn)->read_desc(vg->vgmem, cft, when, desc);
		break;
	}

      out:
	config_destroy(cft);
	return vg;
}

struct volume_group *text_read_metadata_file(struct format_instance *fid,
					 const char *file,
					 time_t *when, char **desc)
{
	uint64_t failed_flags = 0;

	return text_read_metadata_vg(fid, NULL, file, NULL,
				     (off_t)0, 0, (off_t)0, 0,
				     0, 0, NULL, NULL, 0,
				     when, desc, &failed_flags);
}

static struct volume_group *_import_vg_from_config_tree(const struct dm_config_tree *cft,
							struct format_instance *fid,
							unsigned for_lvmetad)
{
	struct volume_group *vg = NULL;
	struct text_vg_version_ops **vsn;
	uint64_t failed_flags = 0;
	int vg_missing;

	_init_text_import();

	for (vsn = &_text_vsn_list[0]; *vsn; vsn++) {
		if (!(*vsn)->check_version(cft))
			continue;
		/*
		 * The only path to this point uses cached vgmetadata,
		 * so it can use cached PV state too.
		 */
		if (!(vg = (*vsn)->read_vg(fid, cft, for_lvmetad, &failed_flags)))
			stack;
		else {
			/* FIXME: move this into vg_read() */
			set_pv_devices(fid, vg);
			
			if ((vg_missing = vg_missing_pv_count(vg)))
				log_verbose("There are %d physical volumes missing.", vg_missing);

			vg_mark_partial_lvs(vg, 1);
		}
		break;
	}

	return vg;
}

struct volume_group *import_vg_from_config_tree(const struct dm_config_tree *cft,
						struct format_instance *fid)
{
	return _import_vg_from_config_tree(cft, fid, 0);
}

struct volume_group *import_vg_from_lvmetad_config_tree(const struct dm_config_tree *cft,
							struct format_instance *fid)
{
	return _import_vg_from_config_tree(cft, fid, 1);
}