jdk/src/solaris/native/sun/nio/ch/ServerSocketChannelImpl.c
author alanb
Sun, 31 Aug 2008 18:39:01 +0100
changeset 1152 29d6145d1097
parent 895 67f1dc69ad10
child 1247 b4c26443dee5
permissions -rw-r--r--
4640544: New I/O: Complete socket-channel functionality Reviewed-by: iris, sherman, chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2000-2002 Sun Microsystems, Inc.  All Rights Reserved.
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
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");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    fd_fdID = (*env)->GetFieldID(env, cls, "fd", "I");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    cls = (*env)->FindClass(env, "java/net/InetSocketAddress");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    isa_class = (*env)->NewGlobalRef(env, cls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    isa_ctorID = (*env)->GetMethodID(env, cls, "<init>",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
                                     "(Ljava/net/InetAddress;I)V");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
Java_sun_nio_ch_ServerSocketChannelImpl_accept0(JNIEnv *env, jobject this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                                                jobject ssfdo, jobject newfdo,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                                                jobjectArray isaa)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    jint ssfd = (*env)->GetIntField(env, ssfdo, fd_fdID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    jint newfd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    struct sockaddr *sa;
895
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 2
diff changeset
    76
    int alloc_len;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    jobject remote_ia = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    jobject isa;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    jint remote_port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
895
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 2
diff changeset
    81
    NET_AllocSockaddr(&sa, &alloc_len);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * accept connection but ignore ECONNABORTED indicating that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * a connection was eagerly accepted but was reset before
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * accept() was called.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    for (;;) {
895
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 2
diff changeset
    89
        socklen_t sa_len = alloc_len;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        newfd = accept(ssfd, sa, &sa_len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        if (newfd >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        if (errno != ECONNABORTED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        /* ECONNABORTED => restart accept */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    if (newfd < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        free((void *)sa);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        if (errno == EAGAIN)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            return IOS_UNAVAILABLE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        if (errno == EINTR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            return IOS_INTERRUPTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        JNU_ThrowIOExceptionWithLastError(env, "Accept failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    (*env)->SetIntField(env, newfdo, fd_fdID, newfd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    remote_ia = NET_SockaddrToInetAddress(env, sa, (int *)&remote_port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    free((void *)sa);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    isa = (*env)->NewObject(env, isa_class, isa_ctorID,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                            remote_ia, remote_port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    (*env)->SetObjectArrayElement(env, isaa, 0, isa);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
}