lsof is a nice tool for Unix, showing all currently open file handles.

Does anyone know a similar tool that would show all open files inside a running JVM (via JVMTI or any similar interface)?

In this particular case, it would be sufficient for me to know which class has a handle open. Method/line or even an entire chain to GC root would be fantastic, but handler owner class is already a good start.

I know I could make a heap dump, open it in a profiler and find this out, but this is a tedious task, especially for the big heaps.

link|improve this question

76% accept rate
I would suggest you use a better profiler. ;) In YourKit I can see all the open files while the application is running. – Peter Lawrey Jun 22 '11 at 14:51
I use YourKit, but you rarely have profiling enabled on live environments. Or does YourKit support showing file handles from dumps? – mindas Jun 22 '11 at 14:53
It supports showing FileDescriptor from a dump by searching by class which is used for all open files. You can see where references to any file are being held. – Peter Lawrey Jun 22 '11 at 15:01
feedback

2 Answers

The JVMTI option sounds like it wouldn't be a bad choice. The big issue would be ensuring you wrap everything that may open a file handle: you would basically have to go through the JDK source code and find every native function that did a file open (littered throughout java.io., java.nio., I'd think java.net.* as well if you consider sockets as file handles, and just about everywhere else that a file handle may be opened by a native function) and then wrap them all with the SetNativeMethodPrefix call.

I'm assuming that is what some of the profiling folks do: however if you're not required to do this listing in real time then I'd think it would be WAY easier to use lsof or handle (on Windows platforms) and filter for your JVM's process id.

link|improve this answer
feedback

bloody good idea mindas..... there will be a dozen or so native methods that open files..... instrument them all with BCI and keep the stack whilst watching for the close.....

should I do it for you?

BTW I hate this YourKit obsession in the industry... jealousy I guess :-)

link|improve this answer
I haven't thought of native methods, but I guess that would be necessary as there are more than one way to manipulate files in Java (esp in JDK 7). Slightly offtopic- there is a similar counterpart tool for top, so why not lsof? – mindas Jun 22 '11 at 15:20
all JVM file manipulation will ultimately be native.... you can download openJDK and literally see the calls to the JVM's C++ OS:FileOpen (or whatever it's called) .... interestingly in reverse this gives you the java native JDK methods that will lead to an OS file open for any JVM... instrument those (capturing fd's or String filenames) and you have your tool.... or better still contribute to OpenJDK by adding open file tracking right into the JVM.... I've always been a fan of a built in ncurses console for JVM internals... me likey likey 80x24 character stuff – Paul Anderson Jun 22 '11 at 17:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.