src/java.base/unix/classes/java/net/PlainSocketImpl.java
author alanb
Tue, 22 Jan 2019 12:32:19 +0000
changeset 53419 eac105e3ec13
parent 50303 7164c3bb55df
child 54689 b28b7f631301
permissions -rw-r--r--
8217451: ExtendedSocketOptions should encapsulate support for SO_FLOW_SLA Reviewed-by: michaelm, chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
53419
eac105e3ec13 8217451: ExtendedSocketOptions should encapsulate support for SO_FLOW_SLA
alanb
parents: 50303
diff changeset
     2
 * Copyright (c) 2007, 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: 715
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: 715
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: 715
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 715
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package java.net;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.FileDescriptor;
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    29
import java.util.Set;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    30
import java.util.HashSet;
37676
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 36115
diff changeset
    31
import sun.net.ext.ExtendedSocketOptions;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * On Unix systems we simply delegate to native methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * @author Chris Hegarty
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
class PlainSocketImpl extends AbstractPlainSocketImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
        initProto();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
     * Constructs an empty instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    PlainSocketImpl() { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     * Constructs an instance with the given file descriptor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    PlainSocketImpl(FileDescriptor fd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        this.fd = fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
37676
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 36115
diff changeset
    57
    static final ExtendedSocketOptions extendedOptions =
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 36115
diff changeset
    58
            ExtendedSocketOptions.getInstance();
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 36115
diff changeset
    59
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    60
    protected <T> void setOption(SocketOption<T> name, T value) throws IOException {
48051
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    61
        if (isClosedOrPending()) {
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    62
            throw new SocketException("Socket closed");
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    63
        }
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    64
        if (supportedOptions().contains(name)) {
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    65
            if (extendedOptions.isOptionSupported(name)) {
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    66
                extendedOptions.setOption(fd, name, value);
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34968
diff changeset
    67
            } else {
48051
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    68
                super.setOption(name, value);
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34968
diff changeset
    69
            }
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    70
        } else {
48051
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    71
            throw new UnsupportedOperationException("unsupported option");
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    72
        }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    73
    }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    74
24046
d1f6da65881a 8041397: Lint regression in java.net.SocketOption
michaelm
parents: 23879
diff changeset
    75
    @SuppressWarnings("unchecked")
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    76
    protected <T> T getOption(SocketOption<T> name) throws IOException {
48051
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    77
        if (isClosedOrPending()) {
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    78
            throw new SocketException("Socket closed");
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    79
        }
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    80
        if (supportedOptions().contains(name)) {
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    81
            if (extendedOptions.isOptionSupported(name)) {
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    82
                return (T) extendedOptions.getOption(fd, name);
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34968
diff changeset
    83
            } else {
48051
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    84
                return super.getOption(name);
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34968
diff changeset
    85
            }
37676
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 36115
diff changeset
    86
        } else {
48051
0b42613e35bf 8190843: can not set/get extendedOptions to ServerSocket
vtewari
parents: 47216
diff changeset
    87
            throw new UnsupportedOperationException("unsupported option");
34968
93b315c61ca3 8143554: UnsupportedOperationException is not thrown for unsupported options
kshefov
parents: 30963
diff changeset
    88
        }
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    89
    }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    90
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    91
    protected Set<SocketOption<?>> supportedOptions() {
37676
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 36115
diff changeset
    92
        HashSet<SocketOption<?>> options = new HashSet<>(super.supportedOptions());
53419
eac105e3ec13 8217451: ExtendedSocketOptions should encapsulate support for SO_FLOW_SLA
alanb
parents: 50303
diff changeset
    93
        if (getServerSocket() != null) {
eac105e3ec13 8217451: ExtendedSocketOptions should encapsulate support for SO_FLOW_SLA
alanb
parents: 50303
diff changeset
    94
            options.addAll(ExtendedSocketOptions.serverSocketOptions());
eac105e3ec13 8217451: ExtendedSocketOptions should encapsulate support for SO_FLOW_SLA
alanb
parents: 50303
diff changeset
    95
        } else {
eac105e3ec13 8217451: ExtendedSocketOptions should encapsulate support for SO_FLOW_SLA
alanb
parents: 50303
diff changeset
    96
            options.addAll(ExtendedSocketOptions.clientSocketOptions());
eac105e3ec13 8217451: ExtendedSocketOptions should encapsulate support for SO_FLOW_SLA
alanb
parents: 50303
diff changeset
    97
        }
23879
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    98
        return options;
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
    99
    }
284802a2d355 8036979: Support java.net.SocketOption<> in java.net socket types
michaelm
parents: 5506
diff changeset
   100
30963
88469d06e03f 8072384: Setting IP_TOS on java.net sockets not working on unix
coffeys
parents: 25859
diff changeset
   101
    protected void socketSetOption(int opt, boolean b, Object val) throws SocketException {
37676
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 36115
diff changeset
   102
        if (opt == SocketOptions.SO_REUSEPORT &&
24ef455da1b0 8044773: Refactor jdk.net API so that it can be moved out of the base module
chegar
parents: 36115
diff changeset
   103
            !supportedOptions().contains(StandardSocketOptions.SO_REUSEPORT)) {
36115
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34968
diff changeset
   104
            throw new UnsupportedOperationException("unsupported option");
0676e37a0b9c 6432031: Add support for SO_REUSEPORT
alanb
parents: 34968
diff changeset
   105
        }
30963
88469d06e03f 8072384: Setting IP_TOS on java.net sockets not working on unix
coffeys
parents: 25859
diff changeset
   106
        try {
88469d06e03f 8072384: Setting IP_TOS on java.net sockets not working on unix
coffeys
parents: 25859
diff changeset
   107
            socketSetOption0(opt, b, val);
88469d06e03f 8072384: Setting IP_TOS on java.net sockets not working on unix
coffeys
parents: 25859
diff changeset
   108
        } catch (SocketException se) {
88469d06e03f 8072384: Setting IP_TOS on java.net sockets not working on unix
coffeys
parents: 25859
diff changeset
   109
            if (socket == null || !socket.isConnected())
88469d06e03f 8072384: Setting IP_TOS on java.net sockets not working on unix
coffeys
parents: 25859
diff changeset
   110
                throw se;
88469d06e03f 8072384: Setting IP_TOS on java.net sockets not working on unix
coffeys
parents: 25859
diff changeset
   111
        }
88469d06e03f 8072384: Setting IP_TOS on java.net sockets not working on unix
coffeys
parents: 25859
diff changeset
   112
    }
88469d06e03f 8072384: Setting IP_TOS on java.net sockets not working on unix
coffeys
parents: 25859
diff changeset
   113
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    native void socketCreate(boolean isServer) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    native void socketConnect(InetAddress address, int port, int timeout)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    native void socketBind(InetAddress address, int port)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    native void socketListen(int count) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    native void socketAccept(SocketImpl s) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    native int socketAvailable() throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    native void socketClose0(boolean useDeferredClose) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    native void socketShutdown(int howto) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    static native void initProto();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
30963
88469d06e03f 8072384: Setting IP_TOS on java.net sockets not working on unix
coffeys
parents: 25859
diff changeset
   134
    native void socketSetOption0(int cmd, boolean on, Object value)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        throws SocketException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    native int socketGetOption(int opt, Object iaContainerObj) throws SocketException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    native void socketSendUrgentData(int data) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
}