HADOOP-13073 RawLocalFileSystem does not react on changing umask. Contributed by Andras Bokor
This commit is contained in:
parent
5b4a708704
commit
76be82bc04
@ -64,8 +64,6 @@ public class RawLocalFileSystem extends FileSystem {
|
|||||||
// Temporary workaround for HADOOP-9652.
|
// Temporary workaround for HADOOP-9652.
|
||||||
private static boolean useDeprecatedFileStatus = true;
|
private static boolean useDeprecatedFileStatus = true;
|
||||||
|
|
||||||
private FsPermission umask;
|
|
||||||
|
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
public static void useStatIfAvailable() {
|
public static void useStatIfAvailable() {
|
||||||
useDeprecatedFileStatus = !Stat.isAvailable();
|
useDeprecatedFileStatus = !Stat.isAvailable();
|
||||||
@ -99,7 +97,6 @@ public File pathToFile(Path path) {
|
|||||||
public void initialize(URI uri, Configuration conf) throws IOException {
|
public void initialize(URI uri, Configuration conf) throws IOException {
|
||||||
super.initialize(uri, conf);
|
super.initialize(uri, conf);
|
||||||
setConf(conf);
|
setConf(conf);
|
||||||
umask = FsPermission.getUMask(conf);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*******************************************************
|
/*******************************************************
|
||||||
@ -233,7 +230,7 @@ private LocalFSFileOutputStream(Path f, boolean append,
|
|||||||
if (permission == null) {
|
if (permission == null) {
|
||||||
this.fos = new FileOutputStream(file, append);
|
this.fos = new FileOutputStream(file, append);
|
||||||
} else {
|
} else {
|
||||||
permission = permission.applyUMask(umask);
|
permission = permission.applyUMask(FsPermission.getUMask(getConf()));
|
||||||
if (Shell.WINDOWS && NativeIO.isAvailable()) {
|
if (Shell.WINDOWS && NativeIO.isAvailable()) {
|
||||||
this.fos = NativeIO.Windows.createFileOutputStreamWithMode(file,
|
this.fos = NativeIO.Windows.createFileOutputStreamWithMode(file,
|
||||||
append, permission.toShort());
|
append, permission.toShort());
|
||||||
@ -510,7 +507,7 @@ protected boolean mkOneDirWithMode(Path p, File p2f, FsPermission permission)
|
|||||||
if (permission == null) {
|
if (permission == null) {
|
||||||
permission = FsPermission.getDirDefault();
|
permission = FsPermission.getDirDefault();
|
||||||
}
|
}
|
||||||
permission = permission.applyUMask(umask);
|
permission = permission.applyUMask(FsPermission.getUMask(getConf()));
|
||||||
if (Shell.WINDOWS && NativeIO.isAvailable()) {
|
if (Shell.WINDOWS && NativeIO.isAvailable()) {
|
||||||
try {
|
try {
|
||||||
NativeIO.Windows.createDirectoryWithMode(p2f, permission.toShort());
|
NativeIO.Windows.createDirectoryWithMode(p2f, permission.toShort());
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
import org.apache.hadoop.fs.permission.*;
|
import org.apache.hadoop.fs.permission.*;
|
||||||
import org.apache.hadoop.test.GenericTestUtils;
|
import org.apache.hadoop.test.GenericTestUtils;
|
||||||
import org.apache.hadoop.util.StringUtils;
|
|
||||||
import org.apache.log4j.Level;
|
import org.apache.log4j.Level;
|
||||||
import org.apache.hadoop.util.Shell;
|
import org.apache.hadoop.util.Shell;
|
||||||
|
|
||||||
@ -28,11 +27,21 @@
|
|||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
import junit.framework.*;
|
import junit.framework.*;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
import static org.hamcrest.CoreMatchers.is;
|
||||||
|
import static org.hamcrest.CoreMatchers.not;
|
||||||
|
import static org.junit.Assert.assertThat;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class tests the local file system via the FileSystem abstraction.
|
* This class tests the local file system via the FileSystem abstraction.
|
||||||
*/
|
*/
|
||||||
public class TestLocalFileSystemPermission extends TestCase {
|
public class TestLocalFileSystemPermission extends TestCase {
|
||||||
|
|
||||||
|
public static final Logger LOGGER =
|
||||||
|
LoggerFactory.getLogger(TestFcLocalFsPermission.class);
|
||||||
|
|
||||||
static final String TEST_PATH_PREFIX = GenericTestUtils.getTempPath(
|
static final String TEST_PATH_PREFIX = GenericTestUtils.getTempPath(
|
||||||
TestLocalFileSystemPermission.class.getSimpleName());
|
TestLocalFileSystemPermission.class.getSimpleName());
|
||||||
|
|
||||||
@ -64,12 +73,12 @@ private void cleanup(FileSystem fs, Path name) throws IOException {
|
|||||||
|
|
||||||
public void testLocalFSDirsetPermission() throws IOException {
|
public void testLocalFSDirsetPermission() throws IOException {
|
||||||
if (Path.WINDOWS) {
|
if (Path.WINDOWS) {
|
||||||
System.out.println("Cannot run test for Windows");
|
LOGGER.info("Cannot run test for Windows");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Configuration conf = new Configuration();
|
LocalFileSystem localfs = FileSystem.getLocal(new Configuration());
|
||||||
|
Configuration conf = localfs.getConf();
|
||||||
conf.set(CommonConfigurationKeys.FS_PERMISSIONS_UMASK_KEY, "044");
|
conf.set(CommonConfigurationKeys.FS_PERMISSIONS_UMASK_KEY, "044");
|
||||||
LocalFileSystem localfs = FileSystem.getLocal(conf);
|
|
||||||
Path dir = new Path(TEST_PATH_PREFIX + "dir");
|
Path dir = new Path(TEST_PATH_PREFIX + "dir");
|
||||||
localfs.mkdirs(dir);
|
localfs.mkdirs(dir);
|
||||||
try {
|
try {
|
||||||
@ -78,8 +87,7 @@ public void testLocalFSDirsetPermission() throws IOException {
|
|||||||
FsPermission.getDirDefault().applyUMask(FsPermission.getUMask(conf)),
|
FsPermission.getDirDefault().applyUMask(FsPermission.getUMask(conf)),
|
||||||
initialPermission);
|
initialPermission);
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
System.out.println(StringUtils.stringifyException(e));
|
LOGGER.error("Cannot run test", e);
|
||||||
System.out.println("Cannot run test");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -90,8 +98,7 @@ public void testLocalFSDirsetPermission() throws IOException {
|
|||||||
FsPermission initialPermission = getPermission(localfs, dir1);
|
FsPermission initialPermission = getPermission(localfs, dir1);
|
||||||
assertEquals(perm.applyUMask(FsPermission.getUMask(conf)), initialPermission);
|
assertEquals(perm.applyUMask(FsPermission.getUMask(conf)), initialPermission);
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
System.out.println(StringUtils.stringifyException(e));
|
LOGGER.error("Cannot run test", e);
|
||||||
System.out.println("Cannot run test");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -105,8 +112,7 @@ public void testLocalFSDirsetPermission() throws IOException {
|
|||||||
assertEquals(copyPermission, initialPermission);
|
assertEquals(copyPermission, initialPermission);
|
||||||
dir2 = copyPath;
|
dir2 = copyPath;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
System.out.println(StringUtils.stringifyException(e));
|
LOGGER.error("Cannot run test", e);
|
||||||
System.out.println("Cannot run test");
|
|
||||||
return;
|
return;
|
||||||
} finally {
|
} finally {
|
||||||
cleanup(localfs, dir);
|
cleanup(localfs, dir);
|
||||||
@ -120,7 +126,7 @@ public void testLocalFSDirsetPermission() throws IOException {
|
|||||||
/** Test LocalFileSystem.setPermission */
|
/** Test LocalFileSystem.setPermission */
|
||||||
public void testLocalFSsetPermission() throws IOException {
|
public void testLocalFSsetPermission() throws IOException {
|
||||||
if (Path.WINDOWS) {
|
if (Path.WINDOWS) {
|
||||||
System.out.println("Cannot run test for Windows");
|
LOGGER.info("Cannot run test for Windows");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Configuration conf = new Configuration();
|
Configuration conf = new Configuration();
|
||||||
@ -134,8 +140,7 @@ public void testLocalFSsetPermission() throws IOException {
|
|||||||
FsPermission.getFileDefault().applyUMask(FsPermission.getUMask(conf)),
|
FsPermission.getFileDefault().applyUMask(FsPermission.getUMask(conf)),
|
||||||
initialPermission);
|
initialPermission);
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
System.out.println(StringUtils.stringifyException(e));
|
LOGGER.error("Cannot run test", e);
|
||||||
System.out.println("Cannot run test");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -147,8 +152,7 @@ public void testLocalFSsetPermission() throws IOException {
|
|||||||
assertEquals(
|
assertEquals(
|
||||||
perm.applyUMask(FsPermission.getUMask(conf)), initialPermission);
|
perm.applyUMask(FsPermission.getUMask(conf)), initialPermission);
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
System.out.println(StringUtils.stringifyException(e));
|
LOGGER.error("Cannot run test", e);
|
||||||
System.out.println("Cannot run test");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -162,8 +166,7 @@ public void testLocalFSsetPermission() throws IOException {
|
|||||||
assertEquals(copyPermission, initialPermission);
|
assertEquals(copyPermission, initialPermission);
|
||||||
f2 = copyPath;
|
f2 = copyPath;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
System.out.println(StringUtils.stringifyException(e));
|
LOGGER.error("Cannot run test", e);
|
||||||
System.out.println("Cannot run test");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -191,10 +194,10 @@ FsPermission getPermission(LocalFileSystem fs, Path p) throws IOException {
|
|||||||
return fs.getFileStatus(p).getPermission();
|
return fs.getFileStatus(p).getPermission();
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Test LocalFileSystem.setOwner */
|
/** Test LocalFileSystem.setOwner. */
|
||||||
public void testLocalFSsetOwner() throws IOException {
|
public void testLocalFSsetOwner() throws IOException {
|
||||||
if (Path.WINDOWS) {
|
if (Path.WINDOWS) {
|
||||||
System.out.println("Cannot run test for Windows");
|
LOGGER.info("Cannot run test for Windows");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -206,16 +209,15 @@ public void testLocalFSsetOwner() throws IOException {
|
|||||||
List<String> groups = null;
|
List<String> groups = null;
|
||||||
try {
|
try {
|
||||||
groups = getGroups();
|
groups = getGroups();
|
||||||
System.out.println(filename + ": " + getPermission(localfs, f));
|
LOGGER.info("{}: {}", filename, getPermission(localfs, f));
|
||||||
}
|
}
|
||||||
catch(IOException e) {
|
catch(IOException e) {
|
||||||
System.out.println(StringUtils.stringifyException(e));
|
LOGGER.error("Cannot run test", e);
|
||||||
System.out.println("Cannot run test");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (groups == null || groups.size() < 1) {
|
if (groups == null || groups.size() < 1) {
|
||||||
System.out.println("Cannot run test: need at least one group. groups="
|
LOGGER.error("Cannot run test: need at least one group. groups={}",
|
||||||
+ groups);
|
groups);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -230,13 +232,61 @@ public void testLocalFSsetOwner() throws IOException {
|
|||||||
localfs.setOwner(f, null, g1);
|
localfs.setOwner(f, null, g1);
|
||||||
assertEquals(g1, getGroup(localfs, f));
|
assertEquals(g1, getGroup(localfs, f));
|
||||||
} else {
|
} else {
|
||||||
System.out.println("Not testing changing the group since user " +
|
LOGGER.info("Not testing changing the group since user " +
|
||||||
"belongs to only one group.");
|
"belongs to only one group.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
finally {cleanup(localfs, f);}
|
finally {cleanup(localfs, f);}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Steps:
|
||||||
|
* 1. Create a directory with default permissions: 777 with umask 022
|
||||||
|
* 2. Check the directory has good permissions: 755
|
||||||
|
* 3. Set the umask to 062.
|
||||||
|
* 4. Create a new directory with default permissions.
|
||||||
|
* 5. For this directory we expect 715 as permission not 755
|
||||||
|
* @throws Exception we can throw away all the exception.
|
||||||
|
*/
|
||||||
|
public void testSetUmaskInRealTime() throws Exception {
|
||||||
|
if (Path.WINDOWS) {
|
||||||
|
LOGGER.info("Cannot run test for Windows");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
LocalFileSystem localfs = FileSystem.getLocal(new Configuration());
|
||||||
|
Configuration conf = localfs.getConf();
|
||||||
|
conf.set(CommonConfigurationKeys.FS_PERMISSIONS_UMASK_KEY, "022");
|
||||||
|
LOGGER.info("Current umask is {}",
|
||||||
|
conf.get(CommonConfigurationKeys.FS_PERMISSIONS_UMASK_KEY));
|
||||||
|
Path dir = new Path(TEST_PATH_PREFIX + "dir");
|
||||||
|
Path dir2 = new Path(TEST_PATH_PREFIX + "dir2");
|
||||||
|
try {
|
||||||
|
assertTrue(localfs.mkdirs(dir));
|
||||||
|
FsPermission initialPermission = getPermission(localfs, dir);
|
||||||
|
assertEquals(
|
||||||
|
"With umask 022 permission should be 755 since the default " +
|
||||||
|
"permission is 777", new FsPermission("755"), initialPermission);
|
||||||
|
|
||||||
|
// Modify umask and create a new directory
|
||||||
|
// and check if new umask is applied
|
||||||
|
conf.set(CommonConfigurationKeys.FS_PERMISSIONS_UMASK_KEY, "062");
|
||||||
|
assertTrue(localfs.mkdirs(dir2));
|
||||||
|
FsPermission finalPermission = localfs.getFileStatus(dir2)
|
||||||
|
.getPermission();
|
||||||
|
assertThat("With umask 062 permission should not be 755 since the " +
|
||||||
|
"default permission is 777", new FsPermission("755"),
|
||||||
|
is(not(finalPermission)));
|
||||||
|
assertEquals(
|
||||||
|
"With umask 062 we expect 715 since the default permission is 777",
|
||||||
|
new FsPermission("715"), finalPermission);
|
||||||
|
} finally {
|
||||||
|
conf.set(CommonConfigurationKeys.FS_PERMISSIONS_UMASK_KEY, "022");
|
||||||
|
cleanup(localfs, dir);
|
||||||
|
cleanup(localfs, dir2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static List<String> getGroups() throws IOException {
|
static List<String> getGroups() throws IOException {
|
||||||
List<String> a = new ArrayList<String>();
|
List<String> a = new ArrayList<String>();
|
||||||
String s = Shell.execCommand(Shell.getGroupsCommand());
|
String s = Shell.execCommand(Shell.getGroupsCommand());
|
||||||
|
Loading…
Reference in New Issue
Block a user