From: Andrew Price <anprice@redhat.com>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] [PATCH 05/13] restoremeta: Combine restore_init() and open_metadata()
Date: Thu, 23 Jan 2020 15:55:44 +0000 [thread overview]
Message-ID: <20200123155552.1080247-6-anprice@redhat.com> (raw)
In-Reply-To: <20200123155552.1080247-1-anprice@redhat.com>
Later we'll need to know which compression method to use for the
metadata file in order to initialise a valid metadata file descriptor,
and that requires reading an initial chunk. So it makes sense to combine
the open_metadata() function with restore_init() which reads the
preamble from the metadata file.
Signed-off-by: Andrew Price <anprice@redhat.com>
---
gfs2/edit/savemeta.c | 77 ++++++++++++++++++++------------------------
1 file changed, 35 insertions(+), 42 deletions(-)
diff --git a/gfs2/edit/savemeta.c b/gfs2/edit/savemeta.c
index ad565c1f..f77c6bf7 100644
--- a/gfs2/edit/savemeta.c
+++ b/gfs2/edit/savemeta.c
@@ -999,45 +999,6 @@ void savemeta(char *out_fn, int saveoption, int gziplevel)
exit(0);
}
-static off_t restore_init(struct metafd *mfd, struct savemeta_header *smh)
-{
- int err;
- unsigned i;
- size_t rs;
- char buf[256];
- off_t startpos = 0;
- struct gfs2_meta_header sbmh;
-
- err = read_header(mfd, smh);
- if (err < 0) {
- exit(1);
- } else if (check_header(smh) != 0) {
- printf("No valid file header found. Falling back to old format...\n");
- } else if (err == 0) {
- startpos = sizeof(*smh);
- }
-
- mfd->seek(mfd, startpos, SEEK_SET);
- rs = mfd->read(mfd, buf, sizeof(buf));
- if (rs != sizeof(buf)) {
- fprintf(stderr, "Error: File is too small.\n");
- exit(1);
- }
- /* Scan for the beginning of the file body. Required to support old formats(?). */
- for (i = 0; i < (256 - sizeof(struct saved_metablock) - sizeof(sbmh)); i++) {
- off_t off = i + sizeof(struct saved_metablock);
-
- memcpy(&sbmh, &buf[off], sizeof(sbmh));
- if (sbmh.mh_magic == cpu_to_be32(GFS2_MAGIC) &&
- sbmh.mh_type == cpu_to_be32(GFS2_METATYPE_SB))
- break;
- }
- if (i == (sizeof(buf) - sizeof(struct saved_metablock) - sizeof(sbmh)))
- i = 0;
- return startpos + i; /* File offset of saved sb */
-}
-
-
static int restore_block(struct metafd *mfd, struct saved_metablock *svb, char *buf, uint16_t maxlen)
{
int ret;
@@ -1223,8 +1184,15 @@ static void complain(const char *complaint)
"<dest file system>\n");
}
-static int open_metadata(const char *path, struct metafd *mfd)
+static int restore_init(const char *path, struct metafd *mfd, struct savemeta_header *smh, off_t *pos)
{
+ struct gfs2_meta_header sbmh;
+ off_t startpos = 0;
+ char buf[256];
+ unsigned i;
+ size_t rs;
+ int err;
+
mfd->filename = path;
mfd->fd = open(path, O_RDONLY|O_CLOEXEC);
if (mfd->fd < 0) {
@@ -1241,6 +1209,32 @@ static int open_metadata(const char *path, struct metafd *mfd)
perror("gzdopen");
return 1;
}
+ err = read_header(mfd, smh);
+ if (err < 0) {
+ return 1;
+ } else if (check_header(smh) != 0) {
+ printf("No valid file header found. Falling back to old format...\n");
+ } else if (err == 0) {
+ startpos = sizeof(*smh);
+ }
+ mfd->seek(mfd, startpos, SEEK_SET);
+ rs = mfd->read(mfd, buf, sizeof(buf));
+ if (rs != sizeof(buf)) {
+ fprintf(stderr, "Error: File is too small.\n");
+ return 1;
+ }
+ /* Scan for the beginning of the file body. Required to support old formats(?). */
+ for (i = 0; i < (256 - sizeof(struct saved_metablock) - sizeof(sbmh)); i++) {
+ off_t off = i + sizeof(struct saved_metablock);
+
+ memcpy(&sbmh, &buf[off], sizeof(sbmh));
+ if (sbmh.mh_magic == cpu_to_be32(GFS2_MAGIC) &&
+ sbmh.mh_type == cpu_to_be32(GFS2_METATYPE_SB))
+ break;
+ }
+ if (i == (sizeof(buf) - sizeof(struct saved_metablock) - sizeof(sbmh)))
+ i = 0;
+ *pos = startpos + i; /* File offset of saved sb */
return 0;
}
@@ -1257,7 +1251,7 @@ void restoremeta(const char *in_fn, const char *out_device, uint64_t printonly)
if (!printonly && !out_device)
complain("No destination file system specified.");
- error = open_metadata(in_fn, &mfd);
+ error = restore_init(in_fn, &mfd, &smh, &pos);
if (error != 0)
exit(error);
@@ -1270,7 +1264,6 @@ void restoremeta(const char *in_fn, const char *out_device, uint64_t printonly)
optional block no */
printonly = check_keywords(out_device);
- pos = restore_init(&mfd, &smh);
error = restore_super(&mfd, pos);
if (error)
exit(1);
--
2.24.1
next prev parent reply other threads:[~2020-01-23 15:55 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-23 15:55 [Cluster-devel] [PATCH 00/13] gfs2_edit restoremeta: Add bzip2 support Andrew Price
2020-01-23 15:55 ` [Cluster-devel] [PATCH 01/13] restoremeta: Use zlib by file descriptor Andrew Price
2020-01-23 15:55 ` [Cluster-devel] [PATCH 02/13] restoremeta: Abstract out metadata file opening Andrew Price
2020-01-23 15:55 ` [Cluster-devel] [PATCH 03/13] restoremeta: Use metafd instead of gzFile for parameters Andrew Price
2020-01-23 15:55 ` [Cluster-devel] [PATCH 04/13] restoremeta: Abstract out decompression operations Andrew Price
2020-01-23 15:55 ` Andrew Price [this message]
2020-01-23 15:55 ` [Cluster-devel] [PATCH 06/13] restoremeta: Don't seek in restore_header() Andrew Price
2020-01-23 15:55 ` [Cluster-devel] [PATCH 07/13] savemeta: Remove anthropomorphize() Andrew Price
2020-01-23 15:55 ` [Cluster-devel] [PATCH 08/13] restoremeta: Remove find_highest_block() Andrew Price
2020-01-23 15:55 ` [Cluster-devel] [PATCH 09/13] restoremeta: Metadata file reading overhaul Andrew Price
2020-01-23 15:55 ` [Cluster-devel] [PATCH 10/13] restoremeta: Convert iseof function to a flag Andrew Price
2020-01-23 15:55 ` [Cluster-devel] [PATCH 11/13] restoremeta: Combine parse_header() and check_header() Andrew Price
2020-01-23 15:55 ` [Cluster-devel] [PATCH 12/13] restoremeta: Add bzip2 support Andrew Price
2020-01-23 15:55 ` [Cluster-devel] [PATCH 13/13] restoremeta: Skip the right number of bytes for the superblock Andrew Price
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200123155552.1080247-6-anprice@redhat.com \
--to=anprice@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).