]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfs_fsr: don't create ag temp subdirs with mode 0777
authorEric Sandeen <sandeen@sandeen.net>
Thu, 10 Dec 2009 16:24:49 +0000 (10:24 -0600)
committerEric Sandeen <sandeen@sandeen.net>
Thu, 10 Dec 2009 16:24:49 +0000 (10:24 -0600)
This addresses Debian bug #559490 - xfsdump: fsr creates files mode 666

I think that this mode is left over from when xfs_fsr used to
fork into the uid of the file's owner, and so needed somewhere
it was guaranteed to be able to write.

This behavior was removed in commit d51b892411c8d33374a02e20c5888df280811549
(in the xfsdump tree, before xfs_fsr got moved) and so these
wide-open permissions should no longer be needed.

Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Reviewed-by: Nathan Scott <nscott@aconex.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
fsr/xfs_fsr.c

index 253a55d909c34bad8d65fbeef6a217aa8a77a0a3..21f08c3411c72db88a930783524cfcf49898557c 100644 (file)
@@ -1541,7 +1541,7 @@ tmp_init(char *mnt)
        }
        for (i=0; i < fsgeom.agcount; i++) {
                sprintf(buf, "%s/.fsr/ag%d", mnt, i);
-               if (mkdir(buf, 0777) < 0) {
+               if (mkdir(buf, 0700) < 0) {
                        if (errno == EEXIST) {
                                if (dflag)
                                        fsrprintf(