src/java.base/unix/classes/sun/nio/ch/InheritedChannel.java
author michaelm
Tue, 24 Sep 2019 16:19:11 +0100
changeset 58295 7973073dd048
parent 47216 71c04702a3d5
child 58801 119ac9128c1b
permissions -rw-r--r--
8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket Reviewed-by: alanb, chegar
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;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.net.InetAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.net.InetSocketAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.nio.channels.Channel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.nio.channels.SocketChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.nio.channels.ServerSocketChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.nio.channels.DatagramChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.nio.channels.spi.SelectorProvider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
class InheritedChannel {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    // the "types" of socket returned by soType0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    private static final int UNKNOWN            = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    private static final int SOCK_STREAM        = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    private static final int SOCK_DGRAM         = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    46
    // socket address type
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    47
    private static final int AF_UNKNOWN         = -1;
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    48
    private static final int AF_INET            = 1;
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    49
    private static final int AF_INET6           = 2;
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    50
    private static final int AF_UNIX            = 3;
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    51
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    // oflag values when opening a file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    private static final int O_RDONLY           = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    private static final int O_WRONLY           = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    private static final int O_RDWR             = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * In order to "detach" the standard streams we dup them to /dev/null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * In order to reduce the possibility of an error at close time we
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * open /dev/null early - that way we know we won't run out of file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * descriptors at close time. This makes the close operation a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * simple dup2 operation for each of the standard streams.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    private static int devnull = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    private static void detachIOStreams() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            dup2(devnull, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            dup2(devnull, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            dup2(devnull, 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            // this shouldn't happen
10419
12c063b39232 7084245: Update usages of InternalError to use exception chaining
sherman
parents: 10351
diff changeset
    73
            throw new InternalError(ioe);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * Override the implCloseSelectableChannel for each channel type - this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * allows us to "detach" the standard streams after closing and ensures
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * that the underlying socket really closes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    public static class InheritedSocketChannelImpl extends SocketChannelImpl {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        InheritedSocketChannelImpl(SelectorProvider sp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
                                   FileDescriptor fd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                                   InetSocketAddress remote)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            super(sp, fd, remote);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        protected void implCloseSelectableChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            super.implCloseSelectableChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            detachIOStreams();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    98
    public static class InheritedUnixChannelImpl extends UnixDomainSocketChannelImpl {
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
    99
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   100
        InheritedUnixChannelImpl(FileDescriptor fd)
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   101
            throws IOException
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   102
        {
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   103
            super(fd);
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   104
        }
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   105
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   106
        protected void implCloseSelectableChannel() throws IOException {
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   107
            super.implCloseChannel();
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   108
            detachIOStreams();
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   109
        }
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   110
    }
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   111
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    public static class InheritedServerSocketChannelImpl extends
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        ServerSocketChannelImpl {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        InheritedServerSocketChannelImpl(SelectorProvider sp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                                         FileDescriptor fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        {
6525
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
   119
            super(sp, fd, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        protected void implCloseSelectableChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            super.implCloseSelectableChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            detachIOStreams();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    public static class InheritedDatagramChannelImpl extends
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        DatagramChannelImpl {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        InheritedDatagramChannelImpl(SelectorProvider sp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                                     FileDescriptor fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            super(sp, fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        protected void implCloseSelectableChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            super.implCloseSelectableChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            detachIOStreams();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * If there's a SecurityManager then check for the appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * RuntimePermission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    private static void checkAccess(Channel c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            sm.checkPermission(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                new RuntimePermission("inheritedChannel")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * If standard inherited channel is connected to a socket then return a Channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * of the appropriate type based standard input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    private static Channel createChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        // dup the file descriptor - we do this so that for two reasons :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        // 1. Avoids any timing issues with FileDescriptor.in being closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        //    or redirected while we create the channel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        // 2. Allows streams based on file descriptor 0 to co-exist with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        //    the channel (closing one doesn't impact the other)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        int fdVal = dup(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        // Examine the file descriptor - if it's not a socket then we don't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        // create a channel so we release the file descriptor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        int st;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        st = soType0(fdVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        if (st != SOCK_STREAM && st != SOCK_DGRAM) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            close0(fdVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        // Next we create a FileDescriptor for the dup'ed file descriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        // Have to use reflection and also make assumption on how FD
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        // is implemented.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
25798
0b2f54e47bc4 8054050: Fix stay raw and unchecked lint warnings in core libs
darcy
parents: 23010
diff changeset
   187
        Class<?> paramTypes[] = { int.class };
10351
e2cef0ef9e28 7081796: (ch) rawtype warning in sun.nio.ch.InheritedChannel
alanb
parents: 7668
diff changeset
   188
        Constructor<?> ctr = Reflect.lookupConstructor("java.io.FileDescriptor",
e2cef0ef9e28 7081796: (ch) rawtype warning in sun.nio.ch.InheritedChannel
alanb
parents: 7668
diff changeset
   189
                                                       paramTypes);
37521
b6e0f285c998 8145468: update java.lang APIs with new deprecations
smarks
parents: 26207
diff changeset
   190
        Object args[] = { Integer.valueOf(fdVal) };
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        FileDescriptor fd = (FileDescriptor)Reflect.invoke(ctr, args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        // Now create the channel. If the socket is a streams socket then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        // we see if tthere is a peer (ie: connected). If so, then we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        // create a SocketChannel, otherwise a ServerSocketChannel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        // If the socket is a datagram socket then create a DatagramChannel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        SelectorProvider provider = SelectorProvider.provider();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        assert provider instanceof sun.nio.ch.SelectorProviderImpl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        Channel c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        if (st == SOCK_STREAM) {
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   204
            int family = addressFamily(fdVal);
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   205
            if (family == AF_UNKNOWN)
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   206
                return null;
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   207
            if (family == AF_UNIX) {
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   208
                if (isConnected(fdVal)) {
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   209
                    return new InheritedUnixChannelImpl(fd);
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   210
                } else {
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   211
                    // listener. unsupported.
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   212
                    return null;
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   213
                }
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   214
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            InetAddress ia = peerAddress0(fdVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            if (ia == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
               c = new InheritedServerSocketChannelImpl(provider, fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
               int port = peerPort0(fdVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
               assert port > 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
               InetSocketAddress isa = new InetSocketAddress(ia, port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
               c = new InheritedSocketChannelImpl(provider, fd, isa);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            c = new InheritedDatagramChannelImpl(provider, fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        return c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    private static boolean haveChannel = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    private static Channel channel = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * Returns a Channel representing the inherited channel if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * inherited channel is a stream connected to a network socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    public static synchronized Channel getChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        if (devnull < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            devnull = open0("/dev/null", O_RDWR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        // If we don't have the channel try to create it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        if (!haveChannel) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            channel = createChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
            haveChannel = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        // if there is a channel then do the security check before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        // returning it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        if (channel != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            checkAccess(channel);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        return channel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    // -- Native methods --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
26207
a02f6165d5be 8055955: (ch) Remove unnecessary initialization of InetAddress from FileChannel
chegar
parents: 25859
diff changeset
   259
    private static native void initIDs();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    private static native int dup(int fd) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    private static native void dup2(int fd, int fd2) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    private static native int open0(String path, int oflag) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    private static native void close0(int fd) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    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
   265
    private static native int addressFamily(int fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    private static native InetAddress peerAddress0(int fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    private static native int peerPort0(int fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
58295
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   269
    // 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
   270
    private static native boolean isConnected(int fd);
7973073dd048 8231187: SelectorProvider.inheritedChannel() returns TCP socket channel for Unix domain socket
michaelm
parents: 47216
diff changeset
   271
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    static {
19607
bee007586d06 8022594: Potential deadlock in <clinit> of sun.nio.ch.Util/IOUtil
alanb
parents: 14342
diff changeset
   273
        IOUtil.load();
26207
a02f6165d5be 8055955: (ch) Remove unnecessary initialization of InetAddress from FileChannel
chegar
parents: 25859
diff changeset
   274
        initIDs();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
}