Skip to content

Commit

Permalink
[fix][broker] Fix incomplete NAR file extraction which prevents broke…
Browse files Browse the repository at this point in the history
…r from starting (#23274)
  • Loading branch information
nikhilerigila09 authored Sep 19, 2024
1 parent d4261d2 commit 03330b3
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
import java.io.RandomAccessFile;
import java.nio.channels.FileChannel;
import java.nio.channels.FileLock;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Base64;
Expand Down Expand Up @@ -86,19 +88,32 @@ static File doUnpackNar(final File nar, final File baseWorkingDirectory, Runnabl
try (FileChannel channel = new RandomAccessFile(lockFile, "rw").getChannel();
FileLock lock = channel.lock()) {
File narWorkingDirectory = new File(parentDirectory, md5Sum);
if (narWorkingDirectory.mkdir()) {
if (!narWorkingDirectory.exists()) {
File narExtractionTempDirectory = new File(parentDirectory, md5Sum + ".tmp");
if (narExtractionTempDirectory.exists()) {
FileUtils.deleteFile(narExtractionTempDirectory, true);
}
if (!narExtractionTempDirectory.mkdir()) {
throw new IOException("Cannot create " + narExtractionTempDirectory);
}
try {
log.info("Extracting {} to {}", nar, narWorkingDirectory);
log.info("Extracting {} to {}", nar, narExtractionTempDirectory);
if (extractCallback != null) {
extractCallback.run();
}
unpack(nar, narWorkingDirectory);
unpack(nar, narExtractionTempDirectory);
} catch (IOException e) {
log.error("There was a problem extracting the nar file. Deleting {} to clean up state.",
narWorkingDirectory, e);
FileUtils.deleteFile(narWorkingDirectory, true);
narExtractionTempDirectory, e);
try {
FileUtils.deleteFile(narExtractionTempDirectory, true);
} catch (IOException e2) {
log.error("Failed to delete temporary directory {}", narExtractionTempDirectory, e2);
}
throw e;
}
Files.move(narExtractionTempDirectory.toPath(), narWorkingDirectory.toPath(),
StandardCopyOption.ATOMIC_MOVE);
}
return narWorkingDirectory;
}
Expand Down Expand Up @@ -166,7 +181,7 @@ private static void makeFile(final InputStream inputStream, final File file) thr
* @throws IOException
* if cannot read file
*/
private static byte[] calculateMd5sum(final File file) throws IOException {
protected static byte[] calculateMd5sum(final File file) throws IOException {
try (final FileInputStream inputStream = new FileInputStream(file)) {
// codeql[java/weak-cryptographic-algorithm] - md5 is sufficient for this use case
final MessageDigest md5 = MessageDigest.getInstance("md5");
Expand All @@ -184,4 +199,4 @@ private static byte[] calculateMd5sum(final File file) throws IOException {
throw new IllegalArgumentException(nsae);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,17 @@ public static void main(String[] args) {
}
}

@Test
void shouldReExtractWhenUnpackedDirectoryIsMissing() throws IOException {
AtomicInteger extractCounter = new AtomicInteger();

File narWorkingDirectory = NarUnpacker.doUnpackNar(sampleZipFile, extractDirectory, extractCounter::incrementAndGet);
FileUtils.deleteFile(narWorkingDirectory, true);
NarUnpacker.doUnpackNar(sampleZipFile, extractDirectory, extractCounter::incrementAndGet);

assertEquals(extractCounter.get(), 2);
}

@Test
void shouldExtractFilesOnceInDifferentProcess() throws InterruptedException {
int processes = 5;
Expand Down

0 comments on commit 03330b3

Please sign in to comment.