jdk/src/java.base/unix/native/libnio/ch/ServerSocketChannelImpl.c
author msheppar
Wed, 25 Feb 2015 19:36:29 +0000
changeset 29118 8782a8e91d4c
parent 25859 3317bb8137f4
child 41380 c27cf95dd7e6
permissions -rw-r--r--
8046901: Check jdk/src/solaris/native/sun/nio for Parfait flagged uninitialized memory Reviewed-by: rriggs, alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
     2
 * Copyright (c) 2000, 2008, 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: 1247
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: 1247
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: 1247
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
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 <stdlib.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <netdb.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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#if __linux__
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include <netinet/in.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#if defined(__solaris__) && !defined(_SOCKLEN_T)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
typedef size_t socklen_t;       /* New in SunOS 5.7, so need this for 5.6 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
#include "jni.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
#include "jni_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
#include "net_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
#include "jvm.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
#include "jlong.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
#include "sun_nio_ch_ServerSocketChannelImpl.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
#include "nio.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
#include "nio_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
static jfieldID fd_fdID;        /* java.io.FileDescriptor.fd */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
static jclass isa_class;        /* java.net.InetSocketAddress */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
static jmethodID isa_ctorID;    /*   .InetSocketAddress(InetAddress, int) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
Java_sun_nio_ch_ServerSocketChannelImpl_initIDs(JNIEnv *env, jclass c)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    jclass cls;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    cls = (*env)->FindClass(env, "java/io/FileDescriptor");
22631
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
    60
    CHECK_NULL(cls);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    fd_fdID = (*env)->GetFieldID(env, cls, "fd", "I");
22631
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
    62
    CHECK_NULL(fd_fdID);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    cls = (*env)->FindClass(env, "java/net/InetSocketAddress");
22631
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
    65
    CHECK_NULL(cls);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    isa_class = (*env)->NewGlobalRef(env, cls);
22631
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
    67
    if (isa_class == NULL) {
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
    68
        JNU_ThrowOutOfMemoryError(env, NULL);
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
    69
        return;
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
    70
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    isa_ctorID = (*env)->GetMethodID(env, cls, "<init>",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
                                     "(Ljava/net/InetAddress;I)V");
22631
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
    73
    CHECK_NULL(isa_ctorID);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
Java_sun_nio_ch_ServerSocketChannelImpl_accept0(JNIEnv *env, jobject this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                                                jobject ssfdo, jobject newfdo,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                                                jobjectArray isaa)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    jint ssfd = (*env)->GetIntField(env, ssfdo, fd_fdID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    jint newfd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    struct sockaddr *sa;
895
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 2
diff changeset
    84
    int alloc_len;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    jobject remote_ia = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    jobject isa;
29118
8782a8e91d4c 8046901: Check jdk/src/solaris/native/sun/nio for Parfait flagged uninitialized memory
msheppar
parents: 25859
diff changeset
    87
    jint remote_port = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
895
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 2
diff changeset
    89
    NET_AllocSockaddr(&sa, &alloc_len);
22631
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
    90
    if (sa == NULL) {
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
    91
        JNU_ThrowOutOfMemoryError(env, NULL);
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
    92
        return IOS_THROWN;
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
    93
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * accept connection but ignore ECONNABORTED indicating that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * a connection was eagerly accepted but was reset before
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * accept() was called.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    for (;;) {
895
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 2
diff changeset
   101
        socklen_t sa_len = alloc_len;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        newfd = accept(ssfd, sa, &sa_len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        if (newfd >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        if (errno != ECONNABORTED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        /* ECONNABORTED => restart accept */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    if (newfd < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        free((void *)sa);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        if (errno == EAGAIN)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            return IOS_UNAVAILABLE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        if (errno == EINTR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            return IOS_INTERRUPTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        JNU_ThrowIOExceptionWithLastError(env, "Accept failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    (*env)->SetIntField(env, newfdo, fd_fdID, newfd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    remote_ia = NET_SockaddrToInetAddress(env, sa, (int *)&remote_port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    free((void *)sa);
22631
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
   125
    CHECK_NULL_RETURN(remote_ia, IOS_THROWN);
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
   126
    isa = (*env)->NewObject(env, isa_class, isa_ctorID, remote_ia, remote_port);
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 5506
diff changeset
   127
    CHECK_NULL_RETURN(isa, IOS_THROWN);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    (*env)->SetObjectArrayElement(env, isaa, 0, isa);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
}