src/java.base/windows/native/libnio/ch/IOUtil.c
author michaelm
Wed, 30 Oct 2019 11:53:07 +0000
branchunixdomainchannels
changeset 58856 b2f0339a4cad
parent 58847 692de65ab293
permissions -rw-r--r--
removing unnecessary diffs from mainline
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
54154
1caf2daef7cf 8220738: (sc) Move ServerSocketChannelImpl remaining native method to Net
alanb
parents: 47216
diff changeset
     2
 * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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 <windows.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <winsock2.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#include <io.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include "jni.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#include "jni_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#include "jvm.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include "jlong.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#include "nio.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#include "nio_util.h"
22646
5fa3669fd35d 8025306: Inet[4|6]Address class and fieldID initialization in networking native code
chegar
parents: 22631
diff changeset
    36
#include "net_util.h"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
#include "sun_nio_ch_IOUtil.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
/* field id for jlong 'handle' in java.io.FileDescriptor used for file fds */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
static jfieldID handle_fdID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
/* field id for jint 'fd' in java.io.FileDescriptor used for socket fds */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
static jfieldID fd_fdID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
JNIEXPORT jboolean JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
Java_sun_security_provider_NativeSeedGenerator_nativeGenerateSeed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
(JNIEnv *env, jclass clazz, jbyteArray randArray);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
/**************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * static method to store field IDs in initializers
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
Java_sun_nio_ch_IOUtil_initIDs(JNIEnv *env, jclass clazz)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
{
22631
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 14342
diff changeset
    56
    CHECK_NULL(clazz = (*env)->FindClass(env, "java/io/FileDescriptor"));
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 14342
diff changeset
    57
    CHECK_NULL(fd_fdID = (*env)->GetFieldID(env, clazz, "fd", "I"));
ac85b05a53f4 8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents: 14342
diff changeset
    58
    CHECK_NULL(handle_fdID = (*env)->GetFieldID(env, clazz, "handle", "J"));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
/**************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * IOUtil.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
JNIEXPORT jboolean JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
Java_sun_nio_ch_IOUtil_randomBytes(JNIEnv *env, jclass clazz,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                                  jbyteArray randArray)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        Java_sun_security_provider_NativeSeedGenerator_nativeGenerateSeed(env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                                                                    clazz,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                                                                    randArray);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
13024
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 5506
diff changeset
    74
JNIEXPORT jint JNICALL
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 5506
diff changeset
    75
Java_sun_nio_ch_IOUtil_iovMax(JNIEnv *env, jclass this)
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 5506
diff changeset
    76
{
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 5506
diff changeset
    77
    return 16;
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 5506
diff changeset
    78
}
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 5506
diff changeset
    79
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 5506
diff changeset
    80
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
jint
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
convertReturnVal(JNIEnv *env, jint n, jboolean reading)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    if (n > 0) /* Number of bytes written */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        if (reading) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            return IOS_EOF; /* EOF is -1 in javaland */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    JNU_ThrowIOExceptionWithLastError(env, "Read/write failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
jlong
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
convertLongReturnVal(JNIEnv *env, jlong n, jboolean reading)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    if (n > 0) /* Number of bytes written */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        if (reading) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            return IOS_EOF; /* EOF is -1 in javaland */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    JNU_ThrowIOExceptionWithLastError(env, "Read/write failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
Java_sun_nio_ch_IOUtil_fdVal(JNIEnv *env, jclass clazz, jobject fdo)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    return fdval(env, fdo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
Java_sun_nio_ch_IOUtil_setfdVal(JNIEnv *env, jclass clazz, jobject fdo, jint val)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
{
54154
1caf2daef7cf 8220738: (sc) Move ServerSocketChannelImpl remaining native method to Net
alanb
parents: 47216
diff changeset
   122
    setfdval(env, fdo, val);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
#define SET_BLOCKING 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
#define SET_NONBLOCKING 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
Java_sun_nio_ch_IOUtil_configureBlocking(JNIEnv *env, jclass clazz,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                                        jobject fdo, jboolean blocking)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    u_long argp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    int result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    jint fd = fdval(env, fdo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    if (blocking == JNI_FALSE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        argp = SET_NONBLOCKING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        argp = SET_BLOCKING;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        /* Blocking fd cannot be registered with EventSelect */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        WSAEventSelect(fd, NULL, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    result = ioctlsocket(fd, FIONBIO, &argp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    if (result == SOCKET_ERROR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        int error = WSAGetLastError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        handleSocketError(env, (jint)error);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
/* Note: Drain uses the int fd value. It is currently not called
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
   on windows.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
JNIEXPORT jboolean JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
Java_sun_nio_ch_IOUtil_drain(JNIEnv *env, jclass cl, jint fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    DWORD read = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    int totalRead = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    BOOL result = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    HANDLE h = (HANDLE)_get_osfhandle(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    char buf[128];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    if (h == INVALID_HANDLE_VALUE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        JNU_ThrowIOExceptionWithLastError(env, "Read failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        result = ReadFile(h,          /* File handle to read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                          (LPVOID)&buf,    /* address to put data */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                          128,        /* number of bytes to read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                          &read,      /* number of bytes read */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                          NULL);      /* no overlapped struct */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        if (result == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            int error = GetLastError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            if (error == ERROR_NO_DATA) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                return (totalRead > 0) ? JNI_TRUE : JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            JNU_ThrowIOExceptionWithLastError(env, "Drain");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        if (read > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            totalRead += read;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    return (totalRead > 0) ? JNI_TRUE : JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
/* Note: This function returns the int fd value from file descriptor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
   It is mostly used for sockets which should use the int fd value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
*/
58856
b2f0339a4cad removing unnecessary diffs from mainline
michaelm
parents: 58847
diff changeset
   195
jint
b2f0339a4cad removing unnecessary diffs from mainline
michaelm
parents: 58847
diff changeset
   196
fdval(JNIEnv *env, jobject fdo)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    return (*env)->GetIntField(env, fdo, fd_fdID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
58856
b2f0339a4cad removing unnecessary diffs from mainline
michaelm
parents: 58847
diff changeset
   201
void
b2f0339a4cad removing unnecessary diffs from mainline
michaelm
parents: 58847
diff changeset
   202
setfdval(JNIEnv *env, jobject fdo, jint val)
54154
1caf2daef7cf 8220738: (sc) Move ServerSocketChannelImpl remaining native method to Net
alanb
parents: 47216
diff changeset
   203
{
1caf2daef7cf 8220738: (sc) Move ServerSocketChannelImpl remaining native method to Net
alanb
parents: 47216
diff changeset
   204
    (*env)->SetIntField(env, fdo, fd_fdID, val);
1caf2daef7cf 8220738: (sc) Move ServerSocketChannelImpl remaining native method to Net
alanb
parents: 47216
diff changeset
   205
}
1caf2daef7cf 8220738: (sc) Move ServerSocketChannelImpl remaining native method to Net
alanb
parents: 47216
diff changeset
   206
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
jlong
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
handleval(JNIEnv *env, jobject fdo)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    return (*env)->GetLongField(env, fdo, handle_fdID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
}