public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* cluster: STABLE3 - libgfs2: Remove die from compute_heightsize
@ 2009-04-14 10:14 Andrew Price
  0 siblings, 0 replies; only message in thread
From: Andrew Price @ 2009-04-14 10:14 UTC (permalink / raw)
  To: cluster-cvs-relay

Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=e625d0e4bb26cb03b05df5272e1a6c1c75cee999
Commit:        e625d0e4bb26cb03b05df5272e1a6c1c75cee999
Parent:        8d78e5b0d36f19be90041c40dfa53bf4c76f8777
Author:        Andrew Price <andy@andrewprice.me.uk>
AuthorDate:    Tue Apr 14 11:04:58 2009 +0100
Committer:     Andrew Price <andy@andrewprice.me.uk>
CommitterDate: Tue Apr 14 11:04:58 2009 +0100

libgfs2: Remove die from compute_heightsize

This patch removes the call to die from compute_heightsize and adds
error reporting. To do this the prototype had to be changed to return
the max height value through a pointer so that the return value could
indicate success or failure. The compute_constants prototype was updated
similarly as it calls compute_heightsize. All calls to both functions
are updated to check for errors and print the same error message as before.

Signed-off-by: Andrew Price <andy@andrewprice.me.uk>
---
 gfs2/convert/gfs2_convert.c |   49 ++++++++++++++++++++++++++++---------------
 gfs2/edit/hexedit.c         |   10 +++++++-
 gfs2/edit/savemeta.c        |    5 +++-
 gfs2/fsck/initialize.c      |    5 +++-
 gfs2/libgfs2/libgfs2.h      |    6 ++--
 gfs2/libgfs2/misc.c         |   40 ++++++++++++++++++----------------
 gfs2/mkfs/main_grow.c       |    5 +++-
 gfs2/mkfs/main_jadd.c       |    5 +++-
 gfs2/mkfs/main_mkfs.c       |    5 +++-
 gfs2/tool/df.c              |    5 +++-
 10 files changed, 88 insertions(+), 47 deletions(-)

diff --git a/gfs2/convert/gfs2_convert.c b/gfs2/convert/gfs2_convert.c
index e34fd11..3b9da3c 100644
--- a/gfs2/convert/gfs2_convert.c
+++ b/gfs2/convert/gfs2_convert.c
@@ -136,8 +136,8 @@ struct gfs1_jindex *sd_jindex = NULL;    /* gfs1 journal index in memory */
 int gfs2_inptrs;
 uint64_t gfs2_heightsize[GFS2_MAX_META_HEIGHT];
 uint64_t gfs2_jheightsize[GFS2_MAX_META_HEIGHT];
-int gfs2_max_height;
-int gfs2_max_jheight;
+uint32_t gfs2_max_height;
+uint32_t gfs2_max_jheight;
 
 /* ------------------------------------------------------------------------- */
 /* This function is for libgfs's sake.                                       */
@@ -1090,7 +1090,10 @@ static int init(struct gfs2_sbd *sbp)
 	osi_list_init(&sbp->rglist);
 	init_buf_list(sbp, &sbp->buf_list, 128 << 20);
 	init_buf_list(sbp, &sbp->nvbuf_list, 0xffffffff);
-	compute_constants(sbp);
+	if (compute_constants(sbp)) {
+		log_crit("Error: Bad constants (1)\n");
+		exit(-1);
+	}
 
 	bh = bread(&sbp->buf_list, GFS2_SB_ADDR >> sbp->sd_fsb2bb_shift);
 	memcpy(&raw_gfs1_ondisk_sb, (struct gfs1_sb *)bh->b_data,
@@ -1103,26 +1106,34 @@ static int init(struct gfs2_sbd *sbp)
 		sizeof(uint64_t);
 	sbp->sd_jbsize = sbp->bsize - sizeof(struct gfs2_meta_header);
 	brelse(bh, not_updated);
-	sbp->sd_max_height = compute_heightsize(sbp, sbp->sd_heightsize,
-						sbp->bsize, sbp->sd_diptrs,
-						sbp->sd_inptrs);
-	sbp->sd_max_jheight = compute_heightsize(sbp, sbp->sd_jheightsize,
-						 sbp->sd_jbsize,
-						 sbp->sd_diptrs,
-						 sbp->sd_inptrs);
+	if (compute_heightsize(sbp, sbp->sd_heightsize, &sbp->sd_max_height,
+				sbp->bsize, sbp->sd_diptrs, sbp->sd_inptrs)) {
+		log_crit("Error: Bad constants (1)\n");
+		exit(-1);
+	}
+
+	if (compute_heightsize(sbp, sbp->sd_jheightsize, &sbp->sd_max_jheight,
+				sbp->sd_jbsize, sbp->sd_diptrs, sbp->sd_inptrs)) {
+		log_crit("Error: Bad constants (1)\n");
+		exit(-1);
+	}
 	/* -------------------------------------------------------- */
 	/* Our constants are for gfs1.  Need some for gfs2 as well. */
 	/* -------------------------------------------------------- */
 	gfs2_inptrs = (sbp->bsize - sizeof(struct gfs2_meta_header)) /
                 sizeof(uint64_t); /* How many ptrs can we fit on a block? */
 	memset(gfs2_heightsize, 0, sizeof(gfs2_heightsize));
-	gfs2_max_height = compute_heightsize(sbp, gfs2_heightsize,
-					     sbp->bsize,
-					     sbp->sd_diptrs, gfs2_inptrs);
+	if (compute_heightsize(sbp, gfs2_heightsize, &gfs2_max_height,
+				sbp->bsize, sbp->sd_diptrs, gfs2_inptrs)) {
+		log_crit("Error: Bad constants (1)\n");
+		exit(-1);
+	}
 	memset(gfs2_jheightsize, 0, sizeof(gfs2_jheightsize));
-	gfs2_max_jheight = compute_heightsize(sbp, gfs2_jheightsize,
-					      sbp->sd_jbsize,
-					      sbp->sd_diptrs, gfs2_inptrs);
+	if (compute_heightsize(sbp, gfs2_jheightsize, &gfs2_max_jheight,
+				sbp->sd_jbsize, sbp->sd_diptrs, gfs2_inptrs)) {
+		log_crit("Error: Bad constants (1)\n");
+		exit(-1);
+	}
 
 	/* ---------------------------------------------- */
 	/* Make sure we're really gfs1                    */
@@ -1550,7 +1561,11 @@ int main(int argc, char **argv)
 	/* ---------------------------------------------- */
 	if (!error) {
 		/* Now we've got to treat it as a gfs2 file system */
-		compute_constants(&sb2);
+		if (compute_constants(&sb2)) {
+			log_crit("Error: Bad constants (1)\n");
+			exit(-1);
+		}
+
 		/* Build the master subdirectory. */
 		build_master(&sb2); /* Does not do inode_put */
 		sb2.sd_sb.sb_master_dir = sb2.master_dir->i_di.di_num;
diff --git a/gfs2/edit/hexedit.c b/gfs2/edit/hexedit.c
index 8c57bee..ac21ebd 100644
--- a/gfs2/edit/hexedit.c
+++ b/gfs2/edit/hexedit.c
@@ -1724,7 +1724,10 @@ void read_superblock(int fd)
 	osi_list_init(&sbd.rglist);
 	init_buf_list(&sbd, &sbd.buf_list, 128 << 20);
 	init_buf_list(&sbd, &sbd.nvbuf_list, 0xffffffff);
-	compute_constants(&sbd);
+	if (compute_constants(&sbd)) {
+		fprintf(stderr, "Bad constants (1)\n");
+		exit(-1);
+	}
 	gfs2_sb_in(&sbd.sd_sb, buf); /* parse it out into the sb structure */
 	/* Check to see if this is really gfs1 */
 	if (sbd1->sb_fs_format == GFS_FORMAT_FS &&
@@ -1743,7 +1746,10 @@ void read_superblock(int fd)
 	sbd.bsize = sbd.sd_sb.sb_bsize;
 	if (!sbd.bsize)
 		sbd.bsize = GFS2_DEFAULT_BSIZE;
-	compute_constants(&sbd);
+	if (compute_constants(&sbd)) {
+		fprintf(stderr, "Bad constants (1)\n");
+		exit(-1);
+	}
 	block = 0x10 * (GFS2_DEFAULT_BSIZE / sbd.bsize);
 	device_geometry(&sbd);
 	fix_device_geometry(&sbd);
diff --git a/gfs2/edit/savemeta.c b/gfs2/edit/savemeta.c
index 096e3fc..7c2ba04 100644
--- a/gfs2/edit/savemeta.c
+++ b/gfs2/edit/savemeta.c
@@ -483,7 +483,10 @@ void savemeta(char *out_fn, int saveoption)
 		init_buf_list(&sbd, &sbd.nvbuf_list, 0xffffffff);
 		if (!gfs1)
 			sbd.sd_sb.sb_bsize = GFS2_DEFAULT_BSIZE;
-		compute_constants(&sbd);
+		if (compute_constants(&sbd)) {
+			fprintf(stderr, "Bad constants (1)\n");
+			exit(-1);
+		}
 		if(gfs1) {
 			sbd.bsize = sbd.sd_sb.sb_bsize;
 			sbd.sd_inptrs = (sbd.bsize -
diff --git a/gfs2/fsck/initialize.c b/gfs2/fsck/initialize.c
index 198009f..1512933 100644
--- a/gfs2/fsck/initialize.c
+++ b/gfs2/fsck/initialize.c
@@ -315,7 +315,10 @@ static int fill_super_block(struct gfs2_sbd *sdp)
 		return -1;
 	}
 
-	compute_constants(sdp);
+	if (compute_constants(sdp)) {
+		log_crit("Bad constants (1)\n");
+		exit(-1);
+	}
 	if(read_sb(sdp) < 0){
 		return -1;
 	}
diff --git a/gfs2/libgfs2/libgfs2.h b/gfs2/libgfs2/libgfs2.h
index 435617e..0742f9e 100644
--- a/gfs2/libgfs2/libgfs2.h
+++ b/gfs2/libgfs2/libgfs2.h
@@ -626,9 +626,9 @@ extern int gfs2_query(int *setonabort, struct gfs2_options *opts,
 
 /* misc.c */
 
-extern uint32_t compute_heightsize(struct gfs2_sbd *sdp, uint64_t *heightsize,
-				   uint32_t bsize1, int diptrs, int inptrs);
-extern void compute_constants(struct gfs2_sbd *sdp);
+extern int compute_heightsize(struct gfs2_sbd *sdp, uint64_t *heightsize,
+		uint32_t *maxheight, uint32_t bsize1, int diptrs, int inptrs);
+extern int compute_constants(struct gfs2_sbd *sdp);
 extern int find_gfs2_meta(struct gfs2_sbd *sdp);
 extern int dir_exists(const char *dir);
 extern int check_for_gfs2(struct gfs2_sbd *sdp);
diff --git a/gfs2/libgfs2/misc.c b/gfs2/libgfs2/misc.c
index 8441137..726c582 100644
--- a/gfs2/libgfs2/misc.c
+++ b/gfs2/libgfs2/misc.c
@@ -24,31 +24,31 @@
 
 static char sysfs_buf[PAGE_SIZE];
 
-uint32_t compute_heightsize(struct gfs2_sbd *sdp, uint64_t *heightsize,
-			    uint32_t bsize1, int diptrs, int inptrs)
+int compute_heightsize(struct gfs2_sbd *sdp, uint64_t *heightsize,
+	uint32_t *maxheight, uint32_t bsize1, int diptrs, int inptrs)
 {
-	int x;
-
 	heightsize[0] = sdp->bsize - sizeof(struct gfs2_dinode);
 	heightsize[1] = bsize1 * diptrs;
-	for (x = 2;; x++) {
+	for (*maxheight = 2;; (*maxheight)++) {
 		uint64_t space, d;
 		uint32_t m;
 
-		space = heightsize[x - 1] * inptrs;
+		space = heightsize[*maxheight - 1] * inptrs;
 		m = space % inptrs;
 		d = space / inptrs;
 
-		if (d != heightsize[x - 1] || m)
+		if (d != heightsize[*maxheight - 1] || m)
 			break;
-		heightsize[x] = space;
+		heightsize[*maxheight] = space;
 	}
-	if (x > GFS2_MAX_META_HEIGHT)
-		die("bad constants (1)\n");
-	return x;
+	if (*maxheight > GFS2_MAX_META_HEIGHT) {
+		errno = EINVAL;
+		return -1;
+	}
+	return 0;
 }
 
-void compute_constants(struct gfs2_sbd *sdp)
+int compute_constants(struct gfs2_sbd *sdp)
 {
 	uint32_t hash_blocks, ind_blocks, leaf_blocks;
 	uint32_t tmp_blocks;
@@ -85,13 +85,15 @@ void compute_constants(struct gfs2_sbd *sdp)
 
 	sdp->sd_max_dirres = hash_blocks + ind_blocks + leaf_blocks;
 
-	sdp->sd_max_height = compute_heightsize(sdp, sdp->sd_heightsize,
-						sdp->bsize, sdp->sd_diptrs,
-						sdp->sd_inptrs);
-	sdp->sd_max_jheight = compute_heightsize(sdp, sdp->sd_jheightsize,
-						 sdp->sd_jbsize,
-						 sdp->sd_diptrs,
-						 sdp->sd_inptrs);
+	if (compute_heightsize(sdp, sdp->sd_heightsize, &sdp->sd_max_height,
+				sdp->bsize, sdp->sd_diptrs, sdp->sd_inptrs)) {
+		return -1;
+	}
+	if (compute_heightsize(sdp, sdp->sd_jheightsize, &sdp->sd_max_jheight,
+				sdp->sd_jbsize, sdp->sd_diptrs, sdp->sd_inptrs)) {
+		return -1;
+	}
+	return 0;
 }
 
 int check_for_gfs2(struct gfs2_sbd *sdp)
diff --git a/gfs2/mkfs/main_grow.c b/gfs2/mkfs/main_grow.c
index 0e18d1a..3593629 100644
--- a/gfs2/mkfs/main_grow.c
+++ b/gfs2/mkfs/main_grow.c
@@ -290,7 +290,10 @@ main_grow(int argc, char *argv[])
 
 		sdp->sd_sb.sb_bsize = GFS2_DEFAULT_BSIZE;
 		sdp->bsize = sdp->sd_sb.sb_bsize;
-		compute_constants(sdp);
+		if (compute_constants(sdp)) {
+			log_crit("Bad constants (1)\n");
+			exit(-1);
+		}
 		if(read_sb(sdp) < 0)
 			die("gfs: Error reading superblock.\n");
 
diff --git a/gfs2/mkfs/main_jadd.c b/gfs2/mkfs/main_jadd.c
index 3f574de..95e1fa5 100644
--- a/gfs2/mkfs/main_jadd.c
+++ b/gfs2/mkfs/main_jadd.c
@@ -513,7 +513,10 @@ main_jadd(int argc, char *argv[])
 		exit(-1);
 	}
 
-	compute_constants(sdp);
+	if (compute_constants(sdp)) {
+		fprintf(stderr, "Bad constants (1)\n");
+		exit(-1);
+	}
 	find_current_journals(sdp);
 
 	total = sdp->orig_journals + sdp->md.journals;
diff --git a/gfs2/mkfs/main_mkfs.c b/gfs2/mkfs/main_mkfs.c
index cdc0068..c1b6795 100644
--- a/gfs2/mkfs/main_mkfs.c
+++ b/gfs2/mkfs/main_mkfs.c
@@ -508,7 +508,10 @@ main_mkfs(int argc, char *argv[])
 	if (!sdp->override)
 		are_you_sure(sdp);
 
-	compute_constants(sdp);
+	if (compute_constants(sdp)) {
+		fprintf(stderr, "Bad constants (1)\n");
+		exit(-1);
+	}
 
 	/* Get the device geometry */
 
diff --git a/gfs2/tool/df.c b/gfs2/tool/df.c
index 8b6d9b4..0baef04 100644
--- a/gfs2/tool/df.c
+++ b/gfs2/tool/df.c
@@ -128,7 +128,10 @@ do_df_one(char *path)
 
 	gfs2_sb_in(&sbd.sd_sb, buf); /* parse it out into the sb structure */
 	sbd.bsize = sbd.sd_sb.sb_bsize;
-	compute_constants(&sbd);
+	if (compute_constants(&sbd)) {
+		fprintf(stderr, "Bad constants (1)\n");
+		exit(-1);
+	}
 
 	sbd.master_dir = gfs2_load_inode(&sbd,
 					 sbd.sd_sb.sb_master_dir.no_addr);


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-04-14 10:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-14 10:14 cluster: STABLE3 - libgfs2: Remove die from compute_heightsize Andrew Price

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 read-only IMAP folder(s) and NNTP newsgroup(s).