Skip to content

Commit

Permalink
Add support for Windows extended socket options
Browse files Browse the repository at this point in the history
Support for this got added to JDK 17.0.10+1 and, thus,
the GraalVM code needs to account for this change.

Closes: oracle#612
  • Loading branch information
jerboaa committed Nov 10, 2023
1 parent 5637090 commit 6433634
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

import java.io.FileDescriptor;

import org.graalvm.compiler.serviceprovider.JavaVersionUtil;
import org.graalvm.nativeimage.Platform;
import org.graalvm.nativeimage.Platforms;
import org.graalvm.nativeimage.c.type.CCharPointer;
Expand All @@ -45,6 +44,7 @@
import com.oracle.svm.core.jdk.Jvm;
import com.oracle.svm.core.jdk.NativeLibrarySupport;
import com.oracle.svm.core.jdk.PlatformNativeLibrarySupport;
import com.oracle.svm.core.jdk.WindowsExtNetHelper;
import com.oracle.svm.core.log.Log;
import com.oracle.svm.core.windows.headers.FileAPI;
import com.oracle.svm.core.windows.headers.LibLoaderAPI;
Expand All @@ -56,7 +56,7 @@
class WindowsNativeLibraryFeature implements InternalFeature {
@Override
public void duringSetup(DuringSetupAccess access) {
if (JavaVersionUtil.JAVA_SPEC >= 19) {
if (WindowsExtNetHelper.isExtendedNetSupported()) {
NativeLibrarySupport.singleton().preregisterUninitializedBuiltinLibrary("extnet");
}
}
Expand Down Expand Up @@ -100,7 +100,7 @@ private static void loadNetLibrary() {
} else {
NativeLibrarySupport.singleton().registerInitializedBuiltinLibrary("net");
}
if (JavaVersionUtil.JAVA_SPEC >= 19) {
if (WindowsExtNetHelper.isExtendedNetSupported()) {
NativeLibrarySupport.singleton().registerInitializedBuiltinLibrary("extnet");
System.loadLibrary("extnet");
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
* Copyright (c) 2023, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

package com.oracle.svm.core.jdk;

import org.graalvm.compiler.serviceprovider.GraalServices;
import org.graalvm.compiler.serviceprovider.JavaVersionUtil;

public class WindowsExtNetHelper {

private WindowsExtNetHelper() {
// Don't instantiate
}

public static boolean isExtendedNetSupported() {
// returns true if and only iff extended socket options are supported. This got
// implemented in JDK 19 (JDK-8284890) and then got backported to JDK 17.0.10
// (JDK-8308593) both needing extnet library.
return JavaVersionUtil.JAVA_SPEC >= 19 ||
(JavaVersionUtil.JAVA_SPEC == 17 && GraalServices.getJavaUpdateVersion() >= 10);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
import com.oracle.svm.core.c.CGlobalDataFactory;
import com.oracle.svm.core.jdk.NativeLibrarySupport;
import com.oracle.svm.core.jdk.PlatformNativeLibrarySupport;
import com.oracle.svm.core.jdk.WindowsExtNetHelper;
import com.oracle.svm.core.jni.functions.JNIFunctionTables;
import com.oracle.svm.core.jni.headers.JNIJavaVM;
import com.oracle.svm.core.jni.headers.JNIVersion;
Expand Down Expand Up @@ -87,8 +88,8 @@ public boolean fillCGlobalDataMap(Collection<String> staticLibNames) {
// TODO: This check should be removed when all static libs will have JNI_OnLoad function
ArrayList<String> localStaticLibNames = new ArrayList<>(staticLibNames);
localStaticLibNames.retainAll(libsWithOnLoad);
if (JavaVersionUtil.JAVA_SPEC >= 19 && Platform.includedIn(Platform.WINDOWS.class)) {
/* libextnet on Windows (introduced in Java 19) does not contain an OnLoad method. */
if (WindowsExtNetHelper.isExtendedNetSupported() && Platform.includedIn(Platform.WINDOWS.class)) {
/* libextnet on Windows does not contain an OnLoad method. */
localStaticLibNames.remove("extnet");
}
boolean mapIsChanged = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import com.oracle.svm.core.feature.AutomaticallyRegisteredFeature;
import com.oracle.svm.core.feature.InternalFeature;
import com.oracle.svm.core.jdk.JNIRegistrationUtil;
import com.oracle.svm.core.jdk.WindowsExtNetHelper;
import com.oracle.svm.core.util.VMError;
import com.oracle.svm.hosted.FeatureImpl.DuringAnalysisAccessImpl;
import com.oracle.svm.util.ReflectionUtil;
Expand Down Expand Up @@ -74,10 +75,10 @@ public void duringSetup(DuringSetupAccess a) {
}
}

if (this.hasPlatformSocketOptions && (isPosix() || JavaVersionUtil.JAVA_SPEC >= 19)) {
if (this.hasPlatformSocketOptions && (isPosix() || WindowsExtNetHelper.isExtendedNetSupported())) {
/*
* The libextnet was actually introduced in Java 9, but the support for Linux, Darwin
* and Windows was added later in Java 10, Java 11 and Java 19 respectively.
* and Windows was added later in Java 10, Java 11 and Java 17 respectively.
*/
rerunClassInit(a, "jdk.net.ExtendedSocketOptions", "jdk.net.ExtendedSocketOptions$PlatformSocketOptions", "sun.net.ext.ExtendedSocketOptions");
}
Expand Down Expand Up @@ -158,7 +159,7 @@ public void beforeAnalysis(BeforeAnalysisAccess a) {
method(a, "java.net.PlainSocketImpl", "localAddress", int.class, clazz(a, "java.net.InetAddressContainer")));
}
}
if (this.hasPlatformSocketOptions && (isPosix() || JavaVersionUtil.JAVA_SPEC >= 19)) {
if (this.hasPlatformSocketOptions && (isPosix() || WindowsExtNetHelper.isExtendedNetSupported())) {
/* Support for the libextnet. */
a.registerReachabilityHandler(JNIRegistrationJavaNet::registerPlatformSocketOptionsCreate,
method(a, "jdk.net.ExtendedSocketOptions$PlatformSocketOptions", "create"));
Expand Down

0 comments on commit 6433634

Please sign in to comment.