aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/vfs
diff options
context:
space:
mode:
authorGravatar Benjamin Peterson <bp@benjamin.pe>2018-04-12 08:05:59 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-04-12 08:07:41 -0700
commitfdda242d815c895f23d980674eeb15a7c77b0737 (patch)
tree70daa9a140453421fc95b13cab465d3a1b1a33e0 /src/main/java/com/google/devtools/build/lib/vfs
parentb456e9d9e53b1f45b181da277efb4d12cc4f031f (diff)
Make FileSystemUtils.moveFile always preserve symlinks and use it in SandboxedSpawn.copyOutputs.
Previously, if moveFile fell back to copying from a true rename (e.g., if the move is across file systems), it would fully dereference the source and produce a regular file at the output location. This CL fixes moveFile to properly copy symlinks. Note we don't preserve metadata in the symlink case mostly because the Bazel VFS has no API to write metadata without dereferencing symlinks. (But, also, it's not important for the current use cases.) This breaks the backward-compatibility of FileSystemUtils.moveFile and FileSystemUtils.moveTreeBelow. This seems okay because the new behavior makes more sense, and sandbox is the only consumer of these APIs. Switching SandboxedSpawn.copyOutputs to use FileSystemUtils.moveFile rather than Guava's Files.move fixes https://github.com/bazelbuild/bazel/issues/4987. Closes #4989. Change-Id: I0283e8aa11fadff5b0afd7bdfd0490aca12a1f6b PiperOrigin-RevId: 192611227
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/vfs')
-rw-r--r--src/main/java/com/google/devtools/build/lib/vfs/FileSystemUtils.java38
1 files changed, 21 insertions, 17 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/vfs/FileSystemUtils.java b/src/main/java/com/google/devtools/build/lib/vfs/FileSystemUtils.java
index b7fd8d2a43..999c470c8b 100644
--- a/src/main/java/com/google/devtools/build/lib/vfs/FileSystemUtils.java
+++ b/src/main/java/com/google/devtools/build/lib/vfs/FileSystemUtils.java
@@ -409,26 +409,35 @@ public class FileSystemUtils {
}
/**
- * Moves the file from location "from" to location "to", while overwriting a
- * potentially existing "to". File's last modified time, executable and
- * writable bits are also preserved.
+ * Moves the file from location "from" to location "to", while overwriting a potentially existing
+ * "to". If "from" is a regular file, its last modified time, executable and writable bits are
+ * also preserved. Symlinks are also supported but not directories or special files.
*
- * <p>If no error occurs, the method returns normally. If a parent directory does
- * not exist, a FileNotFoundException is thrown. An IOException is thrown when
- * other erroneous situations occur. (e.g. read errors)
+ * <p>If no error occurs, the method returns normally. If a parent directory does not exist, a
+ * FileNotFoundException is thrown. {@link IOException} is thrown when other erroneous situations
+ * occur. (e.g. read errors)
*/
- @ThreadSafe // but not atomic
+ @ThreadSafe // but not atomic
public static void moveFile(Path from, Path to) throws IOException {
- long mtime = from.getLastModifiedTime();
- boolean writable = from.isWritable();
- boolean executable = from.isExecutable();
-
// We don't try-catch here for better performance.
to.delete();
try {
from.renameTo(to);
} catch (IOException e) {
- asByteSource(from).copyTo(asByteSink(to));
+ // Fallback to a copy.
+ FileStatus stat = from.stat(Symlinks.NOFOLLOW);
+ if (stat.isFile()) {
+ asByteSource(from).copyTo(asByteSink(to));
+ to.setLastModifiedTime(stat.getLastModifiedTime()); // Preserve mtime.
+ if (!from.isWritable()) {
+ to.setWritable(false); // Make file read-only if original was read-only.
+ }
+ to.setExecutable(from.isExecutable()); // Copy executable bit.
+ } else if (stat.isSymbolicLink()) {
+ to.createSymbolicLink(from.readSymbolicLink());
+ } else {
+ throw new IOException("Don't know how to copy " + from);
+ }
if (!from.delete()) {
if (!to.delete()) {
throw new IOException("Unable to delete " + to);
@@ -436,11 +445,6 @@ public class FileSystemUtils {
throw new IOException("Unable to delete " + from);
}
}
- to.setLastModifiedTime(mtime); // Preserve mtime.
- if (!writable) {
- to.setWritable(false); // Make file read-only if original was read-only.
- }
- to.setExecutable(executable); // Copy executable bit.
}
/**