src/java.base/unix/classes/sun/nio/ch/InheritedChannel.java
author michaelm
Fri, 25 Oct 2019 15:56:35 +0100
branchunixdomainchannels
changeset 58801 119ac9128c1b
parent 58295 7973073dd048
child 58847 692de65ab293
permissions -rw-r--r--
Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
     2
 * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.nio.ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.lang.reflect.Constructor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.FileDescriptor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.IOException;
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
    31
import java.io.UncheckedIOException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.net.InetAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.net.InetSocketAddress;
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
    34
import java.net.Socket;
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
    35
import java.net.SocketAddress;
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
    36
import java.net.SocketOption;
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
    37
import java.nio.ByteBuffer;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.nio.channels.Channel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.nio.channels.SocketChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.nio.channels.ServerSocketChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.nio.channels.DatagramChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.nio.channels.spi.SelectorProvider;
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
    43
import java.util.Set;
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
    44
import java.util.function.BiFunction;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
    46
public class InheritedChannel {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    // the "types" of socket returned by soType0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private static final int UNKNOWN            = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    private static final int SOCK_STREAM        = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    private static final int SOCK_DGRAM         = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    53
    // socket address type
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    54
    private static final int AF_UNKNOWN         = -1;
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    55
    private static final int AF_INET            = 1;
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    56
    private static final int AF_INET6           = 2;
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    57
    private static final int AF_UNIX            = 3;
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    58
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    // oflag values when opening a file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    private static final int O_RDONLY           = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    private static final int O_WRONLY           = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    private static final int O_RDWR             = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * In order to "detach" the standard streams we dup them to /dev/null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * In order to reduce the possibility of an error at close time we
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * open /dev/null early - that way we know we won't run out of file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * descriptors at close time. This makes the close operation a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * simple dup2 operation for each of the standard streams.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    private static int devnull = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    private static void detachIOStreams() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            dup2(devnull, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            dup2(devnull, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            dup2(devnull, 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            // this shouldn't happen
10419
12c063b39232 7084245: Update usages of InternalError to use exception chaining
sherman
parents: 10351
diff changeset
    80
            throw new InternalError(ioe);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * Override the implCloseSelectableChannel for each channel type - this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * allows us to "detach" the standard streams after closing and ensures
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * that the underlying socket really closes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     */
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
    89
    public static class InheritedInetSocketChannelImpl extends InetSocketChannelImpl {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
    91
        InheritedInetSocketChannelImpl(SelectorProvider sp,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                                   FileDescriptor fd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                                   InetSocketAddress remote)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            super(sp, fd, remote);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        protected void implCloseSelectableChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            super.implCloseSelectableChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            detachIOStreams();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
   105
    public static class InheritedUnixSocketChannelImpl extends UnixDomainSocketChannelImpl {
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   106
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
   107
        InheritedUnixSocketChannelImpl(SelectorProvider sp, FileDescriptor fd)
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   108
            throws IOException
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   109
        {
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
   110
            super(sp, fd, true);
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   111
        }
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   112
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
   113
        @Override
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   114
        protected void implCloseSelectableChannel() throws IOException {
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
   115
            super.localImplCloseSelectableChannel();
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   116
            detachIOStreams();
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   117
        }
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   118
    }
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   119
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
   120
    public static class InheritedInetServerSocketChannelImpl extends
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
   121
        InetServerSocketChannelImpl {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
   123
        InheritedInetServerSocketChannelImpl(SelectorProvider sp,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                                         FileDescriptor fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        {
6525
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
   127
            super(sp, fd, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        protected void implCloseSelectableChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            super.implCloseSelectableChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            detachIOStreams();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    public static class InheritedDatagramChannelImpl extends
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        DatagramChannelImpl {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        InheritedDatagramChannelImpl(SelectorProvider sp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                                     FileDescriptor fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            super(sp, fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        protected void implCloseSelectableChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            super.implCloseSelectableChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            detachIOStreams();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * If there's a SecurityManager then check for the appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * RuntimePermission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    private static void checkAccess(Channel c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            sm.checkPermission(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                new RuntimePermission("inheritedChannel")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * If standard inherited channel is connected to a socket then return a Channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * of the appropriate type based standard input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    private static Channel createChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        // dup the file descriptor - we do this so that for two reasons :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        // 1. Avoids any timing issues with FileDescriptor.in being closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        //    or redirected while we create the channel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        // 2. Allows streams based on file descriptor 0 to co-exist with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        //    the channel (closing one doesn't impact the other)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        int fdVal = dup(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        // Examine the file descriptor - if it's not a socket then we don't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        // create a channel so we release the file descriptor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        int st;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        st = soType0(fdVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        if (st != SOCK_STREAM && st != SOCK_DGRAM) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            close0(fdVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        // Next we create a FileDescriptor for the dup'ed file descriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        // Have to use reflection and also make assumption on how FD
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        // is implemented.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
25798
0b2f54e47bc4 8054050: Fix stay raw and unchecked lint warnings in core libs
darcy
parents: 23010
diff changeset
   195
        Class<?> paramTypes[] = { int.class };
10351
e2cef0ef9e28 7081796: (ch) rawtype warning in sun.nio.ch.InheritedChannel
alanb
parents: 7668
diff changeset
   196
        Constructor<?> ctr = Reflect.lookupConstructor("java.io.FileDescriptor",
e2cef0ef9e28 7081796: (ch) rawtype warning in sun.nio.ch.InheritedChannel
alanb
parents: 7668
diff changeset
   197
                                                       paramTypes);
37521
b6e0f285c998 8145468: update java.lang APIs with new deprecations
smarks
parents: 26207
diff changeset
   198
        Object args[] = { Integer.valueOf(fdVal) };
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        FileDescriptor fd = (FileDescriptor)Reflect.invoke(ctr, args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        // Now create the channel. If the socket is a streams socket then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        // we see if tthere is a peer (ie: connected). If so, then we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        // create a SocketChannel, otherwise a ServerSocketChannel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        // If the socket is a datagram socket then create a DatagramChannel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        SelectorProvider provider = SelectorProvider.provider();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        assert provider instanceof sun.nio.ch.SelectorProviderImpl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        Channel c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        if (st == SOCK_STREAM) {
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   212
            int family = addressFamily(fdVal);
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   213
            if (family == AF_UNKNOWN)
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   214
                return null;
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   215
            if (family == AF_UNIX) {
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   216
                if (isConnected(fdVal)) {
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
   217
                    return new InheritedUnixSocketChannelImpl(provider, fd);
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   218
                } else {
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   219
                    // listener. unsupported.
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   220
                    return null;
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   221
                }
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   222
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            InetAddress ia = peerAddress0(fdVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
            if (ia == null) {
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
   225
               c = new InheritedInetServerSocketChannelImpl(provider, fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
               int port = peerPort0(fdVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
               assert port > 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
               InetSocketAddress isa = new InetSocketAddress(ia, port);
58801
119ac9128c1b Initial implementation of unix domain channels. See j.n.c.{Server}SocketChannel apidoc
michaelm
parents: 58295
diff changeset
   230
               c = new InheritedInetSocketChannelImpl(provider, fd, isa);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            c = new InheritedDatagramChannelImpl(provider, fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        return c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    private static boolean haveChannel = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    private static Channel channel = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * Returns a Channel representing the inherited channel if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * inherited channel is a stream connected to a network socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    public static synchronized Channel getChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        if (devnull < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
            devnull = open0("/dev/null", O_RDWR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        // If we don't have the channel try to create it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        if (!haveChannel) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            channel = createChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
            haveChannel = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        // if there is a channel then do the security check before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        // returning it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        if (channel != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            checkAccess(channel);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        return channel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    // -- Native methods --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
26207
a02f6165d5be 8055955: (ch) Remove unnecessary initialization of InetAddress from FileChannel
chegar
parents: 25859
diff changeset
   267
    private static native void initIDs();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    private static native int dup(int fd) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    private static native void dup2(int fd, int fd2) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    private static native int open0(String path, int oflag) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    private static native void close0(int fd) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    private static native int soType0(int fd);
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   273
    private static native int addressFamily(int fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    private static native InetAddress peerAddress0(int fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    private static native int peerPort0(int fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   277
    // return true if socket is connected to a peer
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   278
    private static native boolean isConnected(int fd);
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   279
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    static {
19607
bee007586d06 8022594: Potential deadlock in <clinit> of sun.nio.ch.Util/IOUtil
alanb
parents: 14342
diff changeset
   281
        IOUtil.load();
26207
a02f6165d5be 8055955: (ch) Remove unnecessary initialization of InetAddress from FileChannel
chegar
parents: 25859
diff changeset
   282
        initIDs();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
}