author | mcberg |
Tue, 05 Apr 2016 11:37:41 -0700 | |
changeset 37293 | c010188d360f |
parent 33653 | c1ee09fe3274 |
child 41380 | c27cf95dd7e6 |
permissions | -rw-r--r-- |
2542 | 1 |
/* |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
29118
diff
changeset
|
2 |
* Copyright (c) 2009, 2015, Oracle and/or its affiliates. All rights reserved. |
2542 | 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 |
2542 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2542 | 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. |
|
2542 | 24 |
*/ |
25 |
||
26 |
#include <stdlib.h> |
|
27 |
#include <string.h> |
|
28 |
#include <dlfcn.h> |
|
29 |
||
30 |
#include "Sctp.h" |
|
31 |
#include "jni.h" |
|
32 |
#include "jni_util.h" |
|
33 |
#include "nio_util.h" |
|
34 |
#include "nio.h" |
|
35 |
#include "net_util.h" |
|
36 |
#include "net_util_md.h" |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
37 |
#include "sun_nio_ch_sctp_SctpNet.h" |
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
38 |
#include "sun_nio_ch_sctp_SctpStdSocketOption.h" |
2542 | 39 |
|
40 |
static jclass isaCls = 0; |
|
41 |
static jmethodID isaCtrID = 0; |
|
42 |
||
43 |
static const char* nativeSctpLib = "libsctp.so.1"; |
|
44 |
static jboolean funcsLoaded = JNI_FALSE; |
|
45 |
||
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
29118
diff
changeset
|
46 |
JNIEXPORT jint JNICALL DEF_JNI_OnLoad |
2542 | 47 |
(JavaVM *vm, void *reserved) { |
48 |
return JNI_VERSION_1_2; |
|
49 |
} |
|
50 |
||
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
51 |
static int preCloseFD = -1; /* File descriptor to which we dup other fd's |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
52 |
before closing them for real */ |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
53 |
|
2542 | 54 |
/** |
55 |
* Loads the native sctp library that contains the socket extension |
|
56 |
* functions, as well as locating the individual functions. |
|
57 |
* There will be a pending exception if this method returns false. |
|
58 |
*/ |
|
59 |
jboolean loadSocketExtensionFuncs |
|
60 |
(JNIEnv* env) { |
|
61 |
if (dlopen(nativeSctpLib, RTLD_GLOBAL | RTLD_LAZY) == NULL) { |
|
62 |
JNU_ThrowByName(env, "java/lang/UnsupportedOperationException", |
|
63 |
dlerror()); |
|
64 |
return JNI_FALSE; |
|
65 |
} |
|
66 |
||
67 |
if ((nio_sctp_getladdrs = (sctp_getladdrs_func*) |
|
68 |
dlsym(RTLD_DEFAULT, "sctp_getladdrs")) == NULL) { |
|
69 |
JNU_ThrowByName(env, "java/lang/UnsupportedOperationException", |
|
70 |
dlerror()); |
|
71 |
return JNI_FALSE; |
|
72 |
} |
|
73 |
||
74 |
if ((nio_sctp_freeladdrs = (sctp_freeladdrs_func*) |
|
75 |
dlsym(RTLD_DEFAULT, "sctp_freeladdrs")) == NULL) { |
|
76 |
JNU_ThrowByName(env, "java/lang/UnsupportedOperationException", |
|
77 |
dlerror()); |
|
78 |
return JNI_FALSE; |
|
79 |
} |
|
80 |
||
81 |
if ((nio_sctp_getpaddrs = (sctp_getpaddrs_func*) |
|
82 |
dlsym(RTLD_DEFAULT, "sctp_getpaddrs")) == NULL) { |
|
83 |
JNU_ThrowByName(env, "java/lang/UnsupportedOperationException", |
|
84 |
dlerror()); |
|
85 |
return JNI_FALSE; |
|
86 |
} |
|
87 |
||
88 |
if ((nio_sctp_freepaddrs = (sctp_freepaddrs_func*) |
|
89 |
dlsym(RTLD_DEFAULT, "sctp_freepaddrs")) == NULL) { |
|
90 |
JNU_ThrowByName(env, "java/lang/UnsupportedOperationException", |
|
91 |
dlerror()); |
|
92 |
return JNI_FALSE; |
|
93 |
} |
|
94 |
||
95 |
if ((nio_sctp_bindx = (sctp_bindx_func*) |
|
96 |
dlsym(RTLD_DEFAULT, "sctp_bindx")) == NULL) { |
|
97 |
JNU_ThrowByName(env, "java/lang/UnsupportedOperationException", |
|
98 |
dlerror()); |
|
99 |
return JNI_FALSE; |
|
100 |
} |
|
101 |
||
3072
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
102 |
if ((nio_sctp_peeloff = (sctp_peeloff_func*) |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
103 |
dlsym(RTLD_DEFAULT, "sctp_peeloff")) == NULL) { |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
104 |
JNU_ThrowByName(env, "java/lang/UnsupportedOperationException", |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
105 |
dlerror()); |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
106 |
return JNI_FALSE; |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
107 |
} |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
108 |
|
2542 | 109 |
funcsLoaded = JNI_TRUE; |
110 |
return JNI_TRUE; |
|
111 |
} |
|
112 |
||
4678
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
113 |
jint |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
114 |
handleSocketError(JNIEnv *env, jint errorValue) |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
115 |
{ |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
116 |
char *xn; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
117 |
switch (errorValue) { |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
118 |
case EINPROGRESS: /* Non-blocking connect */ |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
119 |
return 0; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
120 |
case EPROTO: |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
121 |
xn= JNU_JAVANETPKG "ProtocolException"; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
122 |
break; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
123 |
case ECONNREFUSED: |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
124 |
xn = JNU_JAVANETPKG "ConnectException"; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
125 |
break; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
126 |
case ETIMEDOUT: |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
127 |
xn = JNU_JAVANETPKG "ConnectException"; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
128 |
break; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
129 |
case EHOSTUNREACH: |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
130 |
xn = JNU_JAVANETPKG "NoRouteToHostException"; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
131 |
break; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
132 |
case EADDRINUSE: /* Fall through */ |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
133 |
case EADDRNOTAVAIL: |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
134 |
xn = JNU_JAVANETPKG "BindException"; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
135 |
break; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
136 |
default: |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
137 |
xn = JNU_JAVANETPKG "SocketException"; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
138 |
break; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
139 |
} |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
140 |
errno = errorValue; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
141 |
JNU_ThrowByNameWithLastError(env, xn, "NioSocketError"); |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
142 |
return IOS_THROWN; |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
143 |
} |
99fdf34405de
6917317: (sctp) Remove dependency on handleSocketError
chegar
parents:
4675
diff
changeset
|
144 |
|
2542 | 145 |
/* |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
146 |
* Class: sun_nio_ch_sctp_SctpNet |
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
147 |
* Method: init |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
148 |
* Signature: ()V |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
149 |
*/ |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
150 |
JNIEXPORT void JNICALL |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
151 |
Java_sun_nio_ch_sctp_SctpNet_init |
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
152 |
(JNIEnv *env, jclass cl) { |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
153 |
int sp[2]; |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
154 |
if (socketpair(PF_UNIX, SOCK_STREAM, 0, sp) < 0) { |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
155 |
JNU_ThrowIOExceptionWithLastError(env, "socketpair failed"); |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
156 |
return; |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
157 |
} |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
158 |
preCloseFD = sp[0]; |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
159 |
close(sp[1]); |
22646
5fa3669fd35d
8025306: Inet[4|6]Address class and fieldID initialization in networking native code
chegar
parents:
22631
diff
changeset
|
160 |
initInetAddressIDs(env); |
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
161 |
} |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
162 |
|
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
163 |
/* |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
164 |
* Class: sun_nio_ch_sctp_SctpNet |
2542 | 165 |
* Method: socket0 |
166 |
* Signature: (Z)I |
|
167 |
*/ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
168 |
JNIEXPORT jint JNICALL Java_sun_nio_ch_sctp_SctpNet_socket0 |
2542 | 169 |
(JNIEnv *env, jclass klass, jboolean oneToOne) { |
170 |
int fd; |
|
171 |
struct sctp_event_subscribe event; |
|
4814 | 172 |
#ifdef AF_INET6 |
173 |
int domain = ipv6_available() ? AF_INET6 : AF_INET; |
|
174 |
#else |
|
175 |
int domain = AF_INET; |
|
176 |
#endif |
|
2542 | 177 |
|
178 |
/* Try to load the socket API extension functions */ |
|
179 |
if (!funcsLoaded && !loadSocketExtensionFuncs(env)) { |
|
180 |
return 0; |
|
181 |
} |
|
182 |
||
4814 | 183 |
fd = socket(domain, (oneToOne ? SOCK_STREAM : SOCK_SEQPACKET), IPPROTO_SCTP); |
2542 | 184 |
|
185 |
if (fd < 0) { |
|
186 |
return handleSocketError(env, errno); |
|
187 |
} |
|
188 |
||
189 |
/* Enable events */ |
|
190 |
memset(&event, 0, sizeof(event)); |
|
191 |
event.sctp_data_io_event = 1; |
|
192 |
event.sctp_association_event = 1; |
|
193 |
event.sctp_address_event = 1; |
|
194 |
event.sctp_send_failure_event = 1; |
|
195 |
//event.sctp_peer_error_event = 1; |
|
196 |
event.sctp_shutdown_event = 1; |
|
197 |
//event.sctp_partial_delivery_event = 1; |
|
198 |
//event.sctp_adaptation_layer_event = 1; |
|
199 |
if (setsockopt(fd, IPPROTO_SCTP, SCTP_EVENTS, &event, sizeof(event)) != 0) { |
|
200 |
handleSocketError(env, errno); |
|
201 |
} |
|
202 |
return fd; |
|
203 |
} |
|
204 |
||
205 |
/* |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
206 |
* Class: sun_nio_ch_sctp_SctpNet |
2542 | 207 |
* Method: bindx |
208 |
* Signature: (I[Ljava/net/InetAddress;IIZ)V |
|
209 |
*/ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
210 |
JNIEXPORT void JNICALL Java_sun_nio_ch_sctp_SctpNet_bindx |
2542 | 211 |
(JNIEnv *env, jclass klass, jint fd, jobjectArray addrs, jint port, |
212 |
jint addrsLength, jboolean add, jboolean preferIPv6) { |
|
213 |
SOCKADDR *sap, *tmpSap; |
|
214 |
int i, sa_len = sizeof(SOCKADDR); |
|
215 |
jobject ia; |
|
216 |
||
217 |
if (addrsLength < 1) |
|
218 |
return; |
|
219 |
||
220 |
if ((sap = calloc(addrsLength, sa_len)) == NULL) { |
|
221 |
JNU_ThrowOutOfMemoryError(env, "heap allocation failure"); |
|
222 |
return; |
|
223 |
} |
|
224 |
||
225 |
tmpSap = sap; |
|
226 |
for (i=0; i<addrsLength; i++) { |
|
227 |
ia = (*env)->GetObjectArrayElement(env, addrs, i); |
|
228 |
if (NET_InetAddressToSockaddr(env, ia, port, (struct sockaddr*)tmpSap, |
|
229 |
&sa_len, preferIPv6) != 0) { |
|
230 |
free(sap); |
|
231 |
return; |
|
232 |
} |
|
233 |
tmpSap++; |
|
234 |
} |
|
235 |
||
236 |
if (nio_sctp_bindx(fd, (void*)sap, addrsLength, add ? SCTP_BINDX_ADD_ADDR : |
|
237 |
SCTP_BINDX_REM_ADDR) != 0) { |
|
238 |
handleSocketError(env, errno); |
|
239 |
} |
|
240 |
||
241 |
free(sap); |
|
242 |
} |
|
243 |
||
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
244 |
/* |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
245 |
* Class: sun_nio_ch_sctp_SctpNet |
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
246 |
* Method: listen0 |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
247 |
* Signature: (II)V |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
248 |
*/ |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
249 |
JNIEXPORT void JNICALL |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
250 |
Java_sun_nio_ch_sctp_SctpNet_listen0 |
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
251 |
(JNIEnv *env, jclass cl, jint fd, jint backlog) { |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
252 |
if (listen(fd, backlog) < 0) |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
253 |
handleSocketError(env, errno); |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
254 |
} |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
255 |
|
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
256 |
/* |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
257 |
* Class: sun_nio_ch_sctp_SctpNet |
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
258 |
* Method: connect0 |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
259 |
* Signature: (ILjava/net/InetAddress;I)I |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
260 |
*/ |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
261 |
JNIEXPORT jint JNICALL |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
262 |
Java_sun_nio_ch_sctp_SctpNet_connect0 |
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
263 |
(JNIEnv *env, jclass clazz, int fd, jobject iao, jint port) { |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
264 |
SOCKADDR sa; |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
265 |
int sa_len = SOCKADDR_LEN; |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
266 |
int rv; |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
267 |
|
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
268 |
if (NET_InetAddressToSockaddr(env, iao, port, (struct sockaddr *) &sa, |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
269 |
&sa_len, JNI_TRUE) != 0) { |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
270 |
return IOS_THROWN; |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
271 |
} |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
272 |
|
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
273 |
rv = connect(fd, (struct sockaddr *)&sa, sa_len); |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
274 |
if (rv != 0) { |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
275 |
if (errno == EINPROGRESS) { |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
276 |
return IOS_UNAVAILABLE; |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
277 |
} else if (errno == EINTR) { |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
278 |
return IOS_INTERRUPTED; |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
279 |
} |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
280 |
return handleSocketError(env, errno); |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
281 |
} |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
282 |
return 1; |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
283 |
} |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
284 |
|
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
285 |
/* |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
286 |
* Class: sun_nio_ch_sctp_SctpNet |
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
287 |
* Method: close0 |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
288 |
* Signature: (I)V |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
289 |
*/ |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
290 |
JNIEXPORT void JNICALL |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
291 |
Java_sun_nio_ch_sctp_SctpNet_close0 |
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
292 |
(JNIEnv *env, jclass clazz, jint fd) { |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
293 |
if (fd != -1) { |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
294 |
int rv = close(fd); |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
295 |
if (rv < 0) |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
296 |
JNU_ThrowIOExceptionWithLastError(env, "Close failed"); |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
297 |
} |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
298 |
} |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
299 |
|
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
300 |
/* |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
301 |
* Class: sun_nio_ch_sctp_SctpNet |
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
302 |
* Method: preClose0 |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
303 |
* Signature: (I)V |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
304 |
*/ |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
305 |
JNIEXPORT void JNICALL |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
306 |
Java_sun_nio_ch_sctp_SctpNet_preClose0 |
4669
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
307 |
(JNIEnv *env, jclass clazz, jint fd) { |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
308 |
if (preCloseFD >= 0) { |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
309 |
if (dup2(preCloseFD, fd) < 0) |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
310 |
JNU_ThrowIOExceptionWithLastError(env, "dup2 failed"); |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
311 |
} |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
312 |
} |
11d1dbd3598d
6915313: Reorganize implementation to make it more feasible to port to JDK6
chegar
parents:
3072
diff
changeset
|
313 |
|
2542 | 314 |
void initializeISA |
315 |
(JNIEnv* env) { |
|
316 |
if (isaCls == 0) { |
|
317 |
jclass c = (*env)->FindClass(env, "java/net/InetSocketAddress"); |
|
318 |
CHECK_NULL(c); |
|
28680
79674c06a625
8067680: (sctp) Possible race initializing native IDs
robm
parents:
25859
diff
changeset
|
319 |
isaCtrID = (*env)->GetMethodID(env, c, "<init>", |
79674c06a625
8067680: (sctp) Possible race initializing native IDs
robm
parents:
25859
diff
changeset
|
320 |
"(Ljava/net/InetAddress;I)V"); |
79674c06a625
8067680: (sctp) Possible race initializing native IDs
robm
parents:
25859
diff
changeset
|
321 |
CHECK_NULL(isaCtrID); |
2542 | 322 |
isaCls = (*env)->NewGlobalRef(env, c); |
323 |
CHECK_NULL(isaCls); |
|
324 |
(*env)->DeleteLocalRef(env, c); |
|
325 |
} |
|
326 |
} |
|
327 |
||
328 |
jobject SockAddrToInetSocketAddress |
|
329 |
(JNIEnv *env, struct sockaddr* sap) { |
|
330 |
int port = 0; |
|
331 |
||
332 |
jobject ia = NET_SockaddrToInetAddress(env, sap, &port); |
|
333 |
if (ia == NULL) |
|
334 |
return NULL; |
|
335 |
||
336 |
if (isaCls == 0) { |
|
337 |
initializeISA(env); |
|
338 |
CHECK_NULL_RETURN(isaCls, NULL); |
|
339 |
} |
|
340 |
||
341 |
return (*env)->NewObject(env, isaCls, isaCtrID, ia, port); |
|
342 |
} |
|
343 |
||
344 |
/* |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
345 |
* Class: sun_nio_ch_sctp_SctpNet |
2542 | 346 |
* Method: getLocalAddresses0 |
347 |
* Signature: (I)[Ljava/net/SocketAddress; |
|
348 |
*/ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
349 |
JNIEXPORT jobjectArray JNICALL Java_sun_nio_ch_sctp_SctpNet_getLocalAddresses0 |
2542 | 350 |
(JNIEnv *env, jclass klass, jint fd) { |
351 |
void *addr_buf, *laddr; |
|
352 |
struct sockaddr* sap; |
|
353 |
int i, addrCount; |
|
354 |
jobjectArray isaa; |
|
355 |
||
356 |
#ifdef __solaris__ |
|
357 |
if ((addrCount = nio_sctp_getladdrs(fd, 0, (void **)&addr_buf)) == -1) { |
|
358 |
#else /* __linux__ */ |
|
359 |
if ((addrCount = nio_sctp_getladdrs(fd, 0, (struct sockaddr **)&addr_buf)) == -1) { |
|
360 |
#endif |
|
361 |
handleSocketError(env, errno); |
|
362 |
return NULL; |
|
363 |
} |
|
364 |
||
365 |
if (addrCount < 1) |
|
366 |
return NULL; |
|
367 |
||
368 |
if (isaCls == 0) { |
|
369 |
initializeISA(env); |
|
370 |
CHECK_NULL_RETURN(isaCls, NULL); |
|
371 |
} |
|
372 |
||
373 |
isaa = (*env)->NewObjectArray(env, addrCount, isaCls, NULL); |
|
374 |
if (isaa == NULL) { |
|
375 |
nio_sctp_freeladdrs(addr_buf); |
|
376 |
return NULL; |
|
377 |
} |
|
378 |
||
379 |
laddr = addr_buf; |
|
380 |
for (i=0; i<addrCount; i++) { |
|
381 |
int port = 0; |
|
382 |
jobject isa = NULL, ia; |
|
383 |
sap = (struct sockaddr*)addr_buf; |
|
384 |
ia = NET_SockaddrToInetAddress(env, sap, &port); |
|
385 |
if (ia != NULL) |
|
386 |
isa = (*env)->NewObject(env, isaCls, isaCtrID, ia, port); |
|
22631
ac85b05a53f4
8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents:
14342
diff
changeset
|
387 |
if (isa == NULL) |
ac85b05a53f4
8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents:
14342
diff
changeset
|
388 |
break; |
ac85b05a53f4
8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents:
14342
diff
changeset
|
389 |
(*env)->SetObjectArrayElement(env, isaa, i, isa); |
2542 | 390 |
|
391 |
if (sap->sa_family == AF_INET) |
|
392 |
addr_buf = ((struct sockaddr_in*)addr_buf) + 1; |
|
393 |
else |
|
394 |
addr_buf = ((struct sockaddr_in6*)addr_buf) + 1; |
|
395 |
} |
|
396 |
||
397 |
nio_sctp_freeladdrs(laddr); |
|
398 |
return isaa; |
|
399 |
} |
|
400 |
||
401 |
jobjectArray getRemoteAddresses |
|
402 |
(JNIEnv *env, jint fd, sctp_assoc_t id) { |
|
403 |
void *addr_buf, *paddr; |
|
404 |
struct sockaddr* sap; |
|
405 |
int i, addrCount; |
|
406 |
jobjectArray isaa; |
|
407 |
||
408 |
#if __solaris__ |
|
409 |
if ((addrCount = nio_sctp_getpaddrs(fd, id, (void **)&addr_buf)) == -1) { |
|
410 |
#else /* __linux__ */ |
|
411 |
if ((addrCount = nio_sctp_getpaddrs(fd, id, (struct sockaddr**)&addr_buf)) == -1) { |
|
412 |
#endif |
|
413 |
handleSocketError(env, errno); |
|
414 |
return NULL; |
|
415 |
} |
|
416 |
||
417 |
if (addrCount < 1) |
|
418 |
return NULL; |
|
419 |
||
420 |
if (isaCls == 0) { |
|
421 |
initializeISA(env); |
|
422 |
CHECK_NULL_RETURN(isaCls, NULL); |
|
423 |
} |
|
424 |
||
425 |
isaa = (*env)->NewObjectArray(env, addrCount, isaCls, NULL); |
|
426 |
if (isaa == NULL) { |
|
427 |
nio_sctp_freepaddrs(addr_buf); |
|
428 |
return NULL; |
|
429 |
} |
|
430 |
||
431 |
paddr = addr_buf; |
|
432 |
for (i=0; i<addrCount; i++) { |
|
433 |
jobject ia, isa = NULL; |
|
29118
8782a8e91d4c
8046901: Check jdk/src/solaris/native/sun/nio for Parfait flagged uninitialized memory
msheppar
parents:
28680
diff
changeset
|
434 |
int port = 0; |
2542 | 435 |
sap = (struct sockaddr*)addr_buf; |
436 |
ia = NET_SockaddrToInetAddress(env, sap, &port); |
|
437 |
if (ia != NULL) |
|
438 |
isa = (*env)->NewObject(env, isaCls, isaCtrID, ia, port); |
|
22631
ac85b05a53f4
8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents:
14342
diff
changeset
|
439 |
if (isa == NULL) |
ac85b05a53f4
8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents:
14342
diff
changeset
|
440 |
break; |
ac85b05a53f4
8028792: (ch) Channels native code needs to be checked for methods calling JNI with pending excepitons
alanb
parents:
14342
diff
changeset
|
441 |
(*env)->SetObjectArrayElement(env, isaa, i, isa); |
2542 | 442 |
|
443 |
if (sap->sa_family == AF_INET) |
|
444 |
addr_buf = ((struct sockaddr_in*)addr_buf) + 1; |
|
445 |
else |
|
446 |
addr_buf = ((struct sockaddr_in6*)addr_buf) + 1; |
|
447 |
} |
|
448 |
||
449 |
nio_sctp_freepaddrs(paddr); |
|
450 |
||
451 |
return isaa; |
|
452 |
} |
|
453 |
||
454 |
/* |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
455 |
* Class: sun_nio_ch_sctp_SctpNet |
2542 | 456 |
* Method: getRemoteAddresses0 |
457 |
* Signature: (II)[Ljava/net/SocketAddress; |
|
458 |
*/ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
459 |
JNIEXPORT jobjectArray JNICALL Java_sun_nio_ch_sctp_SctpNet_getRemoteAddresses0 |
2542 | 460 |
(JNIEnv *env, jclass klass, jint fd, jint assocId) { |
461 |
return getRemoteAddresses(env, fd, assocId); |
|
462 |
} |
|
463 |
||
464 |
/* Map the Java level option to the native level */ |
|
465 |
int mapSocketOption |
|
466 |
(jint cmd, int *level, int *optname) { |
|
467 |
static struct { |
|
468 |
jint cmd; |
|
469 |
int level; |
|
470 |
int optname; |
|
471 |
} const opts[] = { |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
472 |
{ sun_nio_ch_sctp_SctpStdSocketOption_SCTP_DISABLE_FRAGMENTS, IPPROTO_SCTP, SCTP_DISABLE_FRAGMENTS }, |
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
473 |
{ sun_nio_ch_sctp_SctpStdSocketOption_SCTP_EXPLICIT_COMPLETE, IPPROTO_SCTP, SCTP_EXPLICIT_EOR }, |
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
474 |
{ sun_nio_ch_sctp_SctpStdSocketOption_SCTP_FRAGMENT_INTERLEAVE, IPPROTO_SCTP, SCTP_FRAGMENT_INTERLEAVE }, |
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
475 |
{ sun_nio_ch_sctp_SctpStdSocketOption_SCTP_NODELAY, IPPROTO_SCTP, SCTP_NODELAY }, |
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
476 |
{ sun_nio_ch_sctp_SctpStdSocketOption_SO_SNDBUF, SOL_SOCKET, SO_SNDBUF }, |
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
477 |
{ sun_nio_ch_sctp_SctpStdSocketOption_SO_RCVBUF, SOL_SOCKET, SO_RCVBUF }, |
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
478 |
{ sun_nio_ch_sctp_SctpStdSocketOption_SO_LINGER, SOL_SOCKET, SO_LINGER } }; |
2542 | 479 |
|
480 |
int i; |
|
481 |
for (i=0; i<(int)(sizeof(opts) / sizeof(opts[0])); i++) { |
|
482 |
if (cmd == opts[i].cmd) { |
|
483 |
*level = opts[i].level; |
|
484 |
*optname = opts[i].optname; |
|
485 |
return 0; |
|
486 |
} |
|
487 |
} |
|
488 |
||
489 |
/* not found */ |
|
490 |
return -1; |
|
491 |
} |
|
492 |
||
493 |
/* |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
494 |
* Class: sun_nio_ch_sctp_SctpNet |
2542 | 495 |
* Method: setIntOption0 |
496 |
* Signature: (III)V |
|
497 |
*/ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
498 |
JNIEXPORT void JNICALL Java_sun_nio_ch_sctp_SctpNet_setIntOption0 |
2542 | 499 |
(JNIEnv *env, jclass klass, jint fd, jint opt, int arg) { |
500 |
int klevel, kopt; |
|
501 |
int result; |
|
502 |
struct linger linger; |
|
503 |
void *parg; |
|
504 |
int arglen; |
|
505 |
||
506 |
if (mapSocketOption(opt, &klevel, &kopt) < 0) { |
|
507 |
JNU_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", |
|
508 |
"Unsupported socket option"); |
|
509 |
return; |
|
510 |
} |
|
511 |
||
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
512 |
if (opt == sun_nio_ch_sctp_SctpStdSocketOption_SO_LINGER) { |
2542 | 513 |
parg = (void *)&linger; |
514 |
arglen = sizeof(linger); |
|
515 |
if (arg >= 0) { |
|
516 |
linger.l_onoff = 1; |
|
517 |
linger.l_linger = arg; |
|
518 |
} else { |
|
519 |
linger.l_onoff = 0; |
|
520 |
linger.l_linger = 0; |
|
521 |
} |
|
522 |
} else { |
|
523 |
parg = (void *)&arg; |
|
524 |
arglen = sizeof(arg); |
|
525 |
} |
|
526 |
||
4675
68f287672813
6916922: (sctp) SO_RCVBUF & SO_SNDBUF returns twice the value set
chegar
parents:
4669
diff
changeset
|
527 |
if (NET_SetSockOpt(fd, klevel, kopt, parg, arglen) < 0) { |
2542 | 528 |
JNU_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
529 |
"sun_nio_ch_sctp_SctpNet.setIntOption0"); |
2542 | 530 |
} |
531 |
} |
|
532 |
||
533 |
/* |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
534 |
* Class: sun_nio_ch_sctp_SctpNet |
2542 | 535 |
* Method: getIntOption0 |
536 |
* Signature: (II)I |
|
537 |
*/ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
538 |
JNIEXPORT int JNICALL Java_sun_nio_ch_sctp_SctpNet_getIntOption0 |
2542 | 539 |
(JNIEnv *env, jclass klass, jint fd, jint opt) { |
540 |
int klevel, kopt; |
|
541 |
int result; |
|
542 |
struct linger linger; |
|
543 |
void *arg; |
|
6850
56966b0a6a0d
6989466: Miscellaneous compiler warnings in java/lang, java/util, java/io, sun/misc native code
alanb
parents:
5506
diff
changeset
|
544 |
int arglen; |
2542 | 545 |
|
29118
8782a8e91d4c
8046901: Check jdk/src/solaris/native/sun/nio for Parfait flagged uninitialized memory
msheppar
parents:
28680
diff
changeset
|
546 |
memset((char *) &linger, 0, sizeof(linger)); |
2542 | 547 |
if (mapSocketOption(opt, &klevel, &kopt) < 0) { |
548 |
JNU_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", |
|
549 |
"Unsupported socket option"); |
|
550 |
return -1; |
|
551 |
} |
|
552 |
||
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
553 |
if (opt == sun_nio_ch_sctp_SctpStdSocketOption_SO_LINGER) { |
2542 | 554 |
arg = (void *)&linger; |
555 |
arglen = sizeof(linger); |
|
556 |
} else { |
|
557 |
arg = (void *)&result; |
|
558 |
arglen = sizeof(result); |
|
559 |
} |
|
560 |
||
4675
68f287672813
6916922: (sctp) SO_RCVBUF & SO_SNDBUF returns twice the value set
chegar
parents:
4669
diff
changeset
|
561 |
if (NET_GetSockOpt(fd, klevel, kopt, arg, &arglen) < 0) { |
2542 | 562 |
JNU_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", |
563 |
"sun.nio.ch.Net.getIntOption"); |
|
564 |
return -1; |
|
565 |
} |
|
566 |
||
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
567 |
if (opt == sun_nio_ch_sctp_SctpStdSocketOption_SO_LINGER) |
2542 | 568 |
return linger.l_onoff ? linger.l_linger : -1; |
569 |
else |
|
570 |
return result; |
|
571 |
} |
|
572 |
||
573 |
/* |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
574 |
* Class: sun_nio_ch_sctp_SctpNet |
2542 | 575 |
* Method: getPrimAddrOption0 |
576 |
* Signature: (II)Ljava/net/SocketAddress; |
|
577 |
*/ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
578 |
JNIEXPORT jobject JNICALL Java_sun_nio_ch_sctp_SctpNet_getPrimAddrOption0 |
2542 | 579 |
(JNIEnv *env, jclass klass, jint fd, jint assocId) { |
580 |
struct sctp_setprim prim; |
|
581 |
unsigned int prim_len = sizeof(prim); |
|
3072
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
582 |
struct sockaddr* sap = (struct sockaddr*)&prim.ssp_addr; |
2542 | 583 |
|
584 |
prim.ssp_assoc_id = assocId; |
|
585 |
||
586 |
if (getsockopt(fd, IPPROTO_SCTP, SCTP_PRIMARY_ADDR, &prim, &prim_len) < 0) { |
|
587 |
JNU_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", |
|
588 |
"sun.nio.ch.SctpNet.getPrimAddrOption0"); |
|
589 |
return NULL; |
|
590 |
} |
|
591 |
||
3072
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
592 |
return SockAddrToInetSocketAddress(env, sap); |
2542 | 593 |
} |
594 |
||
595 |
/* |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
596 |
* Class: sun_nio_ch_sctp_SctpNet |
2542 | 597 |
* Method: setPrimAddrOption0 |
598 |
* Signature: (IILjava/net/InetAddress;I)V |
|
599 |
*/ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
600 |
JNIEXPORT void JNICALL Java_sun_nio_ch_sctp_SctpNet_setPrimAddrOption0 |
2542 | 601 |
(JNIEnv *env, jclass klass, jint fd, jint assocId, jobject iaObj, jint port) { |
602 |
struct sctp_setprim prim; |
|
3072
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
603 |
struct sockaddr* sap = (struct sockaddr*)&prim.ssp_addr; |
29118
8782a8e91d4c
8046901: Check jdk/src/solaris/native/sun/nio for Parfait flagged uninitialized memory
msheppar
parents:
28680
diff
changeset
|
604 |
int sap_len = sizeof(sap); |
2542 | 605 |
|
3072
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
606 |
if (NET_InetAddressToSockaddr(env, iaObj, port, sap, |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
607 |
&sap_len, JNI_TRUE) != 0) { |
2542 | 608 |
return; |
609 |
} |
|
610 |
||
611 |
prim.ssp_assoc_id = assocId; |
|
612 |
||
613 |
if (setsockopt(fd, IPPROTO_SCTP, SCTP_PRIMARY_ADDR, &prim, sizeof(prim)) < 0) { |
|
614 |
JNU_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", |
|
615 |
"sun.nio.ch.SctpNet.setPrimAddrOption0"); |
|
616 |
} |
|
617 |
} |
|
618 |
||
619 |
/* |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
620 |
* Class: sun_nio_ch_sctp_SctpNet |
2542 | 621 |
* Method: setPeerPrimAddrOption0 |
622 |
* Signature: (IILjava/net/InetAddress;I)V |
|
623 |
*/ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
624 |
JNIEXPORT void JNICALL Java_sun_nio_ch_sctp_SctpNet_setPeerPrimAddrOption0 |
7545
409091945418
7004439: SCTP_SET_PEER_PRIMARY_ADDR throws SocketException on Linux
chegar
parents:
6850
diff
changeset
|
625 |
(JNIEnv *env, jclass klass, jint fd, jint assocId, |
409091945418
7004439: SCTP_SET_PEER_PRIMARY_ADDR throws SocketException on Linux
chegar
parents:
6850
diff
changeset
|
626 |
jobject iaObj, jint port, jboolean preferIPv6) { |
2542 | 627 |
struct sctp_setpeerprim prim; |
7545
409091945418
7004439: SCTP_SET_PEER_PRIMARY_ADDR throws SocketException on Linux
chegar
parents:
6850
diff
changeset
|
628 |
struct sockaddr* sap = (struct sockaddr*)&prim.sspp_addr; |
29118
8782a8e91d4c
8046901: Check jdk/src/solaris/native/sun/nio for Parfait flagged uninitialized memory
msheppar
parents:
28680
diff
changeset
|
629 |
int sap_len = sizeof(sap); |
2542 | 630 |
|
7545
409091945418
7004439: SCTP_SET_PEER_PRIMARY_ADDR throws SocketException on Linux
chegar
parents:
6850
diff
changeset
|
631 |
if (NET_InetAddressToSockaddr(env, iaObj, port, sap, |
409091945418
7004439: SCTP_SET_PEER_PRIMARY_ADDR throws SocketException on Linux
chegar
parents:
6850
diff
changeset
|
632 |
&sap_len, preferIPv6) != 0) { |
2542 | 633 |
return; |
634 |
} |
|
635 |
||
636 |
prim.sspp_assoc_id = assocId; |
|
637 |
||
638 |
if (setsockopt(fd, IPPROTO_SCTP, SCTP_SET_PEER_PRIMARY_ADDR, &prim, |
|
639 |
sizeof(prim)) < 0) { |
|
640 |
JNU_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", |
|
641 |
"sun.nio.ch.SctpNet.setPeerPrimAddrOption0"); |
|
642 |
} |
|
643 |
} |
|
644 |
||
645 |
/* |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
646 |
* Class: sun_nio_ch_sctp_SctpNet |
2542 | 647 |
* Method: getInitMsgOption0 |
648 |
* Signature: (I[I)V |
|
649 |
*/ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
650 |
JNIEXPORT void JNICALL Java_sun_nio_ch_sctp_SctpNet_getInitMsgOption0 |
2542 | 651 |
(JNIEnv *env, jclass klass, jint fd, jintArray retVal) { |
652 |
struct sctp_initmsg sctp_initmsg; |
|
653 |
unsigned int sim_len = sizeof(sctp_initmsg); |
|
654 |
int vals[2]; |
|
655 |
||
656 |
if (getsockopt(fd, IPPROTO_SCTP, SCTP_INITMSG, &sctp_initmsg, |
|
657 |
&sim_len) < 0) { |
|
658 |
JNU_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", |
|
659 |
"sun.nio.ch.SctpNet.getInitMsgOption0"); |
|
660 |
return; |
|
661 |
} |
|
662 |
||
663 |
vals[0] = sctp_initmsg.sinit_max_instreams; |
|
664 |
vals[1] = sctp_initmsg.sinit_num_ostreams; |
|
665 |
(*env)->SetIntArrayRegion(env, retVal, 0, 2, vals); |
|
666 |
} |
|
667 |
||
668 |
/* |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
669 |
* Class: sun_nio_ch_sctp_SctpNet |
2542 | 670 |
* Method: setInitMsgOption0 |
671 |
* Signature: (III)V |
|
672 |
*/ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
673 |
JNIEXPORT void JNICALL Java_sun_nio_ch_sctp_SctpNet_setInitMsgOption0 |
2542 | 674 |
(JNIEnv *env, jclass klass, jint fd, jint inArg, jint outArg) { |
675 |
struct sctp_initmsg sctp_initmsg; |
|
676 |
||
677 |
sctp_initmsg.sinit_max_instreams = (unsigned int)inArg; |
|
678 |
sctp_initmsg.sinit_num_ostreams = (unsigned int)outArg; |
|
679 |
sctp_initmsg.sinit_max_attempts = 0; // default |
|
680 |
sctp_initmsg.sinit_max_init_timeo = 0; // default |
|
681 |
||
682 |
if (setsockopt(fd, IPPROTO_SCTP, SCTP_INITMSG, &sctp_initmsg, |
|
683 |
sizeof(sctp_initmsg)) < 0) { |
|
684 |
JNU_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", |
|
685 |
"sun.nio.ch.SctpNet.setInitMsgOption0"); |
|
686 |
} |
|
687 |
} |
|
688 |
||
689 |
/* |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
690 |
* Class: sun_nio_ch_sctp_SctpNet |
2542 | 691 |
* Method: shutdown0 |
692 |
* Signature: (II)V |
|
693 |
*/ |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
694 |
JNIEXPORT void JNICALL Java_sun_nio_ch_sctp_SctpNet_shutdown0 |
2542 | 695 |
(JNIEnv *env, jclass klass, jint fd, jint assocId) { |
696 |
int rv; |
|
697 |
struct msghdr msg[1]; |
|
698 |
struct iovec iov[1]; |
|
699 |
int cbuf_size = CMSG_SPACE(sizeof (struct sctp_sndrcvinfo)); |
|
700 |
char cbuf[CMSG_SPACE(sizeof (struct sctp_sndrcvinfo))]; |
|
701 |
struct cmsghdr* cmsg; |
|
702 |
struct sctp_sndrcvinfo *sri; |
|
703 |
||
704 |
/* SctpSocketChannel */ |
|
705 |
if (assocId < 0) { |
|
706 |
shutdown(fd, SHUT_WR); |
|
707 |
return; |
|
708 |
} |
|
709 |
||
710 |
memset(msg, 0, sizeof (*msg)); |
|
711 |
memset(cbuf, 0, cbuf_size); |
|
712 |
msg->msg_name = NULL; |
|
713 |
msg->msg_namelen = 0; |
|
714 |
iov->iov_base = NULL; |
|
715 |
iov->iov_len = 0; |
|
716 |
msg->msg_iov = iov; |
|
717 |
msg->msg_iovlen = 1; |
|
718 |
msg->msg_control = cbuf; |
|
719 |
msg->msg_controllen = cbuf_size; |
|
720 |
msg->msg_flags = 0; |
|
721 |
||
722 |
cmsg = CMSG_FIRSTHDR(msg); |
|
723 |
cmsg->cmsg_level = IPPROTO_SCTP; |
|
724 |
cmsg->cmsg_type = SCTP_SNDRCV; |
|
725 |
cmsg->cmsg_len = CMSG_LEN(sizeof(struct sctp_sndrcvinfo)); |
|
726 |
||
727 |
/* Initialize the payload: */ |
|
728 |
sri = (struct sctp_sndrcvinfo*) CMSG_DATA(cmsg); |
|
729 |
memset(sri, 0, sizeof (*sri)); |
|
730 |
||
731 |
if (assocId > 0) { |
|
732 |
sri->sinfo_assoc_id = assocId; |
|
733 |
} |
|
734 |
||
735 |
sri->sinfo_flags = sri->sinfo_flags | SCTP_EOF; |
|
736 |
||
737 |
/* Sum of the length of all control messages in the buffer. */ |
|
738 |
msg->msg_controllen = cmsg->cmsg_len; |
|
739 |
||
740 |
if ((rv = sendmsg(fd, msg, 0)) < 0) { |
|
741 |
handleSocketError(env, errno); |
|
742 |
} |
|
743 |
} |
|
744 |
||
3072
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
745 |
/* |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
746 |
* Class: sun_nio_ch_sctp_SctpNet |
3072
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
747 |
* Method: branch |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
748 |
* Signature: (II)I |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
749 |
*/ |
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
7668
diff
changeset
|
750 |
JNIEXPORT int JNICALL Java_sun_nio_ch_sctp_SctpNet_branch0 |
3072
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
751 |
(JNIEnv *env, jclass klass, jint fd, jint assocId) { |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
752 |
int newfd = 0; |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
753 |
if ((newfd = nio_sctp_peeloff(fd, assocId)) < 0) { |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
754 |
handleSocketError(env, errno); |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
755 |
} |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
756 |
|
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
757 |
return newfd; |
a801b122142f
6855335: Several changes in the SCTP implementation.
chegar
parents:
2542
diff
changeset
|
758 |
} |