HADOOP-9155. FsPermission should have different default value, 777 for directory and 666 for file. Contributed by Binglin Chang.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1431157 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fb0a8ff926
commit
913d2424a0
|
@ -222,6 +222,9 @@ Release 2.0.3-alpha - Unreleased
|
|||
HADOOP-9181. Set daemon flag for HttpServer's QueuedThreadPool.
|
||||
(Liang Xie via suresh)
|
||||
|
||||
HADOOP-9155. FsPermission should have different default value, 777 for
|
||||
directory and 666 for file. (Binglin Chang via atm)
|
||||
|
||||
Release 2.0.2-alpha - 2012-09-07
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -172,7 +172,25 @@ import org.apache.hadoop.util.ShutdownHookManager;
|
|||
public final class FileContext {
|
||||
|
||||
public static final Log LOG = LogFactory.getLog(FileContext.class);
|
||||
/**
|
||||
* Default permission for directory and symlink
|
||||
* In previous versions, this default permission was also used to
|
||||
* create files, so files created end up with ugo+x permission.
|
||||
* See HADOOP-9155 for detail.
|
||||
* Two new constants are added to solve this, please use
|
||||
* {@link FileContext#DIR_DEFAULT_PERM} for directory, and use
|
||||
* {@link FileContext#FILE_DEFAULT_PERM} for file.
|
||||
* This constant is kept for compatibility.
|
||||
*/
|
||||
public static final FsPermission DEFAULT_PERM = FsPermission.getDefault();
|
||||
/**
|
||||
* Default permission for directory
|
||||
*/
|
||||
public static final FsPermission DIR_DEFAULT_PERM = FsPermission.getDirDefault();
|
||||
/**
|
||||
* Default permission for file
|
||||
*/
|
||||
public static final FsPermission FILE_DEFAULT_PERM = FsPermission.getFileDefault();
|
||||
|
||||
/**
|
||||
* Priority of the FileContext shutdown hook.
|
||||
|
@ -656,7 +674,7 @@ public final class FileContext {
|
|||
CreateOpts.Perms permOpt =
|
||||
(CreateOpts.Perms) CreateOpts.getOpt(CreateOpts.Perms.class, opts);
|
||||
FsPermission permission = (permOpt != null) ? permOpt.getValue() :
|
||||
FsPermission.getDefault();
|
||||
FILE_DEFAULT_PERM;
|
||||
permission = permission.applyUMask(umask);
|
||||
|
||||
final CreateOpts[] updatedOpts =
|
||||
|
@ -704,7 +722,7 @@ public final class FileContext {
|
|||
IOException {
|
||||
final Path absDir = fixRelativePart(dir);
|
||||
final FsPermission absFerms = (permission == null ?
|
||||
FsPermission.getDefault() : permission).applyUMask(umask);
|
||||
FsPermission.getDirDefault() : permission).applyUMask(umask);
|
||||
new FSLinkResolver<Void>() {
|
||||
@Override
|
||||
public Void next(final AbstractFileSystem fs, final Path p)
|
||||
|
@ -2157,7 +2175,7 @@ public final class FileContext {
|
|||
FileStatus fs = FileContext.this.getFileStatus(qSrc);
|
||||
if (fs.isDirectory()) {
|
||||
checkDependencies(qSrc, qDst);
|
||||
mkdir(qDst, FsPermission.getDefault(), true);
|
||||
mkdir(qDst, FsPermission.getDirDefault(), true);
|
||||
FileStatus[] contents = listStatus(qSrc);
|
||||
for (FileStatus content : contents) {
|
||||
copy(makeQualified(content.getPath()), makeQualified(new Path(qDst,
|
||||
|
|
|
@ -79,8 +79,15 @@ public class FileStatus implements Writable, Comparable {
|
|||
this.blocksize = blocksize;
|
||||
this.modification_time = modification_time;
|
||||
this.access_time = access_time;
|
||||
this.permission = (permission == null) ?
|
||||
FsPermission.getDefault() : permission;
|
||||
if (permission != null) {
|
||||
this.permission = permission;
|
||||
} else if (isdir) {
|
||||
this.permission = FsPermission.getDirDefault();
|
||||
} else if (symlink!=null) {
|
||||
this.permission = FsPermission.getDefault();
|
||||
} else {
|
||||
this.permission = FsPermission.getFileDefault();
|
||||
}
|
||||
this.owner = (owner == null) ? "" : owner;
|
||||
this.group = (group == null) ? "" : group;
|
||||
this.symlink = symlink;
|
||||
|
@ -217,7 +224,7 @@ public class FileStatus implements Writable, Comparable {
|
|||
*/
|
||||
protected void setPermission(FsPermission permission) {
|
||||
this.permission = (permission == null) ?
|
||||
FsPermission.getDefault() : permission;
|
||||
FsPermission.getFileDefault() : permission;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -850,7 +850,7 @@ public abstract class FileSystem extends Configured implements Closeable {
|
|||
long blockSize,
|
||||
Progressable progress
|
||||
) throws IOException {
|
||||
return this.create(f, FsPermission.getDefault().applyUMask(
|
||||
return this.create(f, FsPermission.getFileDefault().applyUMask(
|
||||
FsPermission.getUMask(getConf())), overwrite, bufferSize,
|
||||
replication, blockSize, progress);
|
||||
}
|
||||
|
@ -1030,7 +1030,7 @@ public abstract class FileSystem extends Configured implements Closeable {
|
|||
boolean overwrite,
|
||||
int bufferSize, short replication, long blockSize,
|
||||
Progressable progress) throws IOException {
|
||||
return this.createNonRecursive(f, FsPermission.getDefault(),
|
||||
return this.createNonRecursive(f, FsPermission.getFileDefault(),
|
||||
overwrite, bufferSize, replication, blockSize, progress);
|
||||
}
|
||||
|
||||
|
@ -1867,7 +1867,7 @@ public abstract class FileSystem extends Configured implements Closeable {
|
|||
* Call {@link #mkdirs(Path, FsPermission)} with default permission.
|
||||
*/
|
||||
public boolean mkdirs(Path f) throws IOException {
|
||||
return mkdirs(f, FsPermission.getDefault());
|
||||
return mkdirs(f, FsPermission.getDirDefault());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -224,7 +224,7 @@ public class FTPFileSystem extends FileSystem {
|
|||
}
|
||||
|
||||
Path parent = absolute.getParent();
|
||||
if (parent == null || !mkdirs(client, parent, FsPermission.getDefault())) {
|
||||
if (parent == null || !mkdirs(client, parent, FsPermission.getDirDefault())) {
|
||||
parent = (parent == null) ? new Path("/") : parent;
|
||||
disconnect(client);
|
||||
throw new IOException("create(): Mkdirs failed to create: " + parent);
|
||||
|
@ -484,7 +484,7 @@ public class FTPFileSystem extends FileSystem {
|
|||
if (!exists(client, absolute)) {
|
||||
Path parent = absolute.getParent();
|
||||
created = (parent == null || mkdirs(client, parent, FsPermission
|
||||
.getDefault()));
|
||||
.getDirDefault()));
|
||||
if (created) {
|
||||
String parentDir = parent.toUri().getPath();
|
||||
client.changeWorkingDirectory(parentDir);
|
||||
|
|
|
@ -85,7 +85,7 @@ public class RawLocalFs extends DelegateToFileSystem {
|
|||
"system: "+target.toString());
|
||||
}
|
||||
if (createParent) {
|
||||
mkdir(link.getParent(), FsPermission.getDefault(), true);
|
||||
mkdir(link.getParent(), FsPermission.getDirDefault(), true);
|
||||
}
|
||||
// NB: Use createSymbolicLink in java.nio.file.Path once available
|
||||
try {
|
||||
|
|
|
@ -275,11 +275,34 @@ public class FsPermission implements Writable {
|
|||
conf.setInt(DEPRECATED_UMASK_LABEL, umask.toShort());
|
||||
}
|
||||
|
||||
/** Get the default permission. */
|
||||
/**
|
||||
* Get the default permission for directory and symlink.
|
||||
* In previous versions, this default permission was also used to
|
||||
* create files, so files created end up with ugo+x permission.
|
||||
* See HADOOP-9155 for detail.
|
||||
* Two new methods are added to solve this, please use
|
||||
* {@link FsPermission#getDirDefault()} for directory, and use
|
||||
* {@link FsPermission#getFileDefault()} for file.
|
||||
* This method is kept for compatibility.
|
||||
*/
|
||||
public static FsPermission getDefault() {
|
||||
return new FsPermission((short)00777);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the default permission for directory.
|
||||
*/
|
||||
public static FsPermission getDirDefault() {
|
||||
return new FsPermission((short)00777);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the default permission for file.
|
||||
*/
|
||||
public static FsPermission getFileDefault() {
|
||||
return new FsPermission((short)00666);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a FsPermission from a Unix symbolic permission string
|
||||
* @param unixSymbolicPermission e.g. "-rw-rw-rw-"
|
||||
|
|
|
@ -95,7 +95,7 @@ public abstract class FileContextPermissionBase {
|
|||
String filename = "foo";
|
||||
Path f = getTestRootPath(fc, filename);
|
||||
createFile(fc, filename);
|
||||
doFilePermissionCheck(FileContext.DEFAULT_PERM.applyUMask(fc.getUMask()),
|
||||
doFilePermissionCheck(FileContext.FILE_DEFAULT_PERM.applyUMask(fc.getUMask()),
|
||||
fc.getFileStatus(f).getPermission());
|
||||
}
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@ public class TestFileStatus {
|
|||
FileStatus fileStatus = new FileStatus(LENGTH, isdir,
|
||||
REPLICATION, BLKSIZE, MTIME, PATH);
|
||||
validateAccessors(fileStatus, LENGTH, isdir, REPLICATION, BLKSIZE, MTIME,
|
||||
0, FsPermission.getDefault(), "", "", null, PATH);
|
||||
0, FsPermission.getDirDefault(), "", "", null, PATH);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -131,7 +131,7 @@ public class TestFileStatus {
|
|||
public void constructorBlank() throws IOException {
|
||||
FileStatus fileStatus = new FileStatus();
|
||||
validateAccessors(fileStatus, 0, false, 0, 0, 0,
|
||||
0, FsPermission.getDefault(), "", "", null, null);
|
||||
0, FsPermission.getFileDefault(), "", "", null, null);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -24,6 +24,8 @@ import org.apache.hadoop.conf.Configuration;
|
|||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.apache.hadoop.fs.FileContextTestHelper;
|
||||
import org.apache.hadoop.fs.permission.FsPermission;
|
||||
|
||||
public class TestLocalFSFileContextMainOperations extends FileContextMainOperationsBaseTest {
|
||||
|
||||
|
@ -47,4 +49,14 @@ public class TestLocalFSFileContextMainOperations extends FileContextMainOperati
|
|||
FileContext fc1 = FileContext.getLocalFSFileContext();
|
||||
Assert.assertTrue(fc1 != fc);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDefaultFilePermission() throws IOException {
|
||||
Path file = FileContextTestHelper.getTestRootPath(fc,
|
||||
"testDefaultFilePermission");
|
||||
FileContextTestHelper.createFile(fc, file);
|
||||
FsPermission expect = FileContext.FILE_DEFAULT_PERM.applyUMask(fc.getUMask());
|
||||
Assert.assertEquals(expect, fc.getFileStatus(file)
|
||||
.getPermission());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -73,7 +73,7 @@ public class TestLocalFileSystemPermission extends TestCase {
|
|||
try {
|
||||
FsPermission initialPermission = getPermission(localfs, f);
|
||||
System.out.println(filename + ": " + initialPermission);
|
||||
assertEquals(FsPermission.getDefault().applyUMask(FsPermission.getUMask(conf)), initialPermission);
|
||||
assertEquals(FsPermission.getFileDefault().applyUMask(FsPermission.getUMask(conf)), initialPermission);
|
||||
}
|
||||
catch(Exception e) {
|
||||
System.out.println(StringUtils.stringifyException(e));
|
||||
|
|
|
@ -1184,7 +1184,7 @@ public class DFSClient implements java.io.Closeable {
|
|||
/**
|
||||
* Call {@link #create(String, FsPermission, EnumSet, short, long,
|
||||
* Progressable, int, ChecksumOpt)} with default <code>permission</code>
|
||||
* {@link FsPermission#getDefault()}.
|
||||
* {@link FsPermission#getFileDefault()}.
|
||||
*
|
||||
* @param src File name
|
||||
* @param overwrite overwrite an existing file if true
|
||||
|
@ -1202,7 +1202,7 @@ public class DFSClient implements java.io.Closeable {
|
|||
Progressable progress,
|
||||
int buffersize)
|
||||
throws IOException {
|
||||
return create(src, FsPermission.getDefault(),
|
||||
return create(src, FsPermission.getFileDefault(),
|
||||
overwrite ? EnumSet.of(CreateFlag.CREATE, CreateFlag.OVERWRITE)
|
||||
: EnumSet.of(CreateFlag.CREATE), replication, blockSize, progress,
|
||||
buffersize, null);
|
||||
|
@ -1233,7 +1233,7 @@ public class DFSClient implements java.io.Closeable {
|
|||
*
|
||||
* @param src File name
|
||||
* @param permission The permission of the directory being created.
|
||||
* If null, use default permission {@link FsPermission#getDefault()}
|
||||
* If null, use default permission {@link FsPermission#getFileDefault()}
|
||||
* @param flag indicates create a new file or create/overwrite an
|
||||
* existing file or append to an existing file
|
||||
* @param createParent create missing parent directory if true
|
||||
|
@ -1259,7 +1259,7 @@ public class DFSClient implements java.io.Closeable {
|
|||
ChecksumOpt checksumOpt) throws IOException {
|
||||
checkOpen();
|
||||
if (permission == null) {
|
||||
permission = FsPermission.getDefault();
|
||||
permission = FsPermission.getFileDefault();
|
||||
}
|
||||
FsPermission masked = permission.applyUMask(dfsClientConf.uMask);
|
||||
if(LOG.isDebugEnabled()) {
|
||||
|
|
|
@ -67,7 +67,10 @@ public class HdfsFileStatus {
|
|||
this.modification_time = modification_time;
|
||||
this.access_time = access_time;
|
||||
this.permission = (permission == null) ?
|
||||
FsPermission.getDefault() : permission;
|
||||
((isdir || symlink!=null) ?
|
||||
FsPermission.getDefault() :
|
||||
FsPermission.getFileDefault()) :
|
||||
permission;
|
||||
this.owner = (owner == null) ? "" : owner;
|
||||
this.group = (group == null) ? "" : group;
|
||||
this.symlink = symlink;
|
||||
|
|
Loading…
Reference in New Issue