forked from apache/flink
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FLINK-23166][python] Fix ZipUtils to handle properly for softlinks
This closes apache#16309.
- Loading branch information
Showing
2 changed files
with
199 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
161 changes: 161 additions & 0 deletions
161
flink-python/src/test/java/org/apache/flink/python/util/ZipUtilsTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.flink.python.util; | ||
|
||
import org.apache.flink.configuration.ConfigConstants; | ||
|
||
import org.apache.commons.compress.archivers.zip.ZipArchiveEntry; | ||
import org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream; | ||
import org.junit.Assert; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.junit.rules.TemporaryFolder; | ||
|
||
import java.io.File; | ||
import java.io.FileOutputStream; | ||
import java.io.IOException; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.nio.file.attribute.PosixFilePermission; | ||
import java.util.Set; | ||
|
||
import static org.junit.Assert.assertArrayEquals; | ||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertTrue; | ||
|
||
/** Tests for {@link ZipUtils}. */ | ||
public class ZipUtilsTest { | ||
|
||
private static final int S_IFLNK = 40960; | ||
|
||
@Rule public final TemporaryFolder temporaryFolder = new TemporaryFolder(); | ||
|
||
@Test | ||
public void testSymlink() throws IOException { | ||
File zipFile = temporaryFolder.newFile(); | ||
|
||
try (ZipArchiveOutputStream zipOut = | ||
new ZipArchiveOutputStream(new FileOutputStream(zipFile))) { | ||
String file1 = "zipFile1"; | ||
ZipArchiveEntry entry = new ZipArchiveEntry(file1); | ||
entry.setUnixMode(0644); | ||
zipOut.putArchiveEntry(entry); | ||
zipOut.write(new byte[] {1, 1, 1, 1, 1}); | ||
zipOut.closeArchiveEntry(); | ||
|
||
String file2 = "zipFile2"; | ||
entry = new ZipArchiveEntry(file2); | ||
entry.setUnixMode(0644); | ||
zipOut.putArchiveEntry(entry); | ||
zipOut.write(new byte[] {2, 2, 2, 2, 2}); | ||
zipOut.closeArchiveEntry(); | ||
|
||
entry = new ZipArchiveEntry("softlink"); | ||
entry.setUnixMode(S_IFLNK | 0644); | ||
zipOut.putArchiveEntry(entry); | ||
zipOut.write(file1.getBytes(ConfigConstants.DEFAULT_CHARSET)); | ||
zipOut.closeArchiveEntry(); | ||
} | ||
|
||
String targetPath = temporaryFolder.newFolder().getCanonicalPath(); | ||
ZipUtils.extractZipFileWithPermissions(zipFile.getCanonicalPath(), targetPath); | ||
Path softLink = new File(targetPath, "softlink").toPath(); | ||
assertTrue(Files.isSymbolicLink(softLink)); | ||
assertTrue(Files.readSymbolicLink(softLink).toString().endsWith("zipFile1")); | ||
|
||
Path file1Path = new File(targetPath, "zipFile1").toPath(); | ||
assertTrue(Files.isRegularFile(file1Path)); | ||
assertArrayEquals(Files.readAllBytes(file1Path), new byte[] {1, 1, 1, 1, 1}); | ||
|
||
Path file2Path = new File(targetPath, "zipFile2").toPath(); | ||
assertTrue(Files.isRegularFile(file2Path)); | ||
assertArrayEquals(Files.readAllBytes(file2Path), new byte[] {2, 2, 2, 2, 2}); | ||
} | ||
|
||
@Test | ||
public void testSymlinkWithoutTargetFile() throws IOException { | ||
File zipFile = temporaryFolder.newFile(); | ||
|
||
try (ZipArchiveOutputStream zipOut = | ||
new ZipArchiveOutputStream(new FileOutputStream(zipFile))) { | ||
ZipArchiveEntry entry = new ZipArchiveEntry("softlink"); | ||
entry.setUnixMode(S_IFLNK | 0644); | ||
zipOut.putArchiveEntry(entry); | ||
zipOut.write("targetFile".getBytes(ConfigConstants.DEFAULT_CHARSET)); | ||
zipOut.closeArchiveEntry(); | ||
} | ||
|
||
String targetPath = temporaryFolder.newFolder().getCanonicalPath(); | ||
ZipUtils.extractZipFileWithPermissions(zipFile.getCanonicalPath(), targetPath); | ||
Path softLink = new File(targetPath, "softlink").toPath(); | ||
assertTrue(Files.isSymbolicLink(softLink)); | ||
assertTrue(Files.readSymbolicLink(softLink).toString().endsWith("targetFile")); | ||
} | ||
|
||
@Test | ||
public void testExpandOutOfTargetDir() throws IOException { | ||
File zipFile = temporaryFolder.newFile(); | ||
|
||
try (ZipArchiveOutputStream zipOut = | ||
new ZipArchiveOutputStream(new FileOutputStream(zipFile))) { | ||
String file1 = "../zipFile"; | ||
ZipArchiveEntry entry = new ZipArchiveEntry(file1); | ||
zipOut.putArchiveEntry(entry); | ||
zipOut.write(new byte[] {1, 1, 1, 1, 1}); | ||
zipOut.closeArchiveEntry(); | ||
} | ||
|
||
String targetPath = temporaryFolder.newFolder().getCanonicalPath(); | ||
try { | ||
ZipUtils.extractZipFileWithPermissions(zipFile.getCanonicalPath(), targetPath); | ||
Assert.fail("exception expected"); | ||
} catch (IOException e) { | ||
assertTrue(e.getMessage().contains("Expand ../zipFile would create a file outside of")); | ||
} | ||
} | ||
|
||
@Test | ||
public void testPermissionRestored() throws IOException { | ||
File zipFile = temporaryFolder.newFile(); | ||
|
||
try (ZipArchiveOutputStream zipOut = | ||
new ZipArchiveOutputStream(new FileOutputStream(zipFile))) { | ||
String file1 = "zipFile"; | ||
ZipArchiveEntry entry = new ZipArchiveEntry(file1); | ||
entry.setUnixMode(0355); | ||
zipOut.putArchiveEntry(entry); | ||
zipOut.write(new byte[] {1, 1, 1, 1, 1}); | ||
zipOut.closeArchiveEntry(); | ||
} | ||
|
||
String targetPath = temporaryFolder.newFolder().getCanonicalPath(); | ||
ZipUtils.extractZipFileWithPermissions(zipFile.getCanonicalPath(), targetPath); | ||
|
||
Path path = new File(targetPath, "zipFile").toPath(); | ||
assertEquals(0355, toUnixMode(Files.getPosixFilePermissions(path))); | ||
} | ||
|
||
private int toUnixMode(Set<PosixFilePermission> permission) { | ||
int mode = 0; | ||
for (PosixFilePermission action : PosixFilePermission.values()) { | ||
mode = mode << 1; | ||
mode += permission.contains(action) ? 1 : 0; | ||
} | ||
return mode; | ||
} | ||
} |