mirror of
https://git.openafs.org/openafs.git
synced 2025-01-31 05:27:44 +00:00
volser: Check vnode length on dump
Commit aadf69eabb1962496fa93745ab560a5b48cacd61 adds length checks on vnodes during fileserver read/write operations. Do the same thing when we dump volume data from the volserver, to ensure that we don't transmit incorrect data e.g. to other RO sites when releasing. FIXES 131530 Reviewed-on: http://gerrit.openafs.org/8836 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@your-file-system.com> (cherry picked from commit eb938bd18d9806f3529b7a2cbccdce5340c0e39f) Change-Id: Ia49e7310f2e143d4eed965a5090e687be55864e4 Reviewed-on: http://gerrit.openafs.org/9505 Reviewed-by: Derrick Brashear <shadow@your-file-system.com> Reviewed-by: Andrew Deason <adeason@sinenomine.net> Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de> Tested-by: BuildBot <buildbot@rampaginggeek.com>
This commit is contained in:
parent
c40eb13d01
commit
e2f29a79a7
@ -1087,6 +1087,7 @@ DumpVnode(struct iod *iodp, struct VnodeDiskObject *v, int volid,
|
||||
VAclDiskSize(v));
|
||||
}
|
||||
if (VNDISK_GET_INO(v)) {
|
||||
afs_sfsize_t indexlen, disklen;
|
||||
IH_INIT(ihP, iodp->device, iodp->parentId, VNDISK_GET_INO(v));
|
||||
fdP = IH_OPEN(ihP);
|
||||
if (fdP == NULL) {
|
||||
@ -1094,6 +1095,17 @@ DumpVnode(struct iod *iodp, struct VnodeDiskObject *v, int volid,
|
||||
IH_RELEASE(ihP);
|
||||
return VOLSERREAD_DUMPERROR;
|
||||
}
|
||||
VNDISK_GET_LEN(indexlen, v);
|
||||
disklen = FDH_SIZE(fdP);
|
||||
if (indexlen != disklen) {
|
||||
FDH_REALLYCLOSE(fdP);
|
||||
IH_RELEASE(ihP);
|
||||
Log("DumpVnode: volume %lu vnode %lu has inconsistent length "
|
||||
"(index %lu disk %lu); aborting dump\n",
|
||||
(unsigned long)volid, (unsigned long)vnodeNumber,
|
||||
(unsigned long)indexlen, (unsigned long)disklen);
|
||||
return VOLSERREAD_DUMPERROR;
|
||||
}
|
||||
code = DumpFile(iodp, vnodeNumber, fdP);
|
||||
FDH_CLOSE(fdP);
|
||||
IH_RELEASE(ihP);
|
||||
|
Loading…
x
Reference in New Issue
Block a user