/* If the requested name matches this host's hostname, return IP addresses *fromallattachedinterfaces.(#2844683etal)Thispreventsundesired *PPPdialup,butmayreturnaddressesthatdon'tactuallycorrespondto *thename(ifthenameactuallymatchessomethinginDNSetc.
*/
myhostname[0] = '\0'; if (gethostname(myhostname, sizeof(myhostname)) == -1) { /* Something went wrong, maybe networking is not setup? */ return NULL;
}
myhostname[NI_MAXHOST] = '\0';
if (getifaddrs(&ifa) != 0) {
NET_ThrowNew(env, errno, "Can't get local interface addresses"); return NULL;
}
name = (*env)->NewStringUTF(env, hostname); if (name == NULL) {
freeifaddrs(ifa); return NULL;
}
/* Iterate over the interfaces, and total up the number of IPv4 and IPv6 *addresseswehave.Alsokeepacountofloopbackaddresses.Weneedto *excludetheminthenormalcase,butreturnthemifwedon'tgetanIP *address.
*/ struct ifaddrs *iter = ifa; while (iter) { if (iter->ifa_addr != NULL) { int family = iter->ifa_addr->sa_family; if (iter->ifa_name[0] != '\0') {
jboolean isLoopback = iter->ifa_flags & IFF_LOOPBACK; if (family == AF_INET) {
addrs4++; if (isLoopback) numV4Loopbacks++;
} elseif (family == AF_INET6 && includeV6) {
addrs6++; if (isLoopback) numV6Loopbacks++;
} // else we don't care, e.g. AF_LINK
}
}
iter = iter->ifa_next;
}
if (addrs4 == numV4Loopbacks && addrs6 == numV6Loopbacks) { // We don't have a real IP address, just loopback. We need to include // loopback in our results.
includeLoopback = JNI_TRUE;
}
/* Create and fill the Java array. */ int arraySize = addrs4 + addrs6 -
(includeLoopback ? 0 : (numV4Loopbacks + numV6Loopbacks));
result = (*env)->NewObjectArray(env, arraySize, ia_class, NULL); if (!result) goto done;
// Now loop around the ifaddrs
iter = ifa; while (iter != NULL) { if (iter->ifa_addr != NULL) {
jboolean isLoopback = iter->ifa_flags & IFF_LOOPBACK; int family = iter->ifa_addr->sa_family;
if (iter->ifa_name[0] != '\0' &&
(family == AF_INET || (family == AF_INET6 && includeV6)) &&
(!isLoopback || includeLoopback))
{ int port; int index = (family == AF_INET) ? i++ : j++;
jobject o = NET_SockaddrToInetAddress(env,
(SOCKETADDRESS *)iter->ifa_addr, &port); if (!o) {
freeifaddrs(ifa); if (!(*env)->ExceptionCheck(env))
JNU_ThrowOutOfMemoryError(env, "Object allocation failed"); return NULL;
}
setInetAddress_hostName(env, o, name); if ((*env)->ExceptionCheck(env)) goto done;
(*env)->SetObjectArrayElement(env, result, index, o);
(*env)->DeleteLocalRef(env, o);
}
}
iter = iter->ifa_next;
}
// allocate array - at this point i contains the number of addresses
ret = (*env)->NewObjectArray(env, i, ia_class, NULL); if (IS_NULL(ret)) { /* we may have memory to free at the end of this */ goto cleanupAndReturn;
}
// open a TCP socket
fd = socket(AF_INET6, SOCK_STREAM, 0); if (fd == -1) { // note: if you run out of fds, you may not be able to load // the exception class, and get a NoClassDefFoundError instead.
NET_ThrowNew(env, errno, "Can't create socket"); return JNI_FALSE;
}
// set TTL if (ttl > 0) {
setsockopt(fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &ttl, sizeof(ttl));
}
// A network interface was specified, so let's bind to it. if (netif != NULL) { if (bind(fd, &netif->sa, sizeof(struct sockaddr_in6)) <0) {
NET_ThrowNew(env, errno, "Can't bind socket");
close(fd); return JNI_FALSE;
}
}
// Make the socket non blocking so we can use select/poll.
SET_NONBLOCKING(fd);
// connection established or refused immediately, either way it means // we were able to reach the host! if (connect_rv == 0 || errno == ECONNREFUSED) {
close(fd); return JNI_TRUE;
}
switch (errno) { case ENETUNREACH: // Network Unreachable case EAFNOSUPPORT: // Address Family not supported case EADDRNOTAVAIL: // address is not available on the remote machine #ifdefined(__linux__) || defined(_AIX) // On some Linux versions, when a socket is bound to the loopback // interface, connect will fail and errno will be set to EINVAL // or EHOSTUNREACH. When that happens, don't throw an exception, // just return false. case EINVAL: case EHOSTUNREACH: // No route to host #endif
close(fd); return JNI_FALSE; case EINPROGRESS: // this is expected as we'll probably have to wait break; default:
NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "ConnectException", "connect failed");
close(fd); return JNI_FALSE;
}
timeout = NET_Wait(env, fd, NET_WAIT_CONNECT, timeout); if (timeout >= 0) { // connection has been established, check for error condition
socklen_t optlen = (socklen_t)sizeof(connect_rv); if (getsockopt(fd, SOL_SOCKET, SO_ERROR, (void*)&connect_rv,
&optlen) <0)
{
connect_rv = errno;
} if (connect_rv == 0 || connect_rv == ECONNREFUSED) {
close(fd); return JNI_TRUE;
}
}
close(fd); return JNI_FALSE;
}
// sets the ttl (max number of hops) if (ttl > 0) {
setsockopt(fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &ttl, sizeof(ttl));
}
// a specific interface was specified, so let's bind the socket // to that interface to ensure the requests are sent only through it. if (netif != NULL) { if (bind(fd, &netif->sa, sizeof(struct sockaddr_in6)) <0) {
NET_ThrowNew(env, errno, "Can't bind socket");
close(fd); return JNI_FALSE;
}
}
// icmp_id is a 16 bit data type, therefore down cast the pid
pid = (jchar)getpid();
// Make the socket non blocking so we can use select
SET_NONBLOCKING(fd); do { // create the ICMP request
icmp6 = (struct icmp6_hdr *)sendbuf;
icmp6->icmp6_type = ICMP6_ECHO_REQUEST;
icmp6->icmp6_code = 0; // let's tag the ECHO packet with our pid so we can identify it
icmp6->icmp6_id = htons(pid);
icmp6->icmp6_seq = htons(seq);
seq++;
gettimeofday(&tv, NULL);
memcpy(sendbuf + sizeof(struct icmp6_hdr), &tv, sizeof(tv));
icmp6->icmp6_cksum = 0; // send it
n = sendto(fd, sendbuf, plen, 0, &sa->sa, sizeof(struct sockaddr_in6)); if (n < 0 && errno != EINPROGRESS) { #ifdefined(__linux__) /* *OnsomeLinuxversions,whenasocketisboundtotheloopback *interface,sendtowillfailanderrnowillbesetto *EINVALorEHOSTUNREACH.Whenthathappens,don'tthrowan *exception,justreturnfalse.
*/ if (errno != EINVAL && errno != EHOSTUNREACH) {
NET_ThrowNew(env, errno, "Can't send ICMP packet");
} #else
NET_ThrowNew(env, errno, "Can't send ICMP packet"); #endif
close(fd); return JNI_FALSE;
}
tmout2 = timeout > 1000 ? 1000 : timeout; do {
tmout2 = NET_Wait(env, fd, NET_WAIT_READ, tmout2); if (tmout2 >= 0) {
len = sizeof(sa_recv);
n = recvfrom(fd, recvbuf, sizeof(recvbuf), 0,
(struct sockaddr *)&sa_recv, &len); // check if we received enough data if (n < (jint)sizeof(struct icmp6_hdr)) { continue;
}
icmp6 = (struct icmp6_hdr *)recvbuf; // We did receive something, but is it what we were expecting? // I.E.: An ICMP6_ECHO_REPLY packet with the proper PID and // from the host that we are trying to determine is reachable. if (icmp6->icmp6_type == ICMP6_ECHO_REPLY &&
(ntohs(icmp6->icmp6_id) == pid))
{ if (NET_IsEqual((jbyte *)&sa->sa6.sin6_addr,
(jbyte *)&sa_recv.sin6_addr)) {
close(fd); return JNI_TRUE;
} elseif (NET_IsZeroAddr((jbyte *)&sa->sa6.sin6_addr)) {
close(fd); return JNI_TRUE;
}
}
}
} while (tmout2 > 0);
timeout -= 1000;
} while (timeout > 0);
close(fd); return JNI_FALSE;
}
// If IPv6 is not enabled, then we can't reach an IPv6 address, can we? // Actually, we probably shouldn't even get here. if (!ipv6_available()) { return JNI_FALSE;
}
// If it's an IPv4 address, ICMP won't work with IPv4 mapped address, // therefore, let's delegate to the Inet4Address method.
sz = (*env)->GetArrayLength(env, addrArray); if (sz == 4) { return Java_java_net_Inet4AddressImpl_isReachable0(env, this,
addrArray, timeout,
ifArray, ttl);
}
// Let's try to create a RAW socket to send ICMP packets. // This usually requires "root" privileges, so it's likely to fail.
fd = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6); if (fd == -1) { return tcp_ping6(env, &sa, netif, timeout, ttl);
} else { // It didn't fail, so we can use ICMP_ECHO requests. return ping6(env, fd, &sa, netif, timeout, ttl);
}
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.16 Sekunden
(vorverarbeitet am 2026-06-10)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.