salvager: Fix volume parsing on 64-bit
authorAndrew Deason <adeason@sinenomine.net>
Wed, 16 Mar 2011 19:44:56 +0000 (14:44 -0500)
committerDerrick Brashear <shadow@dementia.org>
Sun, 20 Mar 2011 02:15:58 +0000 (19:15 -0700)
When an unsigned long is wider than an afs_uint32, comparing the
afs_uint32 vid to ULONG_MAX is always going to be false (which the
compiler can warn us about). Fix this by storing to an unsigned long,
and converting to a volume id after ensuring that the result is not
too large.

Change-Id: Ifbd724dabd988bc4b1ba6ee8f3dc7fa1a0afb226
Reviewed-on: http://gerrit.openafs.org/4244
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Simon Wilkinson <sxw@inf.ed.ac.uk>
Tested-by: Derrick Brashear <shadow@dementia.org>
Reviewed-by: Derrick Brashear <shadow@dementia.org>

src/vol/salvaged.c
src/vol/salvager.c

index 091636c..6883849 100644 (file)
@@ -274,12 +274,14 @@ handleit(struct cmd_syndesc *as, void *arock)
        }
        if ((ti = as->parms[1].items)) {        /* -volumeid */
            char *end;
+           unsigned long vid_l;
            seenvol = 1;
-           vid = strtoul(ti->data, &end, 10);
-           if (vid == ULONG_MAX || *end != '\0') {
+           vid_l = strtoul(ti->data, &end, 10);
+           if (vid_l >= MAX_AFS_UINT32 || vid_l == ULONG_MAX || *end != '\0') {
                printf("Invalid volume id specified; salvage aborted\n");
                exit(-1);
            }
+           vid = (VolumeId)vid_l;
        }
 
        if (ShowLog) {
index 88d0ec1..7da1373 100644 (file)
@@ -181,17 +181,19 @@ handleit(struct cmd_syndesc *as, void *arock)
     }
     if ((ti = as->parms[1].items)) {   /* -volumeid */
        char *end;
+       unsigned long vid_l;
        if (!seenpart) {
            printf
                ("You must also specify '-partition' option with the '-volumeid' option\n");
            exit(-1);
        }
        seenvol = 1;
-       vid = strtoul(ti->data, &end, 10);
-       if (vid == ULONG_MAX || *end != '\0') {
+       vid_l = strtoul(ti->data, &end, 10);
+       if (vid_l >= MAX_AFS_UINT32 || vid_l == ULONG_MAX || *end != '\0') {
            Log("salvage: invalid volume id specified; salvage aborted\n");
            Exit(1);
        }
+       vid = (VolumeId)vid_l;
     }
     if (as->parms[2].items)    /* -debug */
        debug = 1;