jdk/src/solaris/native/java/net/net_util_md.c
author simonis
Tue, 26 Nov 2013 16:40:31 +0100
changeset 22597 7515a991bb37
parent 20821 e0d0a585aa49
child 22605 dba3d6b22818
permissions -rw-r--r--
8024854: PPC64: Basic changes and files to build the class library on AIX Reviewed-by: alanb, prr, sla, chegar, michaelm, mullan, art Contributed-by: luchsh@linux.vnet.ibm.com, spoole@linux.vnet.ibm.com, thomas.stuefe@sap.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
13043
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
     2
 * Copyright (c) 1997, 2012, 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: 4814
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: 4814
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: 4814
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4814
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4814
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
#include <errno.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <string.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#include <sys/types.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include <sys/socket.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#include <netinet/tcp.h>        /* Defines TCP_NODELAY, needed for 2.6 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#include <netinet/in.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include <net/if.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#include <netdb.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#include <stdlib.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#include <dlfcn.h>
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    36
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    37
#ifndef _ALLBSD_SOURCE
7289
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
    38
#include <values.h>
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    39
#else
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    40
#include <limits.h>
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    41
#include <sys/param.h>
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    42
#include <sys/sysctl.h>
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    43
#ifndef MAXINT
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    44
#define MAXINT INT_MAX
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    45
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    46
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
#ifdef __solaris__
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
#include <sys/sockio.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
#include <stropts.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
#include <inet/nd.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
#ifdef __linux__
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
#include <arpa/inet.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
#include <net/route.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
#include <sys/utsname.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
#ifndef IPV6_FLOWINFO_SEND
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
#define IPV6_FLOWINFO_SEND      33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
#include "jni_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
#include "jvm.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
#include "net_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
#include "java_net_SocketOptions.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
/* needed from libsocket on Solaris 8 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
getaddrinfo_f getaddrinfo_ptr = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
freeaddrinfo_f freeaddrinfo_ptr = NULL;
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
    75
gai_strerror_f gai_strerror_ptr = NULL;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
getnameinfo_f getnameinfo_ptr = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
/*
13043
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
    79
 * EXCLBIND socket options only on Solaris
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
#if defined(__solaris__) && !defined(TCP_EXCLBIND)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
#define TCP_EXCLBIND            0x21
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
#if defined(__solaris__) && !defined(UDP_EXCLBIND)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
#define UDP_EXCLBIND            0x0101
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    88
void setDefaultScopeID(JNIEnv *env, struct sockaddr *him)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    89
{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    90
#ifdef MACOSX
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    91
    static jclass ni_class = NULL;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    92
    static jfieldID ni_defaultIndexID;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    93
    if (ni_class == NULL) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    94
        jclass c = (*env)->FindClass(env, "java/net/NetworkInterface");
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    95
        CHECK_NULL(c);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    96
        c = (*env)->NewGlobalRef(env, c);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    97
        CHECK_NULL(c);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    98
        ni_defaultIndexID = (*env)->GetStaticFieldID(
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
    99
            env, c, "defaultIndex", "I");
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   100
        ni_class = c;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   101
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   102
    int defaultIndex;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   103
    struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)him;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   104
    if (sin6->sin6_family == AF_INET6 && (sin6->sin6_scope_id == 0)) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   105
        defaultIndex = (*env)->GetStaticIntField(env, ni_class,
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   106
                                                 ni_defaultIndexID);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   107
        sin6->sin6_scope_id = defaultIndex;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   108
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   109
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   110
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   111
12551
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   112
int getDefaultScopeID(JNIEnv *env) {
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   113
    static jclass ni_class = NULL;
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   114
    static jfieldID ni_defaultIndexID;
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   115
    if (ni_class == NULL) {
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   116
        jclass c = (*env)->FindClass(env, "java/net/NetworkInterface");
12856
712335896cc4 7171591: getDefaultScopeID() in src/solaris/native/java/net/net_util_md.c should return a value
khazra
parents: 12688
diff changeset
   117
        CHECK_NULL_RETURN(c, 0);
12551
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   118
        c = (*env)->NewGlobalRef(env, c);
12856
712335896cc4 7171591: getDefaultScopeID() in src/solaris/native/java/net/net_util_md.c should return a value
khazra
parents: 12688
diff changeset
   119
        CHECK_NULL_RETURN(c, 0);
12551
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   120
        ni_defaultIndexID = (*env)->GetStaticFieldID(env, c,
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   121
                                                     "defaultIndex", "I");
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   122
        ni_class = c;
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   123
    }
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   124
    int defaultIndex = 0;
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   125
    defaultIndex = (*env)->GetStaticIntField(env, ni_class,
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   126
                                             ni_defaultIndexID);
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   127
    return defaultIndex;
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   128
}
5be0a162ed89 7144274: [macosx] Default IPv6 multicast interface is not being set when calling MulticastSocket.joinGroup()
khazra
parents: 12047
diff changeset
   129
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
#ifdef __solaris__
7289
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   131
static int init_tcp_max_buf, init_udp_max_buf;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
static int tcp_max_buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
static int udp_max_buf;
13043
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   134
static int useExclBind = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 * Get the specified parameter from the specified driver. The value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
 * of the parameter is assumed to be an 'int'. If the parameter
7289
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   139
 * cannot be obtained return -1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
static int
7289
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   142
getParam(char *driver, char *param)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    struct strioctl stri;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    char buf [64];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    int s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    int value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    s = open (driver, O_RDWR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    if (s < 0) {
7289
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   151
        return -1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    strncpy (buf, param, sizeof(buf));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    stri.ic_cmd = ND_GET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    stri.ic_timout = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    stri.ic_dp = buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    stri.ic_len = sizeof(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    if (ioctl (s, I_STR, &stri) < 0) {
7289
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   159
        value = -1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        value = atoi(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    close (s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    return value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
}
7289
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   166
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   167
/*
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   168
 * Iterative way to find the max value that SO_SNDBUF or SO_RCVBUF
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   169
 * for Solaris versions that do not support the ioctl() in getParam().
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   170
 * Ugly, but only called once (for each sotype).
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   171
 *
13999
f6a2ce6a3e40 7193520: Removed references to Linux kernel version 2.2
chegar
parents: 13048
diff changeset
   172
 * As an optimization, we make a guess using the default values for Solaris
7289
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   173
 * assuming they haven't been modified with ndd.
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   174
 */
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   175
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   176
#define MAX_TCP_GUESS 1024 * 1024
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   177
#define MAX_UDP_GUESS 2 * 1024 * 1024
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   178
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   179
#define FAIL_IF_NOT_ENOBUFS if (errno != ENOBUFS) return -1
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   180
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   181
static int findMaxBuf(int fd, int opt, int sotype) {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   182
    int a = 0;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   183
    int b = MAXINT;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   184
    int initial_guess;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   185
    int limit = -1;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   186
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   187
    if (sotype == SOCK_DGRAM) {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   188
        initial_guess = MAX_UDP_GUESS;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   189
    } else {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   190
        initial_guess = MAX_TCP_GUESS;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   191
    }
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   192
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   193
    if (setsockopt(fd, SOL_SOCKET, opt, &initial_guess, sizeof(int)) == 0) {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   194
        initial_guess++;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   195
        if (setsockopt(fd, SOL_SOCKET, opt, &initial_guess,sizeof(int)) < 0) {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   196
            FAIL_IF_NOT_ENOBUFS;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   197
            return initial_guess - 1;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   198
        }
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   199
        a = initial_guess;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   200
    } else {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   201
        FAIL_IF_NOT_ENOBUFS;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   202
        b = initial_guess - 1;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   203
    }
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   204
    do {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   205
        int mid = a + (b-a)/2;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   206
        if (setsockopt(fd, SOL_SOCKET, opt, &mid, sizeof(int)) == 0) {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   207
            limit = mid;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   208
            a = mid + 1;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   209
        } else {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   210
            FAIL_IF_NOT_ENOBUFS;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   211
            b = mid - 1;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   212
        }
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   213
    } while (b >= a);
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   214
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   215
    return limit;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
   216
}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
#ifdef __linux__
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
static int vinit = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
static int kernelV24 = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
static int vinit24 = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
int kernelIsV24 () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    if (!vinit24) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        struct utsname sysinfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        if (uname(&sysinfo) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            sysinfo.release[3] = '\0';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            if (strcmp(sysinfo.release, "2.4") == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                kernelV24 = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        vinit24 = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    return kernelV24;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
int getScopeID (struct sockaddr *him) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    struct sockaddr_in6 *hext = (struct sockaddr_in6 *)him;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    return hext->sin6_scope_id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
int cmpScopeID (unsigned int scope, struct sockaddr *him) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    struct sockaddr_in6 *hext = (struct sockaddr_in6 *)him;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    return hext->sin6_scope_id == scope;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
#else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
int getScopeID (struct sockaddr *him) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    struct sockaddr_in6 *him6 = (struct sockaddr_in6 *)him;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    return him6->sin6_scope_id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
int cmpScopeID (unsigned int scope, struct sockaddr *him) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    struct sockaddr_in6 *him6 = (struct sockaddr_in6 *)him;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    return him6->sin6_scope_id == scope;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
void
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
NET_ThrowByNameWithLastError(JNIEnv *env, const char *name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
                   const char *defaultDetail) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    char errmsg[255];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    sprintf(errmsg, "errno: %d, error: %s\n", errno, defaultDetail);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    JNU_ThrowByNameWithLastError(env, name, errmsg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
void
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
NET_ThrowCurrent(JNIEnv *env, char *msg) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    NET_ThrowNew(env, errno, msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
void
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
NET_ThrowNew(JNIEnv *env, int errorNumber, char *msg) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    char fullMsg[512];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    if (!msg) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        msg = "no further information";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    switch(errorNumber) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    case EBADF:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        jio_snprintf(fullMsg, sizeof(fullMsg), "socket closed: %s", msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        JNU_ThrowByName(env, JNU_JAVANETPKG "SocketException", fullMsg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    case EINTR:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        JNU_ThrowByName(env, JNU_JAVAIOPKG "InterruptedIOException", msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
        errno = errorNumber;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        JNU_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
jfieldID
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
NET_GetFileDescriptorID(JNIEnv *env)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    jclass cls = (*env)->FindClass(env, "java/io/FileDescriptor");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    CHECK_NULL_RETURN(cls, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    return (*env)->GetFieldID(env, cls, "fd", "I");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   306
#if defined(DONT_ENABLE_IPV6)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   307
jint  IPv6_supported()
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   308
{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   309
    return JNI_FALSE;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   310
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   311
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   312
#else /* !DONT_ENABLE_IPV6 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   313
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
jint  IPv6_supported()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
#ifndef AF_INET6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
#ifdef AF_INET6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
    int fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    void *ipv6_fn;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    SOCKADDR sa;
910
1f53246fb014 6729881: Compiler warning in networking native code
chegar
parents: 2
diff changeset
   324
    socklen_t sa_len = sizeof(sa);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    fd = JVM_Socket(AF_INET6, SOCK_STREAM, 0) ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    if (fd < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
         *  TODO: We really cant tell since it may be an unrelated error
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
         *  for now we will assume that AF_INET6 is not available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * If fd 0 is a socket it means we've been launched from inetd or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * xinetd. If it's a socket then check the family - if it's an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * IPv4 socket then we need to disable IPv6.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    if (getsockname(0, (struct sockaddr *)&sa, &sa_len) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        struct sockaddr *saP = (struct sockaddr *)&sa;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
        if (saP->sa_family != AF_INET6) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
            return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * Linux - check if any interface has an IPv6 address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * Don't need to parse the line - we just need an indication.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
#ifdef __linux__
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        FILE *fP = fopen("/proc/net/if_inet6", "r");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        char buf[255];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        char *bufP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        if (fP == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            close(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
            return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        bufP = fgets(buf, sizeof(buf), fP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        fclose(fP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        if (bufP == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
            close(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
            return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * On Solaris 8 it's possible to create INET6 sockets even
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * though IPv6 is not enabled on all interfaces. Thus we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * query the number of IPv6 addresses to verify that IPv6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * has been configured on at least one interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * On Linux it doesn't matter - if IPv6 is built-in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * kernel then IPv6 addresses will be bound automatically
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * to all interfaces.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
#ifdef __solaris__
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
#ifdef SIOCGLIFNUM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        struct lifnum numifs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        numifs.lifn_family = AF_INET6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        numifs.lifn_flags = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        if (ioctl(fd, SIOCGLIFNUM, (char *)&numifs) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
            /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
             * SIOCGLIFNUM failed - assume IPv6 not configured
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
            close(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
         * If no IPv6 addresses then return false. If count > 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
         * it's possible that all IPv6 addresses are "down" but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
         * that's okay as they may be brought "up" while the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
         * VM is running.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        if (numifs.lifn_count == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            close(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
            return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
#else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    /* SIOCGLIFNUM not defined in build environment ??? */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
    close(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
#endif /* __solaris */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     *  OK we may have the stack available in the kernel,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     *  we should also check if the APIs are available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    ipv6_fn = JVM_FindLibraryEntry(RTLD_DEFAULT, "inet_pton");
11032
235588f77727 7112670: Inet4AddressImpl should use getaddrinfo/getnameinfo
ngmr
parents: 9035
diff changeset
   419
    close(fd);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    if (ipv6_fn == NULL ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        return JNI_FALSE;
11032
235588f77727 7112670: Inet4AddressImpl should use getaddrinfo/getnameinfo
ngmr
parents: 9035
diff changeset
   422
    } else {
235588f77727 7112670: Inet4AddressImpl should use getaddrinfo/getnameinfo
ngmr
parents: 9035
diff changeset
   423
        return JNI_TRUE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
    }
4814
dbf72872f8d2 6905552: libnet/nio portability issues
chegar
parents: 1247
diff changeset
   425
#endif /* AF_INET6 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
}
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   427
#endif /* DONT_ENABLE_IPV6 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   429
void ThrowUnknownHostExceptionWithGaiError(JNIEnv *env,
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   430
                                           const char* hostname,
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   431
                                           int gai_error)
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   432
{
6696
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
   433
    int size;
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
   434
    char *buf;
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   435
    const char *format = "%s: %s";
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   436
    const char *error_string =
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   437
        (gai_strerror_ptr == NULL) ? NULL : (*gai_strerror_ptr)(gai_error);
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   438
    if (error_string == NULL)
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   439
        error_string = "unknown error";
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   440
6696
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
   441
    size = strlen(format) + strlen(hostname) + strlen(error_string) + 2;
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
   442
    buf = (char *) malloc(size);
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   443
    if (buf) {
6696
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
   444
        jstring s;
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   445
        sprintf(buf, format, hostname, error_string);
6696
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
   446
        s = JNU_NewStringPlatform(env, buf);
6670
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   447
        if (s != NULL) {
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   448
            jobject x = JNU_NewObjectByName(env,
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   449
                                            "java/net/UnknownHostException",
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   450
                                            "(Ljava/lang/String;)V", s);
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   451
            if (x != NULL)
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   452
                (*env)->Throw(env, x);
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   453
        }
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   454
        free(buf);
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   455
    }
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   456
}
ae13809f3ce7 6981157: Improve UnknownHostException with EAI error details and other cleanups
martin
parents: 5506
diff changeset
   457
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
void
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
NET_AllocSockaddr(struct sockaddr **him, int *len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
#ifdef AF_INET6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    if (ipv6_available()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        struct sockaddr_in6 *him6 = (struct sockaddr_in6*)malloc(sizeof(struct sockaddr_in6));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        *him = (struct sockaddr*)him6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        *len = sizeof(struct sockaddr_in6);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    } else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
#endif /* AF_INET6 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
            struct sockaddr_in *him4 = (struct sockaddr_in*)malloc(sizeof(struct sockaddr_in));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
            *him = (struct sockaddr*)him4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            *len = sizeof(struct sockaddr_in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
#if defined(__linux__) && defined(AF_INET6)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
/* following code creates a list of addresses from the kernel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
 * routing table that are routed via the loopback address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
 * We check all destination addresses against this table
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
 * and override the scope_id field to use the relevant value for "lo"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
 * in order to work-around the Linux bug that prevents packets destined
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
 * for certain local addresses from being sent via a physical interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
struct loopback_route {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    struct in6_addr addr; /* destination address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    int plen; /* prefix length */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
static struct loopback_route *loRoutes = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
static int nRoutes = 0; /* number of routes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
static int loRoutes_size = 16; /* initial size */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
static int lo_scope_id = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
static void initLoopbackRoutes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
void printAddr (struct in6_addr *addr) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
    for (i=0; i<16; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        printf ("%02x", addr->s6_addr[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    printf ("\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
static jboolean needsLoopbackRoute (struct in6_addr* dest_addr) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
    int byte_count;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
    int extra_bits, i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
    struct loopback_route *ptr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    if (loRoutes == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        initLoopbackRoutes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
    for (ptr = loRoutes, i=0; i<nRoutes; i++, ptr++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        struct in6_addr *target_addr=&ptr->addr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        int dest_plen = ptr->plen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
        byte_count = dest_plen >> 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        extra_bits = dest_plen & 0x3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        if (byte_count > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
            if (memcmp(target_addr, dest_addr, byte_count)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                continue;  /* no match */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        if (extra_bits > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
            unsigned char c1 = ((unsigned char *)target_addr)[byte_count];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
            unsigned char c2 = ((unsigned char *)&dest_addr)[byte_count];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
            unsigned char mask = 0xff << (8 - extra_bits);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
            if ((c1 & mask) != (c2 & mask)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        return JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
static void initLoopbackRoutes() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    FILE *f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    char srcp[8][5];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    char hopp[8][5];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    int dest_plen, src_plen, use, refcnt, metric;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    unsigned long flags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    char dest_str[40];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
    struct in6_addr dest_addr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    char device[16];
14320
d5be8d19b3ec 8000203: File descriptor leak in src/solaris/native/java/net/net_util_md.c
chegar
parents: 13999
diff changeset
   549
    struct loopback_route *loRoutesTemp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    if (loRoutes != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        free (loRoutes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
    loRoutes = calloc (loRoutes_size, sizeof(struct loopback_route));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
    if (loRoutes == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * Scan /proc/net/ipv6_route looking for a matching
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     * route.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    if ((f = fopen("/proc/net/ipv6_route", "r")) == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        return ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
    while (fscanf(f, "%4s%4s%4s%4s%4s%4s%4s%4s %02x "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                     "%4s%4s%4s%4s%4s%4s%4s%4s %02x "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                     "%4s%4s%4s%4s%4s%4s%4s%4s "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
                     "%08x %08x %08x %08lx %8s",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                     dest_str, &dest_str[5], &dest_str[10], &dest_str[15],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
                     &dest_str[20], &dest_str[25], &dest_str[30], &dest_str[35],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                     &dest_plen,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                     srcp[0], srcp[1], srcp[2], srcp[3],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
                     srcp[4], srcp[5], srcp[6], srcp[7],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
                     &src_plen,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
                     hopp[0], hopp[1], hopp[2], hopp[3],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
                     hopp[4], hopp[5], hopp[6], hopp[7],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
                     &metric, &use, &refcnt, &flags, device) == 31) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
         * Some routes should be ignored
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
        if ( (dest_plen < 0 || dest_plen > 128)  ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
             (src_plen != 0) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
             (flags & (RTF_POLICY | RTF_FLOW)) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
             ((flags & RTF_REJECT) && dest_plen == 0) ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
            continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
         * Convert the destination address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
        dest_str[4] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        dest_str[9] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        dest_str[14] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        dest_str[19] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
        dest_str[24] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        dest_str[29] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        dest_str[34] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
        dest_str[39] = '\0';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        if (inet_pton(AF_INET6, dest_str, &dest_addr) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
            /* not an Ipv6 address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
            continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
        if (strcmp(device, "lo") != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
            /* Not a loopback route */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
            continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
            if (nRoutes == loRoutes_size) {
14320
d5be8d19b3ec 8000203: File descriptor leak in src/solaris/native/java/net/net_util_md.c
chegar
parents: 13999
diff changeset
   610
                loRoutesTemp = realloc (loRoutes, loRoutes_size *
d5be8d19b3ec 8000203: File descriptor leak in src/solaris/native/java/net/net_util_md.c
chegar
parents: 13999
diff changeset
   611
                                        sizeof (struct loopback_route) * 2);
d5be8d19b3ec 8000203: File descriptor leak in src/solaris/native/java/net/net_util_md.c
chegar
parents: 13999
diff changeset
   612
d5be8d19b3ec 8000203: File descriptor leak in src/solaris/native/java/net/net_util_md.c
chegar
parents: 13999
diff changeset
   613
                if (loRoutesTemp == 0) {
d5be8d19b3ec 8000203: File descriptor leak in src/solaris/native/java/net/net_util_md.c
chegar
parents: 13999
diff changeset
   614
                    free(loRoutes);
d5be8d19b3ec 8000203: File descriptor leak in src/solaris/native/java/net/net_util_md.c
chegar
parents: 13999
diff changeset
   615
                    fclose (f);
d5be8d19b3ec 8000203: File descriptor leak in src/solaris/native/java/net/net_util_md.c
chegar
parents: 13999
diff changeset
   616
                    return;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
                }
14320
d5be8d19b3ec 8000203: File descriptor leak in src/solaris/native/java/net/net_util_md.c
chegar
parents: 13999
diff changeset
   618
                loRoutes=loRoutesTemp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                loRoutes_size *= 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
            memcpy (&loRoutes[nRoutes].addr,&dest_addr,sizeof(struct in6_addr));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
            loRoutes[nRoutes].plen = dest_plen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
            nRoutes ++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
    fclose (f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
        /* now find the scope_id for "lo" */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
8554
14e626e9407b 7022269: clean up fscanf usage in Linux networking native code
chegar
parents: 7668
diff changeset
   631
        char devname[21];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
        char addr6p[8][5];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
        int plen, scope, dad_status, if_idx;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
        if ((f = fopen("/proc/net/if_inet6", "r")) != NULL) {
11514
0cefabc1c81f 7123415: Some cases of network interface indexes being read incorrectly
chegar
parents: 11032
diff changeset
   636
            while (fscanf(f, "%4s%4s%4s%4s%4s%4s%4s%4s %08x %02x %02x %02x %20s\n",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                      addr6p[0], addr6p[1], addr6p[2], addr6p[3],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                      addr6p[4], addr6p[5], addr6p[6], addr6p[7],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                  &if_idx, &plen, &scope, &dad_status, devname) == 13) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
                if (strcmp(devname, "lo") == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
                     * Found - so just return the index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
                    fclose(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
                    lo_scope_id = if_idx;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
            fclose(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
 * Following is used for binding to local addresses. Equivalent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
 * to code above, for bind().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
struct localinterface {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
    int index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    char localaddr [16];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
static struct localinterface *localifs = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
static int localifsSize = 0;    /* size of array */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
static int nifs = 0;            /* number of entries used in array */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
/* not thread safe: make sure called once from one thread */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
static void initLocalIfs () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    FILE *f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    unsigned char staddr [16];
8554
14e626e9407b 7022269: clean up fscanf usage in Linux networking native code
chegar
parents: 7668
diff changeset
   674
    char ifname [33];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
    struct localinterface *lif=0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    int index, x1, x2, x3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
    unsigned int u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,ua,ub,uc,ud,ue,uf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    if ((f = fopen("/proc/net/if_inet6", "r")) == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        return ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    while (fscanf (f, "%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x "
8554
14e626e9407b 7022269: clean up fscanf usage in Linux networking native code
chegar
parents: 7668
diff changeset
   683
                "%d %x %x %x %32s",&u0,&u1,&u2,&u3,&u4,&u5,&u6,&u7,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
                &u8,&u9,&ua,&ub,&uc,&ud,&ue,&uf,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
                &index, &x1, &x2, &x3, ifname) == 21) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
        staddr[0] = (unsigned char)u0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
        staddr[1] = (unsigned char)u1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
        staddr[2] = (unsigned char)u2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
        staddr[3] = (unsigned char)u3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
        staddr[4] = (unsigned char)u4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
        staddr[5] = (unsigned char)u5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
        staddr[6] = (unsigned char)u6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
        staddr[7] = (unsigned char)u7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
        staddr[8] = (unsigned char)u8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        staddr[9] = (unsigned char)u9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
        staddr[10] = (unsigned char)ua;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
        staddr[11] = (unsigned char)ub;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
        staddr[12] = (unsigned char)uc;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        staddr[13] = (unsigned char)ud;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
        staddr[14] = (unsigned char)ue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        staddr[15] = (unsigned char)uf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
        nifs ++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
        if (nifs > localifsSize) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
            localifs = (struct localinterface *) realloc (
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
                        localifs, sizeof (struct localinterface)* (localifsSize+5));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
            if (localifs == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
                nifs = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
                fclose (f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
            lif = localifs + localifsSize;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
            localifsSize += 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
            lif ++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        memcpy (lif->localaddr, staddr, 16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
        lif->index = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
    fclose (f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
/* return the scope_id (interface index) of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
 * interface corresponding to the given address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
 * returns 0 if no match found
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
static int getLocalScopeID (char *addr) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
    struct localinterface *lif;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
    if (localifs == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
        initLocalIfs();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
    for (i=0, lif=localifs; i<nifs; i++, lif++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
        if (memcmp (addr, lif->localaddr, 16) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
            return lif->index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
22597
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
   741
void platformInit () {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    initLoopbackRoutes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    initLocalIfs();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
22597
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
   746
#elif defined(_AIX)
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
   747
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
   748
/* Initialize stubs for blocking I/O workarounds (see src/solaris/native/java/net/linux_close.c) */
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
   749
extern void aix_close_init();
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
   750
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
   751
void platformInit () {
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
   752
    aix_close_init();
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
   753
}
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
   754
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
#else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
22597
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
   757
void platformInit () {}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
13043
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   761
void parseExclusiveBindProperty(JNIEnv *env) {
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   762
#ifdef __solaris__
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   763
    jstring s, flagSet;
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   764
    jclass iCls;
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   765
    jmethodID mid;
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   766
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   767
    s = (*env)->NewStringUTF(env, "sun.net.useExclusiveBind");
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   768
    CHECK_NULL(s);
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   769
    iCls = (*env)->FindClass(env, "java/lang/System");
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   770
    CHECK_NULL(iCls);
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   771
    mid = (*env)->GetStaticMethodID(env, iCls, "getProperty",
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   772
                "(Ljava/lang/String;)Ljava/lang/String;");
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   773
    CHECK_NULL(mid);
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   774
    flagSet = (*env)->CallStaticObjectMethod(env, iCls, mid, s);
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   775
    if (flagSet != NULL) {
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   776
        useExclBind = 1;
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   777
    }
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   778
#endif
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   779
}
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
   780
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
/* In the case of an IPv4 Inetaddress this method will return an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
 * IPv4 mapped address where IPv6 is available and v4MappedAddress is TRUE.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
 * Otherwise it will return a sockaddr_in structure for an IPv4 InetAddress.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
JNIEXPORT int JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
NET_InetAddressToSockaddr(JNIEnv *env, jobject iaObj, int port, struct sockaddr *him,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
                          int *len, jboolean v4MappedAddress) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    jint family;
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14320
diff changeset
   789
    family = getInetAddress_family(env, iaObj);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
#ifdef AF_INET6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
    /* needs work. 1. family 2. clean up him6 etc deallocate memory */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
    if (ipv6_available() && !(family == IPv4 && v4MappedAddress == JNI_FALSE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        struct sockaddr_in6 *him6 = (struct sockaddr_in6 *)him;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
        jbyte caddr[16];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
        jint address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        if (family == IPv4) { /* will convert to IPv4-mapped address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
            memset((char *) caddr, 0, 16);
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14320
diff changeset
   800
            address = getInetAddress_addr(env, iaObj);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
            if (address == INADDR_ANY) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
                /* we would always prefer IPv6 wildcard address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
                   caddr[10] = 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
                   caddr[11] = 0xff; */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
                caddr[10] = 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
                caddr[11] = 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
                caddr[12] = ((address >> 24) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
                caddr[13] = ((address >> 16) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
                caddr[14] = ((address >> 8) & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
                caddr[15] = (address & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
        } else {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 16870
diff changeset
   814
            getInet6Address_ipaddress(env, iaObj, (char *)caddr);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
        memset((char *)him6, 0, sizeof(struct sockaddr_in6));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
        him6->sin6_port = htons(port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
        memcpy((void *)&(him6->sin6_addr), caddr, sizeof(struct in6_addr) );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        him6->sin6_family = AF_INET6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
        *len = sizeof(struct sockaddr_in6) ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   822
#if defined(_ALLBSD_SOURCE) && defined(_AF_INET6)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   823
// XXXBSD: should we do something with scope id here ? see below linux comment
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   824
/* MMM: Come back to this! */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   825
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
   826
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
         * On Linux if we are connecting to a link-local address
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
         * we need to specify the interface in the scope_id (2.4 kernel only)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
         * If the scope was cached the we use the cached value. If not cached but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
         * specified in the Inet6Address we use that, but we first check if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
         * address needs to be routed via the loopback interface. In this case,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
         * we override the specified value with that of the loopback interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
         * If no cached value exists and no value was specified by user, then
13999
f6a2ce6a3e40 7193520: Removed references to Linux kernel version 2.2
chegar
parents: 13048
diff changeset
   836
         * we try to determine a value from the routing table. In all these
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
         * cases the used value is cached for further use.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
#ifdef __linux__
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
        if (IN6_IS_ADDR_LINKLOCAL(&(him6->sin6_addr))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
            int cached_scope_id = 0, scope_id = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
13999
f6a2ce6a3e40 7193520: Removed references to Linux kernel version 2.2
chegar
parents: 13048
diff changeset
   843
            if (ia6_cachedscopeidID) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
                cached_scope_id = (int)(*env)->GetIntField(env, iaObj, ia6_cachedscopeidID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
                /* if cached value exists then use it. Otherwise, check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
                 * if scope is set in the address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                if (!cached_scope_id) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                    if (ia6_scopeidID) {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 16870
diff changeset
   850
                        scope_id = getInet6Address_scopeid(env, iaObj);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                    if (scope_id != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
                        /* check user-specified value for loopback case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
                         * that needs to be overridden
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
                         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
                        if (kernelIsV24() && needsLoopbackRoute (&him6->sin6_addr)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
                            cached_scope_id = lo_scope_id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
                            (*env)->SetIntField(env, iaObj, ia6_cachedscopeidID, cached_scope_id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
                        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
                         * Otherwise consult the IPv6 routing tables to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
                         * try determine the appropriate interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
                         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
                        if (kernelIsV24()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
                            cached_scope_id = getDefaultIPv6Interface( &(him6->sin6_addr) );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
                            cached_scope_id = getLocalScopeID( (char *)&(him6->sin6_addr) );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
                            if (cached_scope_id == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
                                cached_scope_id = getDefaultIPv6Interface( &(him6->sin6_addr) );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
                        (*env)->SetIntField(env, iaObj, ia6_cachedscopeidID, cached_scope_id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
             * If we have a scope_id use the extended form
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
             * of sockaddr_in6.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
13999
f6a2ce6a3e40 7193520: Removed references to Linux kernel version 2.2
chegar
parents: 13048
diff changeset
   883
            struct sockaddr_in6 *him6 =
f6a2ce6a3e40 7193520: Removed references to Linux kernel version 2.2
chegar
parents: 13048
diff changeset
   884
                    (struct sockaddr_in6 *)him;
f6a2ce6a3e40 7193520: Removed references to Linux kernel version 2.2
chegar
parents: 13048
diff changeset
   885
            him6->sin6_scope_id = cached_scope_id != 0 ?
f6a2ce6a3e40 7193520: Removed references to Linux kernel version 2.2
chegar
parents: 13048
diff changeset
   886
                                        cached_scope_id    : scope_id;
f6a2ce6a3e40 7193520: Removed references to Linux kernel version 2.2
chegar
parents: 13048
diff changeset
   887
            *len = sizeof(struct sockaddr_in6);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
#else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
        /* handle scope_id for solaris */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
        if (family != IPv4) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
            if (ia6_scopeidID) {
20821
e0d0a585aa49 8015743: Address internet addresses
michaelm
parents: 16870
diff changeset
   894
                him6->sin6_scope_id = getInet6Address_scopeid(env, iaObj);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
    } else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
#endif /* AF_INET6 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
            struct sockaddr_in *him4 = (struct sockaddr_in*)him;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
            jint address;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
            if (family == IPv6) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
              JNU_ThrowByName(env, JNU_JAVANETPKG "SocketException", "Protocol family unavailable");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
              return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
            memset((char *) him4, 0, sizeof(struct sockaddr_in));
16870
f35b2bd19761 8000724: Improve networking serialization
michaelm
parents: 14320
diff changeset
   908
            address = getInetAddress_addr(env, iaObj);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
            him4->sin_port = htons((short) port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
            him4->sin_addr.s_addr = (uint32_t) htonl(address);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
            him4->sin_family = AF_INET;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
            *len = sizeof(struct sockaddr_in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
void
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
NET_SetTrafficClass(struct sockaddr *him, int trafficClass) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
#ifdef AF_INET6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
    if (him->sa_family == AF_INET6) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
        struct sockaddr_in6 *him6 = (struct sockaddr_in6 *)him;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
        him6->sin6_flowinfo = htonl((trafficClass & 0xff) << 20);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
#endif /* AF_INET6 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
1152
29d6145d1097 4640544: New I/O: Complete socket-channel functionality
alanb
parents: 911
diff changeset
   927
JNIEXPORT jint JNICALL
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
NET_GetPortFromSockaddr(struct sockaddr *him) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
#ifdef AF_INET6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
    if (him->sa_family == AF_INET6) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
        return ntohs(((struct sockaddr_in6*)him)->sin6_port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
        } else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
#endif /* AF_INET6 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
                return ntohs(((struct sockaddr_in*)him)->sin_port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
int
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
NET_IsIPv4Mapped(jbyte* caddr) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
    int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
    for (i = 0; i < 10; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        if (caddr[i] != 0x00) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
            return 0; /* false */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    if (((caddr[10] & 0xff) == 0xff) && ((caddr[11] & 0xff) == 0xff)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        return 1; /* true */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
    return 0; /* false */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
int
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
NET_IPv4MappedToIPv4(jbyte* caddr) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
    return ((caddr[12] & 0xff) << 24) | ((caddr[13] & 0xff) << 16) | ((caddr[14] & 0xff) << 8)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
        | (caddr[15] & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
int
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
NET_IsEqual(jbyte* caddr1, jbyte* caddr2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
    int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
    for (i = 0; i < 16; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
        if (caddr1[i] != caddr2[i]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
            return 0; /* false */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
    return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
12688
f15fd32c975e 7163874: InetAddress.isReachable should support pinging 0.0.0.0
youdwei
parents: 12551
diff changeset
   972
int NET_IsZeroAddr(jbyte* caddr) {
f15fd32c975e 7163874: InetAddress.isReachable should support pinging 0.0.0.0
youdwei
parents: 12551
diff changeset
   973
    int i;
f15fd32c975e 7163874: InetAddress.isReachable should support pinging 0.0.0.0
youdwei
parents: 12551
diff changeset
   974
    for (i = 0; i < 16; i++) {
f15fd32c975e 7163874: InetAddress.isReachable should support pinging 0.0.0.0
youdwei
parents: 12551
diff changeset
   975
        if (caddr[i] != 0) {
f15fd32c975e 7163874: InetAddress.isReachable should support pinging 0.0.0.0
youdwei
parents: 12551
diff changeset
   976
            return 0;
f15fd32c975e 7163874: InetAddress.isReachable should support pinging 0.0.0.0
youdwei
parents: 12551
diff changeset
   977
        }
f15fd32c975e 7163874: InetAddress.isReachable should support pinging 0.0.0.0
youdwei
parents: 12551
diff changeset
   978
    }
f15fd32c975e 7163874: InetAddress.isReachable should support pinging 0.0.0.0
youdwei
parents: 12551
diff changeset
   979
    return 1;
f15fd32c975e 7163874: InetAddress.isReachable should support pinging 0.0.0.0
youdwei
parents: 12551
diff changeset
   980
}
f15fd32c975e 7163874: InetAddress.isReachable should support pinging 0.0.0.0
youdwei
parents: 12551
diff changeset
   981
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
 * Map the Java level socket option to the platform specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
 * level and option name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
int
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
NET_MapSocketOption(jint cmd, int *level, int *optname) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
    static struct {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
        jint cmd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
        int level;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
        int optname;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
    } const opts[] = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
        { java_net_SocketOptions_TCP_NODELAY,           IPPROTO_TCP,    TCP_NODELAY },
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
        { java_net_SocketOptions_SO_OOBINLINE,          SOL_SOCKET,     SO_OOBINLINE },
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
        { java_net_SocketOptions_SO_LINGER,             SOL_SOCKET,     SO_LINGER },
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        { java_net_SocketOptions_SO_SNDBUF,             SOL_SOCKET,     SO_SNDBUF },
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
        { java_net_SocketOptions_SO_RCVBUF,             SOL_SOCKET,     SO_RCVBUF },
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
        { java_net_SocketOptions_SO_KEEPALIVE,          SOL_SOCKET,     SO_KEEPALIVE },
22597
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
   999
#if defined(_AIX)
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1000
        { java_net_SocketOptions_SO_REUSEADDR,          SOL_SOCKET,     SO_REUSEPORT },
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1001
#else
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
        { java_net_SocketOptions_SO_REUSEADDR,          SOL_SOCKET,     SO_REUSEADDR },
22597
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1003
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
        { java_net_SocketOptions_SO_BROADCAST,          SOL_SOCKET,     SO_BROADCAST },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
        { java_net_SocketOptions_IP_TOS,                IPPROTO_IP,     IP_TOS },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
        { java_net_SocketOptions_IP_MULTICAST_IF,       IPPROTO_IP,     IP_MULTICAST_IF },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
        { java_net_SocketOptions_IP_MULTICAST_IF2,      IPPROTO_IP,     IP_MULTICAST_IF },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
        { java_net_SocketOptions_IP_MULTICAST_LOOP,     IPPROTO_IP,     IP_MULTICAST_LOOP },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
    int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
     * Different multicast options if IPv6 is enabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
#ifdef AF_INET6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
    if (ipv6_available()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
        switch (cmd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
            case java_net_SocketOptions_IP_MULTICAST_IF:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
            case java_net_SocketOptions_IP_MULTICAST_IF2:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
                *level = IPPROTO_IPV6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
                *optname = IPV6_MULTICAST_IF;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
                return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
            case java_net_SocketOptions_IP_MULTICAST_LOOP:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
                *level = IPPROTO_IPV6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
                *optname = IPV6_MULTICAST_LOOP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
                return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
     * Map the Java level option to the native level
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
    for (i=0; i<(int)(sizeof(opts) / sizeof(opts[0])); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
        if (cmd == opts[i].cmd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
            *level = opts[i].level;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
            *optname = opts[i].optname;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
    /* not found */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
    return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
 * Determine the default interface for an IPv6 address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
 * 1. Scans /proc/net/ipv6_route for a matching route
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
 *    (eg: fe80::/10 or a route for the specific address).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
 *    This will tell us the interface to use (eg: "eth0").
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
 * 2. Lookup /proc/net/if_inet6 to map the interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
 *    name to an interface index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
 * Returns :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
 *      -1 if error
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
 *       0 if no matching interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
 *      >1 interface index to use for the link-local address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
#if defined(__linux__) && defined(AF_INET6)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
int getDefaultIPv6Interface(struct in6_addr *target_addr) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
    FILE *f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
    char srcp[8][5];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
    char hopp[8][5];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
    int dest_plen, src_plen, use, refcnt, metric;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
    unsigned long flags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
    char dest_str[40];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
    struct in6_addr dest_addr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
    char device[16];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
    jboolean match = JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
     * Scan /proc/net/ipv6_route looking for a matching
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
     * route.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
    if ((f = fopen("/proc/net/ipv6_route", "r")) == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
    while (fscanf(f, "%4s%4s%4s%4s%4s%4s%4s%4s %02x "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
                     "%4s%4s%4s%4s%4s%4s%4s%4s %02x "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
                     "%4s%4s%4s%4s%4s%4s%4s%4s "
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
                     "%08x %08x %08x %08lx %8s",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
                     dest_str, &dest_str[5], &dest_str[10], &dest_str[15],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
                     &dest_str[20], &dest_str[25], &dest_str[30], &dest_str[35],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
                     &dest_plen,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
                     srcp[0], srcp[1], srcp[2], srcp[3],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
                     srcp[4], srcp[5], srcp[6], srcp[7],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
                     &src_plen,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
                     hopp[0], hopp[1], hopp[2], hopp[3],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
                     hopp[4], hopp[5], hopp[6], hopp[7],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
                     &metric, &use, &refcnt, &flags, device) == 31) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
         * Some routes should be ignored
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
        if ( (dest_plen < 0 || dest_plen > 128)  ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
             (src_plen != 0) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
             (flags & (RTF_POLICY | RTF_FLOW)) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
             ((flags & RTF_REJECT) && dest_plen == 0) ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
            continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
         * Convert the destination address
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
        dest_str[4] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
        dest_str[9] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
        dest_str[14] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
        dest_str[19] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
        dest_str[24] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
        dest_str[29] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
        dest_str[34] = ':';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
        dest_str[39] = '\0';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
        if (inet_pton(AF_INET6, dest_str, &dest_addr) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
            /* not an Ipv6 address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
            continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
             * The prefix len (dest_plen) indicates the number of bits we
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
             * need to match on.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
             *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
             * dest_plen / 8    => number of bytes to match
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
             * dest_plen % 8    => number of additional bits to match
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
             *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
             * eg: fe80::/10 => match 1 byte + 2 additional bits in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
             *                  the next byte.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
            int byte_count = dest_plen >> 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
            int extra_bits = dest_plen & 0x3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
            if (byte_count > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
                if (memcmp(target_addr, &dest_addr, byte_count)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
                    continue;  /* no match */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
            if (extra_bits > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
                unsigned char c1 = ((unsigned char *)target_addr)[byte_count];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
                unsigned char c2 = ((unsigned char *)&dest_addr)[byte_count];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
                unsigned char mask = 0xff << (8 - extra_bits);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
                if ((c1 & mask) != (c2 & mask)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
             * We have a match
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
            match = JNI_TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
    fclose(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
     * If there's a match then we lookup the interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
     * index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
    if (match) {
8554
14e626e9407b 7022269: clean up fscanf usage in Linux networking native code
chegar
parents: 7668
diff changeset
  1164
        char devname[21];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
        char addr6p[8][5];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
        int plen, scope, dad_status, if_idx;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
        if ((f = fopen("/proc/net/if_inet6", "r")) != NULL) {
11514
0cefabc1c81f 7123415: Some cases of network interface indexes being read incorrectly
chegar
parents: 11032
diff changeset
  1169
            while (fscanf(f, "%4s%4s%4s%4s%4s%4s%4s%4s %08x %02x %02x %02x %20s\n",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
                      addr6p[0], addr6p[1], addr6p[2], addr6p[3],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
                      addr6p[4], addr6p[5], addr6p[6], addr6p[7],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
                  &if_idx, &plen, &scope, &dad_status, devname) == 13) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
                if (strcmp(devname, device) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
                    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
                     * Found - so just return the index
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
                     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
                    fclose(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
                    return if_idx;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
            fclose(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
             * Couldn't open /proc/net/if_inet6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
     * If we get here it means we didn't there wasn't any
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
     * route or we couldn't get the index of the interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
 * Wrapper for getsockopt system routine - does any necessary
13999
f6a2ce6a3e40 7193520: Removed references to Linux kernel version 2.2
chegar
parents: 13048
diff changeset
  1202
 * pre/post processing to deal with OS specific oddities :-
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
 * IP_TOS is a no-op with IPv6 sockets as it's setup when
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
 * the connection is established.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
 * On Linux the SO_SNDBUF/SO_RCVBUF values must be post-processed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
 * to compensate for an incorrect value returned by the kernel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
int
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
NET_GetSockOpt(int fd, int level, int opt, void *result,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
               int *len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
    int rv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
#ifdef AF_INET6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
    if ((level == IPPROTO_IP) && (opt == IP_TOS)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
        if (ipv6_available()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
             * For IPv6 socket option implemented at Java-level
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
             * so return -1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
            int *tc = (int *)result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
            *tc = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
911
9edd1b9607e2 6730740: Fix for 6729881 has apparently broken several 64 bit tests: "Bad address"
chegar
parents: 910
diff changeset
  1231
#ifdef __solaris__
9edd1b9607e2 6730740: Fix for 6729881 has apparently broken several 64 bit tests: "Bad address"
chegar
parents: 910
diff changeset
  1232
    rv = getsockopt(fd, level, opt, result, len);
9edd1b9607e2 6730740: Fix for 6729881 has apparently broken several 64 bit tests: "Bad address"
chegar
parents: 910
diff changeset
  1233
#else
9edd1b9607e2 6730740: Fix for 6729881 has apparently broken several 64 bit tests: "Bad address"
chegar
parents: 910
diff changeset
  1234
    {
9edd1b9607e2 6730740: Fix for 6729881 has apparently broken several 64 bit tests: "Bad address"
chegar
parents: 910
diff changeset
  1235
        socklen_t socklen = *len;
9edd1b9607e2 6730740: Fix for 6729881 has apparently broken several 64 bit tests: "Bad address"
chegar
parents: 910
diff changeset
  1236
        rv = getsockopt(fd, level, opt, result, &socklen);
9edd1b9607e2 6730740: Fix for 6729881 has apparently broken several 64 bit tests: "Bad address"
chegar
parents: 910
diff changeset
  1237
        *len = socklen;
9edd1b9607e2 6730740: Fix for 6729881 has apparently broken several 64 bit tests: "Bad address"
chegar
parents: 910
diff changeset
  1238
    }
9edd1b9607e2 6730740: Fix for 6729881 has apparently broken several 64 bit tests: "Bad address"
chegar
parents: 910
diff changeset
  1239
#endif
9edd1b9607e2 6730740: Fix for 6729881 has apparently broken several 64 bit tests: "Bad address"
chegar
parents: 910
diff changeset
  1240
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
    if (rv < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
        return rv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
#ifdef __linux__
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
     * On Linux SO_SNDBUF/SO_RCVBUF aren't symmetric. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
     * stems from additional socket structures in the send
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
     * and receive buffers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
    if ((level == SOL_SOCKET) && ((opt == SO_SNDBUF)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
                                  || (opt == SO_RCVBUF))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
        int n = *((int *)result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
        n /= 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
        *((int *)result) = n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1259
/* Workaround for Mac OS treating linger value as
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1260
 *  signed integer
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1261
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1262
#ifdef MACOSX
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1263
    if (level == SOL_SOCKET && opt == SO_LINGER) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1264
        struct linger* to_cast = (struct linger*)result;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1265
        to_cast->l_linger = (unsigned short)to_cast->l_linger;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1266
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1267
#endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
    return rv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
 * Wrapper for setsockopt system routine - performs any
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
 * necessary pre/post processing to deal with OS specific
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
 * issue :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
 * On Solaris need to limit the suggested value for SO_SNDBUF
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
 * and SO_RCVBUF to the kernel configured limit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
 * For IP_TOS socket option need to mask off bits as this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
 * aren't automatically masked by the kernel and results in
13999
f6a2ce6a3e40 7193520: Removed references to Linux kernel version 2.2
chegar
parents: 13048
diff changeset
  1281
 * an error. In addition IP_TOS is a NOOP with IPv6 as it
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
 * should be setup as connection time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
int
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
NET_SetSockOpt(int fd, int level, int  opt, const void *arg,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
               int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
#ifndef IPTOS_TOS_MASK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
#define IPTOS_TOS_MASK 0x1e
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
#ifndef IPTOS_PREC_MASK
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
#define IPTOS_PREC_MASK 0xe0
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1295
#if defined(_ALLBSD_SOURCE)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1296
#if defined(KIPC_MAXSOCKBUF)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1297
    int mib[3];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1298
    size_t rlen;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1299
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1300
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1301
    int *bufsize;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1302
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1303
#ifdef __APPLE__
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1304
    static int maxsockbuf = -1;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1305
#else
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1306
    static long maxsockbuf = -1;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1307
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1308
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1309
    int addopt;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1310
    struct linger *ling;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1311
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1312
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
     * IPPROTO/IP_TOS :-
13999
f6a2ce6a3e40 7193520: Removed references to Linux kernel version 2.2
chegar
parents: 13048
diff changeset
  1315
     * 1. IPv6 on Solaris/Mac OS: NOOP and will be set
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1316
     *    in flowinfo field when connecting TCP socket,
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1317
     *    or sending UDP packet.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
     * 2. IPv6 on Linux: By default Linux ignores flowinfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
     *    field so enable IPV6_FLOWINFO_SEND so that flowinfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
     *    will be examined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
     * 3. IPv4: set socket option based on ToS and Precedence
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
     *    fields (otherwise get invalid argument)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
    if (level == IPPROTO_IP && opt == IP_TOS) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
        int *iptos;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1327
#if defined(AF_INET6) && (defined(__solaris__) || defined(MACOSX))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
        if (ipv6_available()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
#if defined(AF_INET6) && defined(__linux__)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
        if (ipv6_available()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
            int optval = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
            return setsockopt(fd, IPPROTO_IPV6, IPV6_FLOWINFO_SEND,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
                              (void *)&optval, sizeof(optval));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
        iptos = (int *)arg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
        *iptos &= (IPTOS_TOS_MASK | IPTOS_PREC_MASK);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
    /*
6696
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
  1346
     * SOL_SOCKET/{SO_SNDBUF,SO_RCVBUF} - On Solaris we may need to clamp
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
  1347
     * the value when it exceeds the system limit.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
#ifdef __solaris__
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
    if (level == SOL_SOCKET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
        if (opt == SO_SNDBUF || opt == SO_RCVBUF) {
7289
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1352
            int sotype=0, arglen;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
            int *bufsize, maxbuf;
6696
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
  1354
            int ret;
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
  1355
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
  1356
            /* Attempt with the original size */
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
  1357
            ret = setsockopt(fd, level, opt, arg, len);
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
  1358
            if ((ret == 0) || (ret == -1 && errno != ENOBUFS))
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
  1359
                return ret;
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
  1360
7201f23dae0d 6989190: SO_SNDBUF/SO_RCVBUF limits should only be checked when setsockopt fails (sol)
alanb
parents: 6670
diff changeset
  1361
            /* Exceeded system limit so clamp and retry */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
            arglen = sizeof(sotype);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
            if (getsockopt(fd, SOL_SOCKET, SO_TYPE, (void *)&sotype,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
                           &arglen) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
7289
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1369
            /*
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1370
             * We try to get tcp_maxbuf (and udp_max_buf) using
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1371
             * an ioctl() that isn't available on all versions of Solaris.
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1372
             * If that fails, we use the search algorithm in findMaxBuf()
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1373
             */
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1374
            if (!init_tcp_max_buf && sotype == SOCK_STREAM) {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1375
                tcp_max_buf = getParam("/dev/tcp", "tcp_max_buf");
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1376
                if (tcp_max_buf == -1) {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1377
                    tcp_max_buf = findMaxBuf(fd, opt, SOCK_STREAM);
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1378
                    if (tcp_max_buf == -1) {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1379
                        return -1;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1380
                    }
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1381
                }
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1382
                init_tcp_max_buf = 1;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1383
            } else if (!init_udp_max_buf && sotype == SOCK_DGRAM) {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1384
                udp_max_buf = getParam("/dev/udp", "udp_max_buf");
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1385
                if (udp_max_buf == -1) {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1386
                    udp_max_buf = findMaxBuf(fd, opt, SOCK_DGRAM);
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1387
                    if (udp_max_buf == -1) {
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1388
                        return -1;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1389
                    }
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1390
                }
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1391
                init_udp_max_buf = 1;
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1392
            }
1352201521d9 6984182: Setting SO_RCVBUF/SO_SNDBUF to larger than tcp_max_buf fails on Solaris 11 if kernel params changed
michaelm
parents: 6696
diff changeset
  1393
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
            maxbuf = (sotype == SOCK_STREAM) ? tcp_max_buf : udp_max_buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
            bufsize = (int *)arg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
            if (*bufsize > maxbuf) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
                *bufsize = maxbuf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
22597
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1403
#ifdef _AIX
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1404
    if (level == SOL_SOCKET) {
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1405
        if (opt == SO_SNDBUF || opt == SO_RCVBUF) {
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1406
            /*
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1407
             * Just try to set the requested size. If it fails we will leave the
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1408
             * socket option as is. Setting the buffer size means only a hint in
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1409
             * the jse2/java software layer, see javadoc. In the previous
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1410
             * solution the buffer has always been truncated to a length of
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1411
             * 0x100000 Byte, even if the technical limit has not been reached.
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1412
             * This kind of absolute truncation was unexpected in the jck tests.
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1413
             */
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1414
            int ret = setsockopt(fd, level, opt, arg, len);
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1415
            if ((ret == 0) || (ret == -1 && errno == ENOBUFS)) {
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1416
                // Accept failure because of insufficient buffer memory resources.
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1417
                return 0;
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1418
            } else {
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1419
                // Deliver all other kinds of errors.
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1420
                return ret;
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1421
            }
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1422
        }
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1423
    }
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1424
#endif
7515a991bb37 8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents: 20821
diff changeset
  1425
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
     * On Linux the receive buffer is used for both socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
     * structures and the the packet payload. The implication
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
     * is that if SO_RCVBUF is too small then small packets
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
     * must be discard.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
#ifdef __linux__
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
    if (level == SOL_SOCKET && opt == SO_RCVBUF) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
        int *bufsize = (int *)arg;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
        if (*bufsize < 1024) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
            *bufsize = 1024;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1441
#if defined(_ALLBSD_SOURCE)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1442
    /*
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1443
     * SOL_SOCKET/{SO_SNDBUF,SO_RCVBUF} - On FreeBSD need to
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1444
     * ensure that value is <= kern.ipc.maxsockbuf as otherwise we get
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1445
     * an ENOBUFS error.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1446
     */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1447
    if (level == SOL_SOCKET) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1448
        if (opt == SO_SNDBUF || opt == SO_RCVBUF) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1449
#ifdef KIPC_MAXSOCKBUF
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1450
            if (maxsockbuf == -1) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1451
               mib[0] = CTL_KERN;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1452
               mib[1] = KERN_IPC;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1453
               mib[2] = KIPC_MAXSOCKBUF;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1454
               rlen = sizeof(maxsockbuf);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1455
               if (sysctl(mib, 3, &maxsockbuf, &rlen, NULL, 0) == -1)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1456
                   maxsockbuf = 1024;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1457
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1458
#if 1
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1459
               /* XXXBSD: This is a hack to workaround mb_max/mb_max_adj
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1460
                  problem.  It should be removed when kern.ipc.maxsockbuf
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1461
                  will be real value. */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1462
               maxsockbuf = (maxsockbuf/5)*4;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1463
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1464
           }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1465
#elif defined(__OpenBSD__)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1466
           maxsockbuf = SB_MAX;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1467
#else
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1468
           maxsockbuf = 64 * 1024;      /* XXX: NetBSD */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1469
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1470
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1471
           bufsize = (int *)arg;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1472
           if (*bufsize > maxsockbuf) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1473
               *bufsize = maxsockbuf;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1474
           }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1475
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1476
           if (opt == SO_RCVBUF && *bufsize < 1024) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1477
                *bufsize = 1024;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1478
           }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1479
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1480
        }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1481
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1482
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1483
    /*
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1484
     * On Solaris, SO_REUSEADDR will allow multiple datagram
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1485
     * sockets to bind to the same port.  The network jck tests
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1486
     * for this "feature", so we need to emulate it by turning on
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1487
     * SO_REUSEPORT as well for that combination.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1488
     */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1489
    if (level == SOL_SOCKET && opt == SO_REUSEADDR) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1490
        int sotype;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1491
        socklen_t arglen;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1492
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1493
        arglen = sizeof(sotype);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1494
        if (getsockopt(fd, SOL_SOCKET, SO_TYPE, (void *)&sotype, &arglen) < 0) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1495
            return -1;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1496
        }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1497
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1498
        if (sotype == SOCK_DGRAM) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1499
            addopt = SO_REUSEPORT;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1500
            setsockopt(fd, level, addopt, arg, len);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1501
        }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1502
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1503
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1504
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11514
diff changeset
  1505
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
    return setsockopt(fd, level, opt, arg, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
 * Wrapper for bind system call - performs any necessary pre/post
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
 * processing to deal with OS specific issues :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
 * Linux allows a socket to bind to 127.0.0.255 which must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
 * caught.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
 *
13043
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
  1516
 * On Solaris with IPv6 enabled we must use an exclusive
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
  1517
 * bind to guarantee a unique port number across the IPv4 and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
 * IPv6 port spaces.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
int
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
NET_Bind(int fd, struct sockaddr *him, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
#if defined(__solaris__) && defined(AF_INET6)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
    int level = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
    int exclbind = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
    int rv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
#ifdef __linux__
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
     * ## get bugId for this issue - goes back to 1.2.2 port ##
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
     * ## When IPv6 is enabled this will be an IPv4-mapped
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
     * ## with family set to AF_INET6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
    if (him->sa_family == AF_INET) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
        struct sockaddr_in *sa = (struct sockaddr_in *)him;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
        if ((ntohl(sa->sin_addr.s_addr) & 0x7f0000ff) == 0x7f0000ff) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
            errno = EADDRNOTAVAIL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
#if defined(__solaris__) && defined(AF_INET6)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
    /*
13043
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
  1547
     * Solaris has separate IPv4 and IPv6 port spaces so we
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
     * use an exclusive bind when SO_REUSEADDR is not used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
     * give the illusion of a unified port space.
13043
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
  1550
     * This also avoids problems with IPv6 sockets connecting
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
     * to IPv4 mapped addresses whereby the socket conversion
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
     * results in a late bind that fails because the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
     * corresponding IPv4 port is in use.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
    if (ipv6_available()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
        int arg, len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
        len = sizeof(arg);
13043
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
  1559
        if (useExclBind || getsockopt(fd, SOL_SOCKET, SO_REUSEADDR,
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
  1560
                       (char *)&arg, &len) == 0) {
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
  1561
            if (useExclBind || arg == 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
                /*
13043
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
  1563
                 * SO_REUSEADDR is disabled or sun.net.useExclusiveBind
10fa4f21ea0f 7123896: Unexpected behavior due to Solaris using separate IPv4 and IPv6 port spaces
coffeys
parents: 12047
diff changeset
  1564
                 * property is true so enable TCP_EXCLBIND or
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
                 * UDP_EXCLBIND
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
                len = sizeof(arg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
                if (getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&arg,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
                               &len) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
                    if (arg == SOCK_STREAM) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
                        level = IPPROTO_TCP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
                        exclbind = TCP_EXCLBIND;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
                        level = IPPROTO_UDP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
                        exclbind = UDP_EXCLBIND;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
                arg = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
                setsockopt(fd, level, exclbind, (char *)&arg,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
                           sizeof(arg));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
    rv = bind(fd, him, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
#if defined(__solaris__) && defined(AF_INET6)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
    if (rv < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
        int en = errno;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
        /* Restore *_EXCLBIND if the bind fails */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
        if (exclbind != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
            int arg = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
            setsockopt(fd, level, exclbind, (char *)&arg,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
                       sizeof(arg));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
        errno = en;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
    return rv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
 * Wrapper for select/poll with timeout on a single file descriptor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
 * flags (defined in net_util_md.h can be any combination of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
 * NET_WAIT_READ, NET_WAIT_WRITE & NET_WAIT_CONNECT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
 * The function will return when either the socket is ready for one
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
 * of the specified operation or the timeout expired.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
 * It returns the time left from the timeout (possibly 0), or -1 if it expired.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
jint
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
NET_Wait(JNIEnv *env, jint fd, jint flags, jint timeout)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
    jlong prevTime = JVM_CurrentTimeMillis(env, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
    jint read_rv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
    while (1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
        jlong newTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
#ifndef USE_SELECT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
          struct pollfd pfd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
          pfd.fd = fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
          pfd.events = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
          if (flags & NET_WAIT_READ)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
            pfd.events |= POLLIN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
          if (flags & NET_WAIT_WRITE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
            pfd.events |= POLLOUT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
          if (flags & NET_WAIT_CONNECT)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
            pfd.events |= POLLOUT;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
          errno = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
          read_rv = NET_Poll(&pfd, 1, timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
#else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
          fd_set rd, wr, ex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
          struct timeval t;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
          t.tv_sec = timeout / 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
          t.tv_usec = (timeout % 1000) * 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
          FD_ZERO(&rd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
          FD_ZERO(&wr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
          FD_ZERO(&ex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
          if (flags & NET_WAIT_READ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
            FD_SET(fd, &rd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
          if (flags & NET_WAIT_WRITE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
            FD_SET(fd, &wr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
          if (flags & NET_WAIT_CONNECT) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
            FD_SET(fd, &wr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
            FD_SET(fd, &ex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
          errno = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
          read_rv = NET_Select(fd+1, &rd, &wr, &ex, &t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
        newTime = JVM_CurrentTimeMillis(env, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
        timeout -= (newTime - prevTime);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
        if (timeout <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
          return read_rv > 0 ? 0 : -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
        newTime = prevTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
        if (read_rv > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
          break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
      } /* while */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
    return timeout;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
}