author | alanb |
Wed, 07 Mar 2018 07:13:55 +0000 | |
changeset 49141 | ac95c7a76132 |
parent 48750 | ffbb784a8873 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
48750
ffbb784a8873
8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 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 |
* |
|
5506 | 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. |
|
2 | 24 |
*/ |
25 |
||
26 |
#include <netdb.h> |
|
27 |
#include <sys/types.h> |
|
28 |
#include <sys/socket.h> |
|
29 |
#include <stdlib.h> |
|
30 |
#include <errno.h> |
|
31 |
#include <string.h> |
|
32 |
#include <poll.h> |
|
33 |
||
34 |
#if __linux__ |
|
35 |
#include <netinet/in.h> |
|
36 |
#endif |
|
37 |
||
38 |
#include "jni.h" |
|
39 |
#include "jni_util.h" |
|
40 |
#include "net_util.h" |
|
41 |
#include "jvm.h" |
|
42 |
#include "jlong.h" |
|
43 |
#include "sun_nio_ch_SocketChannelImpl.h" |
|
44 |
#include "nio_util.h" |
|
45 |
#include "nio.h" |
|
46 |
||
47 |
||
48 |
JNIEXPORT jint JNICALL |
|
49 |
Java_sun_nio_ch_SocketChannelImpl_checkConnect(JNIEnv *env, jobject this, |
|
48750
ffbb784a8873
8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents:
47216
diff
changeset
|
50 |
jobject fdo, jboolean block) |
2 | 51 |
{ |
52 |
int error = 0; |
|
895 | 53 |
socklen_t n = sizeof(int); |
2 | 54 |
jint fd = fdval(env, fdo); |
55 |
int result = 0; |
|
56 |
struct pollfd poller; |
|
57 |
||
48750
ffbb784a8873
8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents:
47216
diff
changeset
|
58 |
poller.fd = fd; |
ffbb784a8873
8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents:
47216
diff
changeset
|
59 |
poller.events = POLLOUT; |
ffbb784a8873
8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents:
47216
diff
changeset
|
60 |
poller.revents = 0; |
ffbb784a8873
8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents:
47216
diff
changeset
|
61 |
result = poll(&poller, 1, block ? -1 : 0); |
49141
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
62 |
|
48750
ffbb784a8873
8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents:
47216
diff
changeset
|
63 |
if (result < 0) { |
49141
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
64 |
if (errno == EINTR) { |
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
65 |
return IOS_INTERRUPTED; |
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
66 |
} else { |
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
67 |
JNU_ThrowIOExceptionWithLastError(env, "poll failed"); |
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
68 |
return IOS_THROWN; |
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
69 |
} |
2 | 70 |
} |
48750
ffbb784a8873
8196787: (ch) Moving network channels to use j.u.c locks
alanb
parents:
47216
diff
changeset
|
71 |
if (!block && (result == 0)) |
49141
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
72 |
return IOS_UNAVAILABLE; |
2 | 73 |
|
49141
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
74 |
if (result > 0) { |
2 | 75 |
errno = 0; |
76 |
result = getsockopt(fd, SOL_SOCKET, SO_ERROR, &error, &n); |
|
77 |
if (result < 0) { |
|
49141
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
78 |
return handleSocketError(env, errno); |
2 | 79 |
} else if (error) { |
49141
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
80 |
return handleSocketError(env, error); |
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
81 |
} else if ((poller.revents & POLLHUP) != 0) { |
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
82 |
return handleSocketError(env, ENOTCONN); |
2 | 83 |
} |
49141
ac95c7a76132
8198928: (so) SocketChannel connect may deadlock if closed at around same time that connect fails
alanb
parents:
48750
diff
changeset
|
84 |
// connected |
2 | 85 |
return 1; |
86 |
} |
|
87 |
return 0; |
|
88 |
} |
|
6117
471ae95609d5
6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents:
5506
diff
changeset
|
89 |
|
471ae95609d5
6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents:
5506
diff
changeset
|
90 |
JNIEXPORT jint JNICALL |
471ae95609d5
6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents:
5506
diff
changeset
|
91 |
Java_sun_nio_ch_SocketChannelImpl_sendOutOfBandData(JNIEnv* env, jclass this, |
471ae95609d5
6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents:
5506
diff
changeset
|
92 |
jobject fdo, jbyte b) |
471ae95609d5
6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents:
5506
diff
changeset
|
93 |
{ |
471ae95609d5
6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents:
5506
diff
changeset
|
94 |
int n = send(fdval(env, fdo), (const void*)&b, 1, MSG_OOB); |
471ae95609d5
6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents:
5506
diff
changeset
|
95 |
return convertReturnVal(env, n, JNI_FALSE); |
471ae95609d5
6963907: (so) Socket adapter need to implement sendUrgentData
alanb
parents:
5506
diff
changeset
|
96 |
} |