/* VMChannel.java -- Native interface suppling channel operations. Copyright (C) 2006 Free Software Foundation, Inc. The original of this file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GNU Classpath 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 for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ package gnu.java.nio; import gnu.classpath.Configuration; import java.io.IOException; import java.net.Inet4Address; import java.net.Inet6Address; import java.net.InetAddress; import java.net.InetSocketAddress; import java.net.SocketAddress; import java.net.SocketException; import java.nio.ByteBuffer; import java.nio.MappedByteBuffer; import org.jikesrvm.VM; import org.jikesrvm.mm.mminterface.MemoryManager; import org.jikesrvm.runtime.FileSystem; import org.vmmagic.pragma.NonMovingAllocation; /** * Native interface to support configuring of channel to run in a non-blocking * manner and support scatter/gather io operations. * * JikesRVM-specific implementation by Robin Garner and Filip Pizlo. */ public final class VMChannel { /** * Our reference implementation uses an integer to store the native * file descriptor. */ private final State nfd; private Kind kind; public VMChannel() { // XXX consider adding security check here, so only Classpath // code may create instances. this.nfd = new State(); kind = Kind.OTHER; } /** * This constructor is used by the POSIX reference implementation; * other virtual machines need not support it. * * <strong>Important:</strong> do not call this in library code that is * not specific to Classpath's reference implementation. * * @param native_fd The native file descriptor integer. * @throws IOException */ VMChannel(final int native_fd) throws IOException { this(); this.nfd.setNativeFD(native_fd); } public State getState() { return nfd; } /** * Don't do fast I/O for the standard file descriptors - these are used * for throwing exceptions, so may not be able to allocate. * * Cache the max of the IDs to avoid gratuitous native calls. */ private static int MAX_STANDARD_FD; private static int max(int[] values) { int result = values[0]; for (int i : values) if (i > result) result = i; return result; } static { // load the shared library needed for native methods. if (Configuration.INIT_LOAD_LIBRARY) { System.loadLibrary ("javanio"); } initIDs(); MAX_STANDARD_FD = max(new int[] {stdin_fd(),stdin_fd(),stderr_fd()}); } public static VMChannel getStdin() throws IOException { return new VMChannel(stdin_fd()); } public static VMChannel getStdout() throws IOException { return new VMChannel(stdout_fd()); } public static VMChannel getStderr() throws IOException { return new VMChannel(stderr_fd()); } private static native int stdin_fd(); private static native int stdout_fd(); private static native int stderr_fd(); /** * Set the file descriptor to have the required blocking * setting. * * @param blocking The blocking flag to set. */ public void setBlocking(boolean blocking) throws IOException { setBlocking(nfd.getNativeFD(), blocking); } private static native void setBlocking(int fd, boolean blocking) throws IOException; public int available() throws IOException { return available(nfd.getNativeFD()); } private static native int available(int native_fd) throws IOException; /** * A thread-local store of non-moving buffers. Used to perform IO to * in cases where the actual user buffer is in a moving space. */ private static class LocalByteArray extends ThreadLocal<byte[]> { private static final int INITIAL_BUFFER_SIZE = 8192; @NonMovingAllocation protected byte[] initialValue() { return new byte[INITIAL_BUFFER_SIZE]; } /** * Get a buffer, ensuring it is at least 'len' in size * @param len Minimum length of the buffer * @return a new or recycled buffer */ @NonMovingAllocation public byte[] get(int len) { byte[] buf = get(); if (buf.length < len) { /* Allocate a new buffer by successive doubling of capacity */ int newCapacity = buf.length << 1; while (newCapacity < len) newCapacity <<= 1; buf = new byte[newCapacity]; set(buf); } return buf; } } /** * Thread-local buffer for VM-side buffering of write calls */ private static final LocalByteArray localByteArray = new LocalByteArray() ; /** * Read the specified byte buffer. * * @param dst * @return the number of bytes actually read * @throws IOException */ public int read(ByteBuffer dst) throws IOException { return read(dst,dst.position(),dst.limit()-dst.position()); } /** * Read a byte buffer, given a starting position and length. * Looks at the type of buffer and decides which is the fastest way * to perform the write. If the buffer is backed by a byte array, use * the internal method, otherwise push it out to classpath's native function * (the slow way). * * @param dst * @param pos * @param len * @return the number of bytes actually read * @throws IOException */ private int read(ByteBuffer dst, int pos, int len) throws IOException { int bytes; if (len == 1) { int b = FileSystem.readByte(nfd.getNativeFD()); if (b >= 0) { dst.put((byte)(b & 0xFF)); dst.position(pos+1); return 1; } else bytes = b; } else if (dst.hasArray()) { bytes = read(dst.array(),pos,len); } else { return read(nfd.getNativeFD(), dst); } if (bytes > 0) dst.position(pos+bytes); return bytes; } /** * Reads a byte array directly. Performs optimal buffering. * * If the target buffer is pinned, use it directly. Otherwise * allocate one of the thread-local buffers, perform the IO to * that, and copy the result to the target array. * * @param dst Byte array to read to * @return Number of bytes read. * @throws IOException If an error occurs or dst is not a direct buffers. */ private int read(byte[] dst, int pos, int len) throws IOException { if (MemoryManager.willNeverMove(dst)) { return read(nfd.getNativeFD(),dst,pos,len); } else { byte[] buffer; // Rebuffer the IO in a thread-local byte array buffer = localByteArray.get(len); /* perform the read */ int bytes = read(nfd.getNativeFD(),buffer,0,len); if (bytes > 0) System.arraycopy(buffer,0,dst,pos,bytes); return bytes; } } /** * Use JikesRVM's internal read function - the fast way. * * @param fd File descriptor * @param dst Destination buffer * @param position Starting offset in the buffer * @param len Number of bytes to read * @return Number of bytes read, or -1 for end of file. * @throws IOException */ private static int read(int fd, byte[] dst, int position, int len) throws IOException { if (VM.VerifyAssertions) VM._assert(MemoryManager.willNeverMove(dst)); int bytes = FileSystem.readBytes(fd,dst,position,len); if (bytes < 0) { throw new IOException("Error code "+Integer.toString(bytes)); } if (bytes == 0) { bytes = -1; } return bytes; } /** * Classpath's native read method. Slow, due to the amount of JNI processing. * * @param fd * @param dst * @return the number of bytes actually read * @throws IOException */ private static native int read(int fd, ByteBuffer dst) throws IOException; /** * Read a single byte. * * @return The byte read, or -1 on end of file. * @throws IOException */ public int read() throws IOException { //return read(nfd.getNativeFD()); int result = FileSystem.readByte(nfd.getNativeFD()); if (result < -1) { throw new IOException("Error code "+Integer.toString(result)); } return result; } private static native int read(int fd) throws IOException; /** * Reads into byte buffers directly using the supplied file descriptor. * Assumes that the buffer list contains DirectBuffers. Will perform a * scattering read. * * @param dsts An array direct byte buffers. * @param offset Index of the first buffer to read to. * @param length The number of buffers to read to. * @return Number of bytes read. * @throws IOException If an error occurs or the dsts are not direct buffers. */ public long readScattering(ByteBuffer[] dsts, int offset, int length) throws IOException { if (offset + length > dsts.length) throw new IndexOutOfBoundsException("offset + length > dsts.length"); return readScattering(nfd.getNativeFD(), dsts, offset, length); } private static native long readScattering(int fd, ByteBuffer[] dsts, int offset, int length) throws IOException; /** * Receive a datagram on this channel, returning the host address * that sent the datagram. * * @param dst Where to store the datagram. * @return The host address that sent the datagram. * @throws IOException */ public SocketAddress receive(ByteBuffer dst) throws IOException { if (kind != Kind.SOCK_DGRAM) throw new SocketException("not a datagram socket"); ByteBuffer hostPort = ByteBuffer.allocateDirect(18); int hostlen = receive(nfd.getNativeFD(), dst, hostPort); if (hostlen == 0) return null; if (hostlen == 4) // IPv4 { byte[] addr = new byte[4]; hostPort.get(addr); int port = hostPort.getShort() & 0xFFFF; return new InetSocketAddress(Inet4Address.getByAddress(addr), port); } if (hostlen == 16) // IPv6 { byte[] addr = new byte[16]; hostPort.get(addr); int port = hostPort.getShort() & 0xFFFF; return new InetSocketAddress(Inet6Address.getByAddress(addr), port); } throw new SocketException("host address received with invalid length: " + hostlen); } private static native int receive (int fd, ByteBuffer dst, ByteBuffer address) throws IOException; /** * Writes from a byte array using the supplied file descriptor. * * @param src The source buffer. * @return Number of bytes written. * @throws IOException */ public int write(byte[] src, int pos, int len) throws IOException { if (MemoryManager.willNeverMove(src)) { return write(nfd.getNativeFD(), src, pos, len); } else { byte[] buffer; // Rebuffer the IO in a thread-local DirectBuffer buffer = localByteArray.get(len); if (VM.VerifyAssertions) VM._assert(MemoryManager.willNeverMove(buffer)); System.arraycopy(src, pos, buffer,0,len); return write(nfd.getNativeFD(),buffer,0,len); } } public int write(ByteBuffer src, int pos, int len) throws IOException { int bytes; if (len == 1) { bytes = FileSystem.writeByte(nfd.getNativeFD(),src.get(pos)); } else if (src.hasArray()) { bytes = write(src.array(),pos,len); } else { // Use classpath version, which does buffer housekeeping return write(nfd.getNativeFD(), src); } if (bytes > 0) src.position(src.position()+bytes); return bytes; } public int write(ByteBuffer src) throws IOException { if (nfd.getNativeFD() > MAX_STANDARD_FD) return write(src,src.position(),src.limit()-src.position()); else return write(nfd.getNativeFD(),src); } /** * Use JikesRVM's internal read function - the fast way. * * @param fd File descriptor * @param src SOurce buffer * @param pos Starting offset in the buffer * @param len Number of bytes to write * @return Number of bytes written. * @throws IOException */ private static int write(int fd, byte[] src, int pos, int len) throws IOException { int bytes = FileSystem.writeBytes(fd,src,pos,len); if (bytes < 0) throw new IOException("Error code "+Integer.toString(bytes)); return bytes; } /** * Classpath's native write method. Slow, due to the amount of JNI processing. * * @param fd * @param src * @return Number of bytes written * @throws IOException */ private static native int write(int fd, ByteBuffer src) throws IOException; /** * Writes from byte buffers directly using the supplied file descriptor. * Assumes the that buffer list contains DirectBuffers. Will perform * as gathering write. * * @param srcs * @param offset * @param length * @return Number of bytes written. * @throws IOException */ public long writeGathering(ByteBuffer[] srcs, int offset, int length) throws IOException { if (offset + length > srcs.length) throw new IndexOutOfBoundsException("offset + length > srcs.length"); // A gathering write is limited to 16 buffers; when writing, ensure // that we have at least one buffer with something in it in the 16 // buffer window starting at offset. while (!srcs[offset].hasRemaining() && offset < srcs.length) offset++; // There are no buffers with anything to write. if (offset == srcs.length) return 0; // If we advanced `offset' so far that we don't have `length' // buffers left, reset length to only the remaining buffers. if (length > srcs.length - offset) length = srcs.length - offset; return writeGathering(nfd.getNativeFD(), srcs, offset, length); } private native long writeGathering(int fd, ByteBuffer[] srcs, int offset, int length) throws IOException; /** * Send a datagram to the given address. * * @param src The source buffer. * @param dst The destination address. * @return The number of bytes written. * @throws IOException */ public int send(ByteBuffer src, InetSocketAddress dst) throws IOException { InetAddress addr = dst.getAddress(); if (addr == null) throw new NullPointerException(); if (addr instanceof Inet4Address) return send(nfd.getNativeFD(), src, addr.getAddress(), dst.getPort()); else if (addr instanceof Inet6Address) return send6(nfd.getNativeFD(), src, addr.getAddress(), dst.getPort()); else throw new SocketException("unrecognized inet address type"); } // Send to an IPv4 address. private static native int send(int fd, ByteBuffer src, byte[] addr, int port) throws IOException; // Send to an IPv6 address. private static native int send6(int fd, ByteBuffer src, byte[] addr, int port) throws IOException; /** * Write a single byte. * * @param b The byte to write. * @throws IOException */ public void write(int b) throws IOException { //write(nfd.getNativeFD(), b); int result = FileSystem.writeByte(nfd.getNativeFD(), b); if (result < 0) { throw new IOException("Error code "+Integer.toString(result)); } } private static native void write(int fd, int b) throws IOException; private native static void initIDs(); // Network (socket) specific methods. /** * Create a new socket. This method will initialize the native file * descriptor state of this instance. * * @param stream Whether or not to create a streaming socket, or a datagram * socket. * @throws IOException If creating a new socket fails, or if this * channel already has its native descriptor initialized. */ public void initSocket(boolean stream) throws IOException { if (nfd.isValid()) throw new IOException("native FD already initialized"); if (stream) kind = Kind.SOCK_STREAM; else kind = Kind.SOCK_DGRAM; nfd.setNativeFD(socket(stream)); } /** * Create a new socket, returning the native file descriptor. * * @param stream Set to true for streaming sockets; false for datagrams. * @return The native file descriptor. * @throws IOException If creating the socket fails. */ private static native int socket(boolean stream) throws IOException; /** * Connect the underlying socket file descriptor to the remote host. * * @param saddr The address to connect to. * @param timeout The connect timeout to use for blocking connects. * @return True if the connection succeeded; false if the file descriptor * is in non-blocking mode and the connection did not immediately * succeed. * @throws IOException If an error occurs while connecting. */ public boolean connect(InetSocketAddress saddr, int timeout) throws SocketException { int fd; InetAddress addr = saddr.getAddress(); // Translates an IOException into a SocketException to conform // to the throws clause. try { fd = nfd.getNativeFD(); } catch (IOException ioe) { throw new SocketException(ioe.getMessage()); } if (addr instanceof Inet4Address) return connect(fd, addr.getAddress(), saddr.getPort(), timeout); if (addr instanceof Inet6Address) return connect6(fd, addr.getAddress(), saddr.getPort(), timeout); throw new SocketException("unsupported internet address"); } private static native boolean connect(int fd, byte[] addr, int port, int timeout) throws SocketException; private static native boolean connect6(int fd, byte[] addr, int port, int timeout) throws SocketException; /** * Disconnect this channel, if it is a datagram socket. Disconnecting * a datagram channel will disassociate it from any address, so the * socket will remain open, but can send and receive datagrams from * any address. * * @throws IOException If disconnecting this channel fails, or if this * channel is not a datagram channel. */ public void disconnect() throws IOException { if (kind != Kind.SOCK_DGRAM) throw new IOException("can only disconnect datagram channels"); disconnect(nfd.getNativeFD()); } private static native void disconnect(int fd) throws IOException; public InetSocketAddress getLocalAddress() throws IOException { if (!nfd.isValid()) return null; ByteBuffer name = ByteBuffer.allocateDirect(18); int namelen = getsockname(nfd.getNativeFD(), name); if (namelen == 0) // not bound return null; // XXX return some wildcard? if (namelen == 4) { byte[] addr = new byte[4]; name.get(addr); int port = name.getShort() & 0xFFFF; return new InetSocketAddress(Inet4Address.getByAddress(addr), port); } if (namelen == 16) { byte[] addr = new byte[16]; name.get(addr); int port = name.getShort() & 0xFFFF; return new InetSocketAddress(Inet6Address.getByAddress(addr), port); } throw new SocketException("invalid address length"); } private static native int getsockname(int fd, ByteBuffer name) throws IOException; /** * Returns the socket address of the remote peer this channel is connected * to, or null if this channel is not yet connected. * * @return The peer address. * @throws IOException */ public InetSocketAddress getPeerAddress() throws IOException { if (!nfd.isValid()) return null; ByteBuffer name = ByteBuffer.allocateDirect(18); int namelen = getpeername (nfd.getNativeFD(), name); if (namelen == 0) // not connected yet return null; if (namelen == 4) // IPv4 { byte[] addr = new byte[4]; name.get(addr); int port = name.getShort() & 0xFFFF; return new InetSocketAddress(Inet4Address.getByAddress(addr), port); } else if (namelen == 16) // IPv6 { byte[] addr = new byte[16]; name.get(addr); int port = name.getShort() & 0xFFFF; return new InetSocketAddress(Inet6Address.getByAddress(addr), port); } throw new SocketException("invalid address length"); } /* * The format here is the peer address, followed by the port number. * The returned value is the length of the peer address; thus, there * will be LEN + 2 valid bytes put into NAME. */ private static native int getpeername(int fd, ByteBuffer name) throws IOException; /** * Accept an incoming connection, returning a new VMChannel, or null * if the channel is nonblocking and no connection is pending. * * @return The accepted connection, or null. * @throws IOException If an IO error occurs. */ public VMChannel accept() throws IOException { int new_fd = accept(nfd.getNativeFD()); if (new_fd == -1) // non-blocking accept had no pending connection return null; return new VMChannel(new_fd); } private static native int accept(int native_fd) throws IOException; // File-specific methods. /** * Open a file at PATH, initializing the native state to operate on * that open file. * * @param path The absolute file path. * @throws IOException If the file cannot be opened, or if this * channel was previously initialized. */ public void openFile(String path, int mode) throws IOException { if (nfd.isValid() || nfd.isClosed()) throw new IOException("can't reinitialize this channel"); int fd = open(path, mode); nfd.setNativeFD(fd); kind = Kind.FILE; } private static native int open(String path, int mode) throws IOException; public long position() throws IOException { if (kind != Kind.FILE) throw new IOException("not a file"); return position(nfd.getNativeFD()); } private static native long position(int fd) throws IOException; public void seek(long pos) throws IOException { if (kind != Kind.FILE) throw new IOException("not a file"); seek(nfd.getNativeFD(), pos); } private static native void seek(int fd, long pos) throws IOException; public void truncate(long length) throws IOException { if (kind != Kind.FILE) throw new IOException("not a file"); truncate(nfd.getNativeFD(), length); } private static native void truncate(int fd, long len) throws IOException; public boolean lock(long pos, long len, boolean shared, boolean wait) throws IOException { if (kind != Kind.FILE) throw new IOException("not a file"); return lock(nfd.getNativeFD(), pos, len, shared, wait); } private static native boolean lock(int fd, long pos, long len, boolean shared, boolean wait) throws IOException; public void unlock(long pos, long len) throws IOException { if (kind != Kind.FILE) throw new IOException("not a file"); unlock(nfd.getNativeFD(), pos, len); } private static native void unlock(int fd, long pos, long len) throws IOException; public long size() throws IOException { if (kind != Kind.FILE) throw new IOException("not a file"); return size(nfd.getNativeFD()); } private static native long size(int fd) throws IOException; public MappedByteBuffer map(char mode, long position, int size) throws IOException { if (kind != Kind.FILE) throw new IOException("not a file"); return map(nfd.getNativeFD(), mode, position, size); } private static native MappedByteBuffer map(int fd, char mode, long position, int size) throws IOException; public boolean flush(boolean metadata) throws IOException { if (kind != Kind.FILE) throw new IOException("not a file"); return flush(nfd.getNativeFD(), metadata); } private static native boolean flush(int fd, boolean metadata) throws IOException; // Close. /** * Close this socket. The socket is also automatically closed when this * object is finalized. * * @throws IOException If closing the socket fails, or if this object has * no open socket. */ public void close() throws IOException { nfd.close(); } static native void close(int native_fd) throws IOException; /** * <p>Provides a simple mean for the JNI code to find out whether the * current thread was interrupted by a call to Thread.interrupt().</p> * * @return true if the current thread was interrupted, false otherwise */ static boolean isThreadInterrupted() { return Thread.currentThread().isInterrupted(); } // Inner classes. /** * A wrapper for a native file descriptor integer. This tracks the state * of an open file descriptor, and ensures that * * This class need not be fully supported by virtual machines; if a * virtual machine does not use integer file descriptors, or does and * wishes to hide that, then the methods of this class may be stubbed out. * * System-specific classes that depend on access to native file descriptor * integers SHOULD declare this fact. */ public final class State { private int native_fd; private boolean valid; private boolean closed; State() { native_fd = -1; valid = false; closed = false; } public boolean isValid() { return valid; } public boolean isClosed() { return closed; } public int getNativeFD() throws IOException { if (!valid) throw new IOException("invalid file descriptor"); return native_fd; } void setNativeFD(final int native_fd) throws IOException { if (valid) throw new IOException("file descriptor already initialized"); this.native_fd = native_fd; valid = true; } public void close() throws IOException { if (!valid) throw new IOException("invalid file descriptor"); try { VMChannel.close(native_fd); } finally { valid = false; closed = true; } } public String toString() { if (closed) return "<<closed>>"; if (!valid) return "<<invalid>>"; return String.valueOf(native_fd); } protected void finalize() throws Throwable { try { if (valid) close(); } finally { super.finalize(); } } } /** * An enumeration of possible kinds of channel. */ static class Kind // XXX enum { /** A streaming (TCP) socket. */ static final Kind SOCK_STREAM = new Kind(); /** A datagram (UDP) socket. */ static final Kind SOCK_DGRAM = new Kind(); /** A file. */ static final Kind FILE = new Kind(); /** Something else; not a socket or file. */ static final Kind OTHER = new Kind(); private Kind() { } } }