src/java.base/share/classes/sun/nio/ch/ServerSocketChannelImpl.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 36115 jdk/src/java.base/share/classes/sun/nio/ch/ServerSocketChannelImpl.java@0676e37a0b9c
child 48750 ffbb784a8873
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34774
diff changeset
     2
 * Copyright (c) 2000, 2016, 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: 2446
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: 2446
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: 2446
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2446
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2446
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.io.FileDescriptor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.net.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.nio.channels.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.nio.channels.spi.*;
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
    33
import java.util.*;
2446
07047237e4d4 4890703: Support SDP (sol)
alanb
parents: 2057
diff changeset
    34
import sun.net.NetHooks;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * An implementation of ServerSocketChannels
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
class ServerSocketChannelImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    extends ServerSocketChannel
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    implements SelChImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    // Used to make native close and configure calls
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    private static NativeDispatcher nd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    // Our file descriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private final FileDescriptor fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    // fd value needed for dev/poll. This value will remain valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    // even after the value in the file descriptor object has been set to -1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    private int fdVal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    // ID of native thread currently blocked in this channel, for signalling
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 29986
diff changeset
    56
    private volatile long thread;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    // Lock held by thread currently blocked in this channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    private final Object lock = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    // Lock held by any thread that modifies the state fields declared below
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    // DO NOT invoke a blocking I/O operation while holding this lock!
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    private final Object stateLock = new Object();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    // -- The following fields are protected by stateLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    // Channel state, increases monotonically
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    private static final int ST_UNINITIALIZED = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    private static final int ST_INUSE = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    private static final int ST_KILLED = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    private int state = ST_UNINITIALIZED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    // Binding
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
    74
    private InetSocketAddress localAddress; // null => unbound
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
18192
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
    76
    // set true when exclusive binding is on and SO_REUSEADDR is emulated
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
    77
    private boolean isReuseAddress;
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
    78
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    // Our socket adaptor, if any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    ServerSocket socket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    // -- End of fields protected by stateLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
6525
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    85
    ServerSocketChannelImpl(SelectorProvider sp) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        super(sp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        this.fd =  Net.serverSocket(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        this.fdVal = IOUtil.fdVal(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        this.state = ST_INUSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
6525
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    92
    ServerSocketChannelImpl(SelectorProvider sp,
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    93
                            FileDescriptor fd,
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
    94
                            boolean bound)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        super(sp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        this.fd =  fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        this.fdVal = IOUtil.fdVal(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        this.state = ST_INUSE;
6525
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
   101
        if (bound)
56be41b86ef8 6965072: Need API to create SDP sockets
alanb
parents: 5506
diff changeset
   102
            localAddress = Net.localAddress(fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    public ServerSocket socket() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            if (socket == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                socket = ServerSocketAdaptor.create(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            return socket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   113
    @Override
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   114
    public SocketAddress getLocalAddress() throws IOException {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   115
        synchronized (stateLock) {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   116
            if (!isOpen())
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   117
                throw new ClosedChannelException();
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   118
            return localAddress == null ? localAddress
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   119
                    : Net.getRevealedLocalAddress(
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   120
                          Net.asInetSocketAddress(localAddress));
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   121
        }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   122
    }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   123
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   124
    @Override
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   125
    public <T> ServerSocketChannel setOption(SocketOption<T> name, T value)
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   126
        throws IOException
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   127
    {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   128
        if (name == null)
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   129
            throw new NullPointerException();
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   130
        if (!supportedOptions().contains(name))
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   131
            throw new UnsupportedOperationException("'" + name + "' not supported");
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   132
        synchronized (stateLock) {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   133
            if (!isOpen())
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   134
                throw new ClosedChannelException();
25170
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   135
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   136
            if (name == StandardSocketOptions.IP_TOS) {
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   137
                ProtocolFamily family = Net.isIPv6Available() ?
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   138
                    StandardProtocolFamily.INET6 : StandardProtocolFamily.INET;
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   139
                Net.setSocketOption(fd, family, name, value);
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   140
                return this;
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   141
            }
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   142
18192
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   143
            if (name == StandardSocketOptions.SO_REUSEADDR &&
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   144
                    Net.useExclusiveBind())
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   145
            {
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   146
                // SO_REUSEADDR emulated when using exclusive bind
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   147
                isReuseAddress = (Boolean)value;
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   148
            } else {
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   149
                // no options that require special handling
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   150
                Net.setSocketOption(fd, Net.UNSPEC, name, value);
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   151
            }
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   152
            return this;
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   153
        }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   154
    }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   155
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   156
    @Override
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   157
    @SuppressWarnings("unchecked")
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   158
    public <T> T getOption(SocketOption<T> name)
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   159
        throws IOException
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   160
    {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   161
        if (name == null)
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   162
            throw new NullPointerException();
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   163
        if (!supportedOptions().contains(name))
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   164
            throw new UnsupportedOperationException("'" + name + "' not supported");
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   165
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   166
        synchronized (stateLock) {
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   167
            if (!isOpen())
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   168
                throw new ClosedChannelException();
18192
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   169
            if (name == StandardSocketOptions.SO_REUSEADDR &&
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   170
                    Net.useExclusiveBind())
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   171
            {
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   172
                // SO_REUSEADDR emulated when using exclusive bind
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   173
                return (T)Boolean.valueOf(isReuseAddress);
fa6bd0992104 7170730: Improve Windows network stack support.
khazra
parents: 14025
diff changeset
   174
            }
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   175
            // no options that require special handling
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   176
            return (T) Net.getSocketOption(fd, Net.UNSPEC, name);
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   177
        }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   178
    }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   179
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   180
    private static class DefaultOptionsHolder {
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   181
        static final Set<SocketOption<?>> defaultOptions = defaultOptions();
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   182
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   183
        private static Set<SocketOption<?>> defaultOptions() {
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 27300
diff changeset
   184
            HashSet<SocketOption<?>> set = new HashSet<>(2);
9679
d98ae8bc45fc 7042979: Rename StandardSocketOption and StandardWatchEventKind
alanb
parents: 7668
diff changeset
   185
            set.add(StandardSocketOptions.SO_RCVBUF);
d98ae8bc45fc 7042979: Rename StandardSocketOption and StandardWatchEventKind
alanb
parents: 7668
diff changeset
   186
            set.add(StandardSocketOptions.SO_REUSEADDR);
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34774
diff changeset
   187
            if (Net.isReusePortAvailable()) {
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34774
diff changeset
   188
                set.add(StandardSocketOptions.SO_REUSEPORT);
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34774
diff changeset
   189
            }
25170
f58832169add 8029607: Type of Service (TOS) cannot be set in IPv6 header
michaelm
parents: 24969
diff changeset
   190
            set.add(StandardSocketOptions.IP_TOS);
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   191
            return Collections.unmodifiableSet(set);
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   192
        }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   193
    }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   194
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   195
    @Override
2057
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   196
    public final Set<SocketOption<?>> supportedOptions() {
3acf8e5e2ca0 6781363: New I/O: Update socket-channel API to jsr203/nio2-b99
alanb
parents: 1247
diff changeset
   197
        return DefaultOptionsHolder.defaultOptions;
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   198
    }
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   199
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    public boolean isBound() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            return localAddress != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   206
    public InetSocketAddress localAddress() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
            return localAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   212
    @Override
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   213
    public ServerSocketChannel bind(SocketAddress local, int backlog) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        synchronized (lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                throw new ClosedChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            if (isBound())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                throw new AlreadyBoundException();
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   219
            InetSocketAddress isa = (local == null) ? new InetSocketAddress(0) :
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   220
                Net.checkAddress(local);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            if (sm != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
                sm.checkListen(isa.getPort());
2446
07047237e4d4 4890703: Support SDP (sol)
alanb
parents: 2057
diff changeset
   224
            NetHooks.beforeTcpBind(fd, isa.getAddress(), isa.getPort());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            Net.bind(fd, isa.getAddress(), isa.getPort());
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   226
            Net.listen(fd, backlog < 1 ? 50 : backlog);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
            synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
                localAddress = Net.localAddress(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        }
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 2
diff changeset
   231
        return this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    public SocketChannel accept() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        synchronized (lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
                throw new ClosedChannelException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            if (!isBound())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
                throw new NotYetBoundException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            SocketChannel sc = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
            int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            FileDescriptor newfd = new FileDescriptor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            InetSocketAddress[] isaa = new InetSocketAddress[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                begin();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
                if (!isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                thread = NativeThread.current();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
                for (;;) {
27300
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   252
                    n = accept(this.fd, newfd, isaa);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
                    if ((n == IOStatus.INTERRUPTED) && isOpen())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
                thread = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
                end(n > 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
                assert IOStatus.check(n);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            if (n < 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
            IOUtil.configureBlocking(newfd, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            InetSocketAddress isa = isaa[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
            sc = new SocketChannelImpl(provider(), newfd, isa);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
            SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
            if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                    sm.checkAccept(isa.getAddress().getHostAddress(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
                                   isa.getPort());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                } catch (SecurityException x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                    sc.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                    throw x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
            return sc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
    protected void implConfigureBlocking(boolean block) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        IOUtil.configureBlocking(fd, block);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    protected void implCloseSelectableChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        synchronized (stateLock) {
12440
2689ca179e22 7118373: (se) Potential leak file descriptor when deregistrating at around the same time as an async close
robm
parents: 9679
diff changeset
   290
            if (state != ST_KILLED)
2689ca179e22 7118373: (se) Potential leak file descriptor when deregistrating at around the same time as an async close
robm
parents: 9679
diff changeset
   291
                nd.preClose(fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
            long th = thread;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
            if (th != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                NativeThread.signal(th);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            if (!isRegistered())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                kill();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    public void kill() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        synchronized (stateLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            if (state == ST_KILLED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            if (state == ST_UNINITIALIZED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
                state = ST_KILLED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            assert !isOpen() && !isRegistered();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
            nd.close(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
            state = ST_KILLED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * Translates native poll revent set into a ready operation set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    public boolean translateReadyOps(int ops, int initialOps,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
                                     SelectionKeyImpl sk) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        int intOps = sk.nioInterestOps(); // Do this just once, it synchronizes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        int oldOps = sk.nioReadyOps();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        int newOps = initialOps;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
22604
9b394795e216 8031997: PPC64: Make the various POLL constants system dependant
simonis
parents: 19607
diff changeset
   323
        if ((ops & Net.POLLNVAL) != 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            // This should only happen if this channel is pre-closed while a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
            // selection operation is in progress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            // ## Throw an error if this channel has not been pre-closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
22604
9b394795e216 8031997: PPC64: Make the various POLL constants system dependant
simonis
parents: 19607
diff changeset
   330
        if ((ops & (Net.POLLERR | Net.POLLHUP)) != 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
            newOps = intOps;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
            sk.nioReadyOps(newOps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
            return (newOps & ~oldOps) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
22604
9b394795e216 8031997: PPC64: Make the various POLL constants system dependant
simonis
parents: 19607
diff changeset
   336
        if (((ops & Net.POLLIN) != 0) &&
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
            ((intOps & SelectionKey.OP_ACCEPT) != 0))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
                newOps |= SelectionKey.OP_ACCEPT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        sk.nioReadyOps(newOps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        return (newOps & ~oldOps) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        return translateReadyOps(ops, sk.nioReadyOps(), sk);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        return translateReadyOps(ops, 0, sk);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
14025
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   352
    // package-private
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   353
    int poll(int events, long timeout) throws IOException {
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   354
        assert Thread.holdsLock(blockingLock()) && !isBlocking();
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   355
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   356
        synchronized (lock) {
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   357
            int n = 0;
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   358
            try {
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   359
                begin();
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   360
                synchronized (stateLock) {
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   361
                    if (!isOpen())
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   362
                        return 0;
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   363
                    thread = NativeThread.current();
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   364
                }
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   365
                n = Net.poll(fd, events, timeout);
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   366
            } finally {
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   367
                thread = 0;
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   368
                end(n > 0);
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   369
            }
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   370
            return n;
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   371
        }
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   372
    }
fbebe005a3ee 7184932: Remove the temporary Selector usage in the NIO socket adapters
robm
parents: 12440
diff changeset
   373
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * Translates an interest operation set into a native poll event set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        int newOps = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        // Translate ops
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        if ((ops & SelectionKey.OP_ACCEPT) != 0)
22604
9b394795e216 8031997: PPC64: Make the various POLL constants system dependant
simonis
parents: 19607
diff changeset
   382
            newOps |= Net.POLLIN;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        // Place ops into pollfd array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        sk.selector.putEventOps(sk, newOps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    public FileDescriptor getFD() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        return fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    public int getFDVal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        return fdVal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    public String toString() {
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 23010
diff changeset
   396
        StringBuilder sb = new StringBuilder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        sb.append(this.getClass().getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        sb.append('[');
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   399
        if (!isOpen()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            sb.append("closed");
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   401
        } else {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            synchronized (stateLock) {
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   403
                InetSocketAddress addr = localAddress();
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   404
                if (addr == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
                    sb.append("unbound");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
                } else {
18212
22f8c33b0690 8001318: Socket.getLocalAddress not consistent with InetAddress.getLocalHost
khazra
parents: 18192
diff changeset
   407
                    sb.append(Net.getRevealedLocalAddressAsString(addr));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        sb.append(']');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
27300
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   415
    /**
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   416
     * Accept a connection on a socket.
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   417
     *
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   418
     * @implNote Wrap native call to allow instrumentation.
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   419
     */
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   420
    private int accept(FileDescriptor ssfd, FileDescriptor newfd,
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   421
                       InetSocketAddress[] isaa)
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   422
        throws IOException
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   423
    {
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   424
        return accept0(ssfd, newfd, isaa);
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   425
    }
c4394453e952 8062501: Modifications of server socket channel accept() methods for instrumentation purposes
bpb
parents: 25859
diff changeset
   426
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    // -- Native methods --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    // Accepts a new connection, setting the given file descriptor to refer to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    // the new socket and setting isaa[0] to the socket's remote address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    // Returns 1 on success, or IOStatus.UNAVAILABLE (if non-blocking and no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    // connections are pending) or IOStatus.INTERRUPTED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    private native int accept0(FileDescriptor ssfd, FileDescriptor newfd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
                               InetSocketAddress[] isaa)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
    private static native void initIDs();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    static {
19607
bee007586d06 8022594: Potential deadlock in <clinit> of sun.nio.ch.Util/IOUtil
alanb
parents: 18212
diff changeset
   441
        IOUtil.load();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        initIDs();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        nd = new SocketDispatcher();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
}