Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/windows/native/libnio/ch/IOUtil.c
41134 views
1
/*
2
* Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
#include <windows.h>
27
#include <winsock2.h>
28
#include <io.h>
29
#include "jni.h"
30
#include "jni_util.h"
31
#include "jvm.h"
32
#include "jlong.h"
33
34
#include "nio.h"
35
#include "nio_util.h"
36
#include "net_util.h"
37
#include "sun_nio_ch_IOUtil.h"
38
39
/* field id for jlong 'handle' in java.io.FileDescriptor used for file fds */
40
static jfieldID handle_fdID;
41
42
/* field id for jint 'fd' in java.io.FileDescriptor used for socket fds */
43
static jfieldID fd_fdID;
44
45
JNIEXPORT jboolean JNICALL
46
Java_sun_security_provider_NativeSeedGenerator_nativeGenerateSeed
47
(JNIEnv *env, jclass clazz, jbyteArray randArray);
48
49
/**************************************************************
50
* static method to store field IDs in initializers
51
*/
52
53
JNIEXPORT void JNICALL
54
Java_sun_nio_ch_IOUtil_initIDs(JNIEnv *env, jclass clazz)
55
{
56
CHECK_NULL(clazz = (*env)->FindClass(env, "java/io/FileDescriptor"));
57
CHECK_NULL(fd_fdID = (*env)->GetFieldID(env, clazz, "fd", "I"));
58
CHECK_NULL(handle_fdID = (*env)->GetFieldID(env, clazz, "handle", "J"));
59
}
60
61
/**************************************************************
62
* IOUtil.c
63
*/
64
JNIEXPORT jboolean JNICALL
65
Java_sun_nio_ch_IOUtil_randomBytes(JNIEnv *env, jclass clazz,
66
jbyteArray randArray)
67
{
68
return
69
Java_sun_security_provider_NativeSeedGenerator_nativeGenerateSeed(env,
70
clazz,
71
randArray);
72
}
73
74
JNIEXPORT jint JNICALL
75
Java_sun_nio_ch_IOUtil_iovMax(JNIEnv *env, jclass this)
76
{
77
return 16;
78
}
79
80
81
jint
82
convertReturnVal(JNIEnv *env, jint n, jboolean reading)
83
{
84
if (n > 0) /* Number of bytes written */
85
return n;
86
if (n == 0) {
87
if (reading) {
88
return IOS_EOF; /* EOF is -1 in javaland */
89
} else {
90
return 0;
91
}
92
}
93
JNU_ThrowIOExceptionWithLastError(env, "Read/write failed");
94
return IOS_THROWN;
95
}
96
97
jlong
98
convertLongReturnVal(JNIEnv *env, jlong n, jboolean reading)
99
{
100
if (n > 0) /* Number of bytes written */
101
return n;
102
if (n == 0) {
103
if (reading) {
104
return IOS_EOF; /* EOF is -1 in javaland */
105
} else {
106
return 0;
107
}
108
}
109
JNU_ThrowIOExceptionWithLastError(env, "Read/write failed");
110
return IOS_THROWN;
111
}
112
113
JNIEXPORT jint JNICALL
114
Java_sun_nio_ch_IOUtil_fdVal(JNIEnv *env, jclass clazz, jobject fdo)
115
{
116
return fdval(env, fdo);
117
}
118
119
JNIEXPORT void JNICALL
120
Java_sun_nio_ch_IOUtil_setfdVal(JNIEnv *env, jclass clazz, jobject fdo, jint val)
121
{
122
setfdval(env, fdo, val);
123
}
124
125
126
#define SET_BLOCKING 0
127
#define SET_NONBLOCKING 1
128
129
JNIEXPORT void JNICALL
130
Java_sun_nio_ch_IOUtil_configureBlocking(JNIEnv *env, jclass clazz,
131
jobject fdo, jboolean blocking)
132
{
133
u_long argp;
134
int result = 0;
135
jint fd = fdval(env, fdo);
136
137
if (blocking == JNI_FALSE) {
138
argp = SET_NONBLOCKING;
139
} else {
140
argp = SET_BLOCKING;
141
/* Blocking fd cannot be registered with EventSelect */
142
WSAEventSelect(fd, NULL, 0);
143
}
144
result = ioctlsocket(fd, FIONBIO, &argp);
145
if (result == SOCKET_ERROR) {
146
int error = WSAGetLastError();
147
handleSocketError(env, (jint)error);
148
}
149
}
150
151
JNIEXPORT jboolean JNICALL
152
Java_sun_nio_ch_IOUtil_drain(JNIEnv *env, jclass cl, jint fd)
153
{
154
char buf[16];
155
jboolean readBytes = JNI_FALSE;
156
for (;;) {
157
int n = recv((SOCKET) fd, buf, sizeof(buf), 0);
158
if (n == SOCKET_ERROR) {
159
if (WSAGetLastError() != WSAEWOULDBLOCK) {
160
JNU_ThrowIOExceptionWithLastError(env, "recv failed");
161
}
162
return readBytes;
163
}
164
if (n <= 0)
165
return readBytes;
166
if (n < (int)sizeof(buf))
167
return JNI_TRUE;
168
readBytes = JNI_TRUE;
169
}
170
}
171
172
JNIEXPORT jint JNICALL
173
Java_sun_nio_ch_IOUtil_write1(JNIEnv *env, jclass cl, jint fd, jbyte b)
174
{
175
int n = send((SOCKET) fd, &b, 1, 0);
176
if (n == SOCKET_ERROR && WSAGetLastError() != WSAEWOULDBLOCK) {
177
JNU_ThrowIOExceptionWithLastError(env, "send failed");
178
return IOS_THROWN;
179
}
180
return (n == 1) ? 1 : 0;
181
}
182
183
/* Note: This function returns the int fd value from file descriptor.
184
It is mostly used for sockets which should use the int fd value.
185
*/
186
jint
187
fdval(JNIEnv *env, jobject fdo)
188
{
189
return (*env)->GetIntField(env, fdo, fd_fdID);
190
}
191
192
void
193
setfdval(JNIEnv *env, jobject fdo, jint val)
194
{
195
(*env)->SetIntField(env, fdo, fd_fdID, val);
196
}
197
198
jlong
199
handleval(JNIEnv *env, jobject fdo)
200
{
201
return (*env)->GetLongField(env, fdo, handle_fdID);
202
}
203
204