8147615: (fc) FileChannelImpl has no finalizer

Add a cleaner to close parent-less FileChannels

Reviewed-by: alanb, rriggs
This commit is contained in:
Brian Burkhalter 2017-10-10 09:55:14 -07:00
parent 78f24fb8a5
commit b890c3ce83
2 changed files with 101 additions and 2 deletions
src/java.base/share/classes/sun/nio/ch
test/jdk/java/nio/channels/FileChannel

@ -27,6 +27,7 @@ package sun.nio.ch;
import java.io.FileDescriptor;
import java.io.IOException;
import java.lang.ref.Cleaner.Cleanable;
import java.nio.ByteBuffer;
import java.nio.MappedByteBuffer;
import java.nio.channels.ClosedByInterruptException;
@ -47,6 +48,7 @@ import jdk.internal.misc.JavaIOFileDescriptorAccess;
import jdk.internal.misc.JavaNioAccess;
import jdk.internal.misc.SharedSecrets;
import jdk.internal.ref.Cleaner;
import jdk.internal.ref.CleanerFactory;
import sun.security.action.GetPropertyAction;
public class FileChannelImpl
@ -55,7 +57,7 @@ public class FileChannelImpl
// Memory allocation size for mapping buffers
private static final long allocationGranularity;
// Access to FileDispatcher internals
// Access to FileDescriptor internals
private static final JavaIOFileDescriptorAccess fdAccess =
SharedSecrets.getJavaIOFileDescriptorAccess();
@ -85,6 +87,9 @@ public class FileChannelImpl
// Positional-read is not interruptible
private volatile boolean uninterruptible;
// Cleanable with an action which closes this channel's file descriptor
private final Cleanable closer;
private FileChannelImpl(FileDescriptor fd, String path, boolean readable,
boolean writable, Object parent)
{
@ -94,6 +99,10 @@ public class FileChannelImpl
this.parent = parent;
this.path = path;
this.nd = new FileDispatcherImpl();
// Register a cleaning action if and only if there is no parent
// as the parent will take care of closing the file descriptor.
this.closer= parent != null ? null :
CleanerFactory.cleaner().register(this, () -> fdAccess.close(fd));
}
// Used by FileInputStream.getChannel(), FileOutputStream.getChannel
@ -143,6 +152,10 @@ public class FileChannelImpl
// that method will prevent this method from being reinvoked.
//
((java.io.Closeable)parent).close();
} else if (closer != null) {
// Perform the cleaning action so it is not redone when
// this channel becomes phantom reachable.
closer.clean();
} else {
fdAccess.close(fd);
}
@ -1237,5 +1250,4 @@ public class FileChannelImpl
IOUtil.load();
allocationGranularity = initIDs();
}
}

@ -0,0 +1,87 @@
/*
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/* @test
* @bug 8147615
* @summary Test whether an unreferenced FileChannel is actually cleaned
* @requires (os.family == "linux") | (os.family == "mac") | (os.family == "solaris") | (os.family == "aix")
* @modules java.management
* @run main/othervm CleanerTest
*/
import com.sun.management.UnixOperatingSystemMXBean;
import java.lang.management.ManagementFactory;
import java.lang.management.OperatingSystemMXBean;
import java.lang.ref.PhantomReference;
import java.lang.ref.Reference;
import java.lang.ref.ReferenceQueue;
import java.nio.channels.FileChannel;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
public class CleanerTest {
public static void main(String[] args) throws Throwable {
OperatingSystemMXBean mxBean =
ManagementFactory.getOperatingSystemMXBean();
UnixOperatingSystemMXBean unixMxBean = null;
if (mxBean instanceof UnixOperatingSystemMXBean) {
unixMxBean = (UnixOperatingSystemMXBean)mxBean;
} else {
System.out.println("Non-Unix system: skipping test.");
return;
}
Path path = Paths.get(System.getProperty("test.dir", "."), "junk");
try {
FileChannel fc = FileChannel.open(path, StandardOpenOption.CREATE,
StandardOpenOption.READ, StandardOpenOption.WRITE);
ReferenceQueue refQueue = new ReferenceQueue();
Reference fcRef = new PhantomReference(fc, refQueue);
long fdCount0 = unixMxBean.getOpenFileDescriptorCount();
fc = null;
// Perform repeated GCs until the reference has been enqueued.
do {
Thread.sleep(1);
System.gc();
} while (refQueue.poll() == null);
// Loop until the open file descriptor count has been decremented.
while (unixMxBean.getOpenFileDescriptorCount() > fdCount0 - 1) {
Thread.sleep(1);
}
long fdCount = unixMxBean.getOpenFileDescriptorCount();
if (fdCount != fdCount0 - 1) {
throw new RuntimeException("FD count expected " +
(fdCount0 - 1) + "; actual " + fdCount);
}
} finally {
Files.delete(path);
}
}
}