From 7c8674903be2d07d93b1e4f39e07f31825e582e4 Mon Sep 17 00:00:00 2001 From: Alan Bateman Date: Tue, 3 May 2016 09:09:07 +0100 Subject: [PATCH 01/62] 8154956: Module system implementation refresh (4/2016) Co-authored-by: Mandy Chung Co-authored-by: Erik Joelsson Reviewed-by: alanb, mchung, chegar, redestad --- common/autoconf/generated-configure.sh | 2 +- common/autoconf/spec.gmk.in | 7 ++++--- common/conf/jib-profiles.js | 2 +- make/CreateBuildJdkCopy.gmk | 2 +- make/CreateJmods.gmk | 23 +++++++++++++++++++---- make/Main.gmk | 6 +++--- make/common/Modules.gmk | 5 ++--- 7 files changed, 31 insertions(+), 16 deletions(-) diff --git a/common/autoconf/generated-configure.sh b/common/autoconf/generated-configure.sh index 9563705cdcb..96d7beed05e 100644 --- a/common/autoconf/generated-configure.sh +++ b/common/autoconf/generated-configure.sh @@ -5070,7 +5070,7 @@ VS_SDK_PLATFORM_NAME_2013= #CUSTOM_AUTOCONF_INCLUDE # Do not change or remove the following line, it is needed for consistency checks: -DATE_WHEN_GENERATED=1460963400 +DATE_WHEN_GENERATED=1461307675 ############################################################################### # diff --git a/common/autoconf/spec.gmk.in b/common/autoconf/spec.gmk.in index c72e9d54100..0d51a3e7c48 100644 --- a/common/autoconf/spec.gmk.in +++ b/common/autoconf/spec.gmk.in @@ -569,14 +569,15 @@ BUILD_JAVA=@FIXPATH@ $(BUILD_JDK)/bin/java $(BUILD_JAVA_FLAGS) # Use ?= as this can be overridden from bootcycle-spec.gmk BOOT_JDK_MODULAR ?= @BOOT_JDK_MODULAR@ +INTERIM_OVERRIDE_MODULES := java.compiler jdk.compiler \ + jdk.jdeps jdk.javadoc jdk.rmic ifeq ($(BOOT_JDK_MODULAR), true) - INTERIM_OVERRIDE_MODULES_ARGS = -Xpatch:$(BUILDTOOLS_OUTPUTDIR)/override_modules + INTERIM_OVERRIDE_MODULES_ARGS = $(foreach m, $(INTERIM_OVERRIDE_MODULES), \ + -Xpatch:$m=$(BUILDTOOLS_OUTPUTDIR)/override_modules/$m) INTERIM_LANGTOOLS_ARGS = $(INTERIM_OVERRIDE_MODULES_ARGS) JAVAC_MAIN_CLASS = -m jdk.compiler/com.sun.tools.javac.Main JAVADOC_MAIN_CLASS = -m jdk.javadoc/jdk.javadoc.internal.tool.Main else - INTERIM_OVERRIDE_MODULES := java.compiler jdk.compiler \ - jdk.jdeps jdk.javadoc jdk.rmic INTERIM_OVERRIDE_MODULES_ARGS = \ -Xbootclasspath/p:$(call PathList, \ $(addprefix $(BUILDTOOLS_OUTPUTDIR)/override_modules/, \ diff --git a/common/conf/jib-profiles.js b/common/conf/jib-profiles.js index 9ca454e51d1..8cd62622253 100644 --- a/common/conf/jib-profiles.js +++ b/common/conf/jib-profiles.js @@ -399,7 +399,7 @@ var getJibProfilesDependencies = function (input, common) { jtreg: { server: "javare", revision: "4.2", - build_number: "b01", + build_number: "b02", checksum_file: "MD5_VALUES", file: "jtreg_bin-4.2.zip", environment_name: "JT_HOME" diff --git a/make/CreateBuildJdkCopy.gmk b/make/CreateBuildJdkCopy.gmk index ca8b3e10491..4ec9a25a711 100644 --- a/make/CreateBuildJdkCopy.gmk +++ b/make/CreateBuildJdkCopy.gmk @@ -35,7 +35,7 @@ MODULES_TO_COPY := $(call FindTransitiveDepsForModule, jdk.jlink) jdk.jlink # Copy the modules needed to run jlink and jmod. Use bulk copy instead of # SetupCopyFiles since there are so many files. -COPY_CLASSES_TARGET := $(BUILDJDK_OUTPUTDIR)/jdk/modules/_buildjdk-copy-maker +COPY_CLASSES_TARGET := $(BUILDJDK_OUTPUTDIR)/jdk/modules/java.base/_the.buildjdk-copy-marker $(COPY_CLASSES_TARGET): $(call CacheFind, $(wildcard \ $(addprefix $(JDK_OUTPUTDIR)/modules/, $(MODULES_TO_COPY)))) diff --git a/make/CreateJmods.gmk b/make/CreateJmods.gmk index fdfb7dc6884..cb08fb942c8 100644 --- a/make/CreateJmods.gmk +++ b/make/CreateJmods.gmk @@ -64,9 +64,25 @@ ifneq ($(CLASSES_DIR), ) DEPS += $(call CacheFind, $(CLASSES_DIR)) endif -# Add dependencies on other jmod files -DEPS += $(patsubst %, $(IMAGES_OUTPUTDIR)/jmods/%.jmod, \ - $(call FindDepsForModule, $(MODULE))) +# Add dependencies on other jmod files. Only java.base needs access to other +# jmods. +ifeq ($(MODULE), java.base) + DEPS += $(patsubst %, $(IMAGES_OUTPUTDIR)/jmods/%.jmod, \ + $(filter-out java.base, $(call FindAllModules))) + + # TODO: find modules that directly and indrectly on upgradeable modules + EXCLUDE_HASH_MODULES := $(UPGRADEABLE_MODULES) \ + java.se.ee \ + jdk.rmic \ + jdk.xml.bind \ + jdk.xml.ws \ + # + + EXCLUDE_PATTERN := $(strip $(subst $(SPACE),|,$(strip $(EXCLUDE_HASH_MODULES)))) + + JMOD_FLAGS += --modulepath $(IMAGES_OUTPUTDIR)/jmods \ + --hash-modules '^(?!$(EXCLUDE_PATTERN))' +endif # TODO: What about headers? # Create jmods in a temp dir and then move them into place to keep the @@ -81,7 +97,6 @@ $(IMAGES_OUTPUTDIR)/jmods/$(MODULE).jmod: $(DEPS) --os-arch $(OPENJDK_TARGET_CPU_LEGACY) \ --os-version $(REQUIRED_OS_VERSION) \ --modulepath $(IMAGES_OUTPUTDIR)/jmods\ - --hash-dependencies '.*' \ --exclude '**_the.*' \ $(JMOD_FLAGS) $(SUPPORT_OUTPUTDIR)/jmods/$(notdir $@) $(MV) $(SUPPORT_OUTPUTDIR)/jmods/$(notdir $@) $@ diff --git a/make/Main.gmk b/make/Main.gmk index a693465ec4d..91174b7eeb0 100644 --- a/make/Main.gmk +++ b/make/Main.gmk @@ -562,9 +562,9 @@ else $(foreach m, $(GENDATA_MODULES), $(eval $m-strip: $m-gendata)) $(foreach m, $(COPY_MODULES), $(eval $m-strip: $m-copy)) - # Declare dependencies between jmod targets - $(foreach m, $(JMOD_MODULES), \ - $(eval $m-jmod: $(addsuffix -jmod, $(call FindDepsForModule,$m)))) + # Declare dependencies between jmod targets. Only java.base jmod needs access + # to the other jmods to be built. + java.base-jmod: $(filter-out java.base-jmod, $(JMOD_TARGETS)) # Declare dependencies from -jmod to all other module targets $(foreach m, $(STRIP_MODULES), $(eval $m-jmod: $m-strip)) diff --git a/make/common/Modules.gmk b/make/common/Modules.gmk index cba267b0075..9a7efa3a9e1 100644 --- a/make/common/Modules.gmk +++ b/make/common/Modules.gmk @@ -38,13 +38,12 @@ _MODULES_GMK := 1 BOOT_MODULES := PLATFORM_MODULES := JRE_TOOL_MODULES := +UPGRADEABLE_MODULES := +AGGREGATOR_MODULES := # Hook to include the corresponding custom file, if present. $(eval $(call IncludeCustomExtension, , common/Modules.gmk)) -UPGRADEABLE_MDOULES := -AGGREGATOR_MDOULES := - BOOT_MODULES += \ java.base \ java.datatransfer \ From 05405b6f2e3f733285e62db8821f471648a75bbc Mon Sep 17 00:00:00 2001 From: Alan Bateman Date: Tue, 3 May 2016 09:09:14 +0100 Subject: [PATCH 02/62] 8154956: Module system implementation refresh (4/2016) Reviewed-by: mchung, chegar, redestad --- .../com/sun/tools/corba/se/idl/som/cff/FileLocator.java | 9 ++++++++- corba/src/java.corba/share/classes/module-info.java | 3 --- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/som/cff/FileLocator.java b/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/som/cff/FileLocator.java index 939de100382..d6e00e9797d 100644 --- a/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/som/cff/FileLocator.java +++ b/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/som/cff/FileLocator.java @@ -222,7 +222,8 @@ public abstract class FileLocator extends Object { /** * locateFileInClassPath returns a DataInputStream that can be used - * to read the requested file. The CLASSPATH is used to locate the file. + * to read the requested file. The resource is located in the java.corba + * module or if not found, then the CLASSPATH is searched. * * @param fileName The name of the file to locate. The file name * may be qualified with a partial path name, using '/' as the separator @@ -238,6 +239,12 @@ public abstract class FileLocator extends Object { public static DataInputStream locateFileInClassPath (String fileName) throws FileNotFoundException, IOException { + // The resource should be in the java.corba module + InputStream in = FileLocator.class.getResourceAsStream("/" + fileName); + if (in != null) { + return new DataInputStream(in); + } + boolean notFound = true; StringTokenizer st; String path = ""; diff --git a/corba/src/java.corba/share/classes/module-info.java b/corba/src/java.corba/share/classes/module-info.java index 23da4b785a9..644e19c6f80 100644 --- a/corba/src/java.corba/share/classes/module-info.java +++ b/corba/src/java.corba/share/classes/module-info.java @@ -71,7 +71,4 @@ module java.corba { java.naming; exports com.sun.jndi.url.iiopname to java.naming; - - provides javax.naming.spi.InitialContextFactory - with com.sun.jndi.cosnaming.CNCtxFactory; } From a503db18fb21f0ee9c88753c764ad57336c58fba Mon Sep 17 00:00:00 2001 From: Alan Bateman Date: Tue, 3 May 2016 09:09:20 +0100 Subject: [PATCH 03/62] 8154956: Module system implementation refresh (4/2016) Co-authored-by: Lois Foltan Co-authored-by: Harold Seigel Reviewed-by: acorn, jiangli, ccheung, hseigel --- .../src/share/vm/classfile/classLoader.cpp | 334 ++++++++++++++---- .../src/share/vm/classfile/classLoader.hpp | 54 ++- hotspot/src/share/vm/classfile/modules.cpp | 80 ++--- hotspot/src/share/vm/memory/filemap.cpp | 2 +- hotspot/src/share/vm/runtime/arguments.cpp | 326 ++++------------- hotspot/src/share/vm/runtime/arguments.hpp | 96 +++-- hotspot/src/share/vm/runtime/init.cpp | 6 +- hotspot/test/TEST.ROOT | 7 +- .../intrinsics/bmi/verifycode/AndnTestI.java | 4 +- .../intrinsics/bmi/verifycode/AndnTestL.java | 4 +- .../jsr292/CallSiteDepContextTest.java | 2 +- hotspot/test/compiler/jsr292/InvokerGC.java | 2 +- .../jsr292/NonInlinedCall/GCTest.java | 2 +- .../jsr292/NonInlinedCall/InvokeTest.java | 2 +- .../jsr292/NonInlinedCall/RedefineTest.java | 2 +- .../compiler/jsr292/VMAnonymousClasses.java | 2 +- .../compiler/stable/TestStableBoolean.java | 10 +- .../test/compiler/stable/TestStableByte.java | 10 +- .../test/compiler/stable/TestStableChar.java | 10 +- .../compiler/stable/TestStableDouble.java | 10 +- .../test/compiler/stable/TestStableFloat.java | 10 +- .../test/compiler/stable/TestStableInt.java | 10 +- .../test/compiler/stable/TestStableLong.java | 10 +- .../stable/TestStableMemoryBarrier.java | 4 +- .../compiler/stable/TestStableObject.java | 10 +- .../test/compiler/stable/TestStableShort.java | 10 +- .../test/compiler/stable/TestStableUByte.java | 8 +- .../compiler/stable/TestStableUShort.java | 8 +- .../unsafe/UnsafeGetConstantField.java | 6 +- .../BadObjectClass/BootstrapRedefine.java | 4 +- .../runtime/getSysPackage/GetSysPkgTest.java | 4 +- .../modules/AccessCheck/DiffCL_Umod.java | 4 +- .../runtime/modules/AccessCheck/Umod.java | 4 +- .../runtime/modules/JVMAddReadsModule.java | 13 +- .../modules/Visibility/XpatchVisibility.java | 4 +- .../modules/Xpatch/BasicJarBuilder.java | 96 +++++ .../runtime/modules/Xpatch/Xpatch2Dirs.java | 5 +- .../modules/Xpatch/XpatchDupJavaBase.java | 45 +++ .../modules/Xpatch/XpatchDupModule.java | 47 +++ .../modules/Xpatch/XpatchJavaBase.java | 56 +++ .../runtime/modules/Xpatch/XpatchTest.java | 4 +- .../runtime/modules/Xpatch/XpatchTestJar.java | 83 +++++ .../modules/Xpatch/XpatchTestJarDir.java | 105 ++++++ .../runtime/modules/Xpatch/XpatchTraceCL.java | 15 +- hotspot/test/runtime/modules/XpatchCDS.java | 6 +- 45 files changed, 998 insertions(+), 538 deletions(-) create mode 100644 hotspot/test/runtime/modules/Xpatch/BasicJarBuilder.java create mode 100644 hotspot/test/runtime/modules/Xpatch/XpatchDupJavaBase.java create mode 100644 hotspot/test/runtime/modules/Xpatch/XpatchDupModule.java create mode 100644 hotspot/test/runtime/modules/Xpatch/XpatchJavaBase.java create mode 100644 hotspot/test/runtime/modules/Xpatch/XpatchTestJar.java create mode 100644 hotspot/test/runtime/modules/Xpatch/XpatchTestJarDir.java diff --git a/hotspot/src/share/vm/classfile/classLoader.cpp b/hotspot/src/share/vm/classfile/classLoader.cpp index 19b0f460a9d..ebd7d84b457 100644 --- a/hotspot/src/share/vm/classfile/classLoader.cpp +++ b/hotspot/src/share/vm/classfile/classLoader.cpp @@ -140,9 +140,10 @@ PerfCounter* ClassLoader::_unsafe_defineClassCallCounter = NULL; PerfCounter* ClassLoader::_isUnsyncloadClass = NULL; PerfCounter* ClassLoader::_load_instance_class_failCounter = NULL; -ClassPathEntry* ClassLoader::_first_entry = NULL; -ClassPathEntry* ClassLoader::_last_entry = NULL; -int ClassLoader::_num_entries = 0; +GrowableArray* ClassLoader::_xpatch_entries = NULL; +ClassPathEntry* ClassLoader::_first_entry = NULL; +ClassPathEntry* ClassLoader::_last_entry = NULL; +int ClassLoader::_num_entries = 0; ClassPathEntry* ClassLoader::_first_append_entry = NULL; bool ClassLoader::_has_jimage = false; #if INCLUDE_CDS @@ -179,6 +180,44 @@ bool ClassLoader::string_ends_with(const char* str, const char* str_to_find) { return (strncmp(str + (str_len - str_to_find_len), str_to_find, str_to_find_len) == 0); } +// Used to obtain the package name from a fully qualified class name. +// It is the responsibility of the caller to establish ResourceMark. +const char* ClassLoader::package_from_name(const char* class_name) { + const char* last_slash = strrchr(class_name, '/'); + if (last_slash == NULL) { + // No package name + return NULL; + } + int length = last_slash - class_name; + + // A class name could have just the slash character in the name, + // resulting in a negative length. + if (length <= 0) { + // No package name + return NULL; + } + + // drop name after last slash (including slash) + // Ex., "java/lang/String.class" => "java/lang" + char* pkg_name = NEW_RESOURCE_ARRAY(char, length + 1); + strncpy(pkg_name, class_name, length); + *(pkg_name+length) = '\0'; + + return (const char *)pkg_name; +} + +// Given a fully qualified class name, find its defining package in the class loader's +// package entry table. +static PackageEntry* get_package_entry(const char* class_name, ClassLoaderData* loader_data, TRAPS) { + ResourceMark rm(THREAD); + const char *pkg_name = ClassLoader::package_from_name(class_name); + if (pkg_name == NULL) { + return NULL; + } + PackageEntryTable* pkgEntryTable = loader_data->packages(); + TempNewSymbol pkg_symbol = SymbolTable::new_symbol(pkg_name, CHECK_NULL); + return pkgEntryTable->lookup_only(pkg_symbol); +} ClassPathDirEntry::ClassPathDirEntry(const char* dir) : ClassPathEntry() { char* copy = NEW_C_HEAP_ARRAY(char, strlen(dir)+1, mtClass); @@ -281,8 +320,7 @@ u1* ClassPathZipEntry::open_entry(const char* name, jint* filesize, bool nul_ter #if INCLUDE_CDS u1* ClassPathZipEntry::open_versioned_entry(const char* name, jint* filesize, TRAPS) { u1* buffer = NULL; - if (!_is_boot_append) { - assert(DumpSharedSpaces, "Should be called only for non-boot entries during dump time"); + if (DumpSharedSpaces) { // We presume default is multi-release enabled const char* multi_ver = Arguments::get_property("jdk.util.jar.enableMultiRelease"); const char* verstr = Arguments::get_property("jdk.util.jar.version"); @@ -402,31 +440,6 @@ ClassPathImageEntry::~ClassPathImageEntry() { } } -void ClassPathImageEntry::name_to_package(const char* name, char* buffer, int length) { - const char *pslash = strrchr(name, '/'); - if (pslash == NULL) { - buffer[0] = '\0'; - return; - } - int len = pslash - name; -#if INCLUDE_CDS - if (len <= 0 && DumpSharedSpaces) { - buffer[0] = '\0'; - return; - } -#endif - assert(len > 0, "Bad length for package name"); - if (len >= length) { - buffer[0] = '\0'; - return; - } - // drop name after last slash (including slash) - // Ex., "java/lang/String.class" => "java/lang" - strncpy(buffer, name, len); - // ensure string termination (strncpy does not guarantee) - buffer[len] = '\0'; -} - // For a class in a named module, look it up in the jimage file using this syntax: // /// // @@ -439,15 +452,10 @@ ClassFileStream* ClassPathImageEntry::open_stream(const char* name, TRAPS) { JImageLocationRef location = (*JImageFindResource)(_jimage, "", get_jimage_version_string(), name, &size); if (location == 0) { - char package[JIMAGE_MAX_PATH]; - name_to_package(name, package, JIMAGE_MAX_PATH); + ResourceMark rm; + const char* pkg_name = ClassLoader::package_from_name(name); -#if INCLUDE_CDS - if (package[0] == '\0' && DumpSharedSpaces) { - return NULL; - } -#endif - if (package[0] != '\0') { + if (pkg_name != NULL) { if (!Universe::is_module_initialized()) { location = (*JImageFindResource)(_jimage, "java.base", get_jimage_version_string(), name, &size); #if INCLUDE_CDS @@ -455,7 +463,7 @@ ClassFileStream* ClassPathImageEntry::open_stream(const char* name, TRAPS) { // modules defined for other class loaders. So, for now, get their module // names from the "modules" jimage file. if (DumpSharedSpaces && location == 0) { - const char* module_name = (*JImagePackageToModule)(_jimage, package); + const char* module_name = (*JImagePackageToModule)(_jimage, pkg_name); if (module_name != NULL) { location = (*JImageFindResource)(_jimage, module_name, get_jimage_version_string(), name, &size); } @@ -463,13 +471,7 @@ ClassFileStream* ClassPathImageEntry::open_stream(const char* name, TRAPS) { #endif } else { - // Get boot class loader's package entry table - PackageEntryTable* pkgEntryTable = - ClassLoaderData::the_null_class_loader_data()->packages(); - // Get package's package entry - TempNewSymbol pkg_symbol = SymbolTable::new_symbol(package, CHECK_NULL); - PackageEntry* package_entry = pkgEntryTable->lookup_only(pkg_symbol); - + PackageEntry* package_entry = get_package_entry(name, ClassLoaderData::the_null_class_loader_data(), THREAD); if (package_entry != NULL) { ResourceMark rm; // Get the module name @@ -542,6 +544,33 @@ void ClassLoader::exit_with_path_failure(const char* error, const char* message) } #endif +ModuleClassPathList::ModuleClassPathList(Symbol* module_name) { + _module_name = module_name; + _module_first_entry = NULL; + _module_last_entry = NULL; +} + +ModuleClassPathList::~ModuleClassPathList() { + // Clean out each ClassPathEntry on list + ClassPathEntry* e = _module_first_entry; + while (e != NULL) { + ClassPathEntry* next_entry = e->next(); + delete e; + e = next_entry; + } +} + +void ModuleClassPathList::add_to_list(ClassPathEntry* new_entry) { + if (new_entry != NULL) { + if (_module_last_entry == NULL) { + _module_first_entry = _module_last_entry = new_entry; + } else { + _module_last_entry->set_next(new_entry); + _module_last_entry = new_entry; + } + } +} + void ClassLoader::trace_class_path(const char* msg, const char* name) { if (log_is_enabled(Info, classpath)) { ResourceMark rm; @@ -619,6 +648,61 @@ bool ClassLoader::check_shared_paths_misc_info(void *buf, int size) { } #endif +// Construct the array of module/path pairs as specified to -Xpatch +// for the boot loader to search ahead of the jimage, if the class being +// loaded is defined to a module that has been specified to -Xpatch. +void ClassLoader::setup_xpatch_entries() { + Thread* THREAD = Thread::current(); + GrowableArray* xpatch_args = Arguments::get_xpatchprefix(); + int num_of_entries = xpatch_args->length(); + + // Set up the boot loader's xpatch_entries list + _xpatch_entries = new (ResourceObj::C_HEAP, mtInternal) GrowableArray(num_of_entries, true); + + for (int i = 0; i < num_of_entries; i++) { + const char* module_name = (xpatch_args->at(i))->module_name(); + Symbol* const module_sym = SymbolTable::lookup(module_name, (int)strlen(module_name), CHECK); + assert(module_sym != NULL, "Failed to obtain Symbol for module name"); + ModuleClassPathList* module_cpl = new ModuleClassPathList(module_sym); + + char* class_path = (xpatch_args->at(i))->path_string(); + int len = (int)strlen(class_path); + int end = 0; + // Iterate over the module's class path entries + for (int start = 0; start < len; start = end) { + while (class_path[end] && class_path[end] != os::path_separator()[0]) { + end++; + } + EXCEPTION_MARK; + ResourceMark rm(THREAD); + char* path = NEW_RESOURCE_ARRAY(char, end - start + 1); + strncpy(path, &class_path[start], end - start); + path[end - start] = '\0'; + + struct stat st; + if (os::stat(path, &st) == 0) { + // File or directory found + Thread* THREAD = Thread::current(); + ClassPathEntry* new_entry = create_class_path_entry(path, &st, false, false, CHECK); + // If the path specification is valid, enter it into this module's list + if (new_entry != NULL) { + module_cpl->add_to_list(new_entry); + } + } + + while (class_path[end] == os::path_separator()[0]) { + end++; + } + } + + // Record the module into the list of -Xpatch entries only if + // valid ClassPathEntrys have been created + if (module_cpl->module_first_entry() != NULL) { + _xpatch_entries->push(module_cpl); + } + } +} + void ClassLoader::setup_search_path(const char *class_path, bool bootstrap_search) { int offset = 0; int len = (int)strlen(class_path); @@ -850,8 +934,29 @@ bool ClassLoader::update_class_path_entry_list(const char *path, } void ClassLoader::print_bootclasspath() { - ClassPathEntry* e = _first_entry; + ClassPathEntry* e; tty->print("[bootclasspath= "); + + // Print -Xpatch module/path specifications first + if (_xpatch_entries != NULL) { + ResourceMark rm; + int num_of_entries = _xpatch_entries->length(); + for (int i = 0; i < num_of_entries; i++) { + ModuleClassPathList* mpl = _xpatch_entries->at(i); + tty->print("%s=", mpl->module_name()->as_C_string()); + e = mpl->module_first_entry(); + while (e != NULL) { + tty->print("%s", e->name()); + e = e->next(); + if (e != NULL) { + tty->print("%s", os::path_separator()); + } + } + tty->print(" ;"); + } + } + + e = _first_entry; while (e != NULL) { tty->print("%s ;", e->name()); e = e->next(); @@ -941,6 +1046,7 @@ int ClassLoader::crc32(int crc, const char* buf, int len) { #if INCLUDE_CDS void ClassLoader::initialize_module_loader_map(JImageFile* jimage) { + ResourceMark rm; jlong size; JImageLocationRef location = (*JImageFindResource)(jimage, "java.base", get_jimage_version_string(), MODULE_LOADER_MAP, &size); if (location == 0) { @@ -985,7 +1091,6 @@ void ClassLoader::initialize_module_loader_map(JImageFile* jimage) { begin_ptr = ++end_ptr; end_ptr = strchr(begin_ptr, '\n'); } - FREE_RESOURCE_ARRAY(u1, buffer, size); } #endif @@ -1106,8 +1211,7 @@ s2 ClassLoader::module_to_classloader(const char* module_name) { } #endif -s2 ClassLoader::classloader_type(Symbol* class_name, ClassPathEntry* e, - int classpath_index, TRAPS) { +s2 ClassLoader::classloader_type(Symbol* class_name, ClassPathEntry* e, int classpath_index, TRAPS) { #if INCLUDE_CDS // obtain the classloader type based on the class name. // First obtain the package name based on the class name. Then obtain @@ -1157,12 +1261,11 @@ const char* ClassLoader::file_name_for_class_name(const char* class_name, } instanceKlassHandle ClassLoader::load_class(Symbol* name, bool search_append_only, TRAPS) { - assert(name != NULL, "invariant"); assert(THREAD->is_Java_thread(), "must be a JavaThread"); - ResourceMark rm; - HandleMark hm; + ResourceMark rm(THREAD); + HandleMark hm(THREAD); const char* const class_name = name->as_C_string(); @@ -1178,30 +1281,101 @@ instanceKlassHandle ClassLoader::load_class(Symbol* name, bool search_append_onl // Lookup stream for parsing .class file ClassFileStream* stream = NULL; s2 classpath_index = 0; + ClassPathEntry* e = NULL; // If DumpSharedSpaces is true, boot loader visibility boundaries are set - // to be _first_entry to the end (all path entries). + // to be _first_entry to the end (all path entries). No -Xpatch entries are + // included since CDS and AppCDS are not supported if -Xpatch is specified. // // If search_append_only is true, boot loader visibility boundaries are - // set to be _fist_append_entry to the end. This includes: + // set to be _first_append_entry to the end. This includes: // [-Xbootclasspath/a]; [jvmti appended entries] // // If both DumpSharedSpaces and search_append_only are false, boot loader // visibility boundaries are set to be _first_entry to the entry before // the _first_append_entry. This would include: - // [-Xpatch:]; [exploded build | modules] + // [-Xpatch:=()*]; [exploded build | jimage] // // DumpSharedSpaces and search_append_only are mutually exclusive and cannot // be true at the same time. - ClassPathEntry* e = (search_append_only ? _first_append_entry : _first_entry); - ClassPathEntry* last_e = - (search_append_only || DumpSharedSpaces ? NULL : _first_append_entry); + assert(!(DumpSharedSpaces && search_append_only), "DumpSharedSpaces and search_append_only are both true"); - { + // Load Attempt #1: -Xpatch + // Determine the class' defining module. If it appears in the _xpatch_entries, + // attempt to load the class from those locations specific to the module. + // Note: The -Xpatch entries are never searched if the boot loader's + // visibility boundary is limited to only searching the append entries. + if (_xpatch_entries != NULL && !search_append_only && !DumpSharedSpaces) { + // Find the module in the boot loader's module entry table + PackageEntry* pkg_entry = get_package_entry(class_name, ClassLoaderData::the_null_class_loader_data(), THREAD); + ModuleEntry* mod_entry = (pkg_entry != NULL) ? pkg_entry->module() : NULL; + + // If the module system has not defined java.base yet, then + // classes loaded are assumed to be defined to java.base. + // When java.base is eventually defined by the module system, + // all packages of classes that have been previously loaded + // are verified in ModuleEntryTable::verify_javabase_packages(). + if (!Universe::is_module_initialized() && + !ModuleEntryTable::javabase_defined() && + mod_entry == NULL) { + mod_entry = ModuleEntryTable::javabase_module(); + } + + // The module must be a named module + if (mod_entry != NULL && mod_entry->is_named()) { + int num_of_entries = _xpatch_entries->length(); + const Symbol* class_module_name = mod_entry->name(); + + // Loop through all the xpatch entries looking for module + for (int i = 0; i < num_of_entries; i++) { + ModuleClassPathList* module_cpl = _xpatch_entries->at(i); + Symbol* module_cpl_name = module_cpl->module_name(); + + if (module_cpl_name->fast_compare(class_module_name) == 0) { + // Class' module has been located, attempt to load + // the class from the module's ClassPathEntry list. + e = module_cpl->module_first_entry(); + while (e != NULL) { + stream = e->open_stream(file_name, CHECK_NULL); + // No context.check is required since both CDS + // and AppCDS are turned off if -Xpatch is specified. + if (NULL != stream) { + break; + } + e = e->next(); + } + // If the module was located in the xpatch entries, break out + // even if the class was not located successfully from that module's + // ClassPathEntry list. There will not be another valid entry for + // that module in the _xpatch_entries array. + break; + } + } + } + } + + // Load Attempt #2: [exploded build | jimage] + if (!search_append_only && (NULL == stream)) { + e = _first_entry; + while ((e != NULL) && (e != _first_append_entry)) { + stream = e->open_stream(file_name, CHECK_NULL); + if (!context.check(stream, classpath_index)) { + return NULL; + } + if (NULL != stream) { + break; + } + e = e->next(); + ++classpath_index; + } + } + + // Load Attempt #3: [-Xbootclasspath/a]; [jvmti appended entries] + if ((search_append_only || DumpSharedSpaces) && (NULL == stream)) { + // For the boot loader append path search, must calculate + // the starting classpath_index prior to attempting to + // load the classfile. if (search_append_only) { - // For the boot loader append path search, must calculate - // the starting classpath_index prior to attempting to - // load the classfile. ClassPathEntry *tmp_e = _first_entry; while ((tmp_e != NULL) && (tmp_e != _first_append_entry)) { tmp_e = tmp_e->next(); @@ -1209,11 +1383,8 @@ instanceKlassHandle ClassLoader::load_class(Symbol* name, bool search_append_onl } } - // Attempt to load the classfile from either: - // - [-Xpatch:dir]; exploded build | modules - // or - // - [-Xbootclasspath/a]; [jvmti appended entries] - while ((e != NULL) && (e != last_e)) { + e = _first_append_entry; + while (e != NULL) { stream = e->open_stream(file_name, CHECK_NULL); if (!context.check(stream, classpath_index)) { return NULL; @@ -1384,10 +1555,23 @@ int ClassLoader::compute_Object_vtable() { } -void classLoader_init() { +void classLoader_init1() { ClassLoader::initialize(); } +// Complete the ClassPathEntry setup for the boot loader +void classLoader_init2() { + // Setup the list of module/path pairs for -Xpatch processing + // This must be done after the SymbolTable is created in order + // to use fast_compare on module names instead of a string compare. + if (Arguments::get_xpatchprefix() != NULL) { + ClassLoader::setup_xpatch_entries(); + } + + // Determine if this is an exploded build + ClassLoader::set_has_jimage(); +} + bool ClassLoader::get_canonical_path(const char* orig, char* out, int len) { assert(orig != NULL && out != NULL && len > 0, "bad arguments"); @@ -1431,17 +1615,19 @@ void ClassLoader::create_javabase() { } ModuleEntryTable::set_javabase_module(jb_module); } +} - // When looking for the jimage file, only - // search the boot loader's module path which - // can consist of [-Xpatch]; exploded build | modules - // Do not search the boot loader's append path. +void ClassLoader::set_has_jimage() { + // Determine if this is an exploded build. When looking for + // the jimage file, only search the piece of the boot + // loader's boot class path which contains [exploded build | jimage]. + // Do not search the boot loader's xpatch entries or append path. ClassPathEntry* e = _first_entry; ClassPathEntry* last_e = _first_append_entry; while ((e != NULL) && (e != last_e)) { JImageFile *jimage = e->jimage(); if (jimage != NULL && e->is_jrt()) { - set_has_jimage(true); + _has_jimage = true; #if INCLUDE_CDS ClassLoader::initialize_module_loader_map(jimage); #endif diff --git a/hotspot/src/share/vm/classfile/classLoader.hpp b/hotspot/src/share/vm/classfile/classLoader.hpp index fc1d335b7ab..1168f322486 100644 --- a/hotspot/src/share/vm/classfile/classLoader.hpp +++ b/hotspot/src/share/vm/classfile/classLoader.hpp @@ -142,13 +142,30 @@ public: JImageFile* jimage() const { return _jimage; } ClassPathImageEntry(JImageFile* jimage, const char* name); ~ClassPathImageEntry(); - void name_to_package(const char* name, char* package, int length); ClassFileStream* open_stream(const char* name, TRAPS); // Debugging NOT_PRODUCT(void compile_the_world(Handle loader, TRAPS);) }; +// ModuleClassPathList contains a linked list of ClassPathEntry's +// that have been specified for a specific module. Currently, +// the only way to specify a module/path pair is via the -Xpatch +// command line option. +class ModuleClassPathList : public CHeapObj { +private: + Symbol* _module_name; + // First and last entries of class path entries for a specific module + ClassPathEntry* _module_first_entry; + ClassPathEntry* _module_last_entry; +public: + Symbol* module_name() const { return _module_name; } + ClassPathEntry* module_first_entry() const { return _module_first_entry; } + ModuleClassPathList(Symbol* module_name); + ~ModuleClassPathList(); + void add_to_list(ClassPathEntry* new_entry); +}; + class SharedPathsMiscInfo; class ClassLoader: AllStatic { @@ -195,21 +212,31 @@ class ClassLoader: AllStatic { static PerfCounter* _isUnsyncloadClass; static PerfCounter* _load_instance_class_failCounter; - // First entry in linked list of ClassPathEntry instances. - // This consists of entries made up by: - // - boot loader modules - // [-Xpatch]; exploded build | modules; - // - boot loader append path - // [-Xbootclasspath/a]; [jvmti appended entries] + // The boot class path consists of 3 ordered pieces: + // 1. the module/path pairs specified to -Xpatch + // -Xpatch:=()* + // 2. the base piece + // [exploded build | jimage] + // 3. boot loader append path + // [-Xbootclasspath/a]; [jvmti appended entries] + // + // The boot loader must obey this order when attempting + // to load a class. + + // Contains the module/path pairs specified to -Xpatch + static GrowableArray* _xpatch_entries; + + // Contains the ClassPathEntry instances that include + // both the base piece and the boot loader append path. static ClassPathEntry* _first_entry; // Last entry in linked list of ClassPathEntry instances static ClassPathEntry* _last_entry; static int _num_entries; - // Pointer into the linked list of ClassPathEntry instances. // Marks the start of: // - the boot loader's append path // [-Xbootclasspath/a]; [jvmti appended entries] + // within the linked list of ClassPathEntry instances. static ClassPathEntry* _first_append_entry; static const char* _shared_archive; @@ -325,11 +352,11 @@ class ClassLoader: AllStatic { return _load_instance_class_failCounter; } - // Sets _has_jimage to TRUE if "modules" jimage file exists - static void set_has_jimage(bool val) { - _has_jimage = val; - } + // Set up the module/path pairs as specified to -Xpatch + static void setup_xpatch_entries(); + // Sets _has_jimage to TRUE if "modules" jimage file exists + static void set_has_jimage(); static bool has_jimage() { return _has_jimage; } // Create the ModuleEntry for java.base @@ -416,6 +443,9 @@ class ClassLoader: AllStatic { static bool string_ends_with(const char* str, const char* str_to_find); + // obtain package name from a fully qualified class name + static const char* package_from_name(const char* class_name); + static bool is_jrt(const char* name) { return string_ends_with(name, MODULES_IMAGE_NAME); } // Debugging diff --git a/hotspot/src/share/vm/classfile/modules.cpp b/hotspot/src/share/vm/classfile/modules.cpp index 6d47db68c7d..10319b1c499 100644 --- a/hotspot/src/share/vm/classfile/modules.cpp +++ b/hotspot/src/share/vm/classfile/modules.cpp @@ -133,68 +133,31 @@ static PackageEntry* get_package_entry_by_name(Symbol* package, return NULL; } -// Check if -Xpatch: was specified. If so, prepend each /module_name, -// if it exists, to bootpath so boot loader can find the class files. Also, if -// using exploded modules, append /modules/module_name, if it exists, -// to bootpath so that its class files can be found by the boot loader. -static void add_to_boot_loader_list(char *module_name, TRAPS) { - // java.base should be handled by argument parsing. +// If using exploded build, append /modules/module_name, if it exists, +// to the system boot class path in order for the boot loader to locate class files. +static void add_to_exploded_build_list(char *module_name, TRAPS) { + assert(!ClassLoader::has_jimage(), "Exploded build not applicable"); + // java.base is handled by os::set_boot_path assert(strcmp(module_name, "java.base") != 0, "Unexpected java.base module name"); + char file_sep = os::file_separator()[0]; size_t module_len = strlen(module_name); - // If -Xpatch is set then add /module_name paths. - char** patch_dirs = Arguments::patch_dirs(); - if (patch_dirs != NULL) { - int dir_count = Arguments::patch_dirs_count(); - for (int x = 0; x < dir_count; x++) { - // Really shouldn't be NULL, but check can't hurt - if (patch_dirs[x] != NULL) { - size_t len = strlen(patch_dirs[x]); - if (len != 0) { // Ignore empty strings. - len = len + module_len + 2; - char* prefix_path = NEW_C_HEAP_ARRAY(char, len, mtInternal); - jio_snprintf(prefix_path, len, "%s%c%s", patch_dirs[x], file_sep, module_name); - - // See if Xpatch module path exists. - struct stat st; - if ((os::stat(prefix_path, &st) != 0)) { - FREE_C_HEAP_ARRAY(char, prefix_path); - } else { - { - HandleMark hm; - Handle loader_lock = Handle(THREAD, SystemDictionary::system_loader_lock()); - ObjectLocker ol(loader_lock, THREAD); - ClassLoader::prepend_to_list(prefix_path); - } - log_info(classload)("opened: -Xpatch %s", prefix_path); - } - } - } - } - } - - // If "modules" jimage does not exist then assume exploded form - // ${java.home}/modules/ - char* path = NULL; - if (!ClassLoader::has_jimage()) { - const char* home = Arguments::get_java_home(); - size_t len = strlen(home) + module_len + 32; - path = NEW_C_HEAP_ARRAY(char, len, mtInternal); - jio_snprintf(path, len, "%s%cmodules%c%s", home, file_sep, file_sep, module_name); - struct stat st; - // See if exploded module path exists. - if ((os::stat(path, &st) != 0)) { - FREE_C_HEAP_ARRAY(char, path); - path = NULL; - } + const char* home = Arguments::get_java_home(); + size_t len = strlen(home) + module_len + 32; + char* path = NEW_C_HEAP_ARRAY(char, len, mtInternal); + jio_snprintf(path, len, "%s%cmodules%c%s", home, file_sep, file_sep, module_name); + struct stat st; + // See if exploded module path exists + if ((os::stat(path, &st) != 0)) { + FREE_C_HEAP_ARRAY(char, path); + path = NULL; } if (path != NULL) { HandleMark hm; Handle loader_lock = Handle(THREAD, SystemDictionary::system_loader_lock()); ObjectLocker ol(loader_lock, THREAD); - log_info(classload)("opened: %s", path); ClassLoader::add_to_list(path); } @@ -493,13 +456,12 @@ void Modules::define_module(jobject module, jstring version, } } - if (loader == NULL && !Universe::is_module_initialized()) { - // Now that the module is defined, if it is in the bootloader, make sure that - // its classes can be found. Check if -Xpatch: was specified. If - // so prepend /module_name, if it exists, to bootpath. Also, if using - // exploded modules, prepend /modules/module_name, if it exists, - // to bootpath. - add_to_boot_loader_list(module_name, CHECK); + // If the module is defined to the boot loader and an exploded build is being + // used, prepend /modules/modules_name, if it exists, to the system boot class path. + if (loader == NULL && + !Universe::is_module_initialized() && + !ClassLoader::has_jimage()) { + add_to_exploded_build_list(module_name, CHECK); } } diff --git a/hotspot/src/share/vm/memory/filemap.cpp b/hotspot/src/share/vm/memory/filemap.cpp index ec3b9462959..f952b3d5511 100644 --- a/hotspot/src/share/vm/memory/filemap.cpp +++ b/hotspot/src/share/vm/memory/filemap.cpp @@ -880,7 +880,7 @@ bool FileMapInfo::FileMapHeader::validate() { return false; } - if (Arguments::patch_dirs() != NULL) { + if (Arguments::get_xpatchprefix() != NULL) { FileMapInfo::fail_continue("The shared archive file cannot be used with -Xpatch."); return false; } diff --git a/hotspot/src/share/vm/runtime/arguments.cpp b/hotspot/src/share/vm/runtime/arguments.cpp index 7fa2ea8a7ad..8fb0519bb35 100644 --- a/hotspot/src/share/vm/runtime/arguments.cpp +++ b/hotspot/src/share/vm/runtime/arguments.cpp @@ -84,8 +84,6 @@ const char* Arguments::_java_vendor_url_bug = DEFAULT_VENDOR_URL_BUG; const char* Arguments::_sun_java_launcher = DEFAULT_JAVA_LAUNCHER; int Arguments::_sun_java_launcher_pid = -1; bool Arguments::_sun_java_launcher_is_altjvm = false; -int Arguments::_patch_dirs_count = 0; -char** Arguments::_patch_dirs = NULL; int Arguments::_bootclassloader_append_index = -1; // These parameters are reset in method parse_vm_init_args() @@ -112,6 +110,7 @@ SystemProperty *Arguments::_java_home = NULL; SystemProperty *Arguments::_java_class_path = NULL; SystemProperty *Arguments::_jdk_boot_class_path_append = NULL; +GrowableArray *Arguments::_xpatchprefix = NULL; PathString *Arguments::_system_boot_class_path = NULL; char* Arguments::_ext_dirs = NULL; @@ -579,204 +578,6 @@ static bool verify_special_jvm_flags() { } #endif -// Constructs the system boot class path from the following components, in order: -// -// prefix // from -Xpatch:... -// base // from os::get_system_properties() -// suffix // from -Xbootclasspath/a:... -// -// This could be AllStatic, but it isn't needed after argument processing is -// complete. After argument processing, the combined components are copied -// to Arguments::_system_boot_class_path via a call to Arguments::set_sysclasspath. -class ArgumentBootClassPath: public StackObj { -public: - ArgumentBootClassPath(const char* base); - ~ArgumentBootClassPath(); - - inline void set_base(const char* base); - inline void add_prefix(const char* prefix); - inline void add_suffix_to_prefix(const char* suffix); - inline void add_suffix(const char* suffix); - inline void reset_path(const char* base); - - inline const char* get_base() const { return _items[_bcp_base]; } - inline const char* get_prefix() const { return _items[_bcp_prefix]; } - inline const char* get_suffix() const { return _items[_bcp_suffix]; } - - // Combine all the components into a single c-heap-allocated string; caller - // must free the string if/when no longer needed. - char* combined_path(); - -private: - // Utility routines. - static char* add_to_path(const char* path, const char* str, bool prepend); - static char* add_jars_to_path(char* path, const char* directory); - - inline void reset_item_at(int index); - - // Array indices for the items that make up the sysclasspath. All except the - // base are allocated in the C heap and freed by this class. - enum { - _bcp_prefix, // was -Xpatch:... - _bcp_base, // the default system boot class path - _bcp_suffix, // from -Xbootclasspath/a:... - _bcp_nitems // the number of items, must be last. - }; - - const char* _items[_bcp_nitems]; -}; - -ArgumentBootClassPath::ArgumentBootClassPath(const char* base) { - memset(_items, 0, sizeof(_items)); - _items[_bcp_base] = base; -} - -ArgumentBootClassPath::~ArgumentBootClassPath() { - // Free everything except the base. - for (int i = 0; i < _bcp_nitems; ++i) { - if (i != _bcp_base) reset_item_at(i); - } -} - -inline void ArgumentBootClassPath::set_base(const char* base) { - _items[_bcp_base] = base; -} - -inline void ArgumentBootClassPath::add_prefix(const char* prefix) { - _items[_bcp_prefix] = add_to_path(_items[_bcp_prefix], prefix, true); -} - -inline void ArgumentBootClassPath::add_suffix_to_prefix(const char* suffix) { - _items[_bcp_prefix] = add_to_path(_items[_bcp_prefix], suffix, false); -} - -inline void ArgumentBootClassPath::add_suffix(const char* suffix) { - _items[_bcp_suffix] = add_to_path(_items[_bcp_suffix], suffix, false); -} - -inline void ArgumentBootClassPath::reset_item_at(int index) { - assert(index < _bcp_nitems && index != _bcp_base, "just checking"); - if (_items[index] != NULL) { - FREE_C_HEAP_ARRAY(char, _items[index]); - _items[index] = NULL; - } -} - -inline void ArgumentBootClassPath::reset_path(const char* base) { - // Clear the prefix and suffix. - reset_item_at(_bcp_prefix); - reset_item_at(_bcp_suffix); - set_base(base); -} - -//------------------------------------------------------------------------------ - - -// Combine the bootclasspath elements, some of which may be null, into a single -// c-heap-allocated string. -char* ArgumentBootClassPath::combined_path() { - assert(_items[_bcp_base] != NULL, "empty default sysclasspath"); - - size_t lengths[_bcp_nitems]; - size_t total_len = 0; - - const char separator = *os::path_separator(); - - // Get the lengths. - int i; - for (i = 0; i < _bcp_nitems; ++i) { - if (i == _bcp_suffix) { - // Record index of boot loader's append path. - Arguments::set_bootclassloader_append_index((int)total_len); - } - if (_items[i] != NULL) { - lengths[i] = strlen(_items[i]); - // Include space for the separator char (or a NULL for the last item). - total_len += lengths[i] + 1; - } - } - assert(total_len > 0, "empty sysclasspath not allowed"); - - // Copy the _items to a single string. - char* cp = NEW_C_HEAP_ARRAY(char, total_len, mtArguments); - char* cp_tmp = cp; - for (i = 0; i < _bcp_nitems; ++i) { - if (_items[i] != NULL) { - memcpy(cp_tmp, _items[i], lengths[i]); - cp_tmp += lengths[i]; - *cp_tmp++ = separator; - } - } - *--cp_tmp = '\0'; // Replace the extra separator. - return cp; -} - -// Note: path must be c-heap-allocated (or NULL); it is freed if non-null. -char* -ArgumentBootClassPath::add_to_path(const char* path, const char* str, bool prepend) { - char *cp; - - assert(str != NULL, "just checking"); - if (path == NULL) { - size_t len = strlen(str) + 1; - cp = NEW_C_HEAP_ARRAY(char, len, mtArguments); - memcpy(cp, str, len); // copy the trailing null - } else { - const char separator = *os::path_separator(); - size_t old_len = strlen(path); - size_t str_len = strlen(str); - size_t len = old_len + str_len + 2; - - if (prepend) { - cp = NEW_C_HEAP_ARRAY(char, len, mtArguments); - char* cp_tmp = cp; - memcpy(cp_tmp, str, str_len); - cp_tmp += str_len; - *cp_tmp = separator; - memcpy(++cp_tmp, path, old_len + 1); // copy the trailing null - FREE_C_HEAP_ARRAY(char, path); - } else { - cp = REALLOC_C_HEAP_ARRAY(char, path, len, mtArguments); - char* cp_tmp = cp + old_len; - *cp_tmp = separator; - memcpy(++cp_tmp, str, str_len + 1); // copy the trailing null - } - } - return cp; -} - -// Scan the directory and append any jar or zip files found to path. -// Note: path must be c-heap-allocated (or NULL); it is freed if non-null. -char* ArgumentBootClassPath::add_jars_to_path(char* path, const char* directory) { - DIR* dir = os::opendir(directory); - if (dir == NULL) return path; - - char dir_sep[2] = { '\0', '\0' }; - size_t directory_len = strlen(directory); - const char fileSep = *os::file_separator(); - if (directory[directory_len - 1] != fileSep) dir_sep[0] = fileSep; - - /* Scan the directory for jars/zips, appending them to path. */ - struct dirent *entry; - char *dbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(directory), mtArguments); - while ((entry = os::readdir(dir, (dirent *) dbuf)) != NULL) { - const char* name = entry->d_name; - const char* ext = name + strlen(name) - 4; - bool isJarOrZip = ext > name && - (os::file_name_strcmp(ext, ".jar") == 0 || - os::file_name_strcmp(ext, ".zip") == 0); - if (isJarOrZip) { - char* jarpath = NEW_C_HEAP_ARRAY(char, directory_len + 2 + strlen(name), mtArguments); - sprintf(jarpath, "%s%s%s", directory, dir_sep, name); - path = add_to_path(path, jarpath, false); - FREE_C_HEAP_ARRAY(char, jarpath); - } - } - FREE_C_HEAP_ARRAY(char, dbuf); - os::closedir(dir); - return path; -} - // Parses a memory size specification string. static bool atomull(const char *s, julong* result) { julong n = 0; @@ -2687,9 +2488,7 @@ Arguments::ArgsRange Arguments::parse_memory_size(const char* s, jint Arguments::parse_vm_init_args(const JavaVMInitArgs *java_tool_options_args, const JavaVMInitArgs *java_options_args, const JavaVMInitArgs *cmd_line_args) { - // For components of the system classpath. - ArgumentBootClassPath bcp(Arguments::get_sysclasspath()); - bool bcp_assembly_required = false; + bool xpatch_javabase = false; // Save default settings for some mode flags Arguments::_AlwaysCompileLoopMethods = AlwaysCompileLoopMethods; @@ -2706,29 +2505,26 @@ jint Arguments::parse_vm_init_args(const JavaVMInitArgs *java_tool_options_args, // Parse args structure generated from JAVA_TOOL_OPTIONS environment // variable (if present). - jint result = parse_each_vm_init_arg( - java_tool_options_args, &bcp, &bcp_assembly_required, Flag::ENVIRON_VAR); + jint result = parse_each_vm_init_arg(java_tool_options_args, &xpatch_javabase, Flag::ENVIRON_VAR); if (result != JNI_OK) { return result; } // Parse args structure generated from the command line flags. - result = parse_each_vm_init_arg(cmd_line_args, &bcp, &bcp_assembly_required, - Flag::COMMAND_LINE); + result = parse_each_vm_init_arg(cmd_line_args, &xpatch_javabase, Flag::COMMAND_LINE); if (result != JNI_OK) { return result; } // Parse args structure generated from the _JAVA_OPTIONS environment // variable (if present) (mimics classic VM) - result = parse_each_vm_init_arg( - java_options_args, &bcp, &bcp_assembly_required, Flag::ENVIRON_VAR); + result = parse_each_vm_init_arg(java_options_args, &xpatch_javabase, Flag::ENVIRON_VAR); if (result != JNI_OK) { return result; } // Do final processing now that all arguments have been parsed - result = finalize_vm_init_args(&bcp, bcp_assembly_required); + result = finalize_vm_init_args(); if (result != JNI_OK) { return result; } @@ -2781,10 +2577,7 @@ bool valid_jdwp_agent(char *name, bool is_path) { return false; } -jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args, - ArgumentBootClassPath* bcp_p, - bool* bcp_assembly_required_p, - Flag::Flags origin) { +jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args, bool* xpatch_javabase, Flag::Flags origin) { // For match_option to return remaining or value part of option string const char* tail; @@ -2840,8 +2633,8 @@ jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args, return JNI_EINVAL; // -bootclasspath/a: } else if (match_option(option, "-Xbootclasspath/a:", &tail)) { - bcp_p->add_suffix(tail); - *bcp_assembly_required_p = true; + Arguments::set_bootclassloader_append_index((int)strlen(Arguments::get_sysclasspath())+1); + Arguments::append_sysclasspath(tail); // -bootclasspath/p: } else if (match_option(option, "-Xbootclasspath/p:", &tail)) { jio_fprintf(defaultStream::output_stream(), @@ -2901,9 +2694,8 @@ jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args, if (tail != NULL) { char *options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(tail) + 1, mtArguments), tail); add_init_agent("instrument", options, false); - // java agents need module java.instrument. Also -addmods ALL-SYSTEM because - // the java agent is in the unmamed module of the application class loader - if (!Arguments::append_to_addmods_property("java.instrument,ALL-SYSTEM")) { + // java agents need module java.instrument + if (!Arguments::append_to_addmods_property("java.instrument")) { return JNI_ENOMEM; } } @@ -3181,37 +2973,30 @@ jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args, return JNI_ERR; #endif } - if (match_option(option, "-Djdk.launcher.patch.0=", &tail)) { - // -Xpatch - int dir_count; - char** patch_dirs = os::split_path(tail, &dir_count); - if (patch_dirs == NULL) { - jio_fprintf(defaultStream::output_stream(), - "Bad value for -Xpatch.\n"); + if (match_option(option, "-Djdk.launcher.patch.", &tail)) { + // -Djdk.launcher.patch.#==()* + // The number, #, specified will be increasing with each -Xpatch + // specified on the command line. + // Pick up module name, following the -D property's equal sign. + const char* property_equal = strchr(tail, '='); + if (property_equal == NULL) { + jio_fprintf(defaultStream::output_stream(), "Missing '=' in -Xpatch specification\n"); return JNI_ERR; - } - set_patch_dirs(patch_dirs); - set_patch_dirs_count(dir_count); - - // Create a path for each patch dir consisting of dir/java.base. - char file_sep = os::file_separator()[0]; - for (int x = 0; x < dir_count; x++) { - // Really shouldn't be NULL, but check can't hurt - if (patch_dirs[x] != NULL) { - size_t len = strlen(patch_dirs[x]); - if (len != 0) { // Ignore empty strings. - len += 11; // file_sep + "java.base" + null terminator. - char* dir = NEW_C_HEAP_ARRAY(char, len, mtArguments); - jio_snprintf(dir, len, "%s%cjava.base", patch_dirs[x], file_sep); - - // See if Xpatch module path exists. - struct stat st; - if ((os::stat(dir, &st) == 0)) { - bcp_p->add_prefix(dir); - *bcp_assembly_required_p = true; - } - FREE_C_HEAP_ARRAY(char, dir); - } + } else { + // Find the equal sign between the module name and the path specification + const char* module_equal = strchr(property_equal + 1, '='); + if (module_equal == NULL) { + jio_fprintf(defaultStream::output_stream(), "Bad value for -Xpatch, no module name specified\n"); + return JNI_ERR; + } else { + // Pick out the module name, in between the two equal signs + size_t module_len = module_equal - property_equal - 1; + char* module_name = NEW_C_HEAP_ARRAY(char, module_len+1, mtArguments); + memcpy(module_name, property_equal + 1, module_len); + *(module_name + module_len) = '\0'; + // The path piece begins one past the module_equal sign + Arguments::add_xpatchprefix(module_name, module_equal + 1, xpatch_javabase); + FREE_C_HEAP_ARRAY(char, module_name); } } } @@ -3474,6 +3259,27 @@ jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args, return JNI_OK; } +void Arguments::add_xpatchprefix(const char* module_name, const char* path, bool* xpatch_javabase) { + // For java.base check for duplicate -Xpatch options being specified on the command line. + // This check is only required for java.base, all other duplicate module specifications + // will be checked during module system initialization. The module system initialization + // will throw an ExceptionInInitializerError if this situation occurs. + if (strcmp(module_name, "java.base") == 0) { + if (*xpatch_javabase) { + vm_exit_during_initialization("Cannot specify java.base more than once to -Xpatch"); + } else { + *xpatch_javabase = true; + } + } + + // Create GrowableArray lazily, only if -Xpatch has been specified + if (_xpatchprefix == NULL) { + _xpatchprefix = new (ResourceObj::C_HEAP, mtArguments) GrowableArray(10, true); + } + + _xpatchprefix->push(new ModuleXPatchPath(module_name, path)); +} + // Set property jdk.boot.class.path.append to the contents of the bootclasspath // that follows either the jimage file or exploded module directories. The // property will contain -Xbootclasspath/a and/or jvmti appended additions. @@ -3572,7 +3378,7 @@ static int check_non_empty_dirs(const char* path) { return nonEmptyDirs; } -jint Arguments::finalize_vm_init_args(ArgumentBootClassPath* bcp_p, bool bcp_assembly_required) { +jint Arguments::finalize_vm_init_args() { // check if the default lib/endorsed directory exists; if so, error char path[JVM_MAXPATHLEN]; const char* fileSep = os::file_separator(); @@ -3608,17 +3414,7 @@ jint Arguments::finalize_vm_init_args(ArgumentBootClassPath* bcp_p, bool bcp_ass return JNI_ERR; } - if (bcp_assembly_required) { - // Assemble the bootclasspath elements into the final path. - char *combined_path = bcp_p->combined_path(); - Arguments::set_sysclasspath(combined_path); - FREE_C_HEAP_ARRAY(char, combined_path); - } else { - // At this point in sysclasspath processing anything - // added would be considered in the boot loader's append path. - // Record this index, including +1 for the file separator character. - Arguments::set_bootclassloader_append_index(((int)strlen(Arguments::get_sysclasspath()))+1); - } + Arguments::set_bootclassloader_append_index(((int)strlen(Arguments::get_sysclasspath()))+1); // This must be done after all arguments have been processed. // java_compiler() true means set to "NONE" or empty. @@ -3667,6 +3463,12 @@ jint Arguments::finalize_vm_init_args(ArgumentBootClassPath* bcp_p, bool bcp_ass UNSUPPORTED_OPTION(TieredCompilation); #endif +#if INCLUDE_JVMCI + if (EnableJVMCI && !append_to_addmods_property("jdk.vm.ci")) { + return JNI_ENOMEM; + } +#endif + // If we are running in a headless jre, force java.awt.headless property // to be true unless the property has already been set. // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state. @@ -3968,7 +3770,7 @@ jint Arguments::parse_options_buffer(const char* name, char* buffer, const size_ void Arguments::set_shared_spaces_flags() { if (DumpSharedSpaces) { - if (Arguments::patch_dirs() != NULL) { + if (Arguments::get_xpatchprefix() != NULL) { vm_exit_during_initialization( "Cannot use the following option when dumping the shared archive", "-Xpatch"); } diff --git a/hotspot/src/share/vm/runtime/arguments.hpp b/hotspot/src/share/vm/runtime/arguments.hpp index 4df23a5b485..9fd8ae093b2 100644 --- a/hotspot/src/share/vm/runtime/arguments.hpp +++ b/hotspot/src/share/vm/runtime/arguments.hpp @@ -41,17 +41,15 @@ extern "C" { typedef jint (JNICALL *vfprintf_hook_t)(FILE *fp, const char *format, va_list args) ATTRIBUTE_PRINTF(2, 0); } -// Forward declarations -class ArgumentBootClassPath; - -// PathString is used as the underlying value container for a -// SystemProperty and for the string that represents the system -// boot class path, Arguments::_system_boot_class_path. +// PathString is used as: +// - the underlying value for a SystemProperty +// - the path portion of an -Xpatch module/path pair +// - the string that represents the system boot class path, Arguments::_system_boot_class_path. class PathString : public CHeapObj { protected: - char* _value; + char* _value; public: - char* value() const { return _value; } + char* value() const { return _value; } bool set_value(const char *value) { if (_value != NULL) { @@ -92,7 +90,6 @@ class PathString : public CHeapObj { } } - // Constructor PathString(const char* value) { if (value == NULL) { _value = NULL; @@ -101,6 +98,43 @@ class PathString : public CHeapObj { strcpy(_value, value); } } + + ~PathString() { + if (_value != NULL) { + FreeHeap(_value); + _value = NULL; + } + } +}; + +// ModuleXPatchPath records the module/path pair as specified to -Xpatch. +class ModuleXPatchPath : public CHeapObj { +private: + char* _module_name; + PathString* _path; +public: + ModuleXPatchPath(const char* module_name, const char* path) { + assert(module_name != NULL && path != NULL, "Invalid module name or path value"); + size_t len = strlen(module_name) + 1; + _module_name = AllocateHeap(len, mtInternal); + strncpy(_module_name, module_name, len); // copy the trailing null + _path = new PathString(path); + } + + ~ModuleXPatchPath() { + if (_module_name != NULL) { + FreeHeap(_module_name); + _module_name = NULL; + } + if (_path != NULL) { + delete _path; + _path = NULL; + } + } + + inline void set_path(const char* path) { _path->set_value(path); } + inline const char* module_name() const { return _module_name; } + inline char* path_string() const { return _path->value(); } }; // Element describing System and User (-Dkey=value flags) defined property. @@ -114,7 +148,7 @@ class SystemProperty : public PathString { SystemProperty* _next; bool _internal; bool _writeable; - bool writeable() { return _writeable; } + bool writeable() { return _writeable; } public: // Accessors @@ -314,10 +348,19 @@ class Arguments : AllStatic { static SystemProperty *_java_class_path; static SystemProperty *_jdk_boot_class_path_append; + // -Xpatch:module=()* + // Each element contains the associated module name, path + // string pair as specified to -Xpatch. + static GrowableArray* _xpatchprefix; + // The constructed value of the system class path after // argument processing and JVMTI OnLoad additions via // calls to AddToBootstrapClassLoaderSearch. This is the // final form before ClassLoader::setup_bootstrap_search(). + // Note: since -Xpatch is a module name/path pair, the system + // boot class path string no longer contains the "prefix" to + // the boot class path base piece as it did when + // -Xbootclasspath/p was supported. static PathString *_system_boot_class_path; // temporary: to emit warning if the default ext dirs are not empty. @@ -373,12 +416,6 @@ class Arguments : AllStatic { // mark the boot loader's append path observability boundary. static int _bootclassloader_append_index; - // -Xpatch flag - static char** _patch_dirs; - static int _patch_dirs_count; - static void set_patch_dirs(char** dirs) { _patch_dirs = dirs; } - static void set_patch_dirs_count(int count) { _patch_dirs_count = count; } - // -Xdebug flag static bool _xdebug_mode; static void set_xdebug_mode(bool arg) { _xdebug_mode = arg; } @@ -465,8 +502,8 @@ class Arguments : AllStatic { static jint parse_vm_init_args(const JavaVMInitArgs *java_tool_options_args, const JavaVMInitArgs *java_options_args, const JavaVMInitArgs *cmd_line_args); - static jint parse_each_vm_init_arg(const JavaVMInitArgs* args, ArgumentBootClassPath* bcp_p, bool* bcp_assembly_required_p, Flag::Flags origin); - static jint finalize_vm_init_args(ArgumentBootClassPath* bcp_p, bool bcp_assembly_required); + static jint parse_each_vm_init_arg(const JavaVMInitArgs* args, bool* xpatch_javabase, Flag::Flags origin); + static jint finalize_vm_init_args(); static bool is_bad_option(const JavaVMOption* option, jboolean ignore, const char* option_type); static bool is_bad_option(const JavaVMOption* option, jboolean ignore) { @@ -637,13 +674,12 @@ class Arguments : AllStatic { return _bootclassloader_append_index; } static void set_bootclassloader_append_index(int value) { - _bootclassloader_append_index = value; + // Set only if the index has not been set yet + if (_bootclassloader_append_index == -1) { + _bootclassloader_append_index = value; + } } - // -Xpatch - static char** patch_dirs() { return _patch_dirs; } - static int patch_dirs_count() { return _patch_dirs_count; } - // -Xrun static AgentLibrary* libraries() { return _libraryList.first(); } static bool init_libraries_at_startup() { return !_libraryList.is_empty(); } @@ -701,8 +737,8 @@ class Arguments : AllStatic { static void set_library_path(const char *value) { _java_library_path->set_value(value); } static void set_ext_dirs(char *value) { _ext_dirs = os::strdup_check_oom(value); } - // Set up of the underlying system boot class path - static void set_jdkbootclasspath_append(); + // Set up the underlying pieces of the system boot class path + static void add_xpatchprefix(const char *module_name, const char *path, bool* xpatch_javabase); static void set_sysclasspath(const char *value) { _system_boot_class_path->set_value(value); set_jdkbootclasspath_append(); @@ -711,11 +747,15 @@ class Arguments : AllStatic { _system_boot_class_path->append_value(value); set_jdkbootclasspath_append(); } + static void set_jdkbootclasspath_append(); - static char* get_java_home() { return _java_home->value(); } - static char* get_dll_dir() { return _sun_boot_library_path->value(); } + static GrowableArray* get_xpatchprefix() { return _xpatchprefix; } static char* get_sysclasspath() { return _system_boot_class_path->value(); } - static char* get_ext_dirs() { return _ext_dirs; } + static char* get_jdk_boot_class_path_append() { return _jdk_boot_class_path_append->value(); } + + static char* get_java_home() { return _java_home->value(); } + static char* get_dll_dir() { return _sun_boot_library_path->value(); } + static char* get_ext_dirs() { return _ext_dirs; } static char* get_appclasspath() { return _java_class_path->value(); } static void fix_appclasspath(); diff --git a/hotspot/src/share/vm/runtime/init.cpp b/hotspot/src/share/vm/runtime/init.cpp index 64313d825e1..b74a3daf040 100644 --- a/hotspot/src/share/vm/runtime/init.cpp +++ b/hotspot/src/share/vm/runtime/init.cpp @@ -52,7 +52,8 @@ void SuspendibleThreadSet_init() NOT_ALL_GCS_RETURN; // Initialization done by Java thread in init_globals() void management_init(); void bytecodes_init(); -void classLoader_init(); +void classLoader_init1(); +void classLoader_init2(); // note: ClassLoader need 2-phase init void compilationPolicy_init(); void codeCache_init(); void VM_Version_init(); @@ -102,7 +103,7 @@ jint init_globals() { HandleMark hm; management_init(); bytecodes_init(); - classLoader_init(); + classLoader_init1(); compilationPolicy_init(); codeCache_init(); CodeCacheExtensions::initialize(); @@ -116,6 +117,7 @@ jint init_globals() { if (status != JNI_OK) return status; + classLoader_init2(); // after SymbolTable creation, set up -Xpatch entries CodeCacheExtensions::complete_step(CodeCacheExtensionsSteps::Universe); interpreter_init(); // before any methods loaded CodeCacheExtensions::complete_step(CodeCacheExtensionsSteps::Interpreter); diff --git a/hotspot/test/TEST.ROOT b/hotspot/test/TEST.ROOT index 29c9696e7be..e52c1b1a3ff 100644 --- a/hotspot/test/TEST.ROOT +++ b/hotspot/test/TEST.ROOT @@ -36,9 +36,12 @@ groups=TEST.groups [closed/TEST.groups] requires.extraPropDefns = ../../test/jtreg-ext/requires/VMProps.java requires.properties=sun.arch.data.model -# Tests using jtreg 4.2 b01 features -requiredVersion=4.2 b01 +# Tests using jtreg 4.2 b02 features +requiredVersion=4.2 b02 # Path to libraries in the topmost test directory. This is needed so @library # does not need ../../ notation to reach them external.lib.roots = ../../ + +# Use new form of -Xpatch +useNewXpatch=true diff --git a/hotspot/test/compiler/intrinsics/bmi/verifycode/AndnTestI.java b/hotspot/test/compiler/intrinsics/bmi/verifycode/AndnTestI.java index fa72d45b0d1..f70f40503d7 100644 --- a/hotspot/test/compiler/intrinsics/bmi/verifycode/AndnTestI.java +++ b/hotspot/test/compiler/intrinsics/bmi/verifycode/AndnTestI.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -30,7 +30,7 @@ * @build AndnTestI * @run main ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission - * @run main/bootclasspath -Xbatch -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI + * @run main/bootclasspath/othervm -Xbatch -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI * -XX:+IgnoreUnrecognizedVMOptions -XX:+UseBMI1Instructions AndnTestI */ diff --git a/hotspot/test/compiler/intrinsics/bmi/verifycode/AndnTestL.java b/hotspot/test/compiler/intrinsics/bmi/verifycode/AndnTestL.java index 5bd9ebdb057..32b43afc038 100644 --- a/hotspot/test/compiler/intrinsics/bmi/verifycode/AndnTestL.java +++ b/hotspot/test/compiler/intrinsics/bmi/verifycode/AndnTestL.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -30,7 +30,7 @@ * @build AndnTestL * @run main ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission - * @run main/bootclasspath -Xbatch -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI + * @run main/bootclasspath/othervm -Xbatch -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI * -XX:+IgnoreUnrecognizedVMOptions -XX:+UseBMI1Instructions AndnTestL */ diff --git a/hotspot/test/compiler/jsr292/CallSiteDepContextTest.java b/hotspot/test/compiler/jsr292/CallSiteDepContextTest.java index 78ee7131476..c19705f3a44 100644 --- a/hotspot/test/compiler/jsr292/CallSiteDepContextTest.java +++ b/hotspot/test/compiler/jsr292/CallSiteDepContextTest.java @@ -27,7 +27,7 @@ * @modules java.base/jdk.internal.org.objectweb.asm * @library patches * @build java.base/java.lang.invoke.MethodHandleHelper - * @run main/bootclasspath -Xbatch -XX:+IgnoreUnrecognizedVMOptions -Xlog:classunload + * @run main/bootclasspath/othervm -Xbatch -XX:+IgnoreUnrecognizedVMOptions -Xlog:classunload * -XX:+PrintCompilation -XX:+TraceDependencies -XX:+TraceReferenceGC * -verbose:gc compiler.jsr292.CallSiteDepContextTest */ diff --git a/hotspot/test/compiler/jsr292/InvokerGC.java b/hotspot/test/compiler/jsr292/InvokerGC.java index c0a47184f06..35884f431f5 100644 --- a/hotspot/test/compiler/jsr292/InvokerGC.java +++ b/hotspot/test/compiler/jsr292/InvokerGC.java @@ -25,7 +25,7 @@ * @test * @bug 8067247 * @library /test/lib /compiler/whitebox / - * @run main/bootclasspath -Xcomp -Xbatch + * @run main/bootclasspath/othervm -Xcomp -Xbatch * -XX:CompileCommand=compileonly,InvokerGC::test * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI * InvokerGC diff --git a/hotspot/test/compiler/jsr292/NonInlinedCall/GCTest.java b/hotspot/test/compiler/jsr292/NonInlinedCall/GCTest.java index fc705850e00..8cf3c14ff69 100644 --- a/hotspot/test/compiler/jsr292/NonInlinedCall/GCTest.java +++ b/hotspot/test/compiler/jsr292/NonInlinedCall/GCTest.java @@ -28,7 +28,7 @@ * @modules java.base/jdk.internal.vm.annotation * @build java.base/java.lang.invoke.MethodHandleHelper * @build sun.hotspot.WhiteBox - * @run main/bootclasspath -XX:+IgnoreUnrecognizedVMOptions + * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI * -Xbatch -XX:-TieredCompilation -XX:CICompilerCount=1 * -XX:+FoldStableValues diff --git a/hotspot/test/compiler/jsr292/NonInlinedCall/InvokeTest.java b/hotspot/test/compiler/jsr292/NonInlinedCall/InvokeTest.java index 225db6018ce..fbd57cd4b96 100644 --- a/hotspot/test/compiler/jsr292/NonInlinedCall/InvokeTest.java +++ b/hotspot/test/compiler/jsr292/NonInlinedCall/InvokeTest.java @@ -29,7 +29,7 @@ * @build java.base/java.lang.invoke.MethodHandleHelper * @build sun.hotspot.WhiteBox * @build compiler.jsr292.NonInlinedCall.InvokeTest - * @run main/bootclasspath -XX:+IgnoreUnrecognizedVMOptions + * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI * -Xbatch -XX:-TieredCompilation -XX:CICompilerCount=1 * compiler.jsr292.NonInlinedCall.InvokeTest diff --git a/hotspot/test/compiler/jsr292/NonInlinedCall/RedefineTest.java b/hotspot/test/compiler/jsr292/NonInlinedCall/RedefineTest.java index 6607ec19c6c..27bc5c9a238 100644 --- a/hotspot/test/compiler/jsr292/NonInlinedCall/RedefineTest.java +++ b/hotspot/test/compiler/jsr292/NonInlinedCall/RedefineTest.java @@ -35,7 +35,7 @@ * @run main ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission * compiler.jsr292.NonInlinedCall.RedefineTest - * @run main/bootclasspath -javaagent:agent.jar + * @run main/bootclasspath/othervm -javaagent:agent.jar * -XX:+IgnoreUnrecognizedVMOptions * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI * -Xbatch -XX:-TieredCompilation -XX:CICompilerCount=1 diff --git a/hotspot/test/compiler/jsr292/VMAnonymousClasses.java b/hotspot/test/compiler/jsr292/VMAnonymousClasses.java index 50bb3432642..953deafe871 100644 --- a/hotspot/test/compiler/jsr292/VMAnonymousClasses.java +++ b/hotspot/test/compiler/jsr292/VMAnonymousClasses.java @@ -26,7 +26,7 @@ * @bug 8058828 * @modules java.base/jdk.internal.org.objectweb.asm * java.base/jdk.internal.misc - * @run main/bootclasspath -Xbatch VMAnonymousClasses + * @run main/bootclasspath/othervm -Xbatch VMAnonymousClasses */ import jdk.internal.org.objectweb.asm.ClassWriter; diff --git a/hotspot/test/compiler/stable/TestStableBoolean.java b/hotspot/test/compiler/stable/TestStableBoolean.java index ee92c9c0a8a..5dbcef7f87a 100644 --- a/hotspot/test/compiler/stable/TestStableBoolean.java +++ b/hotspot/test/compiler/stable/TestStableBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -31,23 +31,23 @@ * @build sun.hotspot.WhiteBox * @build compiler.stable.TestStableBoolean * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableBoolean - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:-FoldStableValues * compiler.stable.TestStableBoolean * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:+TieredCompilation -XX:TieredStopAtLevel=1 * -XX:+FoldStableValues * compiler.stable.TestStableBoolean - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:+TieredCompilation -XX:TieredStopAtLevel=1 * -XX:-FoldStableValues diff --git a/hotspot/test/compiler/stable/TestStableByte.java b/hotspot/test/compiler/stable/TestStableByte.java index eb193b4a3e3..0a5d46b4092 100644 --- a/hotspot/test/compiler/stable/TestStableByte.java +++ b/hotspot/test/compiler/stable/TestStableByte.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -31,23 +31,23 @@ * @build sun.hotspot.WhiteBox * @build compiler.stable.TestStableByte * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableByte - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableByte * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableByte - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues diff --git a/hotspot/test/compiler/stable/TestStableChar.java b/hotspot/test/compiler/stable/TestStableChar.java index 7f291070c7e..7aeb1725767 100644 --- a/hotspot/test/compiler/stable/TestStableChar.java +++ b/hotspot/test/compiler/stable/TestStableChar.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -31,23 +31,23 @@ * @build sun.hotspot.WhiteBox * @build compiler.stable.TestStableChar * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableChar - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableChar * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableChar - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues diff --git a/hotspot/test/compiler/stable/TestStableDouble.java b/hotspot/test/compiler/stable/TestStableDouble.java index df71febc523..30617b9f2c4 100644 --- a/hotspot/test/compiler/stable/TestStableDouble.java +++ b/hotspot/test/compiler/stable/TestStableDouble.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -31,23 +31,23 @@ * @build sun.hotspot.WhiteBox * @build compiler.stable.TestStableDouble * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableDouble - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableDouble * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableDouble - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues diff --git a/hotspot/test/compiler/stable/TestStableFloat.java b/hotspot/test/compiler/stable/TestStableFloat.java index 33e1bed2433..d17ee9b2bb2 100644 --- a/hotspot/test/compiler/stable/TestStableFloat.java +++ b/hotspot/test/compiler/stable/TestStableFloat.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -31,23 +31,23 @@ * @build sun.hotspot.WhiteBox * @build compiler.stable.TestStableFloat * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableFloat - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableFloat * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableFloat - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues diff --git a/hotspot/test/compiler/stable/TestStableInt.java b/hotspot/test/compiler/stable/TestStableInt.java index 023c8737397..24f6a5613ee 100644 --- a/hotspot/test/compiler/stable/TestStableInt.java +++ b/hotspot/test/compiler/stable/TestStableInt.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -31,23 +31,23 @@ * @build sun.hotspot.WhiteBox * @build compiler.stable.TestStableInt * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableInt - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableInt * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableInt - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues diff --git a/hotspot/test/compiler/stable/TestStableLong.java b/hotspot/test/compiler/stable/TestStableLong.java index 67ddedc0257..4f4f210ce31 100644 --- a/hotspot/test/compiler/stable/TestStableLong.java +++ b/hotspot/test/compiler/stable/TestStableLong.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -31,23 +31,23 @@ * @build sun.hotspot.WhiteBox * @build compiler.stable.TestStableLong * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableLong - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableLong * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableLong - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues diff --git a/hotspot/test/compiler/stable/TestStableMemoryBarrier.java b/hotspot/test/compiler/stable/TestStableMemoryBarrier.java index 6b413401a8a..313dac28308 100644 --- a/hotspot/test/compiler/stable/TestStableMemoryBarrier.java +++ b/hotspot/test/compiler/stable/TestStableMemoryBarrier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2016, 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 @@ -30,7 +30,7 @@ * @library /testlibrary /test/lib * @modules java.base/jdk.internal.vm.annotation * - * @run main/bootclasspath -Xcomp -XX:CompileOnly=::testCompile + * @run main/bootclasspath/othervm -Xcomp -XX:CompileOnly=::testCompile * compiler.stable.TestStableMemoryBarrier * * @author hui.shi@linaro.org diff --git a/hotspot/test/compiler/stable/TestStableObject.java b/hotspot/test/compiler/stable/TestStableObject.java index 31e0a5c6a40..c08afa8b943 100644 --- a/hotspot/test/compiler/stable/TestStableObject.java +++ b/hotspot/test/compiler/stable/TestStableObject.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -31,23 +31,23 @@ * @build sun.hotspot.WhiteBox * @build compiler.stable.TestStableObject * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableObject - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableObject * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableObject - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues diff --git a/hotspot/test/compiler/stable/TestStableShort.java b/hotspot/test/compiler/stable/TestStableShort.java index 107c8c7537c..bab170a1c46 100644 --- a/hotspot/test/compiler/stable/TestStableShort.java +++ b/hotspot/test/compiler/stable/TestStableShort.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -31,23 +31,23 @@ * @build sun.hotspot.WhiteBox * @build compiler.stable.TestStableShort * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableShort - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableShort * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues * compiler.stable.TestStableShort - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:CompileOnly=::get,::get1,::get2,::get3,::get4 * -XX:-TieredCompilation * -XX:+FoldStableValues diff --git a/hotspot/test/compiler/stable/TestStableUByte.java b/hotspot/test/compiler/stable/TestStableUByte.java index 285b0274588..b1c68daaf05 100644 --- a/hotspot/test/compiler/stable/TestStableUByte.java +++ b/hotspot/test/compiler/stable/TestStableUByte.java @@ -31,26 +31,26 @@ * @build sun.hotspot.WhiteBox * @build compiler.stable.TestStableUByte * - * @run main/bootclasspath -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline + * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:-TieredCompilation * -XX:+FoldStableValues * -XX:CompileOnly=::get,::get1 * compiler.stable.TestStableUByte - * @run main/bootclasspath -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline + * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:-TieredCompilation * -XX:-FoldStableValues * -XX:CompileOnly=::get,::get1 * compiler.stable.TestStableUByte * - * @run main/bootclasspath -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline + * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:+TieredCompilation -XX:TieredStopAtLevel=1 * -XX:+FoldStableValues * -XX:CompileOnly=::get,::get1 * compiler.stable.TestStableUByte - * @run main/bootclasspath -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline + * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:+TieredCompilation -XX:TieredStopAtLevel=1 * -XX:-FoldStableValues diff --git a/hotspot/test/compiler/stable/TestStableUShort.java b/hotspot/test/compiler/stable/TestStableUShort.java index b450582f854..2f9d44a0396 100644 --- a/hotspot/test/compiler/stable/TestStableUShort.java +++ b/hotspot/test/compiler/stable/TestStableUShort.java @@ -31,26 +31,26 @@ * @build sun.hotspot.WhiteBox * @build compiler.stable.TestStableUShort * - * @run main/bootclasspath -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline + * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:-TieredCompilation * -XX:+FoldStableValues * -XX:CompileOnly=::get,::get1 * compiler.stable.TestStableUShort - * @run main/bootclasspath -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline + * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:-TieredCompilation * -XX:-FoldStableValues * -XX:CompileOnly=::get,::get1 * compiler.stable.TestStableUShort * - * @run main/bootclasspath -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline + * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:+TieredCompilation -XX:TieredStopAtLevel=1 * -XX:+FoldStableValues * -XX:CompileOnly=::get,::get1 * compiler.stable.TestStableUShort - * @run main/bootclasspath -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline + * @run main/bootclasspath/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:+AlwaysIncrementalInline * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xcomp * -XX:+TieredCompilation -XX:TieredStopAtLevel=1 * -XX:-FoldStableValues diff --git a/hotspot/test/compiler/unsafe/UnsafeGetConstantField.java b/hotspot/test/compiler/unsafe/UnsafeGetConstantField.java index fead52fd530..2ffc5ec51e6 100644 --- a/hotspot/test/compiler/unsafe/UnsafeGetConstantField.java +++ b/hotspot/test/compiler/unsafe/UnsafeGetConstantField.java @@ -33,21 +33,23 @@ * @modules java.base/jdk.internal.org.objectweb.asm * java.base/jdk.internal.vm.annotation * java.base/jdk.internal.misc - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions * -Xbatch -XX:-TieredCompilation * -XX:+FoldStableValues * -XX:CompileCommand=dontinline,UnsafeGetConstantField.checkGetAddress() * -XX:CompileCommand=dontinline,*.test* * -XX:+UseUnalignedAccesses + * -XaddReads:java.base=ALL-UNNAMED * compiler.unsafe.UnsafeGetConstantField * - * @run main/bootclasspath -XX:+UnlockDiagnosticVMOptions + * @run main/bootclasspath/othervm -XX:+UnlockDiagnosticVMOptions * -Xbatch -XX:-TieredCompilation * -XX:+FoldStableValues * -XX:CompileCommand=dontinline,UnsafeGetConstantField.checkGetAddress() * -XX:CompileCommand=dontinline,*.test* * -XX:CompileCommand=inline,*Unsafe.get* * -XX:-UseUnalignedAccesses + * -XaddReads:java.base=ALL-UNNAMED * compiler.unsafe.UnsafeGetConstantField */ package compiler.unsafe; diff --git a/hotspot/test/runtime/BadObjectClass/BootstrapRedefine.java b/hotspot/test/runtime/BadObjectClass/BootstrapRedefine.java index 71ce6643bbc..e23a6920796 100644 --- a/hotspot/test/runtime/BadObjectClass/BootstrapRedefine.java +++ b/hotspot/test/runtime/BadObjectClass/BootstrapRedefine.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2016, 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 @@ -48,7 +48,7 @@ public class BootstrapRedefine { "-Xmodule:java.base"), "mods/java.base"); - ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xpatch:mods", "-version"); + ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xpatch:java.base=mods/java.base", "-version"); new OutputAnalyzer(pb.start()) .shouldContain("Incompatible definition of java.lang.Object") .shouldHaveExitValue(1); diff --git a/hotspot/test/runtime/getSysPackage/GetSysPkgTest.java b/hotspot/test/runtime/getSysPackage/GetSysPkgTest.java index 7e3930137e7..94b6368f7db 100644 --- a/hotspot/test/runtime/getSysPackage/GetSysPkgTest.java +++ b/hotspot/test/runtime/getSysPackage/GetSysPkgTest.java @@ -119,9 +119,9 @@ public class GetSysPkgTest { getPkg("java/nio/charset", "jrt:/java.base"); // Test a package in a module not owned by boot loader. - Class clss = Class.forName("javax.activation.DataHandler"); + Class clss = Class.forName("jdk.nio.zipfs.ZipPath"); if (clss == null) - throw new RuntimeException("Could not find class javax.activation.DataHandler"); + throw new RuntimeException("Could not find class jdk.nio.zipfs.ZipPath"); getPkg("javax/activation", null); // Not owned by boot loader // Test a package not in jimage file. diff --git a/hotspot/test/runtime/modules/AccessCheck/DiffCL_Umod.java b/hotspot/test/runtime/modules/AccessCheck/DiffCL_Umod.java index 6df74bfa689..d40911fe438 100644 --- a/hotspot/test/runtime/modules/AccessCheck/DiffCL_Umod.java +++ b/hotspot/test/runtime/modules/AccessCheck/DiffCL_Umod.java @@ -209,9 +209,9 @@ public class DiffCL_Umod { // now use the same loader to load class p1.c1Loose Class p1_c1_class = MyDiffClassLoader.loader1.loadClass("p1.c1Loose"); - // change m1 to be a loose module + // change m1 to read all unnamed modules Module m1 = layer.findModule("m1").get(); - jdk.internal.module.Modules.addReads(m1, null); + jdk.internal.module.Modules.addReadsAllUnnamed(m1); try { p1_c1_class.newInstance(); diff --git a/hotspot/test/runtime/modules/AccessCheck/Umod.java b/hotspot/test/runtime/modules/AccessCheck/Umod.java index 639891b4339..7bea0a51d2f 100644 --- a/hotspot/test/runtime/modules/AccessCheck/Umod.java +++ b/hotspot/test/runtime/modules/AccessCheck/Umod.java @@ -200,9 +200,9 @@ public class Umod { // now use the same loader to load class p1.c1Loose Class p1_c1_class = loader.loadClass("p1.c1Loose"); - // change m1 to be a loose module + // change m1 to read all unnamed modules Module m1 = layer.findModule("m1").get(); - jdk.internal.module.Modules.addReads(m1, null); + jdk.internal.module.Modules.addReadsAllUnnamed(m1); try { p1_c1_class.newInstance(); diff --git a/hotspot/test/runtime/modules/JVMAddReadsModule.java b/hotspot/test/runtime/modules/JVMAddReadsModule.java index 78f1d3bf62e..9d5e2adcacf 100644 --- a/hotspot/test/runtime/modules/JVMAddReadsModule.java +++ b/hotspot/test/runtime/modules/JVMAddReadsModule.java @@ -48,26 +48,27 @@ public class JVMAddReadsModule { assertNotNull(to_module, "Module should not be null"); ModuleHelper.DefineModule(to_module, "9.0", "to_module/here", new String[] { "yourpackage" }); - // Null from_module argument, expect an NPE + // Null from_module argument, expect NPE try { ModuleHelper.AddReadsModule(null, to_module); throw new RuntimeException("Failed to get the expected NPE"); - } catch(NullPointerException e) { + } catch (NullPointerException e) { // Expected } - // Null to_module argument, do not expect an NPE + // Null to_module argument, expect NPE try { ModuleHelper.AddReadsModule(from_module, null); - } catch(NullPointerException e) { throw new RuntimeException("Unexpected NPE was thrown"); + } catch (NullPointerException e) { + // Expected } - // Null from_module and to_module arguments, expect an NPE + // Null from_module and to_module arguments, expect NPE try { ModuleHelper.AddReadsModule(null, null); throw new RuntimeException("Failed to get the expected NPE"); - } catch(NullPointerException e) { + } catch (NullPointerException e) { // Expected } diff --git a/hotspot/test/runtime/modules/Visibility/XpatchVisibility.java b/hotspot/test/runtime/modules/Visibility/XpatchVisibility.java index 0b38f7727ad..a49fd997515 100644 --- a/hotspot/test/runtime/modules/Visibility/XpatchVisibility.java +++ b/hotspot/test/runtime/modules/Visibility/XpatchVisibility.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2016, 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 @@ -83,7 +83,7 @@ public class XpatchVisibility { "p2" + File.separator + "Vis2_B.class")); new OutputAnalyzer(ProcessTools.createJavaProcessBuilder( - "-Xpatch:mods2", + "-Xpatch:java.base=mods2/java.base", "-XaddExports:java.base/p2=ALL-UNNAMED", "Vis2_A") .start()).shouldHaveExitValue(0); diff --git a/hotspot/test/runtime/modules/Xpatch/BasicJarBuilder.java b/hotspot/test/runtime/modules/Xpatch/BasicJarBuilder.java new file mode 100644 index 00000000000..ab8955cb0f7 --- /dev/null +++ b/hotspot/test/runtime/modules/Xpatch/BasicJarBuilder.java @@ -0,0 +1,96 @@ +/* + * Copyright (c) 2015, 2016, 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. + * + * 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. + */ + +/* + * @summary Simple jar builder + * Input: jarName className1 className2 ... + * do not specify extensions, just the names + * E.g. prot_domain ProtDomainA ProtDomainB + * Output: A jar containing compiled classes, placed in a test classes folder + */ + +import jdk.test.lib.*; + +import java.io.File; +import java.util.ArrayList; +import sun.tools.jar.Main; + +// Using JarBuilder requires that all to-be-jarred classes should be placed +// in the current working directory, aka "." +public class BasicJarBuilder { + private static final String classDir = System.getProperty("test.classes"); + + public static void build(boolean classesInWorkDir, String jarName, + String ...classNames) throws Exception { + + if (classesInWorkDir) { + createSimpleJar(".", classDir + File.separator + jarName + ".jar", classNames); + } else { + build(jarName, classNames); + } + } + + public static void build(String jarName, String ...classNames) throws Exception { + createSimpleJar(classDir, classDir + File.separator + jarName + ".jar", + classNames); + } + + private static void createSimpleJar(String jarclassDir, String jarName, + String[] classNames) throws Exception { + ArrayList args = new ArrayList(); + args.add("cf"); + args.add(jarName); + addClassArgs(args, jarclassDir, classNames); + createJar(args); + } + + private static void addClassArgs(ArrayList args, String jarclassDir, + String[] classNames) { + + for (String name : classNames) { + args.add("-C"); + args.add(jarclassDir); + args.add(name + ".class"); + } + } + + private static void createJar(ArrayList args) { + Main jarTool = new Main(System.out, System.err, "jar"); + if (!jarTool.run(args.toArray(new String[1]))) { + throw new RuntimeException("jar operation failed"); + } + } + + // Get full path to the test jar + public static String getTestJar(String jar) { + File dir = new File(System.getProperty("test.classes", ".")); + File jarFile = new File(dir, jar); + if (!jarFile.exists()) { + throw new RuntimeException("Cannot find " + jarFile.getPath()); + } + if (!jarFile.isFile()) { + throw new RuntimeException("Not a regular file: " + jarFile.getPath()); + } + return jarFile.getPath(); + } +} diff --git a/hotspot/test/runtime/modules/Xpatch/Xpatch2Dirs.java b/hotspot/test/runtime/modules/Xpatch/Xpatch2Dirs.java index 014476cbd6e..b0dbfcfb309 100644 --- a/hotspot/test/runtime/modules/Xpatch/Xpatch2Dirs.java +++ b/hotspot/test/runtime/modules/Xpatch/Xpatch2Dirs.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2016, 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 @@ -57,7 +57,8 @@ public class Xpatch2Dirs { "mods2/java.desktop"); ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( - "-Xpatch:mods" + File.pathSeparator + "mods2", + "-Xpatch:java.naming=mods/java.naming", + "-Xpatch:java.desktop=mods2/java.desktop", "Xpatch2DirsMain", "javax.naming.spi.NamingManager", "java.beans.Encoder"); OutputAnalyzer oa = new OutputAnalyzer(pb.start()); diff --git a/hotspot/test/runtime/modules/Xpatch/XpatchDupJavaBase.java b/hotspot/test/runtime/modules/Xpatch/XpatchDupJavaBase.java new file mode 100644 index 00000000000..93935df3ce4 --- /dev/null +++ b/hotspot/test/runtime/modules/Xpatch/XpatchDupJavaBase.java @@ -0,0 +1,45 @@ +/* + * Copyright (c) 2016, 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. + * + * 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. + */ + +/* + * @test + * @summary VM exit initialization results if java.base is specificed more than once to Xpatch. + * @library /testlibrary + */ + +import jdk.test.lib.*; + +public class XpatchDupJavaBase { + // The VM should exit initialization if java.base is specified + // more than once to -Xpatch. + public static void main(String args[]) throws Exception { + ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( + "-Xpatch:java.base=javabase_dir", + "-Xpatch:java.base=javabase_dir", + "-version"); + OutputAnalyzer output = new OutputAnalyzer(pb.start()); + output.shouldContain("Cannot specify java.base more than once to -Xpatch"); + output.shouldHaveExitValue(1); + } +} + diff --git a/hotspot/test/runtime/modules/Xpatch/XpatchDupModule.java b/hotspot/test/runtime/modules/Xpatch/XpatchDupModule.java new file mode 100644 index 00000000000..2a44b97932b --- /dev/null +++ b/hotspot/test/runtime/modules/Xpatch/XpatchDupModule.java @@ -0,0 +1,47 @@ +/* + * Copyright (c) 2016, 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. + * + * 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. + */ + +/* + * @test + * @summary Module system initialization exception results if a module is specificed twice to Xpatch. + * @library /testlibrary + */ + +import jdk.test.lib.*; + +public class XpatchDupModule { + + // The module system initialization should generate an ExceptionInInitializerError + // if -Xpatch is specified with the same module more than once. + + public static void main(String args[]) throws Exception { + ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( + "-Xpatch:module1=module1_dir", + "-Xpatch:module1=module1_dir", + "-version"); + OutputAnalyzer output = new OutputAnalyzer(pb.start()); + output.shouldContain("java.lang.ExceptionInInitializerError"); + output.shouldHaveExitValue(1); + } +} + diff --git a/hotspot/test/runtime/modules/Xpatch/XpatchJavaBase.java b/hotspot/test/runtime/modules/Xpatch/XpatchJavaBase.java new file mode 100644 index 00000000000..53a056e760c --- /dev/null +++ b/hotspot/test/runtime/modules/Xpatch/XpatchJavaBase.java @@ -0,0 +1,56 @@ +/* + * Copyright (c) 2016, 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. + * + * 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. + */ + +/* + * @test + * @bug 8130399 + * @summary Make sure -Xpatch works for java.base. + * @library /testlibrary + * @compile XpatchMain.java + * @run main XpatchJavaBase + */ + +import jdk.test.lib.*; + +public class XpatchJavaBase { + + public static void main(String[] args) throws Exception { + String source = "package java.lang; " + + "public class NewClass { " + + " static { " + + " System.out.println(\"I pass!\"); " + + " } " + + "}"; + + ClassFileInstaller.writeClassToDisk("java/lang/NewClass", + InMemoryJavaCompiler.compile("java.lang.NewClass", source, "-Xmodule:java.base"), + "mods/java.base"); + + ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xpatch:java.base=mods/java.base", + "XpatchMain", "java.lang.NewClass"); + + new OutputAnalyzer(pb.start()) + .shouldContain("I pass!") + .shouldHaveExitValue(0); + } +} diff --git a/hotspot/test/runtime/modules/Xpatch/XpatchTest.java b/hotspot/test/runtime/modules/Xpatch/XpatchTest.java index ddc873feca5..e72be0e184e 100644 --- a/hotspot/test/runtime/modules/Xpatch/XpatchTest.java +++ b/hotspot/test/runtime/modules/Xpatch/XpatchTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2016, 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 @@ -46,7 +46,7 @@ public class XpatchTest { InMemoryJavaCompiler.compile("javax.naming.spi.NamingManager", source, "-Xmodule:java.naming"), "mods/java.naming"); - ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xpatch:mods", + ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xpatch:java.naming=mods/java.naming", "XpatchMain", "javax.naming.spi.NamingManager"); new OutputAnalyzer(pb.start()) diff --git a/hotspot/test/runtime/modules/Xpatch/XpatchTestJar.java b/hotspot/test/runtime/modules/Xpatch/XpatchTestJar.java new file mode 100644 index 00000000000..ad1675a15f0 --- /dev/null +++ b/hotspot/test/runtime/modules/Xpatch/XpatchTestJar.java @@ -0,0 +1,83 @@ +/* + * Copyright (c) 2016, 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. + * + * 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. + */ + +/* + * @test + * @summary Make sure -Xpatch works when a jar file is specified for a module + * @library /testlibrary + * @modules java.base/jdk.internal.misc + * jdk.jartool/sun.tools.jar + * @build BasicJarBuilder + * @compile XpatchMain.java + * @run main XpatchTestJar + */ + +import jdk.test.lib.*; + +public class XpatchTestJar { + private static String moduleJar; + + public static void main(String[] args) throws Exception { + + // Create a class file in the module java.naming. This class file + // will be put in the javanaming.jar file. + String source = "package javax.naming.spi; " + + "public class NamingManager { " + + " static { " + + " System.out.println(\"I pass!\"); " + + " } " + + "}"; + + ClassFileInstaller.writeClassToDisk("javax/naming/spi/NamingManager", + InMemoryJavaCompiler.compile("javax.naming.spi.NamingManager", source, "-Xmodule:java.naming"), + System.getProperty("test.classes")); + + // Build the jar file that will be used for the module "java.naming". + BasicJarBuilder.build("javanaming", "javax/naming/spi/NamingManager"); + moduleJar = BasicJarBuilder.getTestJar("javanaming.jar"); + + // Just to make sure we are not fooled by the class file being on the + // class path where all the test classes are stored, write the NamingManager.class + // file out again with output that does not contain what OutputAnalyzer + // expects. This will provide confidence that the contents of the class + // is truly coming from the jar file and not the class file. + source = "package javax.naming.spi; " + + "public class NamingManager { " + + " static { " + + " System.out.println(\"Fail!\"); " + + " } " + + "}"; + + ClassFileInstaller.writeClassToDisk("javax/naming/spi/NamingManager", + InMemoryJavaCompiler.compile("javax.naming.spi.NamingManager", source, "-Xmodule:java.naming"), + System.getProperty("test.classes")); + + // Supply -Xpatch with the name of the jar file for the module java.naming. + ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xpatch:java.naming=" + moduleJar, + "XpatchMain", "javax.naming.spi.NamingManager"); + + new OutputAnalyzer(pb.start()) + .shouldContain("I pass!") + .shouldHaveExitValue(0); + } +} diff --git a/hotspot/test/runtime/modules/Xpatch/XpatchTestJarDir.java b/hotspot/test/runtime/modules/Xpatch/XpatchTestJarDir.java new file mode 100644 index 00000000000..a5329b6349d --- /dev/null +++ b/hotspot/test/runtime/modules/Xpatch/XpatchTestJarDir.java @@ -0,0 +1,105 @@ +/* + * Copyright (c) 2016, 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. + * + * 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. + */ + +/* + * @test + * @summary Make sure -Xpatch works when a jar file and a directory is specified for a module + * @library /testlibrary + * @modules java.base/jdk.internal.misc + * jdk.jartool/sun.tools.jar + * @build BasicJarBuilder + * @compile Xpatch2DirsMain.java + * @run main XpatchTestJarDir + */ + +import java.io.File; +import java.nio.file.Files; +import jdk.test.lib.*; + +public class XpatchTestJarDir { + private static String moduleJar; + + public static void main(String[] args) throws Exception { + + // Create a class file in the module java.naming. This class file + // will be put in the javanaming.jar file. + String source = "package javax.naming.spi; " + + "public class NamingManager1 { " + + " static { " + + " System.out.println(\"I pass one!\"); " + + " } " + + "}"; + + ClassFileInstaller.writeClassToDisk("javax/naming/spi/NamingManager1", + InMemoryJavaCompiler.compile("javax.naming.spi.NamingManager1", source, "-Xmodule:java.naming"), + System.getProperty("test.classes")); + + // Build the jar file that will be used for the module "java.naming". + BasicJarBuilder.build("javanaming", "javax/naming/spi/NamingManager1"); + moduleJar = BasicJarBuilder.getTestJar("javanaming.jar"); + + // Just to make sure we are not fooled by the class file being on the + // class path where all the test classes are stored, write the NamingManager.class + // file out again with output that does not contain what OutputAnalyzer + // expects. This will provide confidence that the contents of the class + // is truly coming from the jar file and not the class file. + source = "package javax.naming.spi; " + + "public class NamingManager1 { " + + " static { " + + " System.out.println(\"Fail!\"); " + + " } " + + "}"; + + ClassFileInstaller.writeClassToDisk("javax/naming/spi/NamingManager1", + InMemoryJavaCompiler.compile("javax.naming.spi.NamingManager1", source, "-Xmodule:java.naming"), + System.getProperty("test.classes")); + + // Create a second class file in the module java.naming. This class file + // will be put in the mods/java.naming directory. + source = "package javax.naming.spi; " + + "public class NamingManager2 { " + + " static { " + + " System.out.println(\"I pass two!\"); " + + " } " + + "}"; + + ClassFileInstaller.writeClassToDisk("javax/naming/spi/NamingManager2", + InMemoryJavaCompiler.compile("javax.naming.spi.NamingManager2", source, "-Xmodule:java.naming"), + (System.getProperty("test.classes") + "/mods/java.naming")); + + + // Supply -Xpatch with the name of the jar file for the module java.naming. + ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xpatch:java.naming=" + + moduleJar + + File.pathSeparator + + System.getProperty("test.classes") + "/mods/java.naming", + "Xpatch2DirsMain", + "javax.naming.spi.NamingManager1", + "javax.naming.spi.NamingManager2"); + + new OutputAnalyzer(pb.start()) + .shouldContain("I pass one!") + .shouldContain("I pass two!") + .shouldHaveExitValue(0); + } +} diff --git a/hotspot/test/runtime/modules/Xpatch/XpatchTraceCL.java b/hotspot/test/runtime/modules/Xpatch/XpatchTraceCL.java index 02edebf60c0..1a961679bca 100644 --- a/hotspot/test/runtime/modules/Xpatch/XpatchTraceCL.java +++ b/hotspot/test/runtime/modules/Xpatch/XpatchTraceCL.java @@ -24,7 +24,7 @@ /* * @test * @bug 8069469 - * @summary Make sure -XX:+TraceClassLoading works properly with "modules" jimage, + * @summary Make sure -Xlog:classload=info works properly with "modules" jimage, -Xpatch, and with -Xbootclasspath/a * @library /testlibrary * @compile XpatchMain.java @@ -44,24 +44,23 @@ public class XpatchTraceCL { " } " + "}"; - // Test -XX:+TraceClassLoading output for -Xpatch + // Test -Xlog:classload=info output for -Xpatch ClassFileInstaller.writeClassToDisk("javax/naming/spi/NamingManager", InMemoryJavaCompiler.compile("javax.naming.spi.NamingManager", source, "-Xmodule:java.naming"), "mods/java.naming"); - ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xpatch:mods", - "-XX:+TraceClassLoading", "XpatchMain", "javax.naming.spi.NamingManager"); + ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xpatch:java.naming=mods/java.naming", + "-Xlog:classload=info", "XpatchMain", "javax.naming.spi.NamingManager"); OutputAnalyzer output = new OutputAnalyzer(pb.start()); // "modules" jimage case. output.shouldContain("[classload] java.lang.Thread source: jrt:/java.base"); // -Xpatch case. - output.shouldContain("[classload] javax.naming.spi.NamingManager source: mods" + - File.separator + "java.naming"); + output.shouldContain("[classload] javax.naming.spi.NamingManager source: mods/java.naming"); // -cp case. output.shouldContain("[classload] XpatchMain source: file"); - // Test -XX:+TraceClassLoading output for -Xbootclasspath/a + // Test -Xlog:classload=info output for -Xbootclasspath/a source = "package XpatchTraceCL_pkg; " + "public class ItIsI { " + " static { " + @@ -74,7 +73,7 @@ public class XpatchTraceCL { "xbcp"); pb = ProcessTools.createJavaProcessBuilder("-Xbootclasspath/a:xbcp", - "-XX:+TraceClassLoading", "XpatchMain", "XpatchTraceCL_pkg.ItIsI"); + "-Xlog:classload=info", "XpatchMain", "XpatchTraceCL_pkg.ItIsI"); output = new OutputAnalyzer(pb.start()); // -Xbootclasspath/a case. output.shouldContain("[classload] XpatchTraceCL_pkg.ItIsI source: xbcp"); diff --git a/hotspot/test/runtime/modules/XpatchCDS.java b/hotspot/test/runtime/modules/XpatchCDS.java index eda178759cb..53ef3cf74e6 100644 --- a/hotspot/test/runtime/modules/XpatchCDS.java +++ b/hotspot/test/runtime/modules/XpatchCDS.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2016, 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 @@ -35,7 +35,7 @@ public class XpatchCDS { public static void main(String args[]) throws Throwable { System.out.println("Test that -Xpatch and -Xshare:dump are incompatibable"); - ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xpatch:.", "-Xshare:dump"); + ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xpatch:java.naming=mods/java.naming", "-Xshare:dump"); OutputAnalyzer output = new OutputAnalyzer(pb.start()); output.shouldContain("Cannot use the following option when dumping the shared archive: -Xpatch"); @@ -52,7 +52,7 @@ public class XpatchCDS { "-XX:+UnlockDiagnosticVMOptions", "-XX:SharedArchiveFile=" + filename, "-Xshare:on", - "-Xpatch:.", + "-Xpatch:java.naming=mods/java.naming", "-version"); output = new OutputAnalyzer(pb.start()); output.shouldContain("The shared archive file cannot be used with -Xpatch"); From 3e17f032b6835a276fcd3ddd7ec2c439c329decb Mon Sep 17 00:00:00 2001 From: Alan Bateman Date: Tue, 3 May 2016 09:09:45 +0100 Subject: [PATCH 04/62] 8154956: Module system implementation refresh (4/2016) Reviewed-by: mchung, chegar, redestad --- .../internal/xsltc/trax/TemplatesImpl.java | 88 +++++++++++++++---- jaxp/test/ProblemList.txt | 3 + jaxp/test/TEST.ROOT | 2 +- 3 files changed, 74 insertions(+), 19 deletions(-) diff --git a/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/TemplatesImpl.java b/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/TemplatesImpl.java index bab16095c03..5563a90c7ec 100644 --- a/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/TemplatesImpl.java +++ b/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/TemplatesImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2016, Oracle and/or its affiliates. All rights reserved. */ /* * Licensed to the Apache Software Foundation (ASF) under one or more @@ -32,19 +32,26 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.Constants; import com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg; import com.sun.org.apache.xalan.internal.xsltc.runtime.AbstractTranslet; import java.io.IOException; +import java.io.UncheckedIOException; import java.io.NotSerializableException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.ObjectStreamField; import java.io.Serializable; -import java.util.Arrays; -import java.util.Collections; +import java.lang.module.Configuration; +import java.lang.module.ModuleDescriptor; +import java.lang.module.ModuleFinder; +import java.lang.module.ModuleReference; +import java.lang.reflect.Layer; +import java.lang.reflect.Module; import java.security.AccessController; import java.security.PrivilegedAction; -import java.lang.reflect.Module; +import java.util.Arrays; import java.util.HashMap; import java.util.Map; +import java.util.Optional; import java.util.Properties; +import java.util.Set; import javax.xml.XMLConstants; import javax.xml.transform.Templates; import javax.xml.transform.Transformer; @@ -389,6 +396,48 @@ public final class TemplatesImpl implements Templates, Serializable { return _name; } + + /** + * Creates a module layer with one module that is defined to the given class + * loader. + */ + private Module createModule(ModuleDescriptor descriptor, ClassLoader loader) { + String mn = descriptor.name(); + + ModuleReference mref = new ModuleReference(descriptor, null, () -> { + IOException ioe = new IOException(""); + throw new UncheckedIOException(ioe); + }); + + ModuleFinder finder = new ModuleFinder() { + @Override + public Optional find(String name) { + if (name.equals(mn)) { + return Optional.of(mref); + } else { + return Optional.empty(); + } + } + @Override + public Set findAll() { + return Set.of(mref); + } + }; + + Layer bootLayer = Layer.boot(); + + Configuration cf = bootLayer.configuration() + .resolveRequires(finder, ModuleFinder.empty(), Set.of(mn)); + + PrivilegedAction pa = () -> bootLayer.defineModules(cf, name -> loader); + Layer layer = AccessController.doPrivileged(pa); + + Module m = layer.findModule(mn).get(); + assert m.getLayer() == layer; + + return m; + } + /** * Defines the translet class and auxiliary classes. * Returns a reference to the Class object that defines the main class @@ -417,29 +466,32 @@ public final class TemplatesImpl implements Templates, Serializable { } // create a module for the translet - Module xmlModule = TemplatesImpl.class.getModule(); + + String mn = "jdk.translet"; + String pn = _tfactory.getPackageName(); assert pn != null && pn.length() > 0; - Module m = Modules.defineModule(loader, "jdk.translet", - Collections.singleton(pn)); + ModuleDescriptor descriptor + = new ModuleDescriptor.Builder(mn) + .requires("java.xml") + .exports(pn) + .build(); - // jdk.translate reads java.base && java.xml - Modules.addReads(m, Object.class.getModule()); - Modules.addReads(m, xmlModule); + Module m = createModule(descriptor, loader); - // jdk.translet needs access to runtime classes + // the module needs access to runtime classes + Module thisModule = TemplatesImpl.class.getModule(); Arrays.asList(Constants.PKGS_USED_BY_TRANSLET_CLASSES).forEach(p -> { - xmlModule.addExports(p, m); + thisModule.addExports(p, m); }); - // jdk.translate also needs to be loose as the XSL may bind to - // java types in an unnamed module - Modules.addReads(m, null); + // For now, the module reads all unnnamed modules. This will be changed once + // the XSLT compiler is updated to generate code to invoke addReads. + Modules.addReadsAllUnnamed(m); - // java.xml needs to instanitate the translate class - xmlModule.addReads(m); - Modules.addExports(m, pn, xmlModule); + // java.xml needs to instanitate the translet class + thisModule.addReads(m); for (int i = 0; i < classCount; i++) { _class[i] = loader.defineClass(_bytecodes[i]); diff --git a/jaxp/test/ProblemList.txt b/jaxp/test/ProblemList.txt index ba54cd68e61..c9aaf13d1fb 100644 --- a/jaxp/test/ProblemList.txt +++ b/jaxp/test/ProblemList.txt @@ -26,3 +26,6 @@ # 8147431 javax/xml/jaxp/isolatedjdk/catalog/PropertiesTest.sh generic-all +# 8150145 +javax/xml/jaxp/unittest/common/TransformationWarningsTest.java generic-all + diff --git a/jaxp/test/TEST.ROOT b/jaxp/test/TEST.ROOT index 4b6b17dc499..af3bdc94be9 100644 --- a/jaxp/test/TEST.ROOT +++ b/jaxp/test/TEST.ROOT @@ -18,4 +18,4 @@ othervm.dirs=javax/xml/jaxp groups=TEST.groups # Minimum jtreg version -requiredVersion=4.2 b01 +requiredVersion=4.2 b02 From 5c29c94f31a6a700a3457f85ed23a7d439f3972c Mon Sep 17 00:00:00 2001 From: Alan Bateman Date: Tue, 3 May 2016 09:09:49 +0100 Subject: [PATCH 05/62] 8154956: Module system implementation refresh (4/2016) Reviewed-by: mchung, chegar, redestad --- .../classes/com/sun/tools/internal/jxc/SchemaGenerator.java | 3 +++ .../classes/com/sun/tools/internal/ws/wscompile/WsgenTool.java | 2 ++ .../com/sun/tools/internal/ws/wscompile/WsimportTool.java | 2 ++ 3 files changed, 7 insertions(+) diff --git a/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/jxc/SchemaGenerator.java b/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/jxc/SchemaGenerator.java index cc875821adf..1fdf164f717 100644 --- a/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/jxc/SchemaGenerator.java +++ b/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/jxc/SchemaGenerator.java @@ -140,6 +140,9 @@ public class SchemaGenerator { aptargs.add("-cp"); aptargs.add(setClasspath(options.classpath)); // set original classpath + jaxb-api to be visible to annotation processor + aptargs.add("-addmods"); + aptargs.add("java.xml.bind"); + if(options.targetDir!=null) { aptargs.add("-d"); aptargs.add(options.targetDir.getPath()); diff --git a/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/WsgenTool.java b/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/WsgenTool.java index 6d7564c967c..a325b3455a1 100644 --- a/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/WsgenTool.java +++ b/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/WsgenTool.java @@ -162,6 +162,8 @@ public class WsgenTool { boolean bootCP = useBootClasspath(EndpointReference.class) || useBootClasspath(XmlSeeAlso.class); List args = new ArrayList(6 + (bootCP ? 1 : 0) + (options.nocompile ? 1 : 0) + (options.encoding != null ? 2 : 0)); + args.add("-addmods"); + args.add("java.xml.ws"); args.add("-d"); args.add(options.destDir.getAbsolutePath()); args.add("-classpath"); diff --git a/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/WsimportTool.java b/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/WsimportTool.java index b6e3f843905..410cf89904d 100644 --- a/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/WsimportTool.java +++ b/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/WsimportTool.java @@ -525,6 +525,8 @@ public class WsimportTool { String classpathString = createClasspathString(); boolean bootCP = useBootClasspath(EndpointContext.class) || useBootClasspath(JAXBPermission.class); List args = new ArrayList(); + args.add("-addmods"); + args.add("java.xml.ws"); args.add("-d"); args.add(classDir); args.add("-classpath"); From 64261477b13cdf2bda965e31b7af15e6aa42101b Mon Sep 17 00:00:00 2001 From: Jonathan Gibbons Date: Tue, 3 May 2016 09:11:12 +0100 Subject: [PATCH 06/62] 8154956: Module system implementation refresh (4/2016) Co-authored-by: Jan Lahoda Reviewed-by: jjg, mchung, alanb --- .../crules/CodingRulesAnalyzerPlugin.java | 14 +-- .../tools/crules/MutableFieldsAnalyzer.java | 61 ++++++------- .../javax/lang/model/util/Elements.java | 24 ++++- .../com/sun/tools/javac/code/Symbol.java | 4 +- .../com/sun/tools/javac/code/Type.java | 8 +- .../com/sun/tools/javac/comp/Modules.java | 34 +++++-- .../com/sun/tools/javac/file/Locations.java | 88 +++++++------------ .../com/sun/tools/javac/main/Option.java | 64 +------------- .../sun/tools/javac/model/JavacElements.java | 6 +- .../tools/javac/resources/javac.properties | 15 ++-- .../com/sun/tools/javac/tree/JCTree.java | 40 ++++----- .../com/sun/tools/javac/tree/TreeCopier.java | 12 +-- .../sun/tools/javac/util/ModuleWrappers.java | 1 - .../tools/sjavac/comp/SmartFileManager.java | 2 +- .../html/resources/standard.properties | 3 +- .../doclets/toolkit/Configuration.java | 2 +- .../tool/resources/javadoc.properties | 6 +- .../classes/jdk/jshell/MemoryFileManager.java | 4 +- langtools/test/TEST.ROOT | 7 +- langtools/test/tools/all/RunCodingRules.java | 62 +++++++++---- langtools/test/tools/javac/T6358024.java | 10 +-- langtools/test/tools/javac/T6358166.java | 23 ++--- langtools/test/tools/javac/T6406771.java | 5 +- ...rNamesAreNotCopiedToAnonymousInitTest.java | 13 ++- .../tools/javac/api/TestJavacTaskScanner.java | 12 +-- .../tools/javac/diags/CheckResourceKeys.java | 1 + langtools/test/tools/javac/file/T7018098.java | 14 ++- .../tools/javac/modules/AddLimitMods.java | 54 +++++++++++- .../loader/testClose/TestClose.java | 5 +- .../loader/testClose/TestClose2.java | 9 +- .../model/testgetallmembers/Main.java | 10 +-- langtools/test/tools/javac/util/T6597678.java | 5 +- langtools/test/tools/jdeps/APIDeps.java | 8 +- 33 files changed, 328 insertions(+), 298 deletions(-) diff --git a/langtools/make/tools/crules/CodingRulesAnalyzerPlugin.java b/langtools/make/tools/crules/CodingRulesAnalyzerPlugin.java index 74edca3eff5..5e60f3f3c5c 100644 --- a/langtools/make/tools/crules/CodingRulesAnalyzerPlugin.java +++ b/langtools/make/tools/crules/CodingRulesAnalyzerPlugin.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 2016, 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 @@ -48,6 +48,13 @@ import com.sun.tools.javac.util.DefinedBy; import com.sun.tools.javac.util.DefinedBy.Api; import com.sun.tools.javac.util.Log; +/* + * This code must be run in a context that provides + * access to the following javac internal packages: + * com.sun.tools.javac.api + * com.sun.tools.javac.tree + * com.sun.tools.javac.util + */ public class CodingRulesAnalyzerPlugin implements Plugin { protected Log log; @@ -55,11 +62,6 @@ public class CodingRulesAnalyzerPlugin implements Plugin { @DefinedBy(Api.COMPILER_TREE) public void init(JavacTask task, String... args) { - addExports("jdk.compiler", - "com.sun.tools.javac.api", - "com.sun.tools.javac.code", - "com.sun.tools.javac.tree", - "com.sun.tools.javac.util"); BasicJavacTask impl = (BasicJavacTask)task; Context context = impl.getContext(); log = Log.instance(context); diff --git a/langtools/make/tools/crules/MutableFieldsAnalyzer.java b/langtools/make/tools/crules/MutableFieldsAnalyzer.java index bd81af5bfea..a992f55884b 100644 --- a/langtools/make/tools/crules/MutableFieldsAnalyzer.java +++ b/langtools/make/tools/crules/MutableFieldsAnalyzer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 2016, 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 @@ -25,8 +25,10 @@ package crules; import java.util.Arrays; import java.util.HashMap; +import java.util.HashSet; import java.util.List; import java.util.Map; +import java.util.Set; import com.sun.source.util.JavacTask; import com.sun.source.util.TaskEvent.Kind; @@ -48,16 +50,8 @@ public class MutableFieldsAnalyzer extends AbstractCodingRulesAnalyzer { } private boolean ignoreField(String className, String field) { - List currentFieldsToIgnore = - classFieldsToIgnoreMap.get(className); - if (currentFieldsToIgnore != null) { - for (String fieldToIgnore : currentFieldsToIgnore) { - if (field.equals(fieldToIgnore)) { - return true; - } - } - } - return false; + Set fieldsToIgnore = classFieldsToIgnoreMap.get(className); + return (fieldsToIgnore) != null && fieldsToIgnore.contains(field); } class MutableFieldsVisitor extends TreeScanner { @@ -89,34 +83,29 @@ public class MutableFieldsAnalyzer extends AbstractCodingRulesAnalyzer { private static final String packageToCheck = "com.sun.tools.javac"; - private static final Map> classFieldsToIgnoreMap = + private static final Map> classFieldsToIgnoreMap = new HashMap<>(); + private static void ignoreFields(String className, String... fieldNames) { + classFieldsToIgnoreMap.put(className, new HashSet<>(Arrays.asList(fieldNames))); + }; + static { - classFieldsToIgnoreMap. - put("com.sun.tools.javac.util.JCDiagnostic", - Arrays.asList("fragmentFormatter")); - classFieldsToIgnoreMap. - put("com.sun.tools.javac.util.JavacMessages", - Arrays.asList("defaultBundle", "defaultMessages")); - classFieldsToIgnoreMap. - put("com.sun.tools.javac.file.ZipFileIndexCache", - Arrays.asList("sharedInstance")); - classFieldsToIgnoreMap. - put("com.sun.tools.javac.file.JRTIndex", - Arrays.asList("sharedInstance")); - classFieldsToIgnoreMap. - put("com.sun.tools.javac.main.JavaCompiler", - Arrays.asList("versionRB")); - classFieldsToIgnoreMap. - put("com.sun.tools.javac.code.Type", - Arrays.asList("moreInfo")); - classFieldsToIgnoreMap. - put("com.sun.tools.javac.util.SharedNameTable", - Arrays.asList("freelist")); - classFieldsToIgnoreMap. - put("com.sun.tools.javac.util.Log", - Arrays.asList("useRawMessages")); + ignoreFields("com.sun.tools.javac.util.JCDiagnostic", "fragmentFormatter"); + ignoreFields("com.sun.tools.javac.util.JavacMessages", "defaultBundle", "defaultMessages"); + ignoreFields("com.sun.tools.javac.file.JRTIndex", "sharedInstance"); + ignoreFields("com.sun.tools.javac.main.JavaCompiler", "versionRB"); + ignoreFields("com.sun.tools.javac.code.Type", "moreInfo"); + ignoreFields("com.sun.tools.javac.util.SharedNameTable", "freelist"); + ignoreFields("com.sun.tools.javac.util.Log", "useRawMessages"); + ignoreFields("com.sun.tools.javac.util.ModuleWrappers$ModuleFinderHelper", + "moduleFinderInterface", "ofMethod", "emptyMethod"); + ignoreFields("com.sun.tools.javac.util.ModuleWrappers$ConfigurationHelper", + "configurationClass", "resolveRequiresAndUsesMethod"); + ignoreFields("com.sun.tools.javac.util.ModuleWrappers$LayerHelper", + "layerClass", "bootMethod", "defineModulesWithOneLoaderMethod", "configurationMethod"); + ignoreFields("com.sun.tools.javac.util.ModuleHelper", + "addExportsMethod", "getUnnamedModuleMethod", "getModuleMethod"); } } diff --git a/langtools/src/java.compiler/share/classes/javax/lang/model/util/Elements.java b/langtools/src/java.compiler/share/classes/javax/lang/model/util/Elements.java index 9c3801dcfa4..076e34caa74 100644 --- a/langtools/src/java.compiler/share/classes/javax/lang/model/util/Elements.java +++ b/langtools/src/java.compiler/share/classes/javax/lang/model/util/Elements.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2016, 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 @@ -49,11 +49,21 @@ public interface Elements { /** * Returns a package given its fully qualified name. * - * @param name fully qualified package name, or "" for an unnamed package + * @param name fully qualified package name, or an empty string for an unnamed package * @return the named package, or {@code null} if it cannot be found */ PackageElement getPackageElement(CharSequence name); + /** + * Returns a package given its fully qualified name, as seen from the given module. + * + * @param name fully qualified package name, or an empty string for an unnamed package + * @param module module relative to which the lookup should happen + * @return the named package, or {@code null} if it cannot be found + * @since 9 + */ + PackageElement getPackageElement(ModuleElement module, CharSequence name); + /** * Returns a type element given its canonical name. * @@ -62,6 +72,16 @@ public interface Elements { */ TypeElement getTypeElement(CharSequence name); + /** + * Returns a type element given its canonical name, as seen from the given module. + * + * @param name the canonical name + * @param module module relative to which the lookup should happen + * @return the named type element, or {@code null} if it cannot be found + * @since 9 + */ + TypeElement getTypeElement(ModuleElement module, CharSequence name); + /** * Returns a module element given its fully qualified name. * diff --git a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Symbol.java b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Symbol.java index e60e9a91526..2852f535a6f 100644 --- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Symbol.java +++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Symbol.java @@ -960,12 +960,12 @@ public abstract class Symbol extends AnnoConstruct implements Element { return n; } - @Override + @Override @DefinedBy(Api.LANGUAGE_MODEL) public R accept(ElementVisitor v, P p) { return v.visitModule(this, p); } - @Override + @Override @DefinedBy(Api.LANGUAGE_MODEL) public List getEnclosedElements() { List list = List.nil(); for (Symbol sym : enclosedPackages) { diff --git a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Type.java b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Type.java index 32e89d9a6c9..2dd00133e1b 100644 --- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Type.java +++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Type.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2016, 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 @@ -1588,17 +1588,17 @@ public abstract class Type extends AnnoConstruct implements TypeMirror { return v.visitModuleType(this, s); } - @Override + @Override @DefinedBy(Api.LANGUAGE_MODEL) public String toString() { return tsym.getQualifiedName().toString(); } - @Override + @Override @DefinedBy(Api.LANGUAGE_MODEL) public TypeKind getKind() { return TypeKind.MODULE; } - @Override + @Override @DefinedBy(Api.LANGUAGE_MODEL) public R accept(TypeVisitor v, P p) { return v.visitNoType(this, p); } diff --git a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Modules.java b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Modules.java index f25e928ce9d..d42524b7c9e 100644 --- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Modules.java +++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Modules.java @@ -131,6 +131,9 @@ public class Modules extends JCTree.Visitor { private final String moduleOverride; + private final Name java_se; + private final Name java_; + ModuleSymbol defaultModule; private final String addExportsOpt; @@ -173,6 +176,9 @@ public class Modules extends JCTree.Visitor { JNIWriter jniWriter = JNIWriter.instance(context); jniWriter.multiModuleMode = multiModuleMode; + java_se = names.fromString("java.se"); + java_ = names.fromString("java."); + addExportsOpt = options.get(Option.XADDEXPORTS); addReadsOpt = options.get(Option.XADDREADS); addModsOpt = options.get(Option.ADDMODS); @@ -761,17 +767,17 @@ public class Modules extends JCTree.Visitor { private void checkForCorrectness() { for (Directive.ProvidesDirective provides : allProvides) { JCProvides tree = directiveToTreeMap.get(provides); - /** The implementation must be defined in the same module as the provides directive - * (else, error) + /* The implementation must be defined in the same module as the provides directive + * (else, error) */ PackageSymbol implementationDefiningPackage = provides.impl.packge(); if (implementationDefiningPackage.modle != msym) { log.error(tree.pos(), Errors.ServiceImplementationNotInRightModule(implementationDefiningPackage.modle)); } - /** There is no inherent requirement that module that provides a service should actually - * use it itself. However, it is a pointless declaration if the service package is not - * exported and there is no uses for the service. + /* There is no inherent requirement that module that provides a service should actually + * use it itself. However, it is a pointless declaration if the service package is not + * exported and there is no uses for the service. */ PackageSymbol interfaceDeclaringPackage = provides.service.packge(); boolean isInterfaceDeclaredInCurrentModule = interfaceDeclaringPackage.modle == msym; @@ -826,8 +832,22 @@ public class Modules extends JCTree.Visitor { Set enabledRoot = new LinkedHashSet<>(); if (rootModules.contains(syms.unnamedModule)) { - for (ModuleSymbol sym : syms.getAllModules()) { - if (systemModulePred.test(sym) && observablePred.test(sym)) { + ModuleSymbol javaSE = syms.getModule(java_se); + Predicate jdkModulePred; + + if (javaSE != null && (observable == null || observable.contains(javaSE))) { + jdkModulePred = sym -> { + sym.complete(); + return !sym.name.startsWith(java_) + && sym.exports.stream().anyMatch(e -> e.modules == null); + }; + enabledRoot.add(javaSE); + } else { + jdkModulePred = sym -> true; + } + + for (ModuleSymbol sym : new HashSet<>(syms.getAllModules())) { + if (systemModulePred.test(sym) && observablePred.test(sym) && jdkModulePred.test(sym)) { enabledRoot.add(sym); } } diff --git a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/Locations.java b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/Locations.java index f3a7b61f229..68f7781b0ef 100644 --- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/Locations.java +++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/Locations.java @@ -74,6 +74,8 @@ import com.sun.tools.javac.code.Lint; import com.sun.tools.javac.main.Option; import com.sun.tools.javac.resources.CompilerProperties.Errors; import com.sun.tools.javac.resources.CompilerProperties.Warnings; +import com.sun.tools.javac.util.DefinedBy; +import com.sun.tools.javac.util.DefinedBy.Api; import com.sun.tools.javac.util.ListBuffer; import com.sun.tools.javac.util.Log; import com.sun.tools.javac.util.Pair; @@ -813,7 +815,7 @@ public class Locations { * SYSTEM_MODULES and MODULE_PATH. * * The Location can be specified to accept overriding classes from the - * -Xpatch:dir parameter. + * {@code -Xpatch:= } parameter. */ private class ModuleLocationHandler extends LocationHandler implements Location { protected final String name; @@ -829,47 +831,27 @@ public class Locations { this.searchPath = searchPath; this.output = output; - if (allowOverrides) { - if (patchMap != null) { - SearchPath mPatch = patchMap.get(moduleName); - if (mPatch != null) { - SearchPath sp = new SearchPath(); - sp.addAll(mPatch); - sp.addAll(searchPath); - searchPathWithOverrides = sp; - } else { - searchPathWithOverrides = searchPath; - } + if (allowOverrides && patchMap != null) { + SearchPath mPatch = patchMap.get(moduleName); + if (mPatch != null) { + SearchPath sp = new SearchPath(); + sp.addAll(mPatch); + sp.addAll(searchPath); + searchPathWithOverrides = sp; } else { - // for old style patch option; retained for transition - Set overrides = new LinkedHashSet<>(); - if (moduleOverrideSearchPath != null) { - for (Path p: moduleOverrideSearchPath) { - Path o = p.resolve(moduleName); - if (Files.isDirectory(o)) { - overrides.add(o); - } - } - } - - if (!overrides.isEmpty()) { - overrides.addAll(searchPath); - searchPathWithOverrides = overrides; - } else { - searchPathWithOverrides = searchPath; - } + searchPathWithOverrides = searchPath; } } else { searchPathWithOverrides = searchPath; } } - @Override // defined by Location + @Override @DefinedBy(Api.COMPILER) public String getName() { return name; } - @Override // defined by Location + @Override @DefinedBy(Api.COMPILER) public boolean isOutputLocation() { return output; } @@ -1522,41 +1504,33 @@ public class Locations { } } - private SearchPath moduleOverrideSearchPath; // for old style patch option; retained for transition private Map patchMap; boolean handleOption(Option option, String value) { switch (option) { case XPATCH: - if (value.contains("=")) { - Map map = new LinkedHashMap<>(); - for (String entry: value.split(",")) { - int eq = entry.indexOf('='); - if (eq > 0) { - String mName = entry.substring(0, eq); - SearchPath mPatchPath = new SearchPath() - .addFiles(entry.substring(eq + 1)); - boolean ok = true; - for (Path p: mPatchPath) { - Path mi = p.resolve("module-info.class"); - if (Files.exists(mi)) { - log.error(Errors.LocnModuleInfoNotAllowedOnPatchPath(mi)); - ok = false; - } - } - if (ok && !mPatchPath.isEmpty()) { - map.computeIfAbsent(mName, (_x) -> new SearchPath()) - .addAll(mPatchPath); - } - } else { - log.error(Errors.LocnInvalidArgForXpatch(entry)); + Map map = new LinkedHashMap<>(); + int eq = value.indexOf('='); + if (eq > 0) { + String mName = value.substring(0, eq); + SearchPath mPatchPath = new SearchPath() + .addFiles(value.substring(eq + 1)); + boolean ok = true; + for (Path p: mPatchPath) { + Path mi = p.resolve("module-info.class"); + if (Files.exists(mi)) { + log.error(Errors.LocnModuleInfoNotAllowedOnPatchPath(mi)); + ok = false; } } - patchMap = map; + if (ok && !mPatchPath.isEmpty()) { + map.computeIfAbsent(mName, (_x) -> new SearchPath()) + .addAll(mPatchPath); + } } else { - // for old style patch option; retained for transition - moduleOverrideSearchPath = new SearchPath().addFiles(value); + log.error(Errors.LocnInvalidArgForXpatch(value)); } + patchMap = map; return true; default: LocationHandler h = handlersForOption.get(option); diff --git a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/main/Option.java b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/main/Option.java index 5f07f84e47e..cac30109a9f 100644 --- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/main/Option.java +++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/main/Option.java @@ -199,7 +199,7 @@ public enum Option { SYSTEM("-system", "opt.arg.jdk", "opt.system", STANDARD, FILEMANAGER), - XPATCH("-Xpatch:", "opt.arg.path", "opt.Xpatch", EXTENDED, FILEMANAGER), + XPATCH("-Xpatch:", "opt.arg.patch", "opt.patch", EXTENDED, FILEMANAGER), BOOTCLASSPATH("-bootclasspath", "opt.arg.path", "opt.bootclasspath", STANDARD, FILEMANAGER) { @Override @@ -529,83 +529,21 @@ public enum Option { XADDEXPORTS("-XaddExports:", "opt.arg.addExports", "opt.addExports", EXTENDED, BASIC) { @Override public boolean process(OptionHelper helper, String option) { - if (option.matches(".*,.*=.*")) { // temporary, for backwards compatibility - return processOldStyle(helper, option); - } String p = option.substring(option.indexOf(':') + 1).trim(); String prev = helper.get(XADDEXPORTS); helper.put(XADDEXPORTS.text, (prev == null) ? p : prev + '\0' + p); return false; } - - // convert old style option into a series of new-style options - private boolean processOldStyle(OptionHelper helper, String option) { - String p = option.substring(option.indexOf(':') + 1).trim(); - String[] entries = p.split("[ ,]+"); - Map map = new LinkedHashMap<>(); - for (String e: entries) { - // Each entry is of the form module/package=target - // we must group values for the same module/package together - int eq = e.indexOf('='); - if (eq == -1) { - // don't bother with error message for backwards compatible support - continue; - } - String modPkg = e.substring(0, eq); - String target = e.substring(eq + 1); - String targets = map.get(modPkg); - map.put(modPkg, (targets == null) ? target : targets + "," + target); - } - boolean ok = true; - for (Map.Entry e: map.entrySet()) { - // process as new-style options - String key = e.getKey(); - String value = e.getValue(); - ok = ok & process(helper, XADDEXPORTS.text + key + "=" + value); - }; - return ok; - } }, XADDREADS("-XaddReads:", "opt.arg.addReads", "opt.addReads", EXTENDED, BASIC) { @Override public boolean process(OptionHelper helper, String option) { - if (option.matches(".*,.*=.*")) { // temporary, for backwards compatibility - return processOldStyle(helper, option); - } String p = option.substring(option.indexOf(':') + 1).trim(); String prev = helper.get(XADDREADS); helper.put(XADDREADS.text, (prev == null) ? p : prev + '\0' + p); return false; } - - // convert old style option into a series of new-style options - private boolean processOldStyle(OptionHelper helper, String option) { - String p = option.substring(option.indexOf(':') + 1).trim(); - String[] entries = p.split("[ ,]+"); - Map map = new LinkedHashMap<>(); - for (String e: entries) { - // Each entry is of the form module=target - // we must group values for the same module together - int eq = e.indexOf('='); - if (eq == -1) { - // don't bother with error message for backwards compatible support - continue; - } - String modPkg = e.substring(0, eq); - String target = e.substring(eq + 1); - String targets = map.get(modPkg); - map.put(modPkg, (targets == null) ? target : targets + "," + target); - } - boolean ok = true; - for (Map.Entry e: map.entrySet()) { - // process as new-style options - String key = e.getKey(); - String value = e.getValue(); - ok = ok & process(helper, XADDEXPORTS.text + key + "=" + value); - }; - return ok; - } }, XMODULE("-Xmodule:", "opt.arg.module", "opt.module", EXTENDED, BASIC) { diff --git a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/model/JavacElements.java b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/model/JavacElements.java index 6d2c8ea21de..450f9492b50 100644 --- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/model/JavacElements.java +++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/model/JavacElements.java @@ -107,12 +107,13 @@ public class JavacElements implements Elements { return modules.getObservableModule(names.fromString(strName)); } - @DefinedBy(Api.LANGUAGE_MODEL) + @Override @DefinedBy(Api.LANGUAGE_MODEL) public PackageSymbol getPackageElement(CharSequence name) { ensureEntered("getPackageElement"); return getPackageElement(modules.getDefaultModule(), name); } + @Override @DefinedBy(Api.LANGUAGE_MODEL) public PackageSymbol getPackageElement(ModuleElement module, CharSequence name) { String strName = name.toString(); if (strName.equals("")) @@ -122,12 +123,13 @@ public class JavacElements implements Elements { : null; } - @DefinedBy(Api.LANGUAGE_MODEL) + @Override @DefinedBy(Api.LANGUAGE_MODEL) public ClassSymbol getTypeElement(CharSequence name) { ensureEntered("getTypeElement"); return getTypeElement(modules.getDefaultModule(), name); } + @Override @DefinedBy(Api.LANGUAGE_MODEL) public ClassSymbol getTypeElement(ModuleElement module, CharSequence name) { String strName = name.toString(); return SourceVersion.isName(strName) diff --git a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/resources/javac.properties b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/resources/javac.properties index 611ab01a6cf..e2a00b6bcbc 100644 --- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/resources/javac.properties +++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/resources/javac.properties @@ -53,12 +53,6 @@ javac.opt.system=\ Override location of system modules javac.opt.upgrademodulepath=\ Override location of upgradeable modules -javac.opt.Xbootclasspath.p=\ - Prepend to the bootstrap class path -javac.opt.Xbootclasspath.a=\ - Append to the bootstrap class path -javac.opt.Xpatch=\ - Specify location of module class files to patch javac.opt.endorseddirs=\ Override location of endorsed standards path javac.opt.extdirs=\ @@ -160,6 +154,10 @@ javac.opt.arg.pathname=\ javac.opt.arg.file=\ +javac.opt.Xbootclasspath.p=\ + Prepend to the bootstrap class path +javac.opt.Xbootclasspath.a=\ + Append to the bootstrap class path javac.opt.Xlint=\ Enable recommended warnings javac.opt.Xlint.all=\ @@ -286,6 +284,11 @@ javac.opt.addReads=\n\ \ may be ALL-UNNAMED to require the unnamed module. javac.opt.arg.addReads=\ =(,)* +javac.opt.patch=\n\ +\ Override or augment a module with classes and resources\n\ +\ in JAR files or directories +javac.opt.arg.patch=\ + =(:)* javac.opt.module=\ Specify a module to which the classes being compiled belong. javac.opt.arg.module=\ diff --git a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/JCTree.java b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/JCTree.java index 2787963dfb1..da9f09cceb4 100644 --- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/JCTree.java +++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/JCTree.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2016, 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 @@ -2626,22 +2626,22 @@ public abstract class JCTree implements Tree, Cloneable, DiagnosticPosition { @Override public void accept(Visitor v) { v.visitModuleDef(this); } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public Kind getKind() { return Kind.MODULE; } -// @Override + @Override @DefinedBy(Api.COMPILER_TREE) public JCExpression getName() { return qualId; } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public List getDirectives() { return directives; } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public R accept(TreeVisitor v, D d) { return v.visitModule(this, d); } @@ -2666,22 +2666,22 @@ public abstract class JCTree implements Tree, Cloneable, DiagnosticPosition { @Override public void accept(Visitor v) { v.visitExports(this); } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public Kind getKind() { return Kind.EXPORTS; } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public JCExpression getExportName() { return qualid; } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public List getModuleNames() { return moduleNames; } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public R accept(TreeVisitor v, D d) { return v.visitExports(this, d); } @@ -2705,22 +2705,22 @@ public abstract class JCTree implements Tree, Cloneable, DiagnosticPosition { @Override public void accept(Visitor v) { v.visitProvides(this); } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public Kind getKind() { return Kind.PROVIDES; } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public R accept(TreeVisitor v, D d) { return v.visitProvides(this, d); } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public JCExpression getServiceName() { return serviceName; } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public JCExpression getImplementationName() { return implName; } @@ -2745,22 +2745,22 @@ public abstract class JCTree implements Tree, Cloneable, DiagnosticPosition { @Override public void accept(Visitor v) { v.visitRequires(this); } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public Kind getKind() { return Kind.REQUIRES; } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public R accept(TreeVisitor v, D d) { return v.visitRequires(this, d); } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public boolean isPublic() { return isPublic; } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public JCExpression getModuleName() { return moduleName; } @@ -2782,17 +2782,17 @@ public abstract class JCTree implements Tree, Cloneable, DiagnosticPosition { @Override public void accept(Visitor v) { v.visitUses(this); } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public Kind getKind() { return Kind.USES; } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public JCExpression getServiceName() { return qualid; } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public R accept(TreeVisitor v, D d) { return v.visitUses(this, d); } diff --git a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/TreeCopier.java b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/TreeCopier.java index 20638f71b3d..6fa5dc85b42 100644 --- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/TreeCopier.java +++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/TreeCopier.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2006, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2006, 2016, 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 @@ -505,7 +505,7 @@ public class TreeCopier

implements TreeVisitor { return M.at(t.pos).Wildcard(kind, inner); } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public JCTree visitModule(ModuleTree node, P p) { JCModuleDecl t = (JCModuleDecl) node; JCExpression qualId = copy(t.qualId); @@ -513,7 +513,7 @@ public class TreeCopier

implements TreeVisitor { return M.at(t.pos).ModuleDef(qualId, directives); } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public JCExports visitExports(ExportsTree node, P p) { JCExports t = (JCExports) node; JCExpression qualId = copy(t.qualid, p); @@ -521,7 +521,7 @@ public class TreeCopier

implements TreeVisitor { return M.at(t.pos).Exports(qualId, moduleNames); } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public JCProvides visitProvides(ProvidesTree node, P p) { JCProvides t = (JCProvides) node; JCExpression serviceName = copy(t.serviceName, p); @@ -529,14 +529,14 @@ public class TreeCopier

implements TreeVisitor { return M.at(t.pos).Provides(serviceName, implName); } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public JCRequires visitRequires(RequiresTree node, P p) { JCRequires t = (JCRequires) node; JCExpression moduleName = copy(t.moduleName, p); return M.at(t.pos).Requires(t.isPublic, moduleName); } - @Override + @Override @DefinedBy(Api.COMPILER_TREE) public JCUses visitUses(UsesTree node, P p) { JCUses t = (JCUses) node; JCExpression serviceName = copy(t.qualid, p); diff --git a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/ModuleWrappers.java b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/ModuleWrappers.java index 7e7accc17fb..a2adaac8257 100644 --- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/ModuleWrappers.java +++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/ModuleWrappers.java @@ -25,7 +25,6 @@ package com.sun.tools.javac.util; -import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.nio.file.Path; diff --git a/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/comp/SmartFileManager.java b/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/comp/SmartFileManager.java index 5a67380d11f..88827c42b52 100644 --- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/comp/SmartFileManager.java +++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/comp/SmartFileManager.java @@ -203,7 +203,7 @@ public class SmartFileManager extends ForwardingJavaFileManager return file; } - @Override + @Override @DefinedBy(Api.COMPILER) public Location getModuleLocation(Location location, JavaFileObject fo, String pkgName) throws IOException { return super.getModuleLocation(location, locUnwrap(fo), pkgName); } diff --git a/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/standard.properties b/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/standard.properties index 6356cbf3591..e7ab6367fe8 100644 --- a/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/standard.properties +++ b/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/standard.properties @@ -339,7 +339,8 @@ doclet.xusage.xdoclint-extended.description=Enable or disable specific checks fo doclet.xusage.xdoclint-package.name=Xdoclint/package: doclet.xusage.xdoclint-package.parameters=([-]) -doclet.xusage.xdoclint-package.description=Enable or disable checks in specific packages. is a comma separated\n\ +doclet.xusage.xdoclint-package.description=\n\ +\ Enable or disable checks in specific packages. is a comma separated\n\ \ list of package specifiers. Package specifier is either a qualified name of a package\n\ \ or a package name prefix followed by .*, which expands to all sub-packages of\n\ \ the given package. Prefix the package specifier with - to disable checks for\n\ diff --git a/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/Configuration.java b/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/Configuration.java index f16b817d3d7..917063e98ae 100644 --- a/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/Configuration.java +++ b/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/Configuration.java @@ -1140,7 +1140,7 @@ public abstract class Configuration { */ @Override public String toString() { - String opt = name + " " + parameters; + String opt = name + (name.endsWith(":") ? "" : " ") + parameters; int optlen = opt.length(); int spaces = 32 - optlen; StringBuffer sb = new StringBuffer(" -").append(opt); diff --git a/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/resources/javadoc.properties b/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/resources/javadoc.properties index f9cab63f716..e01a78e93a2 100644 --- a/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/resources/javadoc.properties +++ b/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/resources/javadoc.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 1997, 2016, 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 @@ -73,7 +73,9 @@ main.Xusage=\ \ given module. may be ALL-UNNAMED to require\n\ \ the unnamed module.\n\ \ -Xmodule: Specify a module to which the classes being compiled belong.\n\ -\ -Xpatch: Specify location of module class files to patch\n +\ -Xpatch:=(:)*\n\ +\ Override or augment a module with classes and resources\n\ +\ in JAR files or directories main.Xusage.foot=\ These options are non-standard and subject to change without notice. diff --git a/langtools/src/jdk.jshell/share/classes/jdk/jshell/MemoryFileManager.java b/langtools/src/jdk.jshell/share/classes/jdk/jshell/MemoryFileManager.java index ed79e4f3845..26f43fc5c15 100644 --- a/langtools/src/jdk.jshell/share/classes/jdk/jshell/MemoryFileManager.java +++ b/langtools/src/jdk.jshell/share/classes/jdk/jshell/MemoryFileManager.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -231,6 +231,7 @@ class MemoryFileManager implements JavaFileManager { } // Make compatible with Jigsaw + @DefinedBy(Api.COMPILER) public String inferModuleName(Location location) { try { if (inferModuleNameMethod == null) { @@ -249,6 +250,7 @@ class MemoryFileManager implements JavaFileManager { } // Make compatible with Jigsaw + @DefinedBy(Api.COMPILER) public Iterable> listModuleLocations(Location location) throws IOException { try { if (listModuleLocationsMethod == null) { diff --git a/langtools/test/TEST.ROOT b/langtools/test/TEST.ROOT index 878d04ab989..690b5631668 100644 --- a/langtools/test/TEST.ROOT +++ b/langtools/test/TEST.ROOT @@ -14,5 +14,8 @@ keys=intermittent randomness # Group definitions groups=TEST.groups -# Tests using jtreg 4.2 b01 features -requiredVersion=4.2 b01 +# Tests using jtreg 4.2 b02 features +requiredVersion=4.2 b02 + +# Use new form of -Xpatch +useNewXpatch=true diff --git a/langtools/test/tools/all/RunCodingRules.java b/langtools/test/tools/all/RunCodingRules.java index 9f52e81be44..a71dfbd5d2f 100644 --- a/langtools/test/tools/all/RunCodingRules.java +++ b/langtools/test/tools/all/RunCodingRules.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -25,11 +25,7 @@ * @test * @bug 8043643 * @summary Run the langtools coding rules over the langtools source code. - * @modules java.base/sun.reflect.annotation - * java.logging - * java.xml - * jdk.compiler/com.sun.tools.javac.resources - * jdk.compiler/com.sun.tools.javac.util + * @modules jdk.compiler/com.sun.tools.javac.util */ @@ -58,25 +54,33 @@ public class RunCodingRules { public void run() throws Exception { Path testSrc = Paths.get(System.getProperty("test.src", ".")); - Path targetDir = Paths.get(System.getProperty("test.classes", ".")); + Path targetDir = Paths.get("."); List sourceDirs = null; Path crulesDir = null; + Path mainSrcDir = null; + List genSrcDirs = null; for (Path d = testSrc; d != null; d = d.getParent()) { if (Files.exists(d.resolve("TEST.ROOT"))) { d = d.getParent(); Path toolsPath = d.resolve("make/tools"); - if (Files.exists(toolsPath)) { + Path buildDir = d.getParent().resolve("build"); + if (Files.exists(toolsPath) && Files.exists(buildDir)) { + mainSrcDir = d.resolve("src"); crulesDir = toolsPath; - sourceDirs = Files.walk(d.resolve("src"), 1) + sourceDirs = Files.walk(mainSrcDir, 1) .map(p -> p.resolve("share/classes")) .filter(p -> Files.isDirectory(p)) .collect(Collectors.toList()); + genSrcDirs = Files.walk(buildDir, 1) + .map(p -> p.resolve("support/gensrc")) + .filter(p -> Files.isDirectory(p.resolve("jdk.compiler"))) + .collect(Collectors.toList()); break; } } } - if (sourceDirs == null || crulesDir == null) { + if (sourceDirs == null || crulesDir == null || genSrcDirs == null) { System.err.println("Warning: sources not found, test skipped."); return ; } @@ -96,12 +100,11 @@ public class RunCodingRules { Path crulesTarget = targetDir.resolve("crules"); Files.createDirectories(crulesTarget); List crulesOptions = Arrays.asList( - "-XaddExports:" - + "jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", "-d", crulesTarget.toString()); javaCompiler.getTask(null, fm, noErrors, crulesOptions, null, fm.getJavaFileObjectsFromFiles(crulesFiles)).call(); @@ -117,11 +120,36 @@ public class RunCodingRules { .map(p -> p.toFile()) .collect(Collectors.toList()); + String FS = File.separator; + String PS = File.pathSeparator; + + Path genSrcTarget = targetDir.resolve("gensrc"); + List genSrcFiles = Arrays.asList( + "jdk.compiler/com/sun/tools/javac/resources/CompilerProperties.java" + ); + for (String f : genSrcFiles) { + for (Path dir : genSrcDirs) { + Path from = dir.resolve(f.replace("/", FS)); + if (Files.exists(from)) { + try { + Path to = genSrcTarget.resolve(f.replace("/", FS)); + Files.createDirectories(to.getParent()); + Files.copy(from, to); + } catch (IOException e) { + e.printStackTrace(); + } + } + } + } + Path sourceTarget = targetDir.resolve("classes"); Files.createDirectories(sourceTarget); - String processorPath = crulesTarget.toString() + File.pathSeparator + crulesDir.toString(); + String processorPath = crulesTarget + PS + crulesDir; + List options = Arrays.asList( "-d", sourceTarget.toString(), + "-modulesourcepath", mainSrcDir + FS + "*" + FS + "share" + FS + "classes" + PS + genSrcTarget, + "-XDaccessInternalAPI", "-processorpath", processorPath, "-Xplugin:coding_rules"); javaCompiler.getTask(null, fm, noErrors, options, null, diff --git a/langtools/test/tools/javac/T6358024.java b/langtools/test/tools/javac/T6358024.java index abc61bd2fcc..17d2277b91e 100644 --- a/langtools/test/tools/javac/T6358024.java +++ b/langtools/test/tools/javac/T6358024.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2006, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2006, 2016, 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 @@ -69,10 +69,10 @@ public class T6358024 extends AbstractProcessor { JavacTool tool = JavacTool.create(); List flags = new ArrayList(); - flags.add("-XaddExports:" - + "jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"); + flags.addAll(Arrays.asList( + "-XaddExports:jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED")); for (Option opt: opts) { flags.add(opt.name); for (Object arg : opt.args) diff --git a/langtools/test/tools/javac/T6358166.java b/langtools/test/tools/javac/T6358166.java index bea89710710..aa9c4c763a6 100644 --- a/langtools/test/tools/javac/T6358166.java +++ b/langtools/test/tools/javac/T6358166.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2006, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2006, 2016, 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 @@ -42,8 +42,7 @@ import com.sun.tools.javac.api.JavacTaskImpl; import com.sun.tools.javac.api.JavacTool; import com.sun.tools.javac.file.JavacFileManager; import com.sun.tools.javac.main.JavaCompiler; -import com.sun.tools.javac.util.*; -import com.sun.tools.javac.util.List; // disambiguate +import com.sun.tools.javac.util.Context; @SupportedAnnotationTypes("*") @@ -56,22 +55,26 @@ public class T6358166 extends AbstractProcessor { JavacFileManager fm = new JavacFileManager(new Context(), false, null); JavaFileObject f = fm.getJavaFileObject(testSrc + File.separatorChar + self + ".java"); - String addExports = "-XaddExports:" - + "jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"; + List addExports = Arrays.asList( + "-XaddExports:jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"); test(fm, f, addExports, "-verbose", "-d", "."); test(fm, f, addExports, "-verbose", "-d", ".", "-XprintRounds", "-processorpath", ".", "-processor", self); } - static void test(JavacFileManager fm, JavaFileObject f, String... args) throws Throwable { + static void test(JavacFileManager fm, JavaFileObject f, List addExports, String... args) throws Throwable { + List allArgs = new ArrayList<>(); + allArgs.addAll(addExports); + allArgs.addAll(Arrays.asList(args)); + Context context = new Context(); JavacTool tool = JavacTool.create(); - JavacTaskImpl task = (JavacTaskImpl) tool.getTask(null, fm, null, Arrays.asList(args), null, List.of(f), context); + JavacTaskImpl task = (JavacTaskImpl) tool.getTask(null, fm, null, allArgs, null, List.of(f), context); task.call(); JavaCompiler c = JavaCompiler.instance(context); diff --git a/langtools/test/tools/javac/T6406771.java b/langtools/test/tools/javac/T6406771.java index bb375eb45bb..03e0851f4ae 100644 --- a/langtools/test/tools/javac/T6406771.java +++ b/langtools/test/tools/javac/T6406771.java @@ -50,9 +50,8 @@ public class T6406771 extends AbstractProcessor { JavaFileObject f = fm.getJavaFileObjectsFromFiles(Arrays.asList(new File(testSrc, self+".java"))).iterator().next(); List opts = Arrays.asList( - "-XaddExports:" - + "jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED", "-XDaccessInternalAPI", "-d", ".", "-processorpath", testClasses, diff --git a/langtools/test/tools/javac/T8010737/ParameterNamesAreNotCopiedToAnonymousInitTest.java b/langtools/test/tools/javac/T8010737/ParameterNamesAreNotCopiedToAnonymousInitTest.java index a33beb0ce3a..d80da6d8d6d 100644 --- a/langtools/test/tools/javac/T8010737/ParameterNamesAreNotCopiedToAnonymousInitTest.java +++ b/langtools/test/tools/javac/T8010737/ParameterNamesAreNotCopiedToAnonymousInitTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 2016, 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 @@ -143,12 +143,11 @@ public class ParameterNamesAreNotCopiedToAnonymousInitTest { Arrays.asList(new File(System.getProperty("test.src"), this.getClass().getName() + ".java"))); java.util.List options = Arrays.asList( - "-XaddExports:" - + "jdk.jdeps/com.sun.tools.classfile=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", + "-XaddExports:jdk.jdeps/com.sun.tools.classfile=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", "-d", System.getProperty("user.dir") ); JavacTask task = (JavacTask) c.getTask(null, fm, null, options, null, fos); diff --git a/langtools/test/tools/javac/api/TestJavacTaskScanner.java b/langtools/test/tools/javac/api/TestJavacTaskScanner.java index e2c1385752e..15071d815da 100644 --- a/langtools/test/tools/javac/api/TestJavacTaskScanner.java +++ b/langtools/test/tools/javac/api/TestJavacTaskScanner.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2016, 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 @@ -73,11 +73,11 @@ public class TestJavacTaskScanner extends ToolTester { final Iterable compilationUnits = fm.getJavaFileObjects(new File[] {file}); StandardJavaFileManager fm = getLocalFileManager(tool, null, null); - java.util.List options = Arrays.asList("-XaddExports:" - + "jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"); + java.util.List options = Arrays.asList( + "-XaddExports:jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"); task = (JavacTaskImpl)tool.getTask(null, fm, null, options, null, compilationUnits); task.getContext().put(ScannerFactory.scannerFactoryKey, new MyScanner.Factory(task.getContext(), this)); diff --git a/langtools/test/tools/javac/diags/CheckResourceKeys.java b/langtools/test/tools/javac/diags/CheckResourceKeys.java index 18951f8bb80..ddd2c9ad691 100644 --- a/langtools/test/tools/javac/diags/CheckResourceKeys.java +++ b/langtools/test/tools/javac/diags/CheckResourceKeys.java @@ -294,6 +294,7 @@ public class CheckResourceKeys { "opt.Xlint.desc.", "count.", "illegal.", + "java.", "javac.", "verbose.", "locn." diff --git a/langtools/test/tools/javac/file/T7018098.java b/langtools/test/tools/javac/file/T7018098.java index 3283fa68324..a8d8b2fc7df 100644 --- a/langtools/test/tools/javac/file/T7018098.java +++ b/langtools/test/tools/javac/file/T7018098.java @@ -60,10 +60,9 @@ public class T7018098 extends JavacTestingAbstractProcessor { _assert(!testDir.exists()); compile( - "-XaddExports:" - + "jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", "-XDaccessInternalAPI", "-proc:only", "-processor", myName, @@ -74,10 +73,9 @@ public class T7018098 extends JavacTestingAbstractProcessor { _assert(testDir.exists()); compile( - "-XaddExports:" - + "jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", "-XDaccessInternalAPI", "-proc:only", "-processor", myName, diff --git a/langtools/test/tools/javac/modules/AddLimitMods.java b/langtools/test/tools/javac/modules/AddLimitMods.java index 9df3b221fb5..d876b1a1b7d 100644 --- a/langtools/test/tools/javac/modules/AddLimitMods.java +++ b/langtools/test/tools/javac/modules/AddLimitMods.java @@ -40,6 +40,7 @@ import java.io.File; import java.nio.file.Files; import java.nio.file.Path; +import java.util.AbstractMap.SimpleEntry; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; @@ -69,7 +70,6 @@ import toolbox.JarTask; import toolbox.JavacTask; import toolbox.JavaTask; import toolbox.Task; -import toolbox.ToolBox; public class AddLimitMods extends ModuleTestBase { @@ -175,6 +175,58 @@ public class AddLimitMods extends ModuleTestBase { .writeAll(); } + @Test + void testObservableForUnnamed(Path base) throws Exception { + Path src = base.resolve("src"); + + tb.writeJavaFiles(src, + "package test;\n" + + "@javax.annotation.Generated(\"test\")\n" + + "public class Test {\n" + + " com.sun.tools.javac.Main m;\n" + + " javax.xml.bind.JAXBException e;\n" + + "}\n"); + + Path out = base.resolve("out"); + + Files.createDirectories(out); + + for (Entry variant : variants) { + System.err.println("running variant: options=" + Arrays.asList(variant.getKey()) + ", expected log: " + variant.getValue()); + + List options = new ArrayList<>(); + options.add("-XDrawDiagnostics"); + options.addAll(Arrays.asList(variant.getKey())); + + String log = new JavacTask(tb) + .options(options.toArray(new String[0])) + .outdir(out) + .files(findJavaFiles(src)) + .run(variant.getValue() == null ? Task.Expect.SUCCESS : Task.Expect.FAIL) + .writeAll() + .getOutput(Task.OutputKind.DIRECT); + + log = log.replace(System.getProperty("line.separator"), "\n"); + + if (variant.getValue() != null && !log.equals(variant.getValue())) { + throw new AssertionError(); + } + } + } + + private static final List> variants = Arrays.asList( + new SimpleEntry(new String[] {}, + "Test.java:2:18: compiler.err.doesnt.exist: javax.annotation\n" + + "Test.java:5:19: compiler.err.doesnt.exist: javax.xml.bind\n" + + "2 errors\n"), + new SimpleEntry(new String[] {"-addmods", "java.annotations.common,java.xml.bind"}, + null), + new SimpleEntry(new String[] {"-limitmods", "java.xml.ws,jdk.compiler"}, + null), + new SimpleEntry(new String[] {"-addmods", "ALL-SYSTEM"}, + null) + ); + @Test void testAllModulePath(Path base) throws Exception { if (Files.isDirectory(base)) diff --git a/langtools/test/tools/javac/processing/loader/testClose/TestClose.java b/langtools/test/tools/javac/processing/loader/testClose/TestClose.java index b01b5e3c63d..bdcc87215de 100644 --- a/langtools/test/tools/javac/processing/loader/testClose/TestClose.java +++ b/langtools/test/tools/javac/processing/loader/testClose/TestClose.java @@ -132,9 +132,8 @@ public class TestClose implements TaskListener { new MemFile("AnnoProc.java", annoProc), new MemFile("Callback.java", callback)); List options = Arrays.asList( - "-XaddExports:" - + "jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", "-XDaccessInternalAPI"); JavacTask task = tool.getTask(null, fm, null, options, null, files); check(task.call()); diff --git a/langtools/test/tools/javac/processing/loader/testClose/TestClose2.java b/langtools/test/tools/javac/processing/loader/testClose/TestClose2.java index 71fb723f843..ae590afd25c 100644 --- a/langtools/test/tools/javac/processing/loader/testClose/TestClose2.java +++ b/langtools/test/tools/javac/processing/loader/testClose/TestClose2.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2016, 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 @@ -92,10 +92,9 @@ public class TestClose2 extends AbstractProcessor implements TaskListener { Iterable files = fm.getJavaFileObjects(new File(testSrc, TestClose2.class.getName() + ".java")); List options = Arrays.asList( - "-XaddExports:" - + "jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", "-processor", TestClose2.class.getName()); JavacTask task = tool.getTask(null, fm, null, options, null, files); diff --git a/langtools/test/tools/javac/processing/model/testgetallmembers/Main.java b/langtools/test/tools/javac/processing/model/testgetallmembers/Main.java index c61a4d4ac2a..4e31236f1c1 100644 --- a/langtools/test/tools/javac/processing/model/testgetallmembers/Main.java +++ b/langtools/test/tools/javac/processing/model/testgetallmembers/Main.java @@ -33,7 +33,6 @@ import java.io.File; import java.util.*; import java.util.Map.Entry; -import java.util.stream.StreamSupport; import javax.lang.model.element.Element; import javax.lang.model.element.ElementKind; @@ -42,14 +41,12 @@ import javax.lang.model.element.PackageElement; import javax.lang.model.element.TypeElement; import javax.lang.model.util.Elements; import javax.tools.*; -import javax.tools.JavaFileManager.Location; import com.sun.source.util.JavacTask; import com.sun.tools.javac.model.JavacElements; import static javax.tools.StandardLocation.CLASS_PATH; import static javax.tools.StandardLocation.PLATFORM_CLASS_PATH; -import static javax.tools.StandardLocation.SYSTEM_MODULES; import static javax.tools.JavaFileObject.Kind.CLASS; @@ -67,11 +64,13 @@ public class Main { static JavacTask javac; static Elements elements; + static List addmods_ALL_SYSTEM = Arrays.asList("-addmods", "ALL-SYSTEM"); + public static void main(String[] args) throws Exception { JavaCompiler tool = ToolProvider.getSystemJavaCompiler(); try (StandardJavaFileManager fm = tool.getStandardFileManager(null, null, null)) { fm.setLocation(CLASS_PATH, Collections.emptyList()); - JavacTask javac = (JavacTask)tool.getTask(null, fm, null, null, null, null); + JavacTask javac = (JavacTask)tool.getTask(null, fm, null, addmods_ALL_SYSTEM, null, null); Elements elements = javac.getElements(); final Map> packages = new LinkedHashMap<>(); @@ -109,11 +108,12 @@ public class Main { javac = null; elements = null; - javac = (JavacTask)tool.getTask(null, fm, null, null, null, null); + javac = (JavacTask)tool.getTask(null, fm, null, addmods_ALL_SYSTEM, null, null); elements = javac.getElements(); for (Entry> module2Packages : packages.entrySet()) { ModuleElement me = elements.getModuleElement(module2Packages.getKey()); + me.getClass(); for (String name : module2Packages.getValue()) { PackageElement pe = ((JavacElements) elements).getPackageElement(me, name); for (Element e : pe.getEnclosedElements()) { diff --git a/langtools/test/tools/javac/util/T6597678.java b/langtools/test/tools/javac/util/T6597678.java index 53ce500f187..428f2ddb4af 100644 --- a/langtools/test/tools/javac/util/T6597678.java +++ b/langtools/test/tools/javac/util/T6597678.java @@ -59,9 +59,8 @@ public class T6597678 extends JavacTestingAbstractProcessor { PrintWriter pw = new PrintWriter(sw); compile(sw, pw, - "-XaddExports:" - + "jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED," - + "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED", + "-XaddExports:jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED", "-XDaccessInternalAPI", "-proc:only", "-processor", myName, diff --git a/langtools/test/tools/jdeps/APIDeps.java b/langtools/test/tools/jdeps/APIDeps.java index 7b9450ebde9..0f2bf995ab7 100644 --- a/langtools/test/tools/jdeps/APIDeps.java +++ b/langtools/test/tools/jdeps/APIDeps.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2016, 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 @@ -65,11 +65,9 @@ public class APIDeps { for (String s : testModules.split("\\s+")) { if (s.isEmpty()) continue; if (s.indexOf('/') != -1) - addExports.add(s.trim() + "=ALL-UNNAMED"); - } - if (addExports.size() > 0) { - options.add(addExports.stream().collect(Collectors.joining(",", "-XaddExports:", ""))); + addExports.add("-XaddExports:" + s.trim() + "=ALL-UNNAMED"); } + options.addAll(addExports); for (String dir : srcDirs) { Path source = testsrc.resolve(dir); From 6fe64604e73fde8d75c966ee779a5fa3f56d9b55 Mon Sep 17 00:00:00 2001 From: Alan Bateman Date: Tue, 3 May 2016 09:11:31 +0100 Subject: [PATCH 07/62] 8154956: Module system implementation refresh (4/2016) Co-authored-by: Erik Joelsson Reviewed-by: alanb, mchung, chegar, redestad --- nashorn/make/BuildNashorn.gmk | 5 +++-- nashorn/test/TEST.ROOT | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/nashorn/make/BuildNashorn.gmk b/nashorn/make/BuildNashorn.gmk index 54ae3481960..595fad687a6 100644 --- a/nashorn/make/BuildNashorn.gmk +++ b/nashorn/make/BuildNashorn.gmk @@ -76,9 +76,10 @@ NASGEN_RUN_FILE := $(NASHORN_CLASSES_DIR)/_the.nasgen.run ifeq ($(BOOT_JDK_MODULAR), true) NASGEN_OPTIONS := \ -cp $(BUILDTOOLS_OUTPUTDIR)/nasgen_classes \ - -Xpatch:$(BUILDTOOLS_OUTPUTDIR)/nasgen_classes \ + -Xpatch:java.base=$(BUILDTOOLS_OUTPUTDIR)/nasgen_classes \ -XaddExports:java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED \ - -XaddExports:java.base/jdk.internal.org.objectweb.asm.util=ALL-UNNAMED + -XaddExports:java.base/jdk.internal.org.objectweb.asm.util=ALL-UNNAMED \ + # else NASGEN_OPTIONS := \ -Xbootclasspath/p:$(BUILDTOOLS_OUTPUTDIR)/nasgen_classes diff --git a/nashorn/test/TEST.ROOT b/nashorn/test/TEST.ROOT index bbdb534406f..3bd26bcdf39 100644 --- a/nashorn/test/TEST.ROOT +++ b/nashorn/test/TEST.ROOT @@ -8,4 +8,4 @@ keys=intermittent randomness groups=TEST.groups # Minimum jtreg version -requiredVersion=4.2 b01 +requiredVersion=4.2 b02 From 0c50b61dd45442b1dde3eb9cda43eae6bee98165 Mon Sep 17 00:00:00 2001 From: Athijegannathan Sundararajan Date: Tue, 3 May 2016 21:27:00 +0530 Subject: [PATCH 08/62] 8155944: ant build/test of nashorn is broken with the latest jdk9-dev build Reviewed-by: jlaskey --- nashorn/buildtools/nasgen/build.xml | 2 +- nashorn/buildtools/nasgen/project.properties | 4 +- nashorn/make/build-nasgen.xml | 2 +- nashorn/make/build.xml | 17 ++++++--- nashorn/make/project.properties | 39 +++++++++++--------- 5 files changed, 38 insertions(+), 26 deletions(-) diff --git a/nashorn/buildtools/nasgen/build.xml b/nashorn/buildtools/nasgen/build.xml index d05b4854052..2116db176c6 100644 --- a/nashorn/buildtools/nasgen/build.xml +++ b/nashorn/buildtools/nasgen/build.xml @@ -42,7 +42,7 @@ destdir="${build.classes.dir}" debug="${javac.debug}" includeantruntime="false" fork="true"> - + diff --git a/nashorn/buildtools/nasgen/project.properties b/nashorn/buildtools/nasgen/project.properties index 794bda8a9eb..0f280a1e47f 100644 --- a/nashorn/buildtools/nasgen/project.properties +++ b/nashorn/buildtools/nasgen/project.properties @@ -40,8 +40,8 @@ dist.javadoc.dir=${dist.dir}/javadoc javac.debug=true nasgen.module.imports=\ - java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED,\ - java.base/jdk.internal.org.objectweb.asm.util=ALL-UNNAMED + -XaddExports:java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED \ + -XaddExports:java.base/jdk.internal.org.objectweb.asm.util=ALL-UNNAMED meta.inf.dir=${src.dir}/META-INF run.classpath=\ diff --git a/nashorn/make/build-nasgen.xml b/nashorn/make/build-nasgen.xml index 5c8eccf43e2..9b3286ec2c7 100644 --- a/nashorn/make/build-nasgen.xml +++ b/nashorn/make/build-nasgen.xml @@ -36,7 +36,7 @@ - + diff --git a/nashorn/make/build.xml b/nashorn/make/build.xml index 7a9937f1f4c..0f255e23893 100644 --- a/nashorn/make/build.xml +++ b/nashorn/make/build.xml @@ -35,7 +35,6 @@ - @@ -176,6 +175,10 @@ + + + + - + + + + + - + @@ -348,11 +355,11 @@ debug="${javac.debug}" encoding="${javac.encoding}" includeantruntime="false" fork="true"> - + - + diff --git a/nashorn/make/project.properties b/nashorn/make/project.properties index 16b809af64c..eb406cacc7a 100644 --- a/nashorn/make/project.properties +++ b/nashorn/make/project.properties @@ -47,6 +47,11 @@ build.classes.dir=${build.dir}/classes build.zip=${build.dir}/nashorn.zip build.gzip=${build.dir}/nashorn.tar.gz +nashorn.override.option=\ + -Xpatch:jdk.scripting.nashorn=${build.classes.dir}/jdk.scripting.nashorn \ + -Xpatch:jdk.scripting.nashorn.shell=${build.classes.dir}/jdk.scripting.nashorn.shell \ + -Xpatch:jdk.dynalink=${build.classes.dir}/jdk.dynalink + # project directory of ant task nashorntask.dir=buildtools/nashorntask @@ -57,8 +62,8 @@ nashorn.shell.tool=jdk.nashorn.tools.Shell nasgen.tool=jdk.nashorn.internal.tools.nasgen.Main nasgen.module.imports=\ - java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED,\ - java.base/jdk.internal.org.objectweb.asm.util=ALL-UNNAMED + -XaddExports:java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED \ + -XaddExports:java.base/jdk.internal.org.objectweb.asm.util=ALL-UNNAMED # parallel test runner tool parallel.test.runner=jdk.nashorn.internal.test.framework.ParallelTestRunner @@ -132,19 +137,19 @@ javac.test.classpath=\ ${file.reference.snakeyaml.jar} test.module.imports=\ - jdk.scripting.nashorn/jdk.nashorn.internal.ir=ALL-UNNAMED,\ - jdk.scripting.nashorn/jdk.nashorn.internal.codegen=ALL-UNNAMED,\ - jdk.scripting.nashorn/jdk.nashorn.internal.parser=ALL-UNNAMED,\ - jdk.scripting.nashorn/jdk.nashorn.internal.objects=ALL-UNNAMED,\ - jdk.scripting.nashorn/jdk.nashorn.internal.runtime=ALL-UNNAMED,\ - jdk.scripting.nashorn/jdk.nashorn.internal.runtime.doubleconv=ALL-UNNAMED,\ - jdk.scripting.nashorn/jdk.nashorn.internal.runtime.linker=ALL-UNNAMED,\ - jdk.scripting.nashorn/jdk.nashorn.internal.runtime.events=ALL-UNNAMED,\ - jdk.scripting.nashorn/jdk.nashorn.internal.runtime.options=ALL-UNNAMED,\ - jdk.scripting.nashorn/jdk.nashorn.internal.runtime.regexp=ALL-UNNAMED,\ - jdk.scripting.nashorn/jdk.nashorn.internal.runtime.regexp.joni=ALL-UNNAMED,\ - jdk.scripting.nashorn/jdk.nashorn.tools=ALL-UNNAMED,\ - java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED + -XaddExports:jdk.scripting.nashorn/jdk.nashorn.internal.ir=ALL-UNNAMED \ + -XaddExports:jdk.scripting.nashorn/jdk.nashorn.internal.codegen=ALL-UNNAMED \ + -XaddExports:jdk.scripting.nashorn/jdk.nashorn.internal.parser=ALL-UNNAMED \ + -XaddExports:jdk.scripting.nashorn/jdk.nashorn.internal.objects=ALL-UNNAMED \ + -XaddExports:jdk.scripting.nashorn/jdk.nashorn.internal.runtime=ALL-UNNAMED \ + -XaddExports:jdk.scripting.nashorn/jdk.nashorn.internal.runtime.doubleconv=ALL-UNNAMED \ + -XaddExports:jdk.scripting.nashorn/jdk.nashorn.internal.runtime.linker=ALL-UNNAMED \ + -XaddExports:jdk.scripting.nashorn/jdk.nashorn.internal.runtime.events=ALL-UNNAMED \ + -XaddExports:jdk.scripting.nashorn/jdk.nashorn.internal.runtime.options=ALL-UNNAMED \ + -XaddExports:jdk.scripting.nashorn/jdk.nashorn.internal.runtime.regexp=ALL-UNNAMED \ + -XaddExports:jdk.scripting.nashorn/jdk.nashorn.internal.runtime.regexp.joni=ALL-UNNAMED \ + -XaddExports:jdk.scripting.nashorn/jdk.nashorn.tools=ALL-UNNAMED \ + -XaddExports:java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED meta.inf.dir=${nashorn.module.src.dir}/META-INF @@ -342,8 +347,8 @@ run.test.user.country=TR run.test.jvmargs.common=\ -server \ - -XaddExports:${test.module.imports} \ - -Xpatch:${build.classes.dir} \ + ${test.module.imports} \ + ${nashorn.override.option} \ -Dfile.encoding=UTF-8 \ -Duser.language=${run.test.user.language} \ -Duser.country=${run.test.user.country} \ From 72e6b8e873d9c5e7e56d59149bbc596dea8f4bbe Mon Sep 17 00:00:00 2001 From: Joe Darcy Date: Tue, 3 May 2016 09:44:54 -0700 Subject: [PATCH 09/62] 8155872: Temporarily disable deprecation checking on the java.desktop module Reviewed-by: erikj --- make/CompileJavaModules.gmk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/CompileJavaModules.gmk b/make/CompileJavaModules.gmk index d2404007848..602ccb1932c 100644 --- a/make/CompileJavaModules.gmk +++ b/make/CompileJavaModules.gmk @@ -99,7 +99,7 @@ java.datatransfer_COPY := flavormap.properties ################################################################################ java.desktop_ADD_JAVAC_FLAGS := -Xdoclint:all/protected,-reference \ - '-Xdoclint/package:java.*,javax.*' + '-Xdoclint/package:java.*,javax.*' -Xlint:-deprecation java.desktop_COPY := .gif .png .wav .txt .xml .css .pf java.desktop_CLEAN := iio-plugin.properties cursors.properties From edd7a01d4b5d93cbaa10a69a7bb06b85b5b4438e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20Walln=C3=B6fer?= Date: Wed, 4 May 2016 13:39:41 +0200 Subject: [PATCH 10/62] 8144711: (x) => x + 1 causes Assertion failure instead of SyntaxError Reviewed-by: mhaupt, sundar --- nashorn/test/script/basic/JDK-8144711.js | 36 ++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 nashorn/test/script/basic/JDK-8144711.js diff --git a/nashorn/test/script/basic/JDK-8144711.js b/nashorn/test/script/basic/JDK-8144711.js new file mode 100644 index 00000000000..11c7aa4adcd --- /dev/null +++ b/nashorn/test/script/basic/JDK-8144711.js @@ -0,0 +1,36 @@ +/* + * Copyright (c) 2016, 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. + * + * 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. + */ + +/** + * JDK-8144711: (x) => x + 1 causes Assertion failure instead of SyntaxError + * + * @test + * @run + */ + +try { + eval("(x) => x + 1"); + throw new Error ("should not reach here"); +} catch (e) { + Assert.assertTrue(e instanceof SyntaxError); +} From 37c2a5ad4e80ebcefc17b66bda2b1667ae064907 Mon Sep 17 00:00:00 2001 From: Jan Lahoda Date: Wed, 4 May 2016 17:06:55 +0200 Subject: [PATCH 11/62] 8156000: tools/all/RunCodingRules.java fails if build dir exists, but generated sources do not RunCodingRules test compiles and runs PropertiesParser to get the generated CompilerProperties.java Reviewed-by: mcimadamore, jjg --- .../propertiesparser/PropertiesParser.java | 24 ++---- langtools/test/tools/all/RunCodingRules.java | 82 ++++++++++++------- 2 files changed, 58 insertions(+), 48 deletions(-) diff --git a/langtools/make/tools/propertiesparser/PropertiesParser.java b/langtools/make/tools/propertiesparser/PropertiesParser.java index 6ec748ef1a3..120dac6f4ba 100644 --- a/langtools/make/tools/propertiesparser/PropertiesParser.java +++ b/langtools/make/tools/propertiesparser/PropertiesParser.java @@ -28,24 +28,10 @@ package propertiesparser; import propertiesparser.parser.MessageFile; import propertiesparser.gen.ClassGenerator; -import java.io.BufferedWriter; import java.io.File; -import java.io.FileInputStream; -import java.io.FileNotFoundException; -import java.io.FileOutputStream; -import java.io.IOException; -import java.io.OutputStreamWriter; -import java.io.Writer; -import java.lang.RuntimeException; -import java.lang.Throwable; -import java.text.MessageFormat; -import java.util.ArrayList; -import java.util.Collections; +import java.io.PrintStream; import java.util.HashMap; -import java.util.Iterator; -import java.util.List; import java.util.Map; -import java.util.Properties; /** Translates a .properties file into a .java file containing an enum-like Java class * which defines static factory methods for all resource keys in a given resource file.

@@ -64,13 +50,17 @@ public class PropertiesParser { } public static void main(String[] args) { - PropertiesParser pp = new PropertiesParser(msg -> System.out.println(msg)); - boolean ok = pp.run(args); + boolean ok = run(args, System.out); if ( !ok ) { System.exit(1); } } + public static boolean run(String[] args, PrintStream out) { + PropertiesParser pp = new PropertiesParser(msg -> out.println(msg)); + return pp.run(args); + } + public static interface Logger { void info(String msg); } diff --git a/langtools/test/tools/all/RunCodingRules.java b/langtools/test/tools/all/RunCodingRules.java index a71dfbd5d2f..4e3d5db7f33 100644 --- a/langtools/test/tools/all/RunCodingRules.java +++ b/langtools/test/tools/all/RunCodingRules.java @@ -30,6 +30,9 @@ import java.io.*; +import java.lang.reflect.Method; +import java.net.URL; +import java.net.URLClassLoader; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; @@ -58,29 +61,23 @@ public class RunCodingRules { List sourceDirs = null; Path crulesDir = null; Path mainSrcDir = null; - List genSrcDirs = null; for (Path d = testSrc; d != null; d = d.getParent()) { if (Files.exists(d.resolve("TEST.ROOT"))) { d = d.getParent(); Path toolsPath = d.resolve("make/tools"); - Path buildDir = d.getParent().resolve("build"); - if (Files.exists(toolsPath) && Files.exists(buildDir)) { + if (Files.exists(toolsPath)) { mainSrcDir = d.resolve("src"); crulesDir = toolsPath; sourceDirs = Files.walk(mainSrcDir, 1) .map(p -> p.resolve("share/classes")) .filter(p -> Files.isDirectory(p)) .collect(Collectors.toList()); - genSrcDirs = Files.walk(buildDir, 1) - .map(p -> p.resolve("support/gensrc")) - .filter(p -> Files.isDirectory(p.resolve("jdk.compiler"))) - .collect(Collectors.toList()); break; } } } - if (sourceDirs == null || crulesDir == null || genSrcDirs == null) { + if (sourceDirs == null || crulesDir == null) { System.err.println("Warning: sources not found, test skipped."); return ; } @@ -90,7 +87,10 @@ public class RunCodingRules { DiagnosticListener noErrors = diagnostic -> { Assert.check(diagnostic.getKind() != Diagnostic.Kind.ERROR, diagnostic.toString()); }; + String FS = File.separator; + String PS = File.pathSeparator; + //compile crules: List crulesFiles = Files.walk(crulesDir) .filter(entry -> entry.getFileName().toString().endsWith(".java")) .filter(entry -> entry.getParent().endsWith("crules")) @@ -114,41 +114,61 @@ public class RunCodingRules { metaInfServices.write("crules.CodingRulesAnalyzerPlugin\n"); } + //generate CompilerProperties.java: + List propertiesParserFiles = + Files.walk(crulesDir.resolve("propertiesparser")) + .filter(entry -> entry.getFileName().toString().endsWith(".java")) + .map(entry -> entry.toFile()) + .collect(Collectors.toList()); + + Path propertiesParserTarget = targetDir.resolve("propertiesParser"); + Files.createDirectories(propertiesParserTarget); + List propertiesParserOptions = Arrays.asList( + "-d", propertiesParserTarget.toString()); + javaCompiler.getTask(null, fm, noErrors, propertiesParserOptions, null, + fm.getJavaFileObjectsFromFiles(propertiesParserFiles)).call(); + + Path genSrcTarget = targetDir.resolve("gensrc"); + + ClassLoader propertiesParserLoader = new URLClassLoader(new URL[] { + propertiesParserTarget.toUri().toURL(), + crulesDir.toUri().toURL() + }); + Class propertiesParserClass = + Class.forName("propertiesparser.PropertiesParser", false, propertiesParserLoader); + Method propertiesParserRun = + propertiesParserClass.getDeclaredMethod("run", String[].class, PrintStream.class); + String compilerProperties = + "jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties"; + Path propertiesPath = mainSrcDir.resolve(compilerProperties.replace("/", FS)); + Path genSrcTargetDir = genSrcTarget.resolve(mainSrcDir.relativize(propertiesPath.getParent())); + + Files.createDirectories(genSrcTargetDir); + String[] propertiesParserRunOptions = new String[] { + "-compile", propertiesPath.toString(), genSrcTargetDir.toString() + }; + + Object result = propertiesParserRun.invoke(null, propertiesParserRunOptions, System.err); + + if (!(result instanceof Boolean) || !(Boolean) result) { + throw new AssertionError("Cannot parse properties: " + result); + } + + //compile langtools sources with crules enabled: List sources = sourceDirs.stream() .flatMap(dir -> silentFilesWalk(dir)) .filter(entry -> entry.getFileName().toString().endsWith(".java")) .map(p -> p.toFile()) .collect(Collectors.toList()); - String FS = File.separator; - String PS = File.pathSeparator; - - Path genSrcTarget = targetDir.resolve("gensrc"); - List genSrcFiles = Arrays.asList( - "jdk.compiler/com/sun/tools/javac/resources/CompilerProperties.java" - ); - for (String f : genSrcFiles) { - for (Path dir : genSrcDirs) { - Path from = dir.resolve(f.replace("/", FS)); - if (Files.exists(from)) { - try { - Path to = genSrcTarget.resolve(f.replace("/", FS)); - Files.createDirectories(to.getParent()); - Files.copy(from, to); - } catch (IOException e) { - e.printStackTrace(); - } - } - } - } - Path sourceTarget = targetDir.resolve("classes"); Files.createDirectories(sourceTarget); String processorPath = crulesTarget + PS + crulesDir; List options = Arrays.asList( "-d", sourceTarget.toString(), - "-modulesourcepath", mainSrcDir + FS + "*" + FS + "share" + FS + "classes" + PS + genSrcTarget, + "-modulesourcepath", mainSrcDir + FS + "*" + FS + "share" + FS + "classes" + PS + + genSrcTarget + FS + "*" + FS + "share" + FS + "classes", "-XDaccessInternalAPI", "-processorpath", processorPath, "-Xplugin:coding_rules"); From 8d5eac16b3093508534c12b6249509db1ad0f8a2 Mon Sep 17 00:00:00 2001 From: Joe Darcy Date: Wed, 4 May 2016 10:42:41 -0700 Subject: [PATCH 12/62] 8156040: Nashorn tests still failing after latest Jigsaw merge Reviewed-by: sundar --- nashorn/test/TEST.ROOT | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nashorn/test/TEST.ROOT b/nashorn/test/TEST.ROOT index 3bd26bcdf39..95af63ccfa4 100644 --- a/nashorn/test/TEST.ROOT +++ b/nashorn/test/TEST.ROOT @@ -9,3 +9,6 @@ groups=TEST.groups # Minimum jtreg version requiredVersion=4.2 b02 + +# Use new form of -Xpatch +useNewXpatch=true From 0e991f21cbf32c1b62eaec8eab282d3b64fce21b Mon Sep 17 00:00:00 2001 From: Maurizio Cimadamore Date: Thu, 5 May 2016 11:18:13 +0100 Subject: [PATCH 13/62] 8155959: Langtools ant build should support new Xpatch option format Switch ant build and IntelliJ project to use the new Xpatch syntax flavor Reviewed-by: jlahoda, jjg --- langtools/make/build.xml | 19 ++++++++++++++++--- langtools/make/intellij/workspace.xml | 12 ++++++------ langtools/make/launcher.sh-template | 13 +------------ 3 files changed, 23 insertions(+), 21 deletions(-) diff --git a/langtools/make/build.xml b/langtools/make/build.xml index ee0c3281c49..e96ec89a819 100644 --- a/langtools/make/build.xml +++ b/langtools/make/build.xml @@ -83,6 +83,17 @@ + + + + + + + + + + +

A {@code WebSocket} provides full-duplex communication over a TCP + * connection. + * + *

To create a {@code WebSocket} use a {@linkplain #newBuilder(URI, Listener) + * builder}. Once a {@code WebSocket} is obtained, it's ready to send and + * receive messages. When the {@code WebSocket} is no longer + * needed it must be closed: a Close message must both be {@linkplain + * #sendClose() sent} and {@linkplain Listener#onClose(WebSocket, Optional, + * String) received}. Or to close abruptly, {@link #abort()} is called. Once + * closed it remains closed, cannot be reopened. + * + *

Messages of type {@code X} are sent through the {@code WebSocket.sendX} + * methods and received through {@link WebSocket.Listener}{@code .onX} methods + * asynchronously. Each of the methods begins the operation and returns a {@link + * CompletionStage} which completes when the operation has completed. + * + *

Messages are received only if {@linkplain #request(long) requested}. + * + *

One outstanding send operation is permitted: if another send operation is + * initiated before the previous one has completed, an {@link + * IllegalStateException IllegalStateException} will be thrown. When sending, a + * message should not be modified until the returned {@code CompletableFuture} + * completes (either normally or exceptionally). + * + *

Messages can be sent and received as a whole or in parts. A whole message + * is a sequence of one or more messages in which the last message is marked + * when it is sent or received. + * + *

If the message is contained in a {@link ByteBuffer}, bytes are considered + * arranged from the {@code buffer}'s {@link ByteBuffer#position() position} to + * the {@code buffer}'s {@link ByteBuffer#limit() limit}. + * + *

All message exchange is run by the threads belonging to the {@linkplain + * HttpClient#executorService() executor service} of {@code WebSocket}'s {@link + * HttpClient}. + * + *

Unless otherwise noted, passing a {@code null} argument to a constructor + * or method of this type will cause a {@link NullPointerException + * NullPointerException} to be thrown. + * + * @since 9 + */ +public interface WebSocket { + + /** + * Creates a builder of {@code WebSocket}s connected to the given URI and + * receiving events with the given {@code Listener}. + * + *

Equivalent to: + *

{@code
+     *     WebSocket.newBuilder(uri, HttpClient.getDefault())
+     * }
+ * + * @param uri + * the WebSocket URI as defined in the WebSocket Protocol + * (with "ws" or "wss" scheme) + * + * @param listener + * the listener + * + * @throws IllegalArgumentException + * if the {@code uri} is not a WebSocket URI + * @throws SecurityException + * if running under a security manager and the caller does + * not have permission to access the + * {@linkplain HttpClient#getDefault() default HttpClient} + * + * @return a builder + */ + static Builder newBuilder(URI uri, Listener listener) { + return newBuilder(uri, HttpClient.getDefault(), listener); + } + + /** + * Creates a builder of {@code WebSocket}s connected to the given URI and + * receiving events with the given {@code Listener}. + * + *

Providing a custom {@code client} allows for finer control over the + * opening handshake. + * + *

Example + *

{@code
+     *     HttpClient client = HttpClient.create()
+     *             .proxy(ProxySelector.of(new InetSocketAddress("proxy.example.com", 80)))
+     *             .build();
+     *     ...
+     *     WebSocket.newBuilder(URI.create("ws://websocket.example.com"), client, listener)...
+     * }
+ * + * @param uri + * the WebSocket URI as defined in the WebSocket Protocol + * (with "ws" or "wss" scheme) + * + * @param client + * the HttpClient + * @param listener + * the listener + * + * @throws IllegalArgumentException + * if the uri is not a WebSocket URI + * + * @return a builder + */ + static Builder newBuilder(URI uri, HttpClient client, Listener listener) { + return new WSBuilder(uri, client, listener); + } + + /** + * A builder for creating {@code WebSocket} instances. + * + *

To build a {@code WebSocket}, instantiate a builder, configure it + * as required by calling intermediate methods (the ones that return the + * builder itself), then finally call {@link #buildAsync()} to get a {@link + * CompletableFuture} with resulting {@code WebSocket}. + * + *

If an intermediate method has not been called, an appropriate + * default value (or behavior) will be used. Unless otherwise noted, a + * repeated call to an intermediate method overwrites the previous value (or + * overrides the previous behaviour), if no exception is thrown. + * + *

Instances of {@code Builder} may not be safe for use by multiple + * threads. + * + * @since 9 + */ + interface Builder { + + /** + * Adds the given name-value pair to the list of additional headers for + * the opening handshake. + * + *

Headers defined in WebSocket Protocol are not allowed to be added. + * + * @param name + * the header name + * @param value + * the header value + * + * @return this builder + * + * @throws IllegalArgumentException + * if the {@code name} is a WebSocket defined header name + */ + Builder header(String name, String value); + + /** + * Includes a request for the given subprotocols during the opening + * handshake. + * + *

Among the requested subprotocols at most one will be chosen by + * the server. When the {@code WebSocket} is connected, the subprotocol + * in use is available from {@link WebSocket#getSubprotocol}. + * Subprotocols may be specified in the order of preference. + * + *

Each of the given subprotocols must conform to the relevant + * rules defined in the WebSocket Protocol. + * + * @param mostPreferred + * the most preferred subprotocol + * @param lesserPreferred + * the lesser preferred subprotocols, with the least preferred + * at the end + * + * @return this builder + * + * @throws IllegalArgumentException + * if any of the WebSocket Protocol rules relevant to + * subprotocols are violated + */ + Builder subprotocols(String mostPreferred, String... lesserPreferred); + + /** + * Sets a timeout for the opening handshake. + * + *

If the opening handshake is not finished within the specified + * timeout then {@link #buildAsync()} completes exceptionally with a + * {@code HttpTimeoutException}. + * + *

If the timeout is not specified then it's deemed infinite. + * + * @param timeout + * the maximum time to wait + * @param unit + * the time unit of the timeout argument + * + * @return this builder + * + * @throws IllegalArgumentException + * if the {@code timeout} is negative + */ + Builder connectTimeout(long timeout, TimeUnit unit); + + /** + * Builds a {@code WebSocket}. + * + *

Returns immediately with a {@code CompletableFuture} + * which completes with the {@code WebSocket} when it is connected, or + * completes exceptionally if an error occurs. + * + *

{@code CompletableFuture} may complete exceptionally with the + * following errors: + *

    + *
  • {@link IOException} + * if an I/O error occurs + *
  • {@link InterruptedException} + * if the operation was interrupted + *
  • {@link SecurityException} + * if a security manager is set, and the caller does not + * have a {@link java.net.URLPermission} for the WebSocket URI + *
  • {@link WebSocketHandshakeException} + * if the opening handshake fails + *
+ * + * @return a {@code CompletableFuture} of {@code WebSocket} + */ + CompletableFuture buildAsync(); + } + + /** + * A listener for events and messages on a {@code WebSocket}. + * + *

Each method below corresponds to a type of event. + *

    + *
  • {@link #onOpen onOpen}
    + * This method is always the first to be invoked. + *
  • {@link #onText(WebSocket, WebSocket.Text, WebSocket.MessagePart) + * onText}, {@link #onBinary(WebSocket, ByteBuffer, WebSocket.MessagePart) + * onBinary}, {@link #onPing(WebSocket, ByteBuffer) onPing} and {@link + * #onPong(WebSocket, ByteBuffer) onPong}
    + * These methods are invoked zero or more times after {@code onOpen}. + *
  • {@link #onClose(WebSocket, Optional, String) onClose}, {@link + * #onError(WebSocket, Throwable) onError}
    + * Only one of these methods is invoked, and that method is invoked last and + * at most once. + *
+ * + *

+     *     onOpen (onText|onBinary|onPing|onPong)* (onClose|onError)?
+     * 
+ * + *

Messages received by the {@code Listener} conform to the WebSocket + * Protocol, otherwise {@code onError} with a {@link ProtocolException} is + * invoked. + * + *

If a whole message is received, then the corresponding method + * ({@code onText} or {@code onBinary}) will be invoked with {@link + * WebSocket.MessagePart#WHOLE WHOLE} marker. Otherwise the method will be + * invoked with {@link WebSocket.MessagePart#FIRST FIRST}, zero or more + * times with {@link WebSocket.MessagePart#FIRST PART} and, finally, with + * {@link WebSocket.MessagePart#LAST LAST} markers. + * + *


+     *     WHOLE|(FIRST PART* LAST)
+     * 
+ * + *

All methods are invoked in a sequential (and + * + * happens-before) order, one after another, possibly by different + * threads. If any of the methods above throws an exception, {@code onError} + * is then invoked with that exception. Exceptions thrown from {@code + * onError} or {@code onClose} are ignored. + * + *

When the method returns, the message is deemed received. After this + * another messages may be received. + * + *

These invocations begin asynchronous processing which might not end + * with the invocation. To provide coordination, methods of {@code + * Listener} return a {@link CompletionStage CompletionStage}. The {@code + * CompletionStage} signals the {@code WebSocket} that the + * processing of a message has ended. For + * convenience, methods may return {@code null}, which means + * the same as returning an already completed {@code CompletionStage}. If + * the returned {@code CompletionStage} completes exceptionally, then {@link + * #onError(WebSocket, Throwable) onError} will be invoked with the + * exception. + * + *

Control of the message passes to the {@code Listener} with the + * invocation of the method. Control of the message returns to the {@code + * WebSocket} at the earliest of, either returning {@code null} from the + * method, or the completion of the {@code CompletionStage} returned from + * the method. The {@code WebSocket} does not access the message while it's + * not in its control. The {@code Listener} must not access the message + * after its control has been returned to the {@code WebSocket}. + * + *

It is the responsibility of the listener to make additional + * {@linkplain WebSocket#request(long) message requests}, when ready, so + * that messages are received eventually. + * + *

Methods above are never invoked with {@code null}s as their + * arguments. + * + * @since 9 + */ + interface Listener { + + /** + * Notifies the {@code Listener} that it is connected to the provided + * {@code WebSocket}. + * + *

The {@code onOpen} method does not correspond to any message + * from the WebSocket Protocol. It is a synthetic event. It is the first + * {@code Listener}'s method to be invoked. No other {@code Listener}'s + * methods are invoked before this one. The method is usually used to + * make an initial {@linkplain WebSocket#request(long) request} for + * messages. + * + *

If an exception is thrown from this method then {@link + * #onError(WebSocket, Throwable) onError} will be invoked with the + * exception. + * + * @implSpec The default implementation {@linkplain WebSocket#request(long) + * requests one message}. + * + * @param webSocket + * the WebSocket + */ + default void onOpen(WebSocket webSocket) { webSocket.request(1); } + + /** + * Receives a Text message. + * + *

The {@code onText} method is invoked zero or more times between + * {@code onOpen} and ({@code onClose} or {@code onError}). + * + *

This message may be a partial UTF-16 sequence. However, the + * concatenation of all messages through the last will be a whole UTF-16 + * sequence. + * + *

If an exception is thrown from this method or the returned {@code + * CompletionStage} completes exceptionally, then {@link + * #onError(WebSocket, Throwable) onError} will be invoked with the + * exception. + * + * @implSpec The default implementation {@linkplain WebSocket#request(long) + * requests one more message}. + * + * @param webSocket + * the WebSocket + * @param message + * the message + * @param part + * the part + * + * @return a CompletionStage that completes when the message processing + * is done; or {@code null} if already done + */ + default CompletionStage onText(WebSocket webSocket, + Text message, + MessagePart part) { + webSocket.request(1); + return null; + } + + /** + * Receives a Binary message. + * + *

The {@code onBinary} method is invoked zero or more times + * between {@code onOpen} and ({@code onClose} or {@code onError}). + * + *

If an exception is thrown from this method or the returned {@code + * CompletionStage} completes exceptionally, then {@link + * #onError(WebSocket, Throwable) onError} will be invoked with this + * exception. + * + * @implSpec The default implementation {@linkplain WebSocket#request(long) + * requests one more message}. + * + * @param webSocket + * the WebSocket + * @param message + * the message + * @param part + * the part + * + * @return a CompletionStage that completes when the message processing + * is done; or {@code null} if already done + */ + default CompletionStage onBinary(WebSocket webSocket, + ByteBuffer message, + MessagePart part) { + webSocket.request(1); + return null; + } + + /** + * Receives a Ping message. + * + *

A Ping message may be sent or received by either client or + * server. It may serve either as a keepalive or as a means to verify + * that the remote endpoint is still responsive. + * + *

The message will consist of not more than {@code 125} bytes: + * {@code message.remaining() <= 125}. + * + *

The {@code onPing} is invoked zero or more times in between + * {@code onOpen} and ({@code onClose} or {@code onError}). + * + *

If an exception is thrown from this method or the returned {@code + * CompletionStage} completes exceptionally, then {@link + * #onError(WebSocket, Throwable) onError} will be invoked with this + * exception. + * + * @implNote + * + *

Replies with a Pong message and requests one more message when + * the Pong has been sent. + * + * @param webSocket + * the WebSocket + * @param message + * the message + * + * @return a CompletionStage that completes when the message processing + * is done; or {@code null} if already done + */ + default CompletionStage onPing(WebSocket webSocket, + ByteBuffer message) { + return webSocket.sendPong(message).thenRun(() -> webSocket.request(1)); + } + + /** + * Receives a Pong message. + * + *

A Pong message may be unsolicited or may be received in response + * to a previously sent Ping. In the latter case, the contents of the + * Pong is identical to the originating Ping. + * + *

The message will consist of not more than {@code 125} bytes: + * {@code message.remaining() <= 125}. + * + *

The {@code onPong} method is invoked zero or more times in + * between {@code onOpen} and ({@code onClose} or {@code onError}). + * + *

If an exception is thrown from this method or the returned {@code + * CompletionStage} completes exceptionally, then {@link + * #onError(WebSocket, Throwable) onError} will be invoked with this + * exception. + * + * @implSpec The default implementation {@linkplain WebSocket#request(long) + * requests one more message}. + * + * @param webSocket + * the WebSocket + * @param message + * the message + * + * @return a CompletionStage that completes when the message processing + * is done; or {@code null} if already done + */ + default CompletionStage onPong(WebSocket webSocket, + ByteBuffer message) { + webSocket.request(1); + return null; + } + + /** + * Receives a Close message. + * + *

Once a Close message is received, the server will not send any + * more messages. + * + *

A Close message may consist of a close code and a reason for + * closing. The reason will have a UTF-8 representation not longer than + * {@code 123} bytes. The reason may be useful for debugging or passing + * information relevant to the connection but is not necessarily human + * readable. + * + *

{@code onClose} is the last invocation on the {@code Listener}. + * It is invoked at most once, but after {@code onOpen}. If an exception + * is thrown from this method, it is ignored. + * + * @implSpec The default implementation does nothing. + * + * @param webSocket + * the WebSocket + * @param code + * an {@code Optional} describing the close code, or + * an empty {@code Optional} if the message doesn't contain it + * @param reason + * the reason of close; can be empty + */ + default void onClose(WebSocket webSocket, Optional code, + String reason) { } + + /** + * Notifies an I/O or protocol error has occurred on the {@code + * WebSocket}. + * + *

The {@code onError} method does not correspond to any message + * from the WebSocket Protocol. It is a synthetic event. {@code onError} + * is the last invocation on the {@code Listener}. It is invoked at most + * once but after {@code onOpen}. If an exception is thrown from this + * method, it is ignored. + * + *

The WebSocket Protocol requires some errors occurs in the + * incoming destination must be fatal to the connection. In such cases + * the implementation takes care of closing the {@code WebSocket}. By + * the time {@code onError} is invoked, no more messages can be sent on + * this {@code WebSocket}. + * + * @apiNote Errors associated with send operations ({@link + * WebSocket#sendText(CharSequence, boolean) sendText}, {@link + * #sendBinary(ByteBuffer, boolean) sendBinary}, {@link + * #sendPing(ByteBuffer) sendPing}, {@link #sendPong(ByteBuffer) + * sendPong} and {@link #sendClose(CloseCode, CharSequence) sendClose}) + * are reported to the {@code CompletionStage} operations return. + * + * @implSpec The default implementation does nothing. + * + * @param webSocket + * the WebSocket + * @param error + * the error + */ + default void onError(WebSocket webSocket, Throwable error) { } + } + + /** + * A marker used by {@link WebSocket.Listener} for partial message + * receiving. + * + * @since 9 + */ + enum MessagePart { + + /** + * The first part of a message in a sequence. + */ + FIRST, + + /** + * A middle part of a message in a sequence. + */ + PART, + + /** + * The last part of a message in a sequence. + */ + LAST, + + /** + * A whole message. The message consists of a single part. + */ + WHOLE; + + /** + * Tells whether a part of a message received with this marker is the + * last part. + * + * @return {@code true} if LAST or WHOLE, {@code false} otherwise + */ + public boolean isLast() { + return this == LAST || this == WHOLE; + } + } + + /** + * Sends a Text message with bytes from the given {@code ByteBuffer}. + * + *

Returns immediately with a {@code CompletableFuture} which + * completes normally when the message has been sent, or completes + * exceptionally if an error occurs. + * + *

This message may be a partial UTF-8 sequence. However, the + * concatenation of all messages through the last must be a whole UTF-8 + * sequence. + * + *

The {@code ByteBuffer} should not be modified until the returned + * {@code CompletableFuture} completes (either normally or exceptionally). + * + *

The returned {@code CompletableFuture} can complete exceptionally + * with: + *

    + *
  • {@link IOException} + * if an I/O error occurs during this operation; or the + * {@code WebSocket} closes while this operation is in progress; + * or the {@code message} is a malformed UTF-8 sequence + *
+ * + * @param message + * the message + * @param isLast + * {@code true} if this is the final part of the message, + * {@code false} otherwise + * + * @return a CompletableFuture of Void + * + * @throws IllegalStateException + * if the WebSocket is closed + * @throws IllegalStateException + * if a Close message has been sent already + * @throws IllegalStateException + * if there is an outstanding send operation + * @throws IllegalStateException + * if a previous Binary message + * was not sent with {@code isLast == true} + */ + CompletableFuture sendText(ByteBuffer message, boolean isLast); + + /** + * Sends a Text message with characters from the given {@code + * CharSequence}. + * + *

Returns immediately with a {@code CompletableFuture} which + * completes normally when the message has been sent, or completes + * exceptionally if an error occurs. + * + *

This message may be a partial UTF-16 sequence. However, the + * concatenation of all messages through the last must be a whole UTF-16 + * sequence. + * + *

The {@code CharSequence} should not be modified until the returned + * {@code CompletableFuture} completes (either normally or exceptionally). + * + *

The returned {@code CompletableFuture} can complete exceptionally + * with: + *

    + *
  • {@link IOException} + * if an I/O error occurs during this operation; or the + * {@code WebSocket} closes while this operation is in progress; + * or the {@code message} is a malformed UTF-16 sequence + *
+ * + * @param message + * the message + * @param isLast + * {@code true} if this is the final part of the message + * {@code false} otherwise + * + * @return a CompletableFuture of Void + * + * @throws IllegalStateException + * if the WebSocket is closed + * @throws IllegalStateException + * if a Close message has been already sent + * @throws IllegalStateException + * if there is an outstanding send operation + * @throws IllegalStateException + * if a previous Binary message was not sent + * with {@code isLast == true} + */ + CompletableFuture sendText(CharSequence message, boolean isLast); + + /** + * Sends a whole Text message with characters from the given {@code + * CharSequence}. + * + *

This is a convenience method. For the general case, use {@link + * #sendText(CharSequence, boolean)}. + * + *

Returns immediately with a {@code CompletableFuture} which + * completes normally when the message has been sent, or completes + * exceptionally if an error occurs. + * + *

The {@code CharSequence} should not be modified until the returned + * {@code CompletableFuture} completes (either normally or exceptionally). + * + *

The returned {@code CompletableFuture} can complete exceptionally + * with: + *

    + *
  • {@link IOException} + * if an I/O error occurs during this operation; or the + * {@code WebSocket} closes while this operation is in progress; + * or the message is a malformed UTF-16 sequence + *
+ * + * @param message + * the message + * + * @return a CompletableFuture of Void + * + * @throws IllegalStateException + * if the WebSocket is closed + * @throws IllegalStateException + * if a Close message has been already sent + * @throws IllegalStateException + * if there is an outstanding send operation + * @throws IllegalStateException + * if a previous Binary message was not sent + * with {@code isLast == true} + */ + default CompletableFuture sendText(CharSequence message) { + return sendText(message, true); + } + + /** + * Sends a whole Text message with characters from {@code + * CharacterSequence}s provided by the given {@code Stream}. + * + *

This is a convenience method. For the general case use {@link + * #sendText(CharSequence, boolean)}. + * + *

Returns immediately with a {@code CompletableFuture} which + * completes normally when the message has been sent, or completes + * exceptionally if an error occurs. + * + *

Streamed character sequences should not be modified until the + * returned {@code CompletableFuture} completes (either normally or + * exceptionally). + * + *

The returned {@code CompletableFuture} can complete exceptionally + * with: + *

    + *
  • {@link IOException} + * if an I/O error occurs during this operation; or the + * {@code WebSocket} closes while this operation is in progress; + * or the message is a malformed UTF-16 sequence + *
+ * + * @param message + * the message + * + * @return a CompletableFuture of Void + * + * @throws IllegalStateException + * if the WebSocket is closed + * @throws IllegalStateException + * if a Close message has been already sent + * @throws IllegalStateException + * if there is an outstanding send operation + * @throws IllegalStateException + * if a previous Binary message was not sent + * with {@code isLast == true} + */ + CompletableFuture sendText(Stream message); + + /** + * Sends a Binary message with bytes from the given {@code ByteBuffer}. + * + *

Returns immediately with a {@code CompletableFuture} which + * completes normally when the message has been sent, or completes + * exceptionally if an error occurs. + * + *

The returned {@code CompletableFuture} can complete exceptionally + * with: + *

    + *
  • {@link IOException} + * if an I/O error occurs during this operation or the + * {@code WebSocket} closes while this operation is in progress + *
+ * + * @param message + * the message + * @param isLast + * {@code true} if this is the final part of the message, + * {@code false} otherwise + * + * @return a CompletableFuture of Void + * + * @throws IllegalStateException + * if the WebSocket is closed + * @throws IllegalStateException + * if a Close message has been already sent + * @throws IllegalStateException + * if there is an outstanding send operation + * @throws IllegalStateException + * if a previous Text message was not sent + * with {@code isLast == true} + */ + CompletableFuture sendBinary(ByteBuffer message, boolean isLast); + + /** + * Sends a Binary message with bytes from the given {@code byte[]}. + * + *

Returns immediately with a {@code CompletableFuture} which + * completes normally when the message has been sent, or completes + * exceptionally if an error occurs. + * + *

The returned {@code CompletableFuture} can complete exceptionally + * with: + *

    + *
  • {@link IOException} + * if an I/O error occurs during this operation or the + * {@code WebSocket} closes while this operation is in progress + *
+ * + * @implSpec This is equivalent to: + *
{@code
+     *     sendBinary(ByteBuffer.wrap(message), isLast)
+     * }
+ * + * @param message + * the message + * @param isLast + * {@code true} if this is the final part of the message, + * {@code false} otherwise + * + * @return a CompletableFuture of Void + * + * @throws IllegalStateException + * if the WebSocket is closed + * @throws IllegalStateException + * if a Close message has been already sent + * @throws IllegalStateException + * if there is an outstanding send operation + * @throws IllegalStateException + * if a previous Text message was not sent + * with {@code isLast == true} + */ + default CompletableFuture sendBinary(byte[] message, boolean isLast) { + Objects.requireNonNull(message, "message"); + return sendBinary(ByteBuffer.wrap(message), isLast); + } + + /** + * Sends a Ping message. + * + *

Returns immediately with a {@code CompletableFuture} which + * completes normally when the message has been sent, or completes + * exceptionally if an error occurs. + * + *

A Ping message may be sent or received by either client or server. + * It may serve either as a keepalive or as a means to verify that the + * remote endpoint is still responsive. + * + *

The message must consist of not more than {@code 125} bytes: {@code + * message.remaining() <= 125}. + * + *

The returned {@code CompletableFuture} can complete exceptionally + * with: + *

    + *
  • {@link IOException} + * if an I/O error occurs during this operation or the + * {@code WebSocket} closes while this operation is in progress + *
+ * + * @param message + * the message + * + * @return a CompletableFuture of Void + * + * @throws IllegalStateException + * if the WebSocket is closed + * @throws IllegalStateException + * if a Close message has been already sent + * @throws IllegalStateException + * if there is an outstanding send operation + * @throws IllegalArgumentException + * if {@code message.remaining() > 125} + */ + CompletableFuture sendPing(ByteBuffer message); + + /** + * Sends a Pong message. + * + *

Returns immediately with a {@code CompletableFuture} which + * completes normally when the message has been sent, or completes + * exceptionally if an error occurs. + * + *

A Pong message may be unsolicited or may be sent in response to a + * previously received Ping. In latter case the contents of the Pong is + * identical to the originating Ping. + * + *

The message must consist of not more than {@code 125} bytes: {@code + * message.remaining() <= 125}. + * + *

The returned {@code CompletableFuture} can complete exceptionally + * with: + *

    + *
  • {@link IOException} + * if an I/O error occurs during this operation or the + * {@code WebSocket} closes while this operation is in progress + *
+ * + * @param message + * the message + * + * @return a CompletableFuture of Void + * + * @throws IllegalStateException + * if the WebSocket is closed + * @throws IllegalStateException + * if a Close message has been already sent + * @throws IllegalStateException + * if there is an outstanding send operation + * @throws IllegalArgumentException + * if {@code message.remaining() > 125} + */ + CompletableFuture sendPong(ByteBuffer message); + + /** + * Sends a Close message with the given close code and the reason. + * + *

Returns immediately with a {@code CompletableFuture} which + * completes normally when the message has been sent, or completes + * exceptionally if an error occurs. + * + *

A Close message may consist of a close code and a reason for closing. + * The reason must have a valid UTF-8 representation not longer than {@code + * 123} bytes. The reason may be useful for debugging or passing information + * relevant to the connection but is not necessarily human readable. + * + *

The returned {@code CompletableFuture} can complete exceptionally + * with: + *

    + *
  • {@link IOException} + * if an I/O error occurs during this operation or the + * {@code WebSocket} closes while this operation is in progress + *
+ * + * @param code + * the close code + * @param reason + * the reason; can be empty + * + * @return a CompletableFuture of Void + * + * @throws IllegalStateException + * if the WebSocket is closed + * @throws IllegalStateException + * if a Close message has been already sent + * @throws IllegalStateException + * if there is an outstanding send operation + * @throws IllegalArgumentException + * if the {@code reason} doesn't have a valid UTF-8 + * representation not longer than {@code 123} bytes + */ + CompletableFuture sendClose(CloseCode code, CharSequence reason); + + /** + * Sends an empty Close message. + * + *

Returns immediately with a {@code CompletableFuture} which + * completes normally when the message has been sent, or completes + * exceptionally if an error occurs. + * + *

The returned {@code CompletableFuture} can complete exceptionally + * with: + *

    + *
  • {@link IOException} + * if an I/O error occurs during this operation or the + * {@code WebSocket} closes while this operation is in progress + *
+ * + * @return a CompletableFuture of Void + * + * @throws IllegalStateException + * if the WebSocket is closed + * @throws IllegalStateException + * if a Close message has been already sent + * @throws IllegalStateException + * if there is an outstanding send operation + */ + CompletableFuture sendClose(); + + /** + * Requests {@code n} more messages to be received by the {@link Listener + * Listener}. + * + *

The actual number might be fewer if either of the endpoints decide to + * close the connection before that or an error occurs. + * + *

A {@code WebSocket} that has just been created, hasn't requested + * anything yet. Usually the initial request for messages is done in {@link + * Listener#onOpen(java.net.http.WebSocket) Listener.onOpen}. + * + * If all requested messages have been received, and the server sends more, + * then these messages are queued. + * + * @implNote This implementation does not distinguish between partial and + * whole messages, because it's not known beforehand how a message will be + * received. + *

If a server sends more messages than requested, the implementation + * queues up these messages on the TCP connection and may eventually force + * the sender to stop sending through TCP flow control. + * + * @param n + * the number of messages + * + * @throws IllegalArgumentException + * if {@code n < 0} + * + * @return resulting unfulfilled demand with this request taken into account + */ + // TODO return void as it's breaking encapsulation (leaking info when exactly something deemed delivered) + // or demand behaves after LONG.MAX_VALUE + long request(long n); + + /** + * Returns a {@linkplain Builder#subprotocols(String, String...) subprotocol} + * in use. + * + * @return a subprotocol, or {@code null} if there is none + */ + String getSubprotocol(); + + /** + * Tells whether the {@code WebSocket} is closed. + * + *

A {@code WebSocket} deemed closed when either the underlying socket + * is closed or the closing handshake is completed. + * + * @return {@code true} if the {@code WebSocket} is closed, + * {@code false} otherwise + */ + boolean isClosed(); + + /** + * Closes the {@code WebSocket} abruptly. + * + *

This method closes the underlying TCP connection. If the {@code + * WebSocket} is already closed then invoking this method has no effect. + * + * @throws IOException + * if an I/O error occurs + */ + void abort() throws IOException; + + /** + * A {@code WebSocket} close status code. + * + *

Some codes + * specified in the WebSocket Protocol are defined as named constants + * here. Others can be {@linkplain #of(int) retrieved on demand}. + * + *

This is a + * value-based class; + * use of identity-sensitive operations (including reference equality + * ({@code ==}), identity hash code, or synchronization) on instances of + * {@code CloseCode} may have unpredictable results and should be avoided. + * + * @since 9 + */ + final class CloseCode { + + /** + * Indicates a normal close, meaning that the purpose for which the + * connection was established has been fulfilled. + * + *

Numerical representation: {@code 1000} + */ + public static final CloseCode NORMAL_CLOSURE + = new CloseCode(1000, "NORMAL_CLOSURE"); + + /** + * Indicates that an endpoint is "going away", such as a server going + * down or a browser having navigated away from a page. + * + *

Numerical representation: {@code 1001} + */ + public static final CloseCode GOING_AWAY + = new CloseCode(1001, "GOING_AWAY"); + + /** + * Indicates that an endpoint is terminating the connection due to a + * protocol error. + * + *

Numerical representation: {@code 1002} + */ + public static final CloseCode PROTOCOL_ERROR + = new CloseCode(1002, "PROTOCOL_ERROR"); + + /** + * Indicates that an endpoint is terminating the connection because it + * has received a type of data it cannot accept (e.g., an endpoint that + * understands only text data MAY send this if it receives a binary + * message). + * + *

Numerical representation: {@code 1003} + */ + public static final CloseCode CANNOT_ACCEPT + = new CloseCode(1003, "CANNOT_ACCEPT"); + + /** + * Indicates that an endpoint is terminating the connection because it + * has received data within a message that was not consistent with the + * type of the message (e.g., non-UTF-8 [RFC3629] data within a text + * message). + * + *

Numerical representation: {@code 1007} + */ + public static final CloseCode NOT_CONSISTENT + = new CloseCode(1007, "NOT_CONSISTENT"); + + /** + * Indicates that an endpoint is terminating the connection because it + * has received a message that violates its policy. This is a generic + * status code that can be returned when there is no other more suitable + * status code (e.g., {@link #CANNOT_ACCEPT} or {@link #TOO_BIG}) or if + * there is a need to hide specific details about the policy. + * + *

Numerical representation: {@code 1008} + */ + public static final CloseCode VIOLATED_POLICY + = new CloseCode(1008, "VIOLATED_POLICY"); + + /** + * Indicates that an endpoint is terminating the connection because it + * has received a message that is too big for it to process. + * + *

Numerical representation: {@code 1009} + */ + public static final CloseCode TOO_BIG + = new CloseCode(1009, "TOO_BIG"); + + /** + * Indicates that an endpoint is terminating the connection because it + * encountered an unexpected condition that prevented it from fulfilling + * the request. + * + *

Numerical representation: {@code 1011} + */ + public static final CloseCode UNEXPECTED_CONDITION + = new CloseCode(1011, "UNEXPECTED_CONDITION"); + + private static final Map cached = Map.ofEntries( + entry(NORMAL_CLOSURE), + entry(GOING_AWAY), + entry(PROTOCOL_ERROR), + entry(CANNOT_ACCEPT), + entry(NOT_CONSISTENT), + entry(VIOLATED_POLICY), + entry(TOO_BIG), + entry(UNEXPECTED_CONDITION) + ); + + /** + * Returns a {@code CloseCode} from its numerical representation. + * + *

The given {@code code} should be in the range {@code 1000 <= code + * <= 4999}, and should not be equal to any of the following codes: + * {@code 1004}, {@code 1005}, {@code 1006} and {@code 1015}. + * + * @param code + * numerical representation + * + * @return a close code corresponding to the provided numerical value + * + * @throws IllegalArgumentException + * if {@code code} violates any of the requirements above + */ + public static CloseCode of(int code) { + if (code < 1000 || code > 4999) { + throw new IllegalArgumentException("Out of range: " + code); + } + if (code == 1004 || code == 1005 || code == 1006 || code == 1015) { + throw new IllegalArgumentException("Reserved: " + code); + } + CloseCode closeCode = cached.get(code); + return closeCode != null ? closeCode : new CloseCode(code, ""); + } + + private final int code; + private final String description; + + private CloseCode(int code, String description) { + assert description != null; + this.code = code; + this.description = description; + } + + /** + * Returns a numerical representation of this close code. + * + * @return a numerical representation + */ + public int getCode() { + return code; + } + + /** + * Compares this close code to the specified object. + * + * @param o + * the object to compare this {@code CloseCode} against + * + * @return {@code true} iff the argument is a close code with the same + * {@linkplain #getCode() numerical representation} as this one + */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CloseCode)) { + return false; + } + CloseCode that = (CloseCode) o; + return code == that.code; + } + + @Override + public int hashCode() { + return code; + } + + /** + * Returns a human-readable representation of this close code. + * + * @apiNote The representation is not designed to be parsed; the format + * may change unexpectedly. + * + * @return a string representation + */ + @Override + public String toString() { + return code + (description.isEmpty() ? "" : (": " + description)); + } + + private static Map.Entry entry(CloseCode cc) { + return Map.entry(cc.getCode(), cc); + } + } + + /** + * A character sequence that provides access to the characters UTF-8 decoded + * from a message in a {@code ByteBuffer}. + * + * @since 9 + */ + interface Text extends CharSequence { + + // Methods from the CharSequence below are mentioned explicitly for the + // purpose of documentation, so when looking at javadoc it immediately + // obvious what methods Text has + + @Override + int length(); + + @Override + char charAt(int index); + + @Override + CharSequence subSequence(int start, int end); + + /** + * Returns a string containing the characters in this sequence in the + * same order as this sequence. The length of the string will be the + * length of this sequence. + * + * @return a string consisting of exactly this sequence of characters + */ + @Override + // TODO: remove the explicit javadoc above when: + // (JDK-8144034 has been resolved) AND (the comment is still identical + // to CharSequence#toString) + String toString(); + + /** + * Returns a read-only {@code ByteBuffer} containing the message encoded + * in UTF-8. + * + * @return a read-only ByteBuffer + */ + ByteBuffer asByteBuffer(); + } +} diff --git a/jdk/src/java.httpclient/share/classes/java/net/http/WebSocketHandshakeException.java b/jdk/src/java.httpclient/share/classes/java/net/http/WebSocketHandshakeException.java new file mode 100644 index 00000000000..d9f630632fd --- /dev/null +++ b/jdk/src/java.httpclient/share/classes/java/net/http/WebSocketHandshakeException.java @@ -0,0 +1,66 @@ +/* + * Copyright (c) 2015, 2016, 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 java.net.http; + +/** + * An exception used to signal the opening handshake failed. + * + * @since 9 + */ +public final class WebSocketHandshakeException extends Exception { + + private static final long serialVersionUID = 1L; + private final transient HttpResponse response; + + WebSocketHandshakeException(HttpResponse response) { + this(null, response); + } + + WebSocketHandshakeException(String message, HttpResponse response) { + super(statusCodeOrFullMessage(message, response)); + this.response = response; + } + + /** + * // FIXME: terrible toString (+ not always status should be displayed I guess) + */ + private static String statusCodeOrFullMessage(String m, HttpResponse response) { + return (m == null || m.isEmpty()) + ? String.valueOf(response.statusCode()) + : response.statusCode() + ": " + m; + } + + /** + * Returns a HTTP response from the server. + * + *

The value may be unavailable ({@code null}) if this exception has + * been serialized and then read back in. + * + * @return server response + */ + public HttpResponse getResponse() { + return response; + } +} diff --git a/jdk/src/java.httpclient/share/classes/java/net/http/package-info.java b/jdk/src/java.httpclient/share/classes/java/net/http/package-info.java index db2319bfa43..4ad47b879f9 100644 --- a/jdk/src/java.httpclient/share/classes/java/net/http/package-info.java +++ b/jdk/src/java.httpclient/share/classes/java/net/http/package-info.java @@ -33,6 +33,7 @@ *

  • {@link java.net.http.HttpClient}
  • *
  • {@link java.net.http.HttpRequest}
  • *
  • {@link java.net.http.HttpResponse}
  • + *
  • {@link java.net.http.WebSocket}
  • * * * @since 9 diff --git a/jdk/test/java/net/httpclient/BasicWebSocketAPITest.java b/jdk/test/java/net/httpclient/BasicWebSocketAPITest.java new file mode 100644 index 00000000000..4e454c0a533 --- /dev/null +++ b/jdk/test/java/net/httpclient/BasicWebSocketAPITest.java @@ -0,0 +1,332 @@ +/* + * Copyright (c) 2016, 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. + * + * 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. + */ + +import org.testng.annotations.Test; + +import java.io.IOException; +import java.net.InetSocketAddress; +import java.net.URI; +import java.net.http.HttpClient; +import java.net.http.WebSocket; +import java.net.http.WebSocket.CloseCode; +import java.nio.ByteBuffer; +import java.nio.channels.SocketChannel; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.TimeUnit; +import java.util.function.Consumer; +import java.util.stream.Stream; + +/* + * @test + * @bug 8087113 + * @build TestKit + * @run testng/othervm BasicWebSocketAPITest + */ +public class BasicWebSocketAPITest { + + @Test + public void webSocket() throws Exception { + checkAndClose( + (ws) -> + TestKit.assertThrows(IllegalArgumentException.class, + "(?i).*\\bnegative\\b.*", + () -> ws.request(-1)) + ); + checkAndClose((ws) -> + TestKit.assertNotThrows(() -> ws.request(0)) + ); + checkAndClose((ws) -> + TestKit.assertNotThrows(() -> ws.request(1)) + ); + checkAndClose((ws) -> + TestKit.assertNotThrows(() -> ws.request(Long.MAX_VALUE)) + ); + checkAndClose((ws) -> + TestKit.assertNotThrows(ws::isClosed) + ); + checkAndClose((ws) -> + TestKit.assertNotThrows(ws::getSubprotocol) + ); + checkAndClose( + (ws) -> { + try { + ws.abort(); + } catch (IOException ignored) { } + // No matter what happens during the first abort invocation, + // other invocations must return normally + TestKit.assertNotThrows(ws::abort); + TestKit.assertNotThrows(ws::abort); + } + ); + checkAndClose( + (ws) -> + TestKit.assertThrows(NullPointerException.class, + "message", + () -> ws.sendBinary((byte[]) null, true)) + ); + checkAndClose( + (ws) -> + TestKit.assertThrows(NullPointerException.class, + "message", + () -> ws.sendBinary((ByteBuffer) null, true)) + ); + checkAndClose( + (ws) -> + TestKit.assertThrows(NullPointerException.class, + "message", + () -> ws.sendPing(null)) + ); + checkAndClose( + (ws) -> + TestKit.assertThrows(NullPointerException.class, + "message", + () -> ws.sendPong(null)) + ); + checkAndClose( + (ws) -> + TestKit.assertThrows(NullPointerException.class, + "message", + () -> ws.sendText((CharSequence) null, true)) + ); + checkAndClose( + (ws) -> + TestKit.assertThrows(NullPointerException.class, + "message", + () -> ws.sendText((CharSequence) null)) + ); + checkAndClose( + (ws) -> + TestKit.assertThrows(NullPointerException.class, + "message", + () -> ws.sendText((Stream) null)) + ); + checkAndClose( + (ws) -> + TestKit.assertThrows(NullPointerException.class, + "code", + () -> ws.sendClose(null, "")) + ); + checkAndClose( + (ws) -> + TestKit.assertNotThrows( + () -> ws.sendClose(CloseCode.NORMAL_CLOSURE, "")) + ); + checkAndClose( + (ws) -> + TestKit.assertThrows(NullPointerException.class, + "reason", + () -> ws.sendClose(CloseCode.NORMAL_CLOSURE, null)) + ); + checkAndClose( + (ws) -> + TestKit.assertThrows(NullPointerException.class, + "code|reason", + () -> ws.sendClose(null, null)) + ); + } + + @Test + public void builder() { + URI ws = URI.create("ws://localhost:9001"); + // FIXME: check all 24 cases: + // {null, ws, wss, incorrect} x {null, HttpClient.getDefault(), custom} x {null, listener} + // + // if (any null) or (any incorrect) + // NPE or IAE is thrown + // else + // builder is created + TestKit.assertThrows(NullPointerException.class, + "uri", + () -> WebSocket.newBuilder(null, defaultListener()) + ); + TestKit.assertThrows(NullPointerException.class, + "listener", + () -> WebSocket.newBuilder(ws, null) + ); + URI uri = URI.create("ftp://localhost:9001"); + TestKit.assertThrows(IllegalArgumentException.class, + "(?i).*\\buri\\b\\s+\\bscheme\\b.*", + () -> WebSocket.newBuilder(uri, defaultListener()) + ); + TestKit.assertNotThrows( + () -> WebSocket.newBuilder(ws, defaultListener()) + ); + URI uri1 = URI.create("wss://localhost:9001"); + TestKit.assertNotThrows( + () -> WebSocket.newBuilder(uri1, defaultListener()) + ); + URI uri2 = URI.create("wss://localhost:9001#a"); + TestKit.assertThrows(IllegalArgumentException.class, + "(?i).*\\bfragment\\b.*", + () -> WebSocket.newBuilder(uri2, HttpClient.getDefault(), defaultListener()) + ); + TestKit.assertThrows(NullPointerException.class, + "uri", + () -> WebSocket.newBuilder(null, HttpClient.getDefault(), defaultListener()) + ); + TestKit.assertThrows(NullPointerException.class, + "client", + () -> WebSocket.newBuilder(ws, null, defaultListener()) + ); + TestKit.assertThrows(NullPointerException.class, + "listener", + () -> WebSocket.newBuilder(ws, HttpClient.getDefault(), null) + ); + // FIXME: check timeout works + // (i.e. it directly influences the time WebSocket waits for connection + opening handshake) + TestKit.assertNotThrows( + () -> WebSocket.newBuilder(ws, defaultListener()).connectTimeout(1, TimeUnit.SECONDS) + ); + WebSocket.Builder builder = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(IllegalArgumentException.class, + "(?i).*\\bnegative\\b.*", + () -> builder.connectTimeout(-1, TimeUnit.SECONDS) + ); + WebSocket.Builder builder1 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(NullPointerException.class, + "unit", + () -> builder1.connectTimeout(1, null) + ); + // FIXME: check these headers are actually received by the server + TestKit.assertNotThrows( + () -> WebSocket.newBuilder(ws, defaultListener()).header("a", "b") + ); + TestKit.assertNotThrows( + () -> WebSocket.newBuilder(ws, defaultListener()).header("a", "b").header("a", "b") + ); + // FIXME: check all 18 cases: + // {null, websocket(7), custom} x {null, custom} + WebSocket.Builder builder2 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(NullPointerException.class, + "name", + () -> builder2.header(null, "b") + ); + WebSocket.Builder builder3 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(NullPointerException.class, + "value", + () -> builder3.header("a", null) + ); + WebSocket.Builder builder4 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(IllegalArgumentException.class, + () -> builder4.header("Sec-WebSocket-Accept", "") + ); + WebSocket.Builder builder5 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(IllegalArgumentException.class, + () -> builder5.header("Sec-WebSocket-Extensions", "") + ); + WebSocket.Builder builder6 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(IllegalArgumentException.class, + () -> builder6.header("Sec-WebSocket-Key", "") + ); + WebSocket.Builder builder7 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(IllegalArgumentException.class, + () -> builder7.header("Sec-WebSocket-Protocol", "") + ); + WebSocket.Builder builder8 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(IllegalArgumentException.class, + () -> builder8.header("Sec-WebSocket-Version", "") + ); + WebSocket.Builder builder9 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(IllegalArgumentException.class, + () -> builder9.header("Connection", "") + ); + WebSocket.Builder builder10 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(IllegalArgumentException.class, + () -> builder10.header("Upgrade", "") + ); + // FIXME: check 3 cases (1 arg): + // {null, incorrect, custom} + // FIXME: check 12 cases (2 args): + // {null, incorrect, custom} x {(String) null, (String[]) null, incorrect, custom} + // FIXME: check 27 cases (3 args) (the interesting part in null inside var-arg): + // {null, incorrect, custom}^3 + // FIXME: check the server receives them in the order listed + TestKit.assertThrows(NullPointerException.class, + "mostPreferred", + () -> WebSocket.newBuilder(ws, defaultListener()).subprotocols(null) + ); + TestKit.assertThrows(NullPointerException.class, + "lesserPreferred", + () -> WebSocket.newBuilder(ws, defaultListener()).subprotocols("a", null) + ); + TestKit.assertThrows(NullPointerException.class, + "lesserPreferred\\[0\\]", + () -> WebSocket.newBuilder(ws, defaultListener()).subprotocols("a", null, "b") + ); + TestKit.assertThrows(NullPointerException.class, + "lesserPreferred\\[1\\]", + () -> WebSocket.newBuilder(ws, defaultListener()).subprotocols("a", "b", null) + ); + TestKit.assertNotThrows( + () -> WebSocket.newBuilder(ws, defaultListener()).subprotocols("a") + ); + TestKit.assertNotThrows( + () -> WebSocket.newBuilder(ws, defaultListener()).subprotocols("a", "b", "c") + ); + WebSocket.Builder builder11 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(IllegalArgumentException.class, + () -> builder11.subprotocols("") + ); + WebSocket.Builder builder12 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(IllegalArgumentException.class, + () -> builder12.subprotocols("a", "a") + ); + WebSocket.Builder builder13 = WebSocket.newBuilder(ws, defaultListener()); + TestKit.assertThrows(IllegalArgumentException.class, + () -> builder13.subprotocols("a" + ((char) 0x7f)) + ); + } + + private static WebSocket.Listener defaultListener() { + return new WebSocket.Listener() { }; + } + + // + // Automatically closes everything after the check has been performed + // + private static void checkAndClose(Consumer c) { + HandshakePhase HandshakePhase + = new HandshakePhase(new InetSocketAddress("127.0.0.1", 0)); + URI serverURI = HandshakePhase.getURI(); + CompletableFuture cfc = HandshakePhase.afterHandshake(); + WebSocket.Builder b = WebSocket.newBuilder(serverURI, defaultListener()); + CompletableFuture cfw = b.buildAsync(); + + try { + WebSocket ws; + try { + ws = cfw.get(); + } catch (Exception e) { + throw new RuntimeException(e); + } + c.accept(ws); + } finally { + try { + SocketChannel now = cfc.getNow(null); + if (now != null) { + now.close(); + } + } catch (Throwable ignored) { } + } + } +} diff --git a/jdk/test/java/net/httpclient/HandshakePhase.java b/jdk/test/java/net/httpclient/HandshakePhase.java new file mode 100644 index 00000000000..2585ce78f70 --- /dev/null +++ b/jdk/test/java/net/httpclient/HandshakePhase.java @@ -0,0 +1,265 @@ +/* + * Copyright (c) 2016, 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. + * + * 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. + */ + +import java.io.IOException; +import java.io.UncheckedIOException; +import java.net.InetSocketAddress; +import java.net.URI; +import java.nio.ByteBuffer; +import java.nio.CharBuffer; +import java.nio.channels.ServerSocketChannel; +import java.nio.channels.SocketChannel; +import java.nio.charset.CharacterCodingException; +import java.nio.charset.StandardCharsets; +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.util.Arrays; +import java.util.Base64; +import java.util.HashMap; +import java.util.Iterator; +import java.util.LinkedList; +import java.util.List; +import java.util.Map; +import java.util.concurrent.CompletableFuture; +import java.util.function.Function; +import java.util.regex.Pattern; +import java.util.stream.Collectors; + +import static java.lang.String.format; +import static java.util.Objects.requireNonNull; + +// +// Performs a simple opening handshake and yields the channel. +// +// Client Request: +// +// GET /chat HTTP/1.1 +// Host: server.example.com +// Upgrade: websocket +// Connection: Upgrade +// Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ== +// Origin: http://example.com +// Sec-WebSocket-Protocol: chat, superchat +// Sec-WebSocket-Version: 13 +// +// +// Server Response: +// +// HTTP/1.1 101 Switching Protocols +// Upgrade: websocket +// Connection: Upgrade +// Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo= +// Sec-WebSocket-Protocol: chat +// +final class HandshakePhase { + + private final ServerSocketChannel ssc; + + HandshakePhase(InetSocketAddress address) { + requireNonNull(address); + try { + ssc = ServerSocketChannel.open(); + ssc.bind(address); + } catch (IOException e) { + throw new UncheckedIOException(e); + } + } + + // + // Returned CF completes normally after the handshake has been performed + // + CompletableFuture afterHandshake( + Function, List> mapping) { + return CompletableFuture.supplyAsync( + () -> { + SocketChannel socketChannel = accept(); + try { + StringBuilder request = new StringBuilder(); + if (!readRequest(socketChannel, request)) { + throw new IllegalStateException(); + } + List strings = Arrays.asList( + request.toString().split("\r\n") + ); + List response = mapping.apply(strings); + writeResponse(socketChannel, response); + return socketChannel; + } catch (Throwable t) { + try { + socketChannel.close(); + } catch (IOException ignored) { } + throw t; + } + }); + } + + CompletableFuture afterHandshake() { + return afterHandshake((request) -> { + List response = new LinkedList<>(); + Iterator iterator = request.iterator(); + if (!iterator.hasNext()) { + throw new IllegalStateException("The request is empty"); + } + if (!"GET / HTTP/1.1".equals(iterator.next())) { + throw new IllegalStateException + ("Unexpected status line: " + request.get(0)); + } + response.add("HTTP/1.1 101 Switching Protocols"); + Map requestHeaders = new HashMap<>(); + while (iterator.hasNext()) { + String header = iterator.next(); + String[] split = header.split(": "); + if (split.length != 2) { + throw new IllegalStateException + ("Unexpected header: " + header + + ", split=" + Arrays.toString(split)); + } + if (requestHeaders.put(split[0], split[1]) != null) { + throw new IllegalStateException + ("Duplicating headers: " + Arrays.toString(split)); + } + } + if (requestHeaders.containsKey("Sec-WebSocket-Protocol")) { + throw new IllegalStateException("Subprotocols are not expected"); + } + if (requestHeaders.containsKey("Sec-WebSocket-Extensions")) { + throw new IllegalStateException("Extensions are not expected"); + } + expectHeader(requestHeaders, "Connection", "Upgrade"); + response.add("Connection: Upgrade"); + expectHeader(requestHeaders, "Upgrade", "websocket"); + response.add("Upgrade: websocket"); + expectHeader(requestHeaders, "Sec-WebSocket-Version", "13"); + String key = requestHeaders.get("Sec-WebSocket-Key"); + if (key == null) { + throw new IllegalStateException("Sec-WebSocket-Key is missing"); + } + MessageDigest sha1 = null; + try { + sha1 = MessageDigest.getInstance("SHA-1"); + } catch (NoSuchAlgorithmException e) { + throw new InternalError(e); + } + String x = key + "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"; + sha1.update(x.getBytes(StandardCharsets.ISO_8859_1)); + String v = Base64.getEncoder().encodeToString(sha1.digest()); + response.add("Sec-WebSocket-Accept: " + v); + return response; + }); + } + + private String expectHeader(Map headers, + String name, + String value) { + String v = headers.get(name); + if (!value.equals(v)) { + throw new IllegalStateException( + format("Expected '%s: %s', actual: '%s: %s'", + name, value, name, v) + ); + } + return v; + } + + URI getURI() { + InetSocketAddress a; + try { + a = (InetSocketAddress) ssc.getLocalAddress(); + } catch (IOException e) { + throw new UncheckedIOException(e); + } + return URI.create("ws://" + a.getHostName() + ":" + a.getPort()); + } + + private int read(SocketChannel socketChannel, ByteBuffer buffer) { + try { + int num = socketChannel.read(buffer); + if (num == -1) { + throw new IllegalStateException("Unexpected EOF"); + } + assert socketChannel.isBlocking() && num > 0; + return num; + } catch (IOException e) { + throw new UncheckedIOException(e); + } + } + + private SocketChannel accept() { + SocketChannel socketChannel = null; + try { + socketChannel = ssc.accept(); + socketChannel.configureBlocking(true); + } catch (IOException e) { + if (socketChannel != null) { + try { + socketChannel.close(); + } catch (IOException ignored) { } + } + throw new UncheckedIOException(e); + } + return socketChannel; + } + + private boolean readRequest(SocketChannel socketChannel, + StringBuilder request) { + ByteBuffer buffer = ByteBuffer.allocateDirect(512); + read(socketChannel, buffer); + CharBuffer decoded; + buffer.flip(); + try { + decoded = + StandardCharsets.ISO_8859_1.newDecoder().decode(buffer); + } catch (CharacterCodingException e) { + throw new UncheckedIOException(e); + } + request.append(decoded); + return Pattern.compile("\r\n\r\n").matcher(request).find(); + } + + private void writeResponse(SocketChannel socketChannel, + List response) { + String s = response.stream().collect(Collectors.joining("\r\n")) + + "\r\n\r\n"; + ByteBuffer encoded; + try { + encoded = + StandardCharsets.ISO_8859_1.newEncoder().encode(CharBuffer.wrap(s)); + } catch (CharacterCodingException e) { + throw new UncheckedIOException(e); + } + write(socketChannel, encoded); + } + + private void write(SocketChannel socketChannel, ByteBuffer buffer) { + try { + while (buffer.hasRemaining()) { + socketChannel.write(buffer); + } + } catch (IOException e) { + try { + socketChannel.close(); + } catch (IOException ignored) { } + throw new UncheckedIOException(e); + } + } +} From 155e6796dd263063715f1b9db8837b800684a5a1 Mon Sep 17 00:00:00 2001 From: Xue-Lei Andrew Fan Date: Tue, 10 May 2016 00:44:28 +0000 Subject: [PATCH 39/62] 8154344: sun/security/pkcs11/KeyAgreement/SupportedDHKeys.java fails on solaris Reviewed-by: weijun --- .../pkcs11/KeyAgreement/SupportedDHKeys.java | 23 +++++++++++-------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/jdk/test/sun/security/pkcs11/KeyAgreement/SupportedDHKeys.java b/jdk/test/sun/security/pkcs11/KeyAgreement/SupportedDHKeys.java index b70129e0042..f7f1bba25ad 100644 --- a/jdk/test/sun/security/pkcs11/KeyAgreement/SupportedDHKeys.java +++ b/jdk/test/sun/security/pkcs11/KeyAgreement/SupportedDHKeys.java @@ -71,18 +71,19 @@ public class SupportedDHKeys extends PKCS11Test { KeyPairGenerator.getInstance("DiffieHellman", provider); kpg.initialize(keySize.primeSize); KeyPair kp = kpg.generateKeyPair(); - checkKeyPair(kp, keySize.primeSize); + checkKeyPair(kp, keySize.primeSize, provider); DHPublicKey publicKey = (DHPublicKey)kp.getPublic(); BigInteger p = publicKey.getParams().getP(); BigInteger g = publicKey.getParams().getG(); kpg.initialize(new DHParameterSpec(p, g)); kp = kpg.generateKeyPair(); - checkKeyPair(kp, keySize.primeSize); + checkKeyPair(kp, keySize.primeSize, provider); } } - private static void checkKeyPair(KeyPair kp, int pSize) throws Exception { + private static void checkKeyPair(KeyPair kp, int pSize, + Provider provider) throws Exception { DHPrivateKey privateKey = (DHPrivateKey)kp.getPrivate(); BigInteger p = privateKey.getParams().getP(); @@ -106,18 +107,22 @@ public class SupportedDHKeys extends PKCS11Test { BigInteger leftOpen = BigInteger.ONE; BigInteger rightOpen = p.subtract(BigInteger.ONE); - BigInteger x = privateKey.getX(); - if ((x.compareTo(leftOpen) <= 0) || - (x.compareTo(rightOpen) >= 0)) { - throw new Exception( - "X outside range [2, p - 2]: x: " + x + " p: " + p); + // ignore the private key range checking on Solaris at present + if (provider.getName().equals("SunPKCS11-Solaris") && + !System.getProperty("os.name").equals("SunOS")) { + BigInteger x = privateKey.getX(); + if ((x.compareTo(leftOpen) <= 0) || + (x.compareTo(rightOpen) >= 0)) { + throw new Exception( + "X outside range [2, p - 2]: x: " + x + " p: " + p); + } } BigInteger y = publicKey.getY(); if ((y.compareTo(leftOpen) <= 0) || (y.compareTo(rightOpen) >= 0)) { throw new Exception( - "Y outside range [2, p - 2]: x: " + x + " p: " + p); + "Y outside range [2, p - 2]: y: " + y + " p: " + p); } } From 26ba99921fe91d2c88995180c5257db6b737f8e0 Mon Sep 17 00:00:00 2001 From: Hamlin Li Date: Tue, 10 May 2016 15:12:04 +0800 Subject: [PATCH 40/62] 8156002: java/nio/channels/SocketChannel/AdaptSocket.java Fails in Mesos on OSX Reviewed-by: dfuchs --- .../channels/SocketChannel/AdaptSocket.java | 20 +++++++++++++------ jdk/test/java/nio/channels/TestServers.java | 17 +++++++++++++++- 2 files changed, 30 insertions(+), 7 deletions(-) diff --git a/jdk/test/java/nio/channels/SocketChannel/AdaptSocket.java b/jdk/test/java/nio/channels/SocketChannel/AdaptSocket.java index 1e1fdee808c..9d435f89b10 100644 --- a/jdk/test/java/nio/channels/SocketChannel/AdaptSocket.java +++ b/jdk/test/java/nio/channels/SocketChannel/AdaptSocket.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2001, 2016, 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 @@ -22,6 +22,7 @@ */ /* @test + * @bug 8156002 * @summary Unit test for socket-channel adaptors * @library .. */ @@ -29,6 +30,7 @@ import java.io.*; import java.net.*; import java.nio.channels.*; +import java.util.Arrays; public class AdaptSocket { @@ -100,10 +102,15 @@ public class AdaptSocket { try { byte[] b = new byte[100]; int n = is.read(b); - if (n != 5) + if (shouldTimeout) { + throw new Exception("Should time out, but not, data: " + Arrays.toString(b)); + } + if (n != 5) { throw new Exception("Incorrect number of bytes read: " + n); - if (!dataString.equals(new String(b, 0, n, "US-ASCII"))) + } + if (!dataString.equals(new String(b, 0, n, "US-ASCII"))) { throw new Exception("Incorrect data read: " + n); + } } catch (SocketTimeoutException x) { if (shouldTimeout) { out.println("Read timed out, as expected"); @@ -135,6 +142,7 @@ public class AdaptSocket { testRead(so, shouldTimeout); for (int i = 0; i < 4; i++) { + out.println("loop: " + i); testRead(so, shouldTimeout); } @@ -163,9 +171,9 @@ public class AdaptSocket { testRead(echoServer, 8000, false); } - try (TestServers.EchoServer lingerEchoServer - = TestServers.EchoServer.startNewServer(100)) { - testRead(lingerEchoServer, 10, true); + try (TestServers.NoResponseServer noResponseServer + = TestServers.NoResponseServer.startNewServer()) { + testRead(noResponseServer, 10, true); } } } diff --git a/jdk/test/java/nio/channels/TestServers.java b/jdk/test/java/nio/channels/TestServers.java index a5f6c8b408b..48ff985c804 100644 --- a/jdk/test/java/nio/channels/TestServers.java +++ b/jdk/test/java/nio/channels/TestServers.java @@ -340,7 +340,7 @@ public class TestServers { * exactly matches the RFC - the only purpose of this server is to have * something that responds to nio tests... */ - static final class EchoServer extends AbstractTcpServer { + static class EchoServer extends AbstractTcpServer { public EchoServer() { this(0L); @@ -399,6 +399,21 @@ public class TestServers { } } + /** + * A small TCP Server that accept connections but does not response to any input. + */ + static final class NoResponseServer extends EchoServer { + public NoResponseServer() { + super(Long.MAX_VALUE); + } + + public static NoResponseServer startNewServer() throws IOException { + final NoResponseServer noResponseServer = new NoResponseServer(); + noResponseServer.start(); + return noResponseServer; + } + } + /** * A small TCP server that emulates the Day & Time service for tests * purposes. See http://en.wikipedia.org/wiki/Daytime_Protocol This server From 553aa4313645cd4f142bbc5889090ce26df95181 Mon Sep 17 00:00:00 2001 From: Jaroslav Kamenik Date: Tue, 10 May 2016 13:28:00 +0200 Subject: [PATCH 41/62] 8155795: Optimize Integer/Long.reverse by using reverseBytes Reviewed-by: redestad, shade --- .../share/classes/java/lang/Integer.java | 13 +++++------ .../share/classes/java/lang/Long.java | 6 ++--- jdk/test/java/lang/Integer/BitTwiddle.java | 23 +++++++++++++++++++ jdk/test/java/lang/Long/BitTwiddle.java | 23 +++++++++++++++++++ 4 files changed, 54 insertions(+), 11 deletions(-) diff --git a/jdk/src/java.base/share/classes/java/lang/Integer.java b/jdk/src/java.base/share/classes/java/lang/Integer.java index 7765d784e07..4dd5f9ee4da 100644 --- a/jdk/src/java.base/share/classes/java/lang/Integer.java +++ b/jdk/src/java.base/share/classes/java/lang/Integer.java @@ -1790,9 +1790,8 @@ public final class Integer extends Number implements Comparable { i = (i & 0x55555555) << 1 | (i >>> 1) & 0x55555555; i = (i & 0x33333333) << 2 | (i >>> 2) & 0x33333333; i = (i & 0x0f0f0f0f) << 4 | (i >>> 4) & 0x0f0f0f0f; - i = (i << 24) | ((i & 0xff00) << 8) | - ((i >>> 8) & 0xff00) | (i >>> 24); - return i; + + return reverseBytes(i); } /** @@ -1820,10 +1819,10 @@ public final class Integer extends Number implements Comparable { */ @HotSpotIntrinsicCandidate public static int reverseBytes(int i) { - return ((i >>> 24) ) | - ((i >> 8) & 0xFF00) | - ((i << 8) & 0xFF0000) | - ((i << 24)); + return (i << 24) | + ((i & 0xff00) << 8) | + ((i >>> 8) & 0xff00) | + (i >>> 24); } /** diff --git a/jdk/src/java.base/share/classes/java/lang/Long.java b/jdk/src/java.base/share/classes/java/lang/Long.java index 793d15e53b2..103389c99fe 100644 --- a/jdk/src/java.base/share/classes/java/lang/Long.java +++ b/jdk/src/java.base/share/classes/java/lang/Long.java @@ -1952,10 +1952,8 @@ public final class Long extends Number implements Comparable { i = (i & 0x5555555555555555L) << 1 | (i >>> 1) & 0x5555555555555555L; i = (i & 0x3333333333333333L) << 2 | (i >>> 2) & 0x3333333333333333L; i = (i & 0x0f0f0f0f0f0f0f0fL) << 4 | (i >>> 4) & 0x0f0f0f0f0f0f0f0fL; - i = (i & 0x00ff00ff00ff00ffL) << 8 | (i >>> 8) & 0x00ff00ff00ff00ffL; - i = (i << 48) | ((i & 0xffff0000L) << 16) | - ((i >>> 16) & 0xffff0000L) | (i >>> 48); - return i; + + return reverseBytes(i); } /** diff --git a/jdk/test/java/lang/Integer/BitTwiddle.java b/jdk/test/java/lang/Integer/BitTwiddle.java index 0d099babd62..50b5762bd7d 100644 --- a/jdk/test/java/lang/Integer/BitTwiddle.java +++ b/jdk/test/java/lang/Integer/BitTwiddle.java @@ -56,6 +56,21 @@ public class BitTwiddle { if (lowestOneBit(MIN_VALUE) != MIN_VALUE) throw new RuntimeException("f"); + for (int i = 0; i < N; i++) { + int x = rnd.nextInt(); + + String expected = new StringBuilder() + .append(leftpad(toBinaryString(x), 32)) + .reverse().toString(); + + String actual = leftpad(toBinaryString(reverse(x)), 32); + + if (!expected.equals(actual)) { + throw new RuntimeException("reverse: \n" + + expected + " \n" + actual); + } + } + for (int i = 0; i < N; i++) { int x = rnd.nextInt(); if (highestOneBit(x) != reverse(lowestOneBit(reverse(x)))) @@ -136,4 +151,12 @@ public class BitTwiddle { throw new RuntimeException("z: " + toHexString(x)); } } + + private static String leftpad(String s, int width) { + String r = s; + for (int c = 0; c < width - s.length(); c++) { + r = "0" + r; + } + return r; + } } diff --git a/jdk/test/java/lang/Long/BitTwiddle.java b/jdk/test/java/lang/Long/BitTwiddle.java index 185a473b2d9..d3833ae042c 100644 --- a/jdk/test/java/lang/Long/BitTwiddle.java +++ b/jdk/test/java/lang/Long/BitTwiddle.java @@ -56,6 +56,21 @@ public class BitTwiddle { if (lowestOneBit(MIN_VALUE) != MIN_VALUE) throw new RuntimeException("f"); + for (int i = 0; i < N; i++) { + long x = rnd.nextLong(); + + String expected = new StringBuilder() + .append(leftpad(toBinaryString(x), 64)) + .reverse().toString(); + + String actual = leftpad(toBinaryString(reverse(x)), 64); + + if (!expected.equals(actual)) { + throw new RuntimeException("reverse: \n" + + expected + " \n" + actual); + } + } + for (int i = 0; i < N; i++) { long x = rnd.nextLong(); if (highestOneBit(x) != reverse(lowestOneBit(reverse(x)))) @@ -136,4 +151,12 @@ public class BitTwiddle { throw new RuntimeException("z: " + toHexString(x)); } } + + private static String leftpad(String s, int width) { + String r = s; + for (int c = 0; c < width - s.length(); c++) { + r = "0" + r; + } + return r; + } } From 91cb8b5fc8680dba4bf6677f989e8fa3fc6ee830 Mon Sep 17 00:00:00 2001 From: Claes Redestad Date: Tue, 10 May 2016 13:33:31 +0200 Subject: [PATCH 42/62] 8156560: Remove AddJsum Reviewed-by: alanb, erikj --- jdk/make/Tools.gmk | 4 - .../classes/build/tools/addjsum/AddJsum.java | 95 ------------------- 2 files changed, 99 deletions(-) delete mode 100644 jdk/make/src/classes/build/tools/addjsum/AddJsum.java diff --git a/jdk/make/Tools.gmk b/jdk/make/Tools.gmk index 62e5f3042e2..384ca5931de 100644 --- a/jdk/make/Tools.gmk +++ b/jdk/make/Tools.gmk @@ -37,10 +37,6 @@ BUILD_TOOLS_JDK := $(call SetupJavaCompilationCompileTarget, \ ################################################################################ -# Add a checksum ("jsum") to the end of a text file. Prevents trivial tampering with class lists. -TOOL_ADDJSUM = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ - build.tools.addjsum.AddJsum - ifeq ($(BOOT_JDK_MODULAR), true) COMPILEFONTCONFIG_ADD_EXPORTS := -XaddExports:java.desktop/sun.awt=ALL-UNNAMED endif diff --git a/jdk/make/src/classes/build/tools/addjsum/AddJsum.java b/jdk/make/src/classes/build/tools/addjsum/AddJsum.java deleted file mode 100644 index d8bbe1e7dbb..00000000000 --- a/jdk/make/src/classes/build/tools/addjsum/AddJsum.java +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Copyright (c) 2003, 2013, 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 build.tools.addjsum; - -import java.io.*; -import java.util.regex.*; - -/** Adds a checksum ("jsum") to the end of a text file. The algorithm - used is known to the JVM and prevents trivial tampering with the - class list used for class data sharing. -*/ - -public class AddJsum { - private static final long JSUM_SEED = 0xCAFEBABEBABECAFEL; - - public static void main(String[] args) throws Exception { - if (args.length != 2) { - System.err.println("Usage: java AddJsum [input file name] [output file name]"); - System.exit(1); - } - - try { - File inFile = new File(args[0]); - File outFile = new File(args[1]); - BufferedReader reader = new BufferedReader(new FileReader(inFile)); - BufferedWriter writer = new BufferedWriter(new FileWriter(outFile)); - Pattern p = Pattern.compile("# [0-9A-Fa-f]*"); - long computedJsum = JSUM_SEED; - - String line = null; - while ((line = reader.readLine()) != null) { - if (line.length() > 0 && line.charAt(0) == '#') { - Matcher m = p.matcher(line); - if (!m.matches()) { - writer.write(line); - writer.newLine(); - } - } else { - computedJsum = jsum(computedJsum, line); - writer.write(line); - writer.newLine(); - } - } - String hex = Long.toHexString(computedJsum); - int diff = 16 - hex.length(); - for (int i = 0; i < diff; i++) { - hex = "0" + hex; - } - writer.write("# " + hex); - writer.newLine(); - reader.close(); - writer.close(); - } catch (IOException e) { - System.err.println("Error reading or writing file"); - throw(e); - } - } - - private static long jsum(long start, String str) { - long h = start; - int len = str.length(); - for (int i = 0; i < len; i++) { - char c = str.charAt(i); - if (c <= ' ') { - /* Skip spaces and control characters */ - continue; - } - h = 31 * h + c; - } - return h; - } -} From 967a686e709358669fb81e6a9046b62ec753fc60 Mon Sep 17 00:00:00 2001 From: Claes Redestad Date: Tue, 10 May 2016 14:52:31 +0200 Subject: [PATCH 43/62] 8156561: Remove makeClasslist.js Reviewed-by: erikj, chegar --- .../tools/makeclasslist/makeClasslist.js | 62 ------------------- 1 file changed, 62 deletions(-) delete mode 100644 jdk/make/non-build-utils/src/build/tools/makeclasslist/makeClasslist.js diff --git a/jdk/make/non-build-utils/src/build/tools/makeclasslist/makeClasslist.js b/jdk/make/non-build-utils/src/build/tools/makeclasslist/makeClasslist.js deleted file mode 100644 index 3c5198949f3..00000000000 --- a/jdk/make/non-build-utils/src/build/tools/makeclasslist/makeClasslist.js +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Copyright (c) 2015, 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. - */ - -/** - * This tool is used to help create the class list for class data sharing. - * - * The classlist is produced internally by first running a select number of - * startup benchmarks with the -XX:DumpLoadedClassList= option, then - * running this tool in the following fashion to produce a complete classlist: - * - * jjs -scripting makeClasslist.js -- list1 list2 list3 > classlist.platform - * - * The lists should be listed in roughly smallest to largest order based on - * application size. - * - * After generating the classlist it's necessary to add a checksum (using - * AddJsum.java) before checking it into the workspace as the corresponding - * platform-specific classlist, such as make/data/classlist/classlist.linux - */ -"use strict"; -var classlist = []; -var seenClasses = {}; - -for (var a in $ARG) { - var arg = $ARG[a]; - - var classes = readFully(arg).replace(/[\r\n]+/g, "\n").split("\n"); - - for (var c in classes) { - var clazz = classes[c]; - if (clazz !== "" && seenClasses[clazz] === undefined) { - seenClasses[clazz] = clazz; - classlist.push(clazz); - } - } -} - -for (c in classlist) { - print(classlist[c]); -} From fcf085c678ced86cf9298bc41e87ba23466d759b Mon Sep 17 00:00:00 2001 From: Ivan Gerasimov Date: Tue, 10 May 2016 17:16:55 +0300 Subject: [PATCH 44/62] 8156661: Handful of typos in javadoc Reviewed-by: prappo, rriggs --- .../share/classes/java/lang/Integer.java | 6 +++--- .../java/lang/module/ModuleDescriptor.java | 2 +- .../share/classes/java/lang/reflect/Field.java | 2 +- .../reflect/InaccessibleObjectException.java | 4 ++-- .../share/classes/java/math/BigInteger.java | 2 +- .../classes/java/net/InetSocketAddress.java | 2 +- .../share/classes/java/net/URLDecoder.java | 4 ++-- .../share/classes/java/net/URLEncoder.java | 2 +- .../InvalidAlgorithmParameterException.java | 4 ++-- .../java/security/InvalidKeyException.java | 4 ++-- .../java/security/ProtectionDomain.java | 2 +- .../share/classes/java/security/Provider.java | 2 +- .../share/classes/java/security/Security.java | 2 +- .../security/spec/InvalidKeySpecException.java | 4 ++-- .../share/classes/java/time/Instant.java | 18 +++++++++--------- .../share/classes/java/time/LocalDateTime.java | 2 +- .../share/classes/java/time/LocalTime.java | 2 +- .../classes/java/time/OffsetDateTime.java | 2 +- .../share/classes/java/time/OffsetTime.java | 2 +- .../share/classes/java/time/ZonedDateTime.java | 2 +- .../share/classes/java/util/Comparator.java | 2 +- .../share/classes/java/util/regex/Pattern.java | 2 +- .../callback/UnsupportedCallbackException.java | 2 +- .../share/classes/sun/net/ftp/FtpClient.java | 2 +- .../provider/certpath/OCSPNonceExtension.java | 8 ++++---- .../sun/security/ssl/SSLSocketInputRecord.java | 2 +- .../javax/management/AttributeList.java | 2 +- .../javax/management/MBeanFeatureInfo.java | 2 +- .../classes/javax/management/MBeanInfo.java | 2 +- .../share/classes/sun/management/Sensor.java | 2 +- .../counter/perf/InstrumentationException.java | 4 ++-- .../classes/com/sun/jndi/ldap/EventQueue.java | 2 +- .../javax/naming/event/EventContext.java | 6 +++--- .../javax/naming/event/NamingListener.java | 2 +- .../ldap/UnsolicitedNotificationListener.java | 4 ++-- .../security/auth/kerberos/EncryptionKey.java | 2 +- .../classes/com/sun/rowset/JdbcRowSetImpl.java | 10 +++++----- .../sun/rowset/internal/SyncResolverImpl.java | 2 +- .../classes/java/sql/CallableStatement.java | 4 ++-- .../security/encryption/AgreementMethod.java | 4 ++-- .../com/sun/jdi/InvalidModuleException.java | 4 ++-- 41 files changed, 70 insertions(+), 70 deletions(-) diff --git a/jdk/src/java.base/share/classes/java/lang/Integer.java b/jdk/src/java.base/share/classes/java/lang/Integer.java index 4dd5f9ee4da..8164b20d77e 100644 --- a/jdk/src/java.base/share/classes/java/lang/Integer.java +++ b/jdk/src/java.base/share/classes/java/lang/Integer.java @@ -1221,13 +1221,13 @@ public final class Integer extends Number implements Comparable { } /** - * Returns a hash code for a {@code int} value; compatible with + * Returns a hash code for an {@code int} value; compatible with * {@code Integer.hashCode()}. * * @param value the value to hash * @since 1.8 * - * @return a hash code value for a {@code int} value. + * @return a hash code value for an {@code int} value. */ public static int hashCode(int value) { return value; @@ -1596,7 +1596,7 @@ public final class Integer extends Number implements Comparable { @Native public static final int SIZE = 32; /** - * The number of bytes used to represent a {@code int} value in two's + * The number of bytes used to represent an {@code int} value in two's * complement binary form. * * @since 1.8 diff --git a/jdk/src/java.base/share/classes/java/lang/module/ModuleDescriptor.java b/jdk/src/java.base/share/classes/java/lang/module/ModuleDescriptor.java index 7c14e386d53..4f45dc34a56 100644 --- a/jdk/src/java.base/share/classes/java/lang/module/ModuleDescriptor.java +++ b/jdk/src/java.base/share/classes/java/lang/module/ModuleDescriptor.java @@ -318,7 +318,7 @@ public class ModuleDescriptor /** * Tests this module export for equality with the given object. * - *

    If the given object is not a {@code Exports} then this method + *

    If the given object is not an {@code Exports} then this method * returns {@code false}. Two module exports objects are equal if the * package names are equal and the set of target module names is equal. *

    diff --git a/jdk/src/java.base/share/classes/java/lang/reflect/Field.java b/jdk/src/java.base/share/classes/java/lang/reflect/Field.java index 862de42638c..7474f59d923 100644 --- a/jdk/src/java.base/share/classes/java/lang/reflect/Field.java +++ b/jdk/src/java.base/share/classes/java/lang/reflect/Field.java @@ -903,7 +903,7 @@ class Field extends AccessibleObject implements Member { * Sets the value of a field as an {@code int} on the specified object. * This method is equivalent to * {@code set(obj, iObj)}, - * where {@code iObj} is a {@code Integer} object and + * where {@code iObj} is an {@code Integer} object and * {@code iObj.intValue() == i}. * * @param obj the object whose field should be modified diff --git a/jdk/src/java.base/share/classes/java/lang/reflect/InaccessibleObjectException.java b/jdk/src/java.base/share/classes/java/lang/reflect/InaccessibleObjectException.java index d44d5899bde..34db5150f85 100644 --- a/jdk/src/java.base/share/classes/java/lang/reflect/InaccessibleObjectException.java +++ b/jdk/src/java.base/share/classes/java/lang/reflect/InaccessibleObjectException.java @@ -36,13 +36,13 @@ public class InaccessibleObjectException extends RuntimeException { private static final long serialVersionUID = 4158786093378140901L; /** - * Constructs a {@code InaccessibleObjectException} with no detail message. + * Constructs an {@code InaccessibleObjectException} with no detail message. */ public InaccessibleObjectException() { } /** - * Constructs a {@code InaccessibleObjectException} with the given detail + * Constructs an {@code InaccessibleObjectException} with the given detail * message. * * @param msg diff --git a/jdk/src/java.base/share/classes/java/math/BigInteger.java b/jdk/src/java.base/share/classes/java/math/BigInteger.java index 14f3b54737a..c89aa09698d 100644 --- a/jdk/src/java.base/share/classes/java/math/BigInteger.java +++ b/jdk/src/java.base/share/classes/java/math/BigInteger.java @@ -4676,7 +4676,7 @@ public class BigInteger extends Number implements Comparable { * * @return this {@code BigInteger} converted to an {@code int}. * @throws ArithmeticException if the value of {@code this} will - * not exactly fit in a {@code int}. + * not exactly fit in an {@code int}. * @see BigInteger#intValue * @since 1.8 */ diff --git a/jdk/src/java.base/share/classes/java/net/InetSocketAddress.java b/jdk/src/java.base/share/classes/java/net/InetSocketAddress.java index 8e2a2fc925c..8bb68ff1ea3 100644 --- a/jdk/src/java.base/share/classes/java/net/InetSocketAddress.java +++ b/jdk/src/java.base/share/classes/java/net/InetSocketAddress.java @@ -246,7 +246,7 @@ public class InetSocketAddress * the range of valid port values, or if the hostname * parameter is {@code null}. * @see #isUnresolved() - * @return a {@code InetSocketAddress} representing the unresolved + * @return an {@code InetSocketAddress} representing the unresolved * socket address * @since 1.5 */ diff --git a/jdk/src/java.base/share/classes/java/net/URLDecoder.java b/jdk/src/java.base/share/classes/java/net/URLDecoder.java index 9aa5ddc2039..0832d9161d6 100644 --- a/jdk/src/java.base/share/classes/java/net/URLDecoder.java +++ b/jdk/src/java.base/share/classes/java/net/URLDecoder.java @@ -106,8 +106,8 @@ public class URLDecoder { } /** - * Decodes a {@code application/x-www-form-urlencoded} string using a specific - * encoding scheme. + * Decodes an {@code application/x-www-form-urlencoded} string using + * a specific encoding scheme. * The supplied encoding is used to determine * what characters are represented by any consecutive sequences of the * form "{@code %xy}". diff --git a/jdk/src/java.base/share/classes/java/net/URLEncoder.java b/jdk/src/java.base/share/classes/java/net/URLEncoder.java index 91bc9ecf273..81eaa957cca 100644 --- a/jdk/src/java.base/share/classes/java/net/URLEncoder.java +++ b/jdk/src/java.base/share/classes/java/net/URLEncoder.java @@ -225,7 +225,7 @@ public class URLEncoder { /* * If this character represents the start of a Unicode * surrogate pair, then pass in two characters. It's not - * clear what should be done if a bytes reserved in the + * clear what should be done if a byte reserved in the * surrogate pairs range occurs outside of a legal * surrogate pair. For now, just treat it as if it were * any other character. diff --git a/jdk/src/java.base/share/classes/java/security/InvalidAlgorithmParameterException.java b/jdk/src/java.base/share/classes/java/security/InvalidAlgorithmParameterException.java index 559a8beed09..9636fcb76ce 100644 --- a/jdk/src/java.base/share/classes/java/security/InvalidAlgorithmParameterException.java +++ b/jdk/src/java.base/share/classes/java/security/InvalidAlgorithmParameterException.java @@ -65,7 +65,7 @@ extends GeneralSecurityException { } /** - * Creates a {@code InvalidAlgorithmParameterException} with the + * Creates an {@code InvalidAlgorithmParameterException} with the * specified detail message and cause. * * @param message the detail message (which is saved for later retrieval @@ -80,7 +80,7 @@ extends GeneralSecurityException { } /** - * Creates a {@code InvalidAlgorithmParameterException} with the + * Creates an {@code InvalidAlgorithmParameterException} with the * specified cause and a detail message of * {@code (cause==null ? null : cause.toString())} * (which typically contains the class and detail message of diff --git a/jdk/src/java.base/share/classes/java/security/InvalidKeyException.java b/jdk/src/java.base/share/classes/java/security/InvalidKeyException.java index 35fc64c3d9e..2f7568713c7 100644 --- a/jdk/src/java.base/share/classes/java/security/InvalidKeyException.java +++ b/jdk/src/java.base/share/classes/java/security/InvalidKeyException.java @@ -58,7 +58,7 @@ public class InvalidKeyException extends KeyException { } /** - * Creates a {@code InvalidKeyException} with the specified + * Creates an {@code InvalidKeyException} with the specified * detail message and cause. * * @param message the detail message (which is saved for later retrieval @@ -73,7 +73,7 @@ public class InvalidKeyException extends KeyException { } /** - * Creates a {@code InvalidKeyException} with the specified cause + * Creates an {@code InvalidKeyException} with the specified cause * and a detail message of {@code (cause==null ? null : cause.toString())} * (which typically contains the class and detail message of * {@code cause}). diff --git a/jdk/src/java.base/share/classes/java/security/ProtectionDomain.java b/jdk/src/java.base/share/classes/java/security/ProtectionDomain.java index c7a0893b7d3..c4a03166990 100644 --- a/jdk/src/java.base/share/classes/java/security/ProtectionDomain.java +++ b/jdk/src/java.base/share/classes/java/security/ProtectionDomain.java @@ -144,7 +144,7 @@ public class ProtectionDomain { /** * Creates a new ProtectionDomain with the given CodeSource and * Permissions. If the permissions object is not null, then - * {@code setReadOnly())} will be called on the passed in + * {@code setReadOnly()} will be called on the passed in * Permissions object. The only permissions granted to this domain * are the ones specified; the current Policy will not be consulted. * diff --git a/jdk/src/java.base/share/classes/java/security/Provider.java b/jdk/src/java.base/share/classes/java/security/Provider.java index 7e3249cec18..9ecc8ffe6ba 100644 --- a/jdk/src/java.base/share/classes/java/security/Provider.java +++ b/jdk/src/java.base/share/classes/java/security/Provider.java @@ -1809,7 +1809,7 @@ public abstract class Provider extends Properties { } /** - * Return whether this service has its Supported* properties for + * Return whether this service has its supported properties for * keys defined. Parses the attributes if not yet initialized. */ private boolean hasKeyAttributes() { diff --git a/jdk/src/java.base/share/classes/java/security/Security.java b/jdk/src/java.base/share/classes/java/security/Security.java index 7dc92f2ffde..49b7e991b40 100644 --- a/jdk/src/java.base/share/classes/java/security/Security.java +++ b/jdk/src/java.base/share/classes/java/security/Security.java @@ -549,7 +549,7 @@ public final class Security { /** * Returns an array containing all installed providers that satisfy the - * specified* selection criteria, or null if no such providers have been + * specified selection criteria, or null if no such providers have been * installed. The returned providers are ordered * according to their * {@linkplain #insertProviderAt(java.security.Provider, int) diff --git a/jdk/src/java.base/share/classes/java/security/spec/InvalidKeySpecException.java b/jdk/src/java.base/share/classes/java/security/spec/InvalidKeySpecException.java index 4655c4abe0c..4439e00f054 100644 --- a/jdk/src/java.base/share/classes/java/security/spec/InvalidKeySpecException.java +++ b/jdk/src/java.base/share/classes/java/security/spec/InvalidKeySpecException.java @@ -63,7 +63,7 @@ public class InvalidKeySpecException extends GeneralSecurityException { } /** - * Creates a {@code InvalidKeySpecException} with the specified + * Creates an {@code InvalidKeySpecException} with the specified * detail message and cause. * * @param message the detail message (which is saved for later retrieval @@ -78,7 +78,7 @@ public class InvalidKeySpecException extends GeneralSecurityException { } /** - * Creates a {@code InvalidKeySpecException} with the specified cause + * Creates an {@code InvalidKeySpecException} with the specified cause * and a detail message of {@code (cause==null ? null : cause.toString())} * (which typically contains the class and detail message of * {@code cause}). diff --git a/jdk/src/java.base/share/classes/java/time/Instant.java b/jdk/src/java.base/share/classes/java/time/Instant.java index 75ed2c32039..84056b75461 100644 --- a/jdk/src/java.base/share/classes/java/time/Instant.java +++ b/jdk/src/java.base/share/classes/java/time/Instant.java @@ -799,33 +799,33 @@ public final class Instant * The supported fields behave as follows: *
      *
    • {@code NANOS} - - * Returns a {@code Instant} with the specified number of nanoseconds added. + * Returns an {@code Instant} with the specified number of nanoseconds added. * This is equivalent to {@link #plusNanos(long)}. *
    • {@code MICROS} - - * Returns a {@code Instant} with the specified number of microseconds added. + * Returns an {@code Instant} with the specified number of microseconds added. * This is equivalent to {@link #plusNanos(long)} with the amount * multiplied by 1,000. *
    • {@code MILLIS} - - * Returns a {@code Instant} with the specified number of milliseconds added. + * Returns an {@code Instant} with the specified number of milliseconds added. * This is equivalent to {@link #plusNanos(long)} with the amount * multiplied by 1,000,000. *
    • {@code SECONDS} - - * Returns a {@code Instant} with the specified number of seconds added. + * Returns an {@code Instant} with the specified number of seconds added. * This is equivalent to {@link #plusSeconds(long)}. *
    • {@code MINUTES} - - * Returns a {@code Instant} with the specified number of minutes added. + * Returns an {@code Instant} with the specified number of minutes added. * This is equivalent to {@link #plusSeconds(long)} with the amount * multiplied by 60. *
    • {@code HOURS} - - * Returns a {@code Instant} with the specified number of hours added. + * Returns an {@code Instant} with the specified number of hours added. * This is equivalent to {@link #plusSeconds(long)} with the amount * multiplied by 3,600. *
    • {@code HALF_DAYS} - - * Returns a {@code Instant} with the specified number of half-days added. + * Returns an {@code Instant} with the specified number of half-days added. * This is equivalent to {@link #plusSeconds(long)} with the amount * multiplied by 43,200 (12 hours). *
    • {@code DAYS} - - * Returns a {@code Instant} with the specified number of days added. + * Returns an {@code Instant} with the specified number of days added. * This is equivalent to {@link #plusSeconds(long)} with the amount * multiplied by 86,400 (24 hours). *
    @@ -958,7 +958,7 @@ public final class Instant /** * Returns a copy of this instant with the specified amount subtracted. *

    - * This returns a {@code Instant}, based on this one, with the amount + * This returns an {@code Instant}, based on this one, with the amount * in terms of the unit subtracted. If it is not possible to subtract the amount, * because the unit is not supported or for some other reason, an exception is thrown. *

    diff --git a/jdk/src/java.base/share/classes/java/time/LocalDateTime.java b/jdk/src/java.base/share/classes/java/time/LocalDateTime.java index b9cdb3e2047..2195cae5154 100644 --- a/jdk/src/java.base/share/classes/java/time/LocalDateTime.java +++ b/jdk/src/java.base/share/classes/java/time/LocalDateTime.java @@ -665,7 +665,7 @@ public final class LocalDateTime * The {@link #isSupported(TemporalField) supported fields} will return valid * values based on this date-time, except {@code NANO_OF_DAY}, {@code MICRO_OF_DAY}, * {@code EPOCH_DAY} and {@code PROLEPTIC_MONTH} which are too large to fit in - * an {@code int} and throw a {@code UnsupportedTemporalTypeException}. + * an {@code int} and throw an {@code UnsupportedTemporalTypeException}. * All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}. *

    * If the field is not a {@code ChronoField}, then the result of this method diff --git a/jdk/src/java.base/share/classes/java/time/LocalTime.java b/jdk/src/java.base/share/classes/java/time/LocalTime.java index 7cd4adf693f..b951c877680 100644 --- a/jdk/src/java.base/share/classes/java/time/LocalTime.java +++ b/jdk/src/java.base/share/classes/java/time/LocalTime.java @@ -619,7 +619,7 @@ public final class LocalTime * If the field is a {@link ChronoField} then the query is implemented here. * The {@link #isSupported(TemporalField) supported fields} will return valid * values based on this time, except {@code NANO_OF_DAY} and {@code MICRO_OF_DAY} - * which are too large to fit in an {@code int} and throw a {@code UnsupportedTemporalTypeException}. + * which are too large to fit in an {@code int} and throw an {@code UnsupportedTemporalTypeException}. * All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}. *

    * If the field is not a {@code ChronoField}, then the result of this method diff --git a/jdk/src/java.base/share/classes/java/time/OffsetDateTime.java b/jdk/src/java.base/share/classes/java/time/OffsetDateTime.java index 1ee62411ab6..34c70bce3d7 100644 --- a/jdk/src/java.base/share/classes/java/time/OffsetDateTime.java +++ b/jdk/src/java.base/share/classes/java/time/OffsetDateTime.java @@ -576,7 +576,7 @@ public final class OffsetDateTime * The {@link #isSupported(TemporalField) supported fields} will return valid * values based on this date-time, except {@code NANO_OF_DAY}, {@code MICRO_OF_DAY}, * {@code EPOCH_DAY}, {@code PROLEPTIC_MONTH} and {@code INSTANT_SECONDS} which are too - * large to fit in an {@code int} and throw a {@code UnsupportedTemporalTypeException}. + * large to fit in an {@code int} and throw an {@code UnsupportedTemporalTypeException}. * All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}. *

    * If the field is not a {@code ChronoField}, then the result of this method diff --git a/jdk/src/java.base/share/classes/java/time/OffsetTime.java b/jdk/src/java.base/share/classes/java/time/OffsetTime.java index 1df445da650..cbfeb19e4d4 100644 --- a/jdk/src/java.base/share/classes/java/time/OffsetTime.java +++ b/jdk/src/java.base/share/classes/java/time/OffsetTime.java @@ -481,7 +481,7 @@ public final class OffsetTime * If the field is a {@link ChronoField} then the query is implemented here. * The {@link #isSupported(TemporalField) supported fields} will return valid * values based on this time, except {@code NANO_OF_DAY} and {@code MICRO_OF_DAY} - * which are too large to fit in an {@code int} and throw a {@code UnsupportedTemporalTypeException}. + * which are too large to fit in an {@code int} and throw an {@code UnsupportedTemporalTypeException}. * All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}. *

    * If the field is not a {@code ChronoField}, then the result of this method diff --git a/jdk/src/java.base/share/classes/java/time/ZonedDateTime.java b/jdk/src/java.base/share/classes/java/time/ZonedDateTime.java index 29869dbf37b..fa79b971eef 100644 --- a/jdk/src/java.base/share/classes/java/time/ZonedDateTime.java +++ b/jdk/src/java.base/share/classes/java/time/ZonedDateTime.java @@ -793,7 +793,7 @@ public final class ZonedDateTime * The {@link #isSupported(TemporalField) supported fields} will return valid * values based on this date-time, except {@code NANO_OF_DAY}, {@code MICRO_OF_DAY}, * {@code EPOCH_DAY}, {@code PROLEPTIC_MONTH} and {@code INSTANT_SECONDS} which are too - * large to fit in an {@code int} and throw a {@code UnsupportedTemporalTypeException}. + * large to fit in an {@code int} and throw an {@code UnsupportedTemporalTypeException}. * All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}. *

    * If the field is not a {@code ChronoField}, then the result of this method diff --git a/jdk/src/java.base/share/classes/java/util/Comparator.java b/jdk/src/java.base/share/classes/java/util/Comparator.java index 9afb1c4e4c9..ade582dbd3b 100644 --- a/jdk/src/java.base/share/classes/java/util/Comparator.java +++ b/jdk/src/java.base/share/classes/java/util/Comparator.java @@ -267,7 +267,7 @@ public interface Comparator { /** * Returns a lexicographic-order comparator with a function that - * extracts a {@code int} sort key. + * extracts an {@code int} sort key. * * @implSpec This default implementation behaves as if {@code * thenComparing(comparingInt(keyExtractor))}. diff --git a/jdk/src/java.base/share/classes/java/util/regex/Pattern.java b/jdk/src/java.base/share/classes/java/util/regex/Pattern.java index 6c5c9e38cca..e4045f2bd12 100644 --- a/jdk/src/java.base/share/classes/java/util/regex/Pattern.java +++ b/jdk/src/java.base/share/classes/java/util/regex/Pattern.java @@ -469,7 +469,7 @@ import java.util.stream.StreamSupport; * *

  • A line-separator character ('\u2028'), or * - *
  • A paragraph-separator character ('\u2029). + *
  • A paragraph-separator character ('\u2029'). * * *

    If {@link #UNIX_LINES} mode is activated, then the only line terminators diff --git a/jdk/src/java.base/share/classes/javax/security/auth/callback/UnsupportedCallbackException.java b/jdk/src/java.base/share/classes/javax/security/auth/callback/UnsupportedCallbackException.java index 9fb40cb575b..605a3e35ebb 100644 --- a/jdk/src/java.base/share/classes/javax/security/auth/callback/UnsupportedCallbackException.java +++ b/jdk/src/java.base/share/classes/javax/security/auth/callback/UnsupportedCallbackException.java @@ -40,7 +40,7 @@ public class UnsupportedCallbackException extends Exception { private Callback callback; /** - * Constructs a {@code UnsupportedCallbackException} + * Constructs an {@code UnsupportedCallbackException} * with no detail message. * * @param callback the unrecognized {@code Callback}. diff --git a/jdk/src/java.base/share/classes/sun/net/ftp/FtpClient.java b/jdk/src/java.base/share/classes/sun/net/ftp/FtpClient.java index 73df120e340..0f53a22ba1d 100644 --- a/jdk/src/java.base/share/classes/sun/net/ftp/FtpClient.java +++ b/jdk/src/java.base/share/classes/sun/net/ftp/FtpClient.java @@ -784,7 +784,7 @@ public abstract class FtpClient implements java.io.Closeable { * * @param path the pathname of the directory to list or {@code null} * for the current working directoty. - * @return a {@code Iterator} of files or {@code null} if the + * @return an {@code Iterator} of files or {@code null} if the * command failed. * @throws IOException if an error occurred during the transmission * @see #setDirParser(FtpDirParser) diff --git a/jdk/src/java.base/share/classes/sun/security/provider/certpath/OCSPNonceExtension.java b/jdk/src/java.base/share/classes/sun/security/provider/certpath/OCSPNonceExtension.java index 3b74490bdf4..723dc242bf2 100644 --- a/jdk/src/java.base/share/classes/sun/security/provider/certpath/OCSPNonceExtension.java +++ b/jdk/src/java.base/share/classes/sun/security/provider/certpath/OCSPNonceExtension.java @@ -51,7 +51,7 @@ public final class OCSPNonceExtension extends Extension { private byte[] nonceData = null; /** - * Create a {@code OCSPNonceExtension} by providing the nonce length. + * Create an {@code OCSPNonceExtension} by providing the nonce length. * The criticality is set to false, and the OID for the extension will * be the value defined by "id-pkix-ocsp-nonce" from RFC 6960. * @@ -66,7 +66,7 @@ public final class OCSPNonceExtension extends Extension { } /** - * Create a {@code OCSPNonceExtension} by providing the nonce length and + * Create an {@code OCSPNonceExtension} by providing the nonce length and * criticality setting. The OID for the extension will * be the value defined by "id-pkix-ocsp-nonce" from RFC 6960. * @@ -96,7 +96,7 @@ public final class OCSPNonceExtension extends Extension { } /** - * Create a {@code OCSPNonceExtension} by providing a nonce value. + * Create an {@code OCSPNonceExtension} by providing a nonce value. * The criticality is set to false, and the OID for the extension will * be the value defined by "id-pkix-ocsp-nonce" from RFC 6960. * @@ -114,7 +114,7 @@ public final class OCSPNonceExtension extends Extension { } /** - * Create a {@code OCSPNonceExtension} by providing a nonce value and + * Create an {@code OCSPNonceExtension} by providing a nonce value and * criticality setting. The OID for the extension will * be the value defined by "id-pkix-ocsp-nonce" from RFC 6960. * diff --git a/jdk/src/java.base/share/classes/sun/security/ssl/SSLSocketInputRecord.java b/jdk/src/java.base/share/classes/sun/security/ssl/SSLSocketInputRecord.java index f0bd63bf428..bec5d1cbc46 100644 --- a/jdk/src/java.base/share/classes/sun/security/ssl/SSLSocketInputRecord.java +++ b/jdk/src/java.base/share/classes/sun/security/ssl/SSLSocketInputRecord.java @@ -123,7 +123,7 @@ final class SSLSocketInputRecord extends InputRecord implements SSLRecord { */ // // Short header is using here. We reverse the code here - // in case it it used in the future. + // in case it is used in the future. // // int mask = (isShort ? 0x7F : 0x3F); // len = ((byteZero & mask) << 8) + diff --git a/jdk/src/java.management/share/classes/javax/management/AttributeList.java b/jdk/src/java.management/share/classes/javax/management/AttributeList.java index b9426b1f5d3..74c9b860f91 100644 --- a/jdk/src/java.management/share/classes/javax/management/AttributeList.java +++ b/jdk/src/java.management/share/classes/javax/management/AttributeList.java @@ -148,7 +148,7 @@ public class AttributeList extends ArrayList { *

    If this method has ever been called on a given * {@code AttributeList} instance, a subsequent attempt to add * an object to that instance which is not an {@code Attribute} - * will fail with a {@code IllegalArgumentException}. For compatibility + * will fail with an {@code IllegalArgumentException}. For compatibility * reasons, an {@code AttributeList} on which this method has never * been called does allow objects other than {@code Attribute}s to * be added.

    diff --git a/jdk/src/java.management/share/classes/javax/management/MBeanFeatureInfo.java b/jdk/src/java.management/share/classes/javax/management/MBeanFeatureInfo.java index abb04da8d02..996503f6137 100644 --- a/jdk/src/java.management/share/classes/javax/management/MBeanFeatureInfo.java +++ b/jdk/src/java.management/share/classes/javax/management/MBeanFeatureInfo.java @@ -215,7 +215,7 @@ public class MBeanFeatureInfo implements Serializable, DescriptorRead { *
      *
    • 1. The method {@link ObjectInputStream#readObject readObject()} * is called twice to obtain the field names (a {@code String[]}) and - * the field values (a {@code Object[]}) of the {@code descriptor}. + * the field values (an {@code Object[]}) of the {@code descriptor}. * The two obtained values then are used to construct * an {@link ImmutableDescriptor} instance for the field * {@code descriptor};
    • diff --git a/jdk/src/java.management/share/classes/javax/management/MBeanInfo.java b/jdk/src/java.management/share/classes/javax/management/MBeanInfo.java index 1357aad1f07..7cc00555f7a 100644 --- a/jdk/src/java.management/share/classes/javax/management/MBeanInfo.java +++ b/jdk/src/java.management/share/classes/javax/management/MBeanInfo.java @@ -670,7 +670,7 @@ public class MBeanInfo implements Cloneable, Serializable, DescriptorRead { *
        *
      • 1. The method {@link ObjectInputStream#readObject readObject()} * is called twice to obtain the field names (a {@code String[]}) and - * the field values (a {@code Object[]}) of the {@code descriptor}. + * the field values (an {@code Object[]}) of the {@code descriptor}. * The two obtained values then are used to construct * an {@link ImmutableDescriptor} instance for the field * {@code descriptor};
      • diff --git a/jdk/src/java.management/share/classes/sun/management/Sensor.java b/jdk/src/java.management/share/classes/sun/management/Sensor.java index 8b82b859d25..c2da61d174c 100644 --- a/jdk/src/java.management/share/classes/sun/management/Sensor.java +++ b/jdk/src/java.management/share/classes/sun/management/Sensor.java @@ -34,7 +34,7 @@ import java.util.HashMap; * An abstract sensor. * *

        - * A {@code AbstractSensor} object consists of two attributes: + * An {@code AbstractSensor} object consists of two attributes: *

          *
        • {@code on} is a boolean flag indicating if a sensor is * triggered. This flag will be set or cleared by the diff --git a/jdk/src/java.management/share/classes/sun/management/counter/perf/InstrumentationException.java b/jdk/src/java.management/share/classes/sun/management/counter/perf/InstrumentationException.java index e5c3e1f9930..00a4dede7d7 100644 --- a/jdk/src/java.management/share/classes/sun/management/counter/perf/InstrumentationException.java +++ b/jdk/src/java.management/share/classes/sun/management/counter/perf/InstrumentationException.java @@ -27,14 +27,14 @@ package sun.management.counter.perf; public class InstrumentationException extends RuntimeException { /** - * Constructs a {@code InstrumentationException} with no + * Constructs an {@code InstrumentationException} with no * detail message. */ public InstrumentationException() { } /** - * Constructs a {@code InstrumentationException} with a specified + * Constructs an {@code InstrumentationException} with a specified * detail message. * * @param message the detail message diff --git a/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/EventQueue.java b/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/EventQueue.java index 3df7dc6063c..737691f227e 100644 --- a/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/EventQueue.java +++ b/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/EventQueue.java @@ -78,7 +78,7 @@ final class EventQueue implements Runnable { * {@code UnsolicitedNotificationEvent}. * If it is a subclass of {@code NamingEvent}, all listeners must implement * the corresponding subinterface of {@code NamingListener}. - * For example, for a {@code ObjectAddedEvent}, all listeners must + * For example, for an {@code ObjectAddedEvent}, all listeners must * implement the {@code ObjectAddedListener} interface. * The current implementation does not check this before dispatching * the event. diff --git a/jdk/src/java.naming/share/classes/javax/naming/event/EventContext.java b/jdk/src/java.naming/share/classes/javax/naming/event/EventContext.java index 7266dbb758e..51a49e50d5d 100644 --- a/jdk/src/java.naming/share/classes/javax/naming/event/EventContext.java +++ b/jdk/src/java.naming/share/classes/javax/naming/event/EventContext.java @@ -56,7 +56,7 @@ import javax.naming.NamingException; *{@code NameNotFoundException}). *

          * An application can use the method {@code targetMustExist()} to check - * whether a {@code EventContext} supports registration + * whether an {@code EventContext} supports registration * of nonexistent targets. * *

          Event Source

          @@ -92,7 +92,7 @@ import javax.naming.NamingException; * which it invoked {@code addNamingListener()} (just as * it needs to keep a reference to the listener in order to remove it * later). It cannot expect to do a {@code lookup()} and get another instance of - * a {@code EventContext} on which to perform the deregistration. + * an {@code EventContext} on which to perform the deregistration. *

          Lifetime of Registration

          * A registered listener becomes deregistered when: *
            @@ -102,7 +102,7 @@ import javax.naming.NamingException; *
          • {@code Context.close()} is invoked on the {@code EventContext} * instance with which it has registered.
          - * Until that point, a {@code EventContext} instance that has outstanding + * Until that point, an {@code EventContext} instance that has outstanding * listeners will continue to exist and be maintained by the service provider. * *

          Listener Implementations

          diff --git a/jdk/src/java.naming/share/classes/javax/naming/event/NamingListener.java b/jdk/src/java.naming/share/classes/javax/naming/event/NamingListener.java index b59432a0791..e11501e06f8 100644 --- a/jdk/src/java.naming/share/classes/javax/naming/event/NamingListener.java +++ b/jdk/src/java.naming/share/classes/javax/naming/event/NamingListener.java @@ -40,7 +40,7 @@ package javax.naming.event; * from the {@code EventContext} with which it has registered. *

          * For example, suppose a listener implements {@code ObjectChangeListener} and - * registers with a {@code EventContext}. + * registers with an {@code EventContext}. * Then, if the connection to the server is subsequently broken, * the listener will receive a {@code NamingExceptionEvent} and may * take some corrective action, such as notifying the user of the application. diff --git a/jdk/src/java.naming/share/classes/javax/naming/ldap/UnsolicitedNotificationListener.java b/jdk/src/java.naming/share/classes/javax/naming/ldap/UnsolicitedNotificationListener.java index fa5980b828c..57348a83e31 100644 --- a/jdk/src/java.naming/share/classes/javax/naming/ldap/UnsolicitedNotificationListener.java +++ b/jdk/src/java.naming/share/classes/javax/naming/ldap/UnsolicitedNotificationListener.java @@ -32,7 +32,7 @@ import javax.naming.event.NamingListener; * "Unsolicited notification" is defined in * RFC 2251. * It allows the server to send unsolicited notifications to the client. - * A {@code UnsolicitedNotificationListener} must: + * An {@code UnsolicitedNotificationListener} must: *

            *
          1. Implement this interface and its method *
          2. Implement {@code NamingListener.namingExceptionThrown()} so @@ -41,7 +41,7 @@ import javax.naming.event.NamingListener; *
          3. Register with the context using one of the {@code addNamingListener()} * methods from {@code EventContext} or {@code EventDirContext}. * Only the {@code NamingListener} argument of these methods are applicable; - * the rest are ignored for a {@code UnsolicitedNotificationListener}. + * the rest are ignored for an {@code UnsolicitedNotificationListener}. * (These arguments might be applicable to the listener if it implements * other listener interfaces). *
          diff --git a/jdk/src/java.security.jgss/share/classes/javax/security/auth/kerberos/EncryptionKey.java b/jdk/src/java.security.jgss/share/classes/javax/security/auth/kerberos/EncryptionKey.java index 41af8929e33..ab29e84bc2c 100644 --- a/jdk/src/java.security.jgss/share/classes/javax/security/auth/kerberos/EncryptionKey.java +++ b/jdk/src/java.security.jgss/share/classes/javax/security/auth/kerberos/EncryptionKey.java @@ -61,7 +61,7 @@ public final class EncryptionKey implements SecretKey { private transient boolean destroyed = false; /** - * Constructs a {@code EncryptionKey} from the given bytes and + * Constructs an {@code EncryptionKey} from the given bytes and * the key type. *

          * The contents of the byte array are copied; subsequent modification of diff --git a/jdk/src/java.sql.rowset/share/classes/com/sun/rowset/JdbcRowSetImpl.java b/jdk/src/java.sql.rowset/share/classes/com/sun/rowset/JdbcRowSetImpl.java index e3652e224fc..7e4cce214ae 100644 --- a/jdk/src/java.sql.rowset/share/classes/com/sun/rowset/JdbcRowSetImpl.java +++ b/jdk/src/java.sql.rowset/share/classes/com/sun/rowset/JdbcRowSetImpl.java @@ -3799,7 +3799,7 @@ public class JdbcRowSetImpl extends BaseRowSet implements JdbcRowSet, Joinable { * Retrieves the column id as {@code int} array that was set using * {@code setMatchColumn(int [])} for this rowset. * - * @return a {@code int} array object that contains the column ids + * @return an {@code int} array object that contains the column ids * for the rowset which has this as the match columns. * * @throws SQLException if an error occurs or column index is not set @@ -6226,7 +6226,7 @@ public class JdbcRowSetImpl extends BaseRowSet implements JdbcRowSet, Joinable { /** - * Sets the designated parameter to a {@code InputStream} object. The inputstream must contain the number + * Sets the designated parameter to an {@code InputStream} object. The inputstream must contain the number * of characters specified by length otherwise a {@code SQLException} will be * generated when the {@code PreparedStatement} is executed. * This method differs from the {@code setBinaryStream (int, InputStream, int)} @@ -6256,7 +6256,7 @@ public class JdbcRowSetImpl extends BaseRowSet implements JdbcRowSet, Joinable { } /** - * Sets the designated parameter to a {@code InputStream} object. + * Sets the designated parameter to an {@code InputStream} object. * This method differs from the {@code setBinaryStream (int, InputStream)} * This method differs from the {@code setBinaryStream (int, InputStream)} * method because it informs the driver that the parameter value should be @@ -6287,7 +6287,7 @@ public class JdbcRowSetImpl extends BaseRowSet implements JdbcRowSet, Joinable { } /** - * Sets the designated parameter to a {@code InputStream} object. The {@code inputstream} must contain the number + * Sets the designated parameter to an {@code InputStream} object. The {@code inputstream} must contain the number * of characters specified by length, otherwise a {@code SQLException} will be * generated when the {@code CallableStatement} is executed. * This method differs from the {@code setBinaryStream (int, InputStream, int)} @@ -6336,7 +6336,7 @@ public class JdbcRowSetImpl extends BaseRowSet implements JdbcRowSet, Joinable { } /** - * Sets the designated parameter to a {@code InputStream} object. + * Sets the designated parameter to an {@code InputStream} object. * This method differs from the {@code setBinaryStream (int, InputStream)} * method because it informs the driver that the parameter value should be * sent to the server as a {@code BLOB}. When the {@code setBinaryStream} method is used, diff --git a/jdk/src/java.sql.rowset/share/classes/com/sun/rowset/internal/SyncResolverImpl.java b/jdk/src/java.sql.rowset/share/classes/com/sun/rowset/internal/SyncResolverImpl.java index ebdb1c7054b..c9beb277b7d 100644 --- a/jdk/src/java.sql.rowset/share/classes/com/sun/rowset/internal/SyncResolverImpl.java +++ b/jdk/src/java.sql.rowset/share/classes/com/sun/rowset/internal/SyncResolverImpl.java @@ -4586,7 +4586,7 @@ public class SyncResolverImpl extends CachedRowSetImpl implements SyncResolver { * Retrieves the column id as {@code int} array that was set using * {@code setMatchColumn(int [])} for this rowset. * - * @return a {@code int} array object that contains the column ids + * @return an {@code int} array object that contains the column ids * for the rowset which has this as the match columns. * * @throws SQLException if an error occurs or column index is not set diff --git a/jdk/src/java.sql/share/classes/java/sql/CallableStatement.java b/jdk/src/java.sql/share/classes/java/sql/CallableStatement.java index 5446c6d615f..5ba89c7a2ea 100644 --- a/jdk/src/java.sql/share/classes/java/sql/CallableStatement.java +++ b/jdk/src/java.sql/share/classes/java/sql/CallableStatement.java @@ -1882,7 +1882,7 @@ public interface CallableStatement extends PreparedStatement { throws SQLException; /** - * Sets the designated parameter to a {@code InputStream} object. + * Sets the designated parameter to an {@code InputStream} object. * The Inputstream must contain the number * of characters specified by length, otherwise a SQLException will be * generated when the CallableStatement is executed. @@ -2379,7 +2379,7 @@ public interface CallableStatement extends PreparedStatement { throws SQLException; /** - * Sets the designated parameter to a {@code InputStream} object. + * Sets the designated parameter to an {@code InputStream} object. * This method differs from the setBinaryStream (int, InputStream) * method because it informs the driver that the parameter value should be * sent to the server as a BLOB. When the setBinaryStream method is used, diff --git a/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/encryption/AgreementMethod.java b/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/encryption/AgreementMethod.java index 27d2bea3693..ab90137df7e 100644 --- a/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/encryption/AgreementMethod.java +++ b/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/encryption/AgreementMethod.java @@ -101,7 +101,7 @@ public interface AgreementMethod { /** * Adds additional {@code AgreementMethod} information. * - * @param info a {@code Element} that represents additional information + * @param info an {@code Element} that represents additional information * specified by *

          {@code
                *     
          @@ -112,7 +112,7 @@ public interface AgreementMethod {
               /**
                * Removes additional {@code AgreementMethod} information.
                *
          -     * @param info a {@code Element} that represents additional information
          +     * @param info an {@code Element} that represents additional information
                * specified by
                *   
          {@code
                *     
          diff --git a/jdk/src/jdk.jdi/share/classes/com/sun/jdi/InvalidModuleException.java b/jdk/src/jdk.jdi/share/classes/com/sun/jdi/InvalidModuleException.java
          index 0256cd5e28a..ee49b7f623c 100644
          --- a/jdk/src/jdk.jdi/share/classes/com/sun/jdi/InvalidModuleException.java
          +++ b/jdk/src/jdk.jdi/share/classes/com/sun/jdi/InvalidModuleException.java
          @@ -36,14 +36,14 @@ public class InvalidModuleException extends RuntimeException {
               private static final long serialVersionUID = 7907359387320658039L;
           
               /**
          -     * Constructs a {@code InvalidModuleException} with no detail message.
          +     * Constructs an {@code InvalidModuleException} with no detail message.
                */
               public InvalidModuleException() {
                   super();
               }
           
               /**
          -     * Constructs a {@code InvalidModuleException} with the given detail
          +     * Constructs an {@code InvalidModuleException} with the given detail
                * message.
                *
                * @param msg
          
          From 772322c6faf3e4d5f6951f7ba49d5918f031f06c Mon Sep 17 00:00:00 2001
          From: Weijun Wang 
          Date: Wed, 11 May 2016 08:39:36 +0800
          Subject: [PATCH 45/62] 8156709: Cannot call setSeed on NativePRNG on Mac if
           EGD is /dev/urandom
          
          Reviewed-by: wetmore
          ---
           .../sun/security/provider/NativePRNG.java     |  3 +-
           .../SecureRandom/MacNativePRNGSetSeed.java    | 37 +++++++++++++++++++
           2 files changed, 39 insertions(+), 1 deletion(-)
           create mode 100644 jdk/test/java/security/SecureRandom/MacNativePRNGSetSeed.java
          
          diff --git a/jdk/src/java.base/unix/classes/sun/security/provider/NativePRNG.java b/jdk/src/java.base/unix/classes/sun/security/provider/NativePRNG.java
          index f19b7e48a48..46e6764a411 100644
          --- a/jdk/src/java.base/unix/classes/sun/security/provider/NativePRNG.java
          +++ b/jdk/src/java.base/unix/classes/sun/security/provider/NativePRNG.java
          @@ -469,7 +469,8 @@ public final class NativePRNG extends SecureRandomSpi {
                               try {
                                   seedOut.write(seed);
                               } catch (IOException e) {
          -                        throw new ProviderException("setSeed() failed", e);
          +                        // Ignored. On Mac OS X, /dev/urandom can be opened
          +                        // for write, but actual write is not permitted.
                               }
                           }
                           getMixRandom().engineSetSeed(seed);
          diff --git a/jdk/test/java/security/SecureRandom/MacNativePRNGSetSeed.java b/jdk/test/java/security/SecureRandom/MacNativePRNGSetSeed.java
          new file mode 100644
          index 00000000000..76475e86503
          --- /dev/null
          +++ b/jdk/test/java/security/SecureRandom/MacNativePRNGSetSeed.java
          @@ -0,0 +1,37 @@
          +/*
          + * Copyright (c) 2016, 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.
          + *
          + * 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.
          + */
          +
          +import java.security.SecureRandom;
          +
          +/* @test
          + * @bug 8156709
          + * @summary Cannot call setSeed on NativePRNG on Mac if EGD is /dev/urandom
          + * @requires os.name == "Mac OS X"
          + * @run main/othervm -Djava.security.egd=file:/dev/urandom MacNativePRNGSetSeed
          + */
          +public class MacNativePRNGSetSeed {
          +    public static void main(String[] args) throws Exception {
          +        SecureRandom sr = SecureRandom.getInstance("NativePRNG");
          +        sr.setSeed(1);
          +    }
          +}
          
          From b45ea8903ec290ab194d9ebe040bc43edd5dd0a3 Mon Sep 17 00:00:00 2001
          From: Xueming Shen 
          Date: Tue, 10 May 2016 21:19:25 -0700
          Subject: [PATCH 46/62] 6328855: String: Matches hangs at short and easy
           Strings containing \r \n 6192895: java.util.regex.Matcher: Performance issue
           6345469: java.util.regex.Matcher utilizes 100% of the CPU 6988218: RegEx
           matcher loops 6693451: RegEx matcher goes into infinite delay 7006761:
           Matcher.matches() has infinite loop 8140212: Slow performance of Matcher.find
           8151481: j.u.regex.Pattern cleanup 6609854: Regex does not match correctly
           for negative nested character classes 4916384: CANON_EQ supports only
           combining character sequences with non-spacing marks 4867170: Pattern doesn't
           work with composite character in CANON_EQ mode 6995635: CANON_EQ pattern flag
           is buggy 6728861: ExceptionInInitializerError is caught when the pattern has
           precomposed character 6736245: A character in Composition Exclusion Table
           does not match itself 7080302: the normalization in java regex pattern may
           have flaw
          
          Reviewed-by: rriggs, okutsu, alanb
          ---
           .../java/security/ProtectionDomain.java       |   11 +-
           .../java/security/SecureClassLoader.java      |   15 +-
           .../java/util/regex/CharPredicates.java       |  375 ++++
           .../classes/java/util/regex/IntHashSet.java   |   98 +
           .../classes/java/util/regex/Matcher.java      |   22 +
           .../classes/java/util/regex/Pattern.java      | 1580 ++++++++---------
           .../classes/java/util/regex/PrintPattern.java |  220 +++
           .../classes/java/util/regex/UnicodeProp.java  |  246 ---
           jdk/test/java/util/regex/RegExTest.java       |  223 ++-
           jdk/test/java/util/regex/TestCases.txt        |   65 +
           10 files changed, 1729 insertions(+), 1126 deletions(-)
           create mode 100644 jdk/src/java.base/share/classes/java/util/regex/CharPredicates.java
           create mode 100644 jdk/src/java.base/share/classes/java/util/regex/IntHashSet.java
           create mode 100644 jdk/src/java.base/share/classes/java/util/regex/PrintPattern.java
           delete mode 100644 jdk/src/java.base/share/classes/java/util/regex/UnicodeProp.java
          
          diff --git a/jdk/src/java.base/share/classes/java/security/ProtectionDomain.java b/jdk/src/java.base/share/classes/java/security/ProtectionDomain.java
          index c4a03166990..32cb2186a2e 100644
          --- a/jdk/src/java.base/share/classes/java/security/ProtectionDomain.java
          +++ b/jdk/src/java.base/share/classes/java/security/ProtectionDomain.java
          @@ -139,8 +139,6 @@ public class ProtectionDomain {
                */
               final Key key = new Key();
           
          -    private static final Debug debug = Debug.getInstance("domain");
          -
               /**
                * Creates a new ProtectionDomain with the given CodeSource and
                * Permissions. If the permissions object is not null, then
          @@ -338,6 +336,13 @@ public class ProtectionDomain {
                       " "+pc+"\n";
               }
           
          +    /*
          +     * holder class for the static field "debug" to delay its initialization
          +     */
          +    private static class DebugHolder {
          +        private static final Debug debug = Debug.getInstance("domain");
          +    }
          +
               /**
                * Return true (merge policy permissions) in the following cases:
                *
          @@ -359,7 +364,7 @@ public class ProtectionDomain {
                   if (sm == null) {
                       return true;
                   } else {
          -            if (debug != null) {
          +            if (DebugHolder.debug != null) {
                           if (sm.getClass().getClassLoader() == null &&
                               Policy.getPolicyNoCheck().getClass().getClassLoader()
                                                                           == null) {
          diff --git a/jdk/src/java.base/share/classes/java/security/SecureClassLoader.java b/jdk/src/java.base/share/classes/java/security/SecureClassLoader.java
          index eee1e0bb7fe..21b071f4061 100644
          --- a/jdk/src/java.base/share/classes/java/security/SecureClassLoader.java
          +++ b/jdk/src/java.base/share/classes/java/security/SecureClassLoader.java
          @@ -62,8 +62,6 @@ public class SecureClassLoader extends ClassLoader {
               private final Map pdcache
                       = new ConcurrentHashMap<>(11);
           
          -    private static final Debug debug = Debug.getInstance("scl");
          -
               static {
                   ClassLoader.registerAsParallelCapable();
               }
          @@ -202,6 +200,13 @@ public class SecureClassLoader extends ClassLoader {
                   return new Permissions(); // ProtectionDomain defers the binding
               }
           
          +    /*
          +     * holder class for the static field "debug" to delay its initialization
          +     */
          +    private static class DebugHolder {
          +        private static final Debug debug = Debug.getInstance("scl");
          +    }
          +
               /*
                * Returned cached ProtectionDomain for the specified CodeSource.
                */
          @@ -222,9 +227,9 @@ public class SecureClassLoader extends ClassLoader {
                                   = SecureClassLoader.this.getPermissions(cs);
                           ProtectionDomain pd = new ProtectionDomain(
                                   cs, perms, SecureClassLoader.this, null);
          -                if (debug != null) {
          -                    debug.println(" getPermissions " + pd);
          -                    debug.println("");
          +                if (DebugHolder.debug != null) {
          +                    DebugHolder.debug.println(" getPermissions " + pd);
          +                    DebugHolder.debug.println("");
                           }
                           return pd;
                       }
          diff --git a/jdk/src/java.base/share/classes/java/util/regex/CharPredicates.java b/jdk/src/java.base/share/classes/java/util/regex/CharPredicates.java
          new file mode 100644
          index 00000000000..0a873c774a9
          --- /dev/null
          +++ b/jdk/src/java.base/share/classes/java/util/regex/CharPredicates.java
          @@ -0,0 +1,375 @@
          +/*
          + * Copyright (c) 2011, 2016, 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 java.util.regex;
          +
          +import java.util.HashMap;
          +import java.util.Locale;
          +import java.util.regex.Pattern.CharPredicate;
          +import java.util.regex.Pattern.BmpCharPredicate;
          +
          +class CharPredicates {
          +
          +    static final CharPredicate ALPHABETIC  = Character::isAlphabetic;
          +
          +    // \p{gc=Decimal_Number}
          +    static final CharPredicate DIGIT       = Character::isDigit;
          +
          +    static final CharPredicate LETTER      = Character::isLetter;
          +
          +    static final CharPredicate IDEOGRAPHIC = Character::isIdeographic;
          +
          +    static final CharPredicate LOWERCASE   = Character::isLowerCase;
          +
          +    static final CharPredicate UPPERCASE   = Character::isUpperCase;
          +
          +    static final CharPredicate TITLECASE   = Character::isTitleCase;
          +
          +    // \p{Whitespace}
          +    static final CharPredicate WHITE_SPACE = ch ->
          +        ((((1 << Character.SPACE_SEPARATOR) |
          +           (1 << Character.LINE_SEPARATOR) |
          +           (1 << Character.PARAGRAPH_SEPARATOR)) >> Character.getType(ch)) & 1)
          +        != 0 || (ch >= 0x9 && ch <= 0xd) || (ch == 0x85);
          +
          +    // \p{gc=Control}
          +    static final CharPredicate CONTROL     = ch ->
          +        Character.getType(ch) == Character.CONTROL;
          +
          +    // \p{gc=Punctuation}
          +    static final CharPredicate PUNCTUATION = ch ->
          +        ((((1 << Character.CONNECTOR_PUNCTUATION) |
          +           (1 << Character.DASH_PUNCTUATION) |
          +           (1 << Character.START_PUNCTUATION) |
          +           (1 << Character.END_PUNCTUATION) |
          +           (1 << Character.OTHER_PUNCTUATION) |
          +           (1 << Character.INITIAL_QUOTE_PUNCTUATION) |
          +           (1 << Character.FINAL_QUOTE_PUNCTUATION)) >> Character.getType(ch)) & 1)
          +        != 0;
          +
          +    // \p{gc=Decimal_Number}
          +    // \p{Hex_Digit}    -> PropList.txt: Hex_Digit
          +    static final CharPredicate HEX_DIGIT = DIGIT.union(
          +        ch -> (ch >= 0x0030 && ch <= 0x0039) ||
          +              (ch >= 0x0041 && ch <= 0x0046) ||
          +              (ch >= 0x0061 && ch <= 0x0066) ||
          +              (ch >= 0xFF10 && ch <= 0xFF19) ||
          +              (ch >= 0xFF21 && ch <= 0xFF26) ||
          +              (ch >= 0xFF41 && ch <= 0xFF46));
          +
          +    static final CharPredicate ASSIGNED = ch ->
          +        Character.getType(ch) != Character.UNASSIGNED;
          +
          +    // PropList.txt:Noncharacter_Code_Point
          +    static final CharPredicate NONCHARACTER_CODE_POINT = ch ->
          +        (ch & 0xfffe) == 0xfffe || (ch >= 0xfdd0 && ch <= 0xfdef);
          +
          +    // \p{alpha}
          +    // \p{digit}
          +    static final CharPredicate ALNUM = ALPHABETIC.union(DIGIT);
          +
          +    // \p{Whitespace} --
          +    // [\N{LF} \N{VT} \N{FF} \N{CR} \N{NEL}  -> 0xa, 0xb, 0xc, 0xd, 0x85
          +    //  \p{gc=Line_Separator}
          +    //  \p{gc=Paragraph_Separator}]
          +    static final CharPredicate BLANK = ch ->
          +        Character.getType(ch) == Character.SPACE_SEPARATOR ||
          +        ch == 0x9; // \N{HT}
          +
          +    // [^
          +    //  \p{space}
          +    //  \p{gc=Control}
          +    //  \p{gc=Surrogate}
          +    //  \p{gc=Unassigned}]
          +    static final CharPredicate GRAPH = ch ->
          +        ((((1 << Character.SPACE_SEPARATOR) |
          +           (1 << Character.LINE_SEPARATOR) |
          +           (1 << Character.PARAGRAPH_SEPARATOR) |
          +           (1 << Character.CONTROL) |
          +           (1 << Character.SURROGATE) |
          +           (1 << Character.UNASSIGNED)) >> Character.getType(ch)) & 1)
          +        == 0;
          +
          +    // \p{graph}
          +    // \p{blank}
          +    // -- \p{cntrl}
          +    static final CharPredicate PRINT = GRAPH.union(BLANK).and(CONTROL.negate());
          +
          +    //  200C..200D    PropList.txt:Join_Control
          +    static final CharPredicate JOIN_CONTROL = ch -> ch == 0x200C || ch == 0x200D;
          +
          +    //  \p{alpha}
          +    //  \p{gc=Mark}
          +    //  \p{digit}
          +    //  \p{gc=Connector_Punctuation}
          +    //  \p{Join_Control}    200C..200D
          +    static final CharPredicate WORD =
          +        ALPHABETIC.union(ch -> ((((1 << Character.NON_SPACING_MARK) |
          +                                  (1 << Character.ENCLOSING_MARK) |
          +                                  (1 << Character.COMBINING_SPACING_MARK) |
          +                                  (1 << Character.DECIMAL_DIGIT_NUMBER) |
          +                                  (1 << Character.CONNECTOR_PUNCTUATION))
          +                                 >> Character.getType(ch)) & 1) != 0,
          +                         JOIN_CONTROL);
          +
          +    /////////////////////////////////////////////////////////////////////////////
          +
          +    private static final HashMap posix = new HashMap<>(12);
          +    private static final HashMap uprops = new HashMap<>(18);
          +
          +    private static void defPosix(String name, CharPredicate p) {
          +        posix.put(name, p);
          +    }
          +    private static void defUProp(String name, CharPredicate p) {
          +        uprops.put(name, p);
          +    }
          +
          +    static {
          +        defPosix("ALPHA", ALPHABETIC);
          +        defPosix("LOWER", LOWERCASE);
          +        defPosix("UPPER", UPPERCASE);
          +        defPosix("SPACE", WHITE_SPACE);
          +        defPosix("PUNCT", PUNCTUATION);
          +        defPosix("XDIGIT",HEX_DIGIT);
          +        defPosix("ALNUM", ALNUM);
          +        defPosix("CNTRL", CONTROL);
          +        defPosix("DIGIT", DIGIT);
          +        defPosix("BLANK", BLANK);
          +        defPosix("GRAPH", GRAPH);
          +        defPosix("PRINT", PRINT);
          +
          +        defUProp("ALPHABETIC", ALPHABETIC);
          +        defUProp("ASSIGNED", ASSIGNED);
          +        defUProp("CONTROL", CONTROL);
          +        defUProp("HEXDIGIT", HEX_DIGIT);
          +        defUProp("IDEOGRAPHIC", IDEOGRAPHIC);
          +        defUProp("JOINCONTROL", JOIN_CONTROL);
          +        defUProp("LETTER", LETTER);
          +        defUProp("LOWERCASE", LOWERCASE);
          +        defUProp("NONCHARACTERCODEPOINT", NONCHARACTER_CODE_POINT);
          +        defUProp("TITLECASE", TITLECASE);
          +        defUProp("PUNCTUATION", PUNCTUATION);
          +        defUProp("UPPERCASE", UPPERCASE);
          +        defUProp("WHITESPACE", WHITE_SPACE);
          +        defUProp("WORD", WORD);
          +        defUProp("WHITE_SPACE", WHITE_SPACE);
          +        defUProp("HEX_DIGIT", HEX_DIGIT);
          +        defUProp("NONCHARACTER_CODE_POINT", NONCHARACTER_CODE_POINT);
          +        defUProp("JOIN_CONTROL", JOIN_CONTROL);
          +    }
          +
          +    public static CharPredicate forUnicodeProperty(String propName) {
          +        propName = propName.toUpperCase(Locale.ROOT);
          +        CharPredicate p = uprops.get(propName);
          +        if (p != null)
          +            return p;
          +        return posix.get(propName);
          +    }
          +
          +    public static CharPredicate forPOSIXName(String propName) {
          +        return posix.get(propName.toUpperCase(Locale.ENGLISH));
          +    }
          +
          +    /////////////////////////////////////////////////////////////////////////////
          +
          +    /**
          +     * Returns a predicate matching all characters belong to a named
          +     * UnicodeScript.
          +     */
          +    static CharPredicate forUnicodeScript(String name) {
          +        final Character.UnicodeScript script;
          +        try {
          +            script = Character.UnicodeScript.forName(name);
          +            return ch -> script == Character.UnicodeScript.of(ch);
          +        } catch (IllegalArgumentException iae) {}
          +        return null;
          +    }
          +
          +    /**
          +     * Returns a predicate matching all characters in a UnicodeBlock.
          +     */
          +    static CharPredicate forUnicodeBlock(String name) {
          +        final Character.UnicodeBlock block;
          +        try {
          +            block = Character.UnicodeBlock.forName(name);
          +            return ch -> block == Character.UnicodeBlock.of(ch);
          +        } catch (IllegalArgumentException iae) {}
          +         return null;
          +    }
          +
          +    /////////////////////////////////////////////////////////////////////////////
          +
          +    // unicode categories, aliases, properties, java methods ...
          +
          +    private static final HashMap props = new HashMap<>(128);
          +
          +    /**
          +     * Returns a predicate matching all characters in a named property.
          +     */
          +    static CharPredicate forProperty(String name) {
          +        return props.get(name);
          +    }
          +
          +    private static void defProp(String name, CharPredicate p) {
          +        props.put(name, p);
          +    }
          +
          +    private static void defCategory(String name, final int typeMask) {
          +        CharPredicate p = ch -> (typeMask & (1 << Character.getType(ch))) != 0;
          +        props.put(name, p);
          +    }
          +
          +    private static void defRange(String name, final int lower, final int upper) {
          +        BmpCharPredicate p = ch -> lower <= ch && ch <= upper;
          +        props.put(name, p);
          +    }
          +
          +    private static void defCtype(String name, final int ctype) {
          +        BmpCharPredicate p = ch -> ch < 128 && ASCII.isType(ch, ctype);
          +        // PrintPattern.pmap.put(p, name);
          +        props.put(name, p);
          +    }
          +
          +    static {
          +        // Unicode character property aliases, defined in
          +        // http://www.unicode.org/Public/UNIDATA/PropertyValueAliases.txt
          +        defCategory("Cn", 1< true);
          +
          +        // Posix regular expression character classes, defined in
          +        // http://www.unix.org/onlinepubs/009695399/basedefs/xbd_chap09.html
          +        defRange("ASCII", 0x00, 0x7F);   // ASCII
          +        defCtype("Alnum", ASCII.ALNUM);  // Alphanumeric characters
          +        defCtype("Alpha", ASCII.ALPHA);  // Alphabetic characters
          +        defCtype("Blank", ASCII.BLANK);  // Space and tab characters
          +        defCtype("Cntrl", ASCII.CNTRL);  // Control characters
          +        defRange("Digit", '0', '9');     // Numeric characters
          +        defCtype("Graph", ASCII.GRAPH);  // printable and visible
          +        defRange("Lower", 'a', 'z');     // Lower-case alphabetic
          +        defRange("Print", 0x20, 0x7E);   // Printable characters
          +        defCtype("Punct", ASCII.PUNCT);  // Punctuation characters
          +        defCtype("Space", ASCII.SPACE);  // Space characters
          +        defRange("Upper", 'A', 'Z');     // Upper-case alphabetic
          +        defCtype("XDigit",ASCII.XDIGIT); // hexadecimal digits
          +
          +        // Java character properties, defined by methods in Character.java
          +        defProp("javaLowerCase", java.lang.Character::isLowerCase);
          +        defProp("javaUpperCase",  Character::isUpperCase);
          +        defProp("javaAlphabetic", java.lang.Character::isAlphabetic);
          +        defProp("javaIdeographic", java.lang.Character::isIdeographic);
          +        defProp("javaTitleCase", java.lang.Character::isTitleCase);
          +        defProp("javaDigit", java.lang.Character::isDigit);
          +        defProp("javaDefined", java.lang.Character::isDefined);
          +        defProp("javaLetter", java.lang.Character::isLetter);
          +        defProp("javaLetterOrDigit", java.lang.Character::isLetterOrDigit);
          +        defProp("javaJavaIdentifierStart", java.lang.Character::isJavaIdentifierStart);
          +        defProp("javaJavaIdentifierPart", java.lang.Character::isJavaIdentifierPart);
          +        defProp("javaUnicodeIdentifierStart", java.lang.Character::isUnicodeIdentifierStart);
          +        defProp("javaUnicodeIdentifierPart", java.lang.Character::isUnicodeIdentifierPart);
          +        defProp("javaIdentifierIgnorable", java.lang.Character::isIdentifierIgnorable);
          +        defProp("javaSpaceChar", java.lang.Character::isSpaceChar);
          +        defProp("javaWhitespace", java.lang.Character::isWhitespace);
          +        defProp("javaISOControl", java.lang.Character::isISOControl);
          +        defProp("javaMirrored", java.lang.Character::isMirrored);
          +    }
          +
          +    /////////////////////////////////////////////////////////////////////////////
          +
          +    /**
          +     * Posix ASCII variants, not in the lookup map
          +     */
          +    static final BmpCharPredicate ASCII_DIGIT = ch -> ch < 128 && ASCII.isDigit(ch);
          +    static final BmpCharPredicate ASCII_WORD  = ch -> ch < 128 && ASCII.isWord(ch);
          +    static final BmpCharPredicate ASCII_SPACE = ch -> ch < 128 && ASCII.isSpace(ch);
          +
          +}
          diff --git a/jdk/src/java.base/share/classes/java/util/regex/IntHashSet.java b/jdk/src/java.base/share/classes/java/util/regex/IntHashSet.java
          new file mode 100644
          index 00000000000..d077d2887e8
          --- /dev/null
          +++ b/jdk/src/java.base/share/classes/java/util/regex/IntHashSet.java
          @@ -0,0 +1,98 @@
          +/*
          + * Copyright (c) 2016, 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 java.util.regex;
          +
          +import java.util.Arrays;
          +
          +/**
          + * A lightweight hashset implementation for positive 'int'. Not safe for
          + * concurrent access.
          + */
          +class IntHashSet {
          +    private int[] entries;
          +    private int[] hashes;
          +    private int pos = 0;
          +
          +    public IntHashSet() {
          +        this.entries = new int[16 << 1];      // initCapacity = 16;
          +        this.hashes = new int[(16 / 2) | 1];  // odd -> fewer collisions
          +        Arrays.fill(this.entries, -1);
          +        Arrays.fill(this.hashes, -1);
          +    }
          +
          +    public boolean contains(int i) {
          +        int h = hashes[i % hashes.length];
          +        while (h != -1) {
          +            if (entries[h] == i)
          +                return true;
          +            h = entries[h + 1];
          +        }
          +        return false;
          +    }
          +
          +    public void add(int i) {
          +        int h0 = i % hashes.length;
          +        int next = hashes[h0];
          +        //  if invoker guarantees contains(i) checked before add(i)
          +        //  the following check is not needed.
          +        int next0 = next;
          +        while (next0 != -1) {
          +            if (entries[next0 ] == i)
          +                return;
          +            next0 = entries[next0 + 1];
          +        }
          +        hashes[h0] = pos;
          +        entries[pos++] = i;
          +        entries[pos++] = next;
          +        if (pos == entries.length)
          +            expand();
          +    }
          +
          +    public void clear() {
          +        Arrays.fill(this.entries, -1);
          +        Arrays.fill(this.hashes, -1);
          +        pos = 0;
          +    }
          +
          +    private void expand() {
          +        int[] old = entries;
          +        int[] es = new int[old.length << 1];
          +        int hlen = (old.length / 2) | 1;
          +        int[] hs = new int[hlen];
          +        Arrays.fill(es, -1);
          +        Arrays.fill(hs, -1);
          +        for (int n = 0; n < pos;) {  // re-hashing
          +            int i = old[n];
          +            int hsh = i % hlen;
          +            int next = hs[hsh];
          +            hs[hsh] = n;
          +            es[n++] = i;
          +            es[n++] = next;
          +        }
          +        this.entries = es;
          +        this.hashes = hs;
          +    }
          +}
          diff --git a/jdk/src/java.base/share/classes/java/util/regex/Matcher.java b/jdk/src/java.base/share/classes/java/util/regex/Matcher.java
          index 7f030af704a..de24ffb4e40 100644
          --- a/jdk/src/java.base/share/classes/java/util/regex/Matcher.java
          +++ b/jdk/src/java.base/share/classes/java/util/regex/Matcher.java
          @@ -177,6 +177,14 @@ public final class Matcher implements MatchResult {
                */
               int[] locals;
           
          +    /**
          +     * Storage used by top greedy Loop node to store a specific hash set to
          +     * keep the beginning index of the failed repetition match. The nodes
          +     * themselves are stateless, so they rely on this field to hold state
          +     * during a match.
          +     */
          +    IntHashSet[] localsPos;
          +
               /**
                * Boolean indicating whether or not more input could change
                * the results of the last match.
          @@ -239,6 +247,7 @@ public final class Matcher implements MatchResult {
                   int parentGroupCount = Math.max(parent.capturingGroupCount, 10);
                   groups = new int[parentGroupCount * 2];
                   locals = new int[parent.localCount];
          +        localsPos = new IntHashSet[parent.localTCNCount];
           
                   // Put fields into initial states
                   reset();
          @@ -375,6 +384,7 @@ public final class Matcher implements MatchResult {
                       groups[i] = -1;
                   for (int i = 0; i < locals.length; i++)
                       locals[i] = -1;
          +        localsPos = new IntHashSet[parentPattern.localTCNCount];
                   modCount++;
                   return this;
               }
          @@ -397,6 +407,10 @@ public final class Matcher implements MatchResult {
                       groups[i] = -1;
                   for(int i=0; i topClosureNodes;
          +
          +    /**
          +     * The number of top greedy closure nodes in this Pattern. Used by
          +     * matchers to allocate storage needed for a IntHashSet to keep the
          +     * beginning pos {@code i} of all failed match.
          +     */
          +    transient int localTCNCount;
          +
          +    /*
          +     * Turn off the stop-exponential-backtracking optimization if there
          +     * is a group ref in the pattern.
          +     */
          +    transient boolean hasGroupRef;
          +
               /**
                * Temporary null terminated code point array used by pattern compiling.
                */
          @@ -1026,7 +1053,7 @@ public final class Pattern
                * If the Start node might possibly match supplementary characters.
                * It is set to true during compiling if
                * (1) There is supplementary char in pattern, or
          -     * (2) There is complement node of Category or Block
          +     * (2) There is complement node of a "family" CharProperty
                */
               private transient boolean hasSupplementary;
           
          @@ -1338,6 +1365,7 @@ public final class Pattern
                   // Initialize counts
                   capturingGroupCount = 1;
                   localCount = 0;
          +        localTCNCount = 0;
           
                   // if length > 0, the Pattern is lazily compiled
                   if (pattern.length() == 0) {
          @@ -1368,6 +1396,7 @@ public final class Pattern
                   // Reset group index count
                   capturingGroupCount = 1;
                   localCount = 0;
          +        localTCNCount = 0;
           
                   if (pattern.length() > 0) {
                       compile();
          @@ -1378,105 +1407,114 @@ public final class Pattern
               }
           
               /**
          -     * The pattern is converted to normalized form ({@linkplain
          -     * java.text.Normalizer.Form.NFD NFD}, canonical decomposition)
          -     * and then a pure group is constructed to match canonical
          -     * equivalences of the characters.
          +     * The pattern is converted to normalized form ({@link
          +     * java.text.Normalizer.Form.NFC NFC}, canonical decomposition,
          +     * followed by canonical composition for the character class
          +     * part, and {@link java.text.Normalizer.Form.NFD NFD},
          +     * canonical decomposition) for the rest), and then a pure
          +     * group is constructed to match canonical equivalences of the
          +     * characters.
                */
          -    private void normalize() {
          -        int lastCodePoint = -1;
          -
          -        // Convert pattern into normalized form
          -        normalizedPattern = Normalizer.normalize(pattern, Normalizer.Form.NFD);
          -        patternLength = normalizedPattern.length();
          -
          -        // Modify pattern to match canonical equivalences
          -        StringBuilder newPattern = new StringBuilder(patternLength);
          -        for(int i=0; i= patternLength)
          -                        break;
          -                    c = normalizedPattern.codePointAt(i);
          -                    sequenceBuffer.appendCodePoint(c);
          -                }
          -                String ea = produceEquivalentAlternation(
          -                                               sequenceBuffer.toString());
          -                newPattern.setLength(newPattern.length()-Character.charCount(lastCodePoint));
          -                newPattern.append("(?:").append(ea).append(")");
          -            } else if (c == '[' && lastCodePoint != '\\') {
          -                i = normalizeCharClass(newPattern, i);
          -            } else {
          -                newPattern.appendCodePoint(c);
          +    private static String normalize(String pattern) {
          +        int plen = pattern.length();
          +        StringBuilder pbuf = new StringBuilder(plen);
          +        char last = 0;
          +        int lastStart = 0;
          +        char cc = 0;
          +        for (int i = 0; i < plen;) {
          +            char c = pattern.charAt(i);
          +            if (cc == 0 &&    // top level
          +                c == '\\' && i + 1 < plen && pattern.charAt(i + 1) == '\\') {
          +                i += 2; last = 0;
          +                continue;
                       }
          -            lastCodePoint = c;
          -            i += Character.charCount(c);
          +            if (c == '[' && last != '\\') {
          +                if (cc == 0) {
          +                    if (lastStart < i)
          +                        normalizeSlice(pattern, lastStart, i, pbuf);
          +                    lastStart = i;
          +                }
          +                cc++;
          +            } else if (c == ']' && last != '\\') {
          +                cc--;
          +                if (cc == 0) {
          +                    normalizeClazz(pattern, lastStart, i + 1, pbuf);
          +                    lastStart = i + 1;
          +                }
          +            }
          +            last = c;
          +            i++;
                   }
          -        normalizedPattern = newPattern.toString();
          +        assert (cc == 0);
          +        if (lastStart < plen)
          +            normalizeSlice(pattern, lastStart, plen, pbuf);
          +        return pbuf.toString();
               }
           
          -    /**
          -     * Complete the character class being parsed and add a set
          -     * of alternations to it that will match the canonical equivalences
          -     * of the characters within the class.
          -     */
          -    private int normalizeCharClass(StringBuilder newPattern, int i) {
          -        StringBuilder charClass = new StringBuilder();
          -        StringBuilder eq = null;
          -        int lastCodePoint = -1;
          -        String result;
          -
          -        i++;
          -        charClass.append("[");
          -        while(true) {
          -            int c = normalizedPattern.codePointAt(i);
          -            StringBuilder sequenceBuffer;
          -
          -            if (c == ']' && lastCodePoint != '\\') {
          -                charClass.append((char)c);
          -                break;
          -            } else if (Character.getType(c) == Character.NON_SPACING_MARK) {
          -                sequenceBuffer = new StringBuilder();
          -                sequenceBuffer.appendCodePoint(lastCodePoint);
          -                while(Character.getType(c) == Character.NON_SPACING_MARK) {
          -                    sequenceBuffer.appendCodePoint(c);
          -                    i += Character.charCount(c);
          -                    if (i >= normalizedPattern.length())
          -                        break;
          -                    c = normalizedPattern.codePointAt(i);
          -                }
          -                String ea = produceEquivalentAlternation(
          -                                                  sequenceBuffer.toString());
          -
          -                charClass.setLength(charClass.length()-Character.charCount(lastCodePoint));
          -                if (eq == null)
          -                    eq = new StringBuilder();
          -                eq.append('|');
          -                eq.append(ea);
          -            } else {
          -                charClass.appendCodePoint(c);
          -                i++;
          +    private static void normalizeSlice(String src, int off, int limit,
          +                                       StringBuilder dst)
          +    {
          +        int len = src.length();
          +        int off0 = off;
          +        while (off < limit && ASCII.isAscii(src.charAt(off))) {
          +            off++;
          +        }
          +        if (off == limit) {
          +            dst.append(src, off0, limit);
          +            return;
          +        }
          +        off--;
          +        if (off < off0)
          +            off = off0;
          +        else
          +            dst.append(src, off0, off);
          +        while (off < limit) {
          +            int ch0 = src.codePointAt(off);
          +            if (".$|()[]{}^?*+\\".indexOf(ch0) != -1) {
          +                dst.append((char)ch0);
          +                off++;
          +                continue;
                       }
          -            if (i == normalizedPattern.length())
          -                throw error("Unclosed character class");
          -            lastCodePoint = c;
          +            int j = off + Character.charCount(ch0);
          +            int ch1;
          +            while (j < limit) {
          +                ch1 = src.codePointAt(j);
          +                if (Grapheme.isBoundary(ch0, ch1))
          +                    break;
          +                ch0 = ch1;
          +                j += Character.charCount(ch1);
          +            }
          +            String seq = src.substring(off, j);
          +            String nfd = Normalizer.normalize(seq, Normalizer.Form.NFD);
          +            off = j;
          +            if (nfd.length() > 1) {
          +                ch0 = nfd.codePointAt(0);
          +                ch1 = nfd.codePointAt(Character.charCount(ch0));
          +                if (Character.getType(ch1) == Character.NON_SPACING_MARK) {
          +                    Set altns = new LinkedHashSet<>();
          +                    altns.add(seq);
          +                    produceEquivalentAlternation(nfd, altns);
          +                    dst.append("(?:");
          +                    altns.forEach( s -> dst.append(s + "|"));
          +                    dst.delete(dst.length() - 1, dst.length());
          +                    dst.append(")");
          +                    continue;
          +                }
          +            }
          +            String nfc = Normalizer.normalize(seq, Normalizer.Form.NFC);
          +            if (!seq.equals(nfc) && !nfd.equals(nfc))
          +                dst.append("(?:" + seq + "|" + nfd  + "|" + nfc + ")");
          +            else if (!seq.equals(nfd))
          +                dst.append("(?:" + seq + "|" + nfd + ")");
          +            else
          +                dst.append(seq);
                   }
          +    }
           
          -        if (eq != null) {
          -            result = "(?:"+charClass.toString()+eq.toString()+")";
          -        } else {
          -            result = charClass.toString();
          -        }
          -
          -        newPattern.append(result);
          -        return i;
          +    private static void normalizeClazz(String src, int off, int limit,
          +                                       StringBuilder dst)
          +    {
          +        dst.append(Normalizer.normalize(src.substring(off, limit), Form.NFC));
               }
           
               /**
          @@ -1484,28 +1522,26 @@ public final class Pattern
                * combining marks that follow it, produce the alternation that will
                * match all canonical equivalences of that sequence.
                */
          -    private String produceEquivalentAlternation(String source) {
          -        int len = countChars(source, 0, 1);
          -        if (source.length() == len)
          -            // source has one character.
          -            return source;
          -
          -        String base = source.substring(0,len);
          -        String combiningMarks = source.substring(len);
          -
          -        String[] perms = producePermutations(combiningMarks);
          -        StringBuilder result = new StringBuilder(source);
          -
          -        // Add combined permutations
          -        for(int x=0; x0)
          -                result.append("|"+next);
          -            next = composeOneStep(next);
          -            if (next != null)
          -                result.append("|"+produceEquivalentAlternation(next));
          +    private static void produceEquivalentAlternation(String src,
          +                                                     Set dst)
          +    {
          +        int len = countChars(src, 0, 1);
          +        if (src.length() == len) {
          +            dst.add(src);  // source has one character.
          +            return;
          +        }
          +        String base = src.substring(0,len);
          +        String combiningMarks = src.substring(len);
          +        String[] perms = producePermutations(combiningMarks);
          +        // Add combined permutations
          +        for(int x = 0; x < perms.length; x++) {
          +            String next = base + perms[x];
          +            dst.add(next);
          +            next = composeOneStep(next);
          +            if (next != null) {
          +                produceEquivalentAlternation(next, dst);
          +            }
                   }
          -        return result.toString();
               }
           
               /**
          @@ -1517,7 +1553,7 @@ public final class Pattern
                * possibilities must be removed because they are not canonically
                * equivalent.
                */
          -    private String[] producePermutations(String input) {
          +    private static String[] producePermutations(String input) {
                   if (input.length() == countChars(input, 0, 1))
                       return new String[] {input};
           
          @@ -1575,7 +1611,7 @@ loop:   for(int x=0, offset=0; x(10);
           
                   if (has(LITERAL)) {
                       // Literal pattern handling
          @@ -1737,12 +1773,26 @@ loop:   for(int x=0, offset=0; x namedGroups() {
          @@ -1753,44 +1803,6 @@ loop:   for(int x=0, offset=0; xnext:");
          -            if (node == Pattern.accept) {
          -                System.out.println("Accept Node");
          -                node = null;
          -            }
          -       }
          -    }
          -
               /**
                * Used to accumulate information about a subtree of the object graph
                * so that optimizations can be applied to the subtree.
          @@ -2083,7 +2095,10 @@ loop:   for(int x=0, offset=0; x does not exit");
                       if (create) {
          +                hasGroupRef = true;
                           if (has(CASE_INSENSITIVE))
                               root = new CIBackRef(namedGroups().get(name), has(UNICODE_CASE));
                           else
          @@ -2473,9 +2529,12 @@ loop:   for(int x=0, offset=0; x ch < 256 && bits.bits[ch];
          +
          +        boolean isNeg = false;
          +        boolean hasBits = false;
                   int ch = next();
          +
          +        // Negates if first char in a class, otherwise literal
          +        if (ch == '^' && temp[cursor-1] == '[') {
          +            ch = next();
          +            isNeg = true;
          +        }
                   for (;;) {
                       switch (ch) {
          -                case '^':
          -                    // Negates if first char in a class, otherwise literal
          -                    if (firstInClass) {
          -                        if (temp[cursor-1] != '[')
          -                            break;
          -                        ch = next();
          -                        include = !include;
          -                        continue;
          -                    } else {
          -                        // ^ not first in class, treat as literal
          -                        break;
          -                    }
                           case '[':
          -                    firstInClass = false;
          -                    node = clazz(true);
          +                    curr = clazz(true);
                               if (prev == null)
          -                        prev = node;
          +                        prev = curr;
                               else
          -                        prev = union(prev, node);
          +                        prev = prev.union(curr);
                               ch = peek();
                               continue;
                           case '&':
          -                    firstInClass = false;
                               ch = next();
                               if (ch == '&') {
                                   ch = next();
          -                        CharProperty rightNode = null;
          +                        CharPredicate right = null;
                                   while (ch != ']' && ch != '&') {
                                       if (ch == '[') {
          -                                if (rightNode == null)
          -                                    rightNode = clazz(true);
          +                                if (right == null)
          +                                    right = clazz(true);
                                           else
          -                                    rightNode = union(rightNode, clazz(true));
          +                                    right = right.union(clazz(true));
                                       } else { // abc&&def
                                           unread();
          -                                rightNode = clazz(false);
          +                                right = clazz(false);
                                       }
                                       ch = peek();
                                   }
          -                        if (rightNode != null)
          -                            node = rightNode;
          +                        if (hasBits) {
          +                            // bits used, union has high precedence
          +                            if (prev == null) {
          +                                prev = curr = bitsP;
          +                            } else {
          +                                prev = prev.union(bitsP);
          +                            }
          +                            hasBits = false;
          +                        }
          +                        if (right != null)
          +                            curr = right;
                                   if (prev == null) {
          -                            if (rightNode == null)
          +                            if (right == null)
                                           throw error("Bad class syntax");
                                       else
          -                                prev = rightNode;
          +                                prev = right;
                                   } else {
          -                            prev = intersection(prev, node);
          +                            prev = prev.and(curr);
                                   }
                               } else {
                                   // treat as a literal &
          @@ -2585,43 +2654,39 @@ loop:   for(int x=0, offset=0; x= patternLength)
                                   throw error("Unclosed character class");
                               break;
                           case ']':
          -                    firstInClass = false;
          -                    if (prev != null) {
          +                    if (prev != null || hasBits) {
                                   if (consume)
                                       next();
          +                        if (prev == null)
          +                            prev = bitsP;
          +                        else if (hasBits)
          +                            prev = prev.union(bitsP);
          +                        if (isNeg)
          +                            return prev.negate();
                                   return prev;
                               }
                               break;
                           default:
          -                    firstInClass = false;
                               break;
                       }
          -            node = range(bits);
          -            if (include) {
          -                if (prev == null) {
          -                    prev = node;
          -                } else {
          -                    if (prev != node)
          -                        prev = union(prev, node);
          -                }
          +            curr = range(bits);
          +            if (curr == null) {    // the bits used
          +                hasBits = true;
                       } else {
          -                if (prev == null) {
          -                    prev = node.complement();
          -                } else {
          -                    if (prev != node)
          -                        prev = setDifference(prev, node);
          -                }
          +                if (prev == null)
          +                    prev = curr;
          +                else if (prev != curr)
          +                    prev = prev.union(curr);
                       }
                       ch = peek();
                   }
               }
           
          -    private CharProperty bitsOrSingle(BitClass bits, int ch) {
          +    private CharPredicate bitsOrSingle(BitClass bits, int ch) {
                   /* Bits can only handle codepoints in [u+0000-u+00ff] range.
                      Use "single" node instead of bits when dealing with unicode
                      case folding for codepoints listed below.
          @@ -2643,19 +2708,46 @@ loop:   for(int x=0, offset=0; x, "
          -                                + "value=<" + value + ">}");
          +                    break;
                       }
          +            if (p == null)
          +                throw error("Unknown Unicode property {name=<" + name + ">, "
          +                             + "value=<" + value + ">}");
          +
                   } else {
                       if (name.startsWith("In")) {
          -                // \p{inBlockName}
          -                node = unicodeBlockPropertyFor(name.substring(2));
          +                // \p{InBlockName}
          +                p = CharPredicates.forUnicodeBlock(name.substring(2));
                       } else if (name.startsWith("Is")) {
          -                // \p{isGeneralCategory} and \p{isScriptName}
          +                // \p{IsGeneralCategory} and \p{IsScriptName}
                           name = name.substring(2);
          -                UnicodeProp uprop = UnicodeProp.forName(name);
          -                if (uprop != null)
          -                    node = new Utype(uprop);
          -                if (node == null)
          -                    node = CharPropertyNames.charPropertyFor(name);
          -                if (node == null)
          -                    node = unicodeScriptPropertyFor(name);
          +                p = CharPredicates.forUnicodeProperty(name);
          +                if (p == null)
          +                    p = CharPredicates.forProperty(name);
          +                if (p == null)
          +                    p = CharPredicates.forUnicodeScript(name);
                       } else {
                           if (has(UNICODE_CHARACTER_CLASS)) {
          -                    UnicodeProp uprop = UnicodeProp.forPOSIXName(name);
          -                    if (uprop != null)
          -                        node = new Utype(uprop);
          +                    p = CharPredicates.forPOSIXName(name);
                           }
          -                if (node == null)
          -                    node = charPropertyNodeFor(name);
          +                if (p == null)
          +                    p = CharPredicates.forProperty(name);
                       }
          +            if (p == null)
          +                throw error("Unknown character property name {In/Is" + name + "}");
                   }
          -        if (maybeComplement) {
          -            if (node instanceof Category || node instanceof Block)
          -                hasSupplementary = true;
          -            node = node.complement();
          +        if (isComplement) {
          +            // it might be too expensive to detect if a complement of
          +            // CharProperty can match "certain" supplementary. So just
          +            // go with StartS.
          +            hasSupplementary = true;
          +            p = p.negate();
                   }
          -        return node;
          -    }
          -
          -
          -    /**
          -     * Returns a CharProperty matching all characters belong to
          -     * a UnicodeScript.
          -     */
          -    private CharProperty unicodeScriptPropertyFor(String name) {
          -        final Character.UnicodeScript script;
          -        try {
          -            script = Character.UnicodeScript.forName(name);
          -        } catch (IllegalArgumentException iae) {
          -            throw error("Unknown character script name {" + name + "}");
          -        }
          -        return new Script(script);
          -    }
          -
          -    /**
          -     * Returns a CharProperty matching all characters in a UnicodeBlock.
          -     */
          -    private CharProperty unicodeBlockPropertyFor(String name) {
          -        final Character.UnicodeBlock block;
          -        try {
          -            block = Character.UnicodeBlock.forName(name);
          -        } catch (IllegalArgumentException iae) {
          -            throw error("Unknown character block name {" + name + "}");
          -        }
          -        return new Block(block);
          -    }
          -
          -    /**
          -     * Returns a CharProperty matching all characters in a named property.
          -     */
          -    private CharProperty charPropertyNodeFor(String name) {
          -        CharProperty p = CharPropertyNames.charPropertyFor(name);
          -        if (p == null)
          -            throw error("Unknown character property name {" + name + "}");
                   return p;
               }
           
          +    private CharProperty newCharProperty(CharPredicate p) {
          +        if (p == null)
          +            return null;
          +        if (p instanceof BmpCharPredicate)
          +            return new BmpCharProperty((BmpCharPredicate)p);
          +        else
          +            return new CharProperty(p);
          +    }
          +
               /**
                * Parses and returns the name of a "named capturing group", the trailing
                * ">" is consumed after parsing.
          @@ -2859,6 +2926,7 @@ loop:   for(int x=0, offset=0; x ch < 256 && bits[ch]);
          +            this.bits = bits;
          +        }
                   BitClass add(int c, int flags) {
                       assert c >= 0 && c <= 255;
                       if ((flags & CASE_INSENSITIVE) != 0) {
          @@ -3394,32 +3480,6 @@ loop:   for(int x=0, offset=0; x= 0x0A && cp <= 0x0D) ||
          -                   cp == 0x85 || cp == 0x2028 || cp == 0x2029;
          -        }
          -    }
          -
          -    /**
          -     * Node class that matches a Perl horizontal whitespace
          -     */
          -    static final class HorizWS extends BmpCharProperty {
          -        boolean isSatisfiedBy(int cp) {
          -            return cp == 0x09 || cp == 0x20 || cp == 0xa0 ||
          -                   cp == 0x1680 || cp == 0x180e ||
          -                   cp >= 0x2000 && cp <= 0x200a ||
          -                   cp == 0x202f || cp == 0x205f || cp == 0x3000;
          +        boolean study(TreeInfo info) {
          +            info.minLength++;
          +            info.deterministic = false;
          +            return next.study(info);
                   }
               }
           
          @@ -4217,81 +4197,13 @@ loop:   for(int x=0, offset=0; x= to) {
          +                matcher.hitEnd = true;
          +            }
          +            while (n >= cmin) {
          +                if (next.match(matcher, i, seq))
          +                    return true;
          +                if (n == cmin)
          +                    return false;
          +                 // backing off if match fails
          +                int ch = Character.codePointBefore(seq, i);
          +                i -= Character.charCount(ch);
          +                n--;
          +            }
          +            return false;
          +        }
          +
          +        boolean study(TreeInfo info) {
          +            info.minLength += cmin;
          +            if (info.maxValid) {
          +                info.maxLength += MAX_REPS;
          +            }
          +            info.deterministic = false;
          +            return next.study(info);
          +        }
          +    }
          +
          +    static final class BmpCharPropertyGreedy extends CharPropertyGreedy {
          +
          +        BmpCharPropertyGreedy(BmpCharProperty bcp, int cmin) {
          +            super(bcp, cmin);
          +        }
          +
          +        boolean match(Matcher matcher, int i,  CharSequence seq) {
          +            int n = 0;
          +            int to = matcher.to;
          +            while (i < to && predicate.is(seq.charAt(i))) {
          +                i++; n++;
          +            }
          +            if (i >= to) {
          +                matcher.hitEnd = true;
          +            }
          +            while (n >= cmin) {
          +                if (next.match(matcher, i, seq))
          +                    return true;
          +                i--; n--;  // backing off if match fails
          +            }
          +            return false;
          +        }
          +    }
          +
               /**
                * Handles the curly-brace style repetition with a specified minimum and
                * maximum occurrences. The * quantifier is handled as a special case.
          @@ -4331,11 +4316,11 @@ loop:   for(int x=0, offset=0; x is(ch) && p.is(ch);
          +        }
          +        default CharPredicate union(CharPredicate p) {
          +            return ch -> is(ch) || p.is(ch);
          +        }
          +        default CharPredicate union(CharPredicate p1,
          +                                    CharPredicate p2 ) {
          +            return ch -> is(ch) || p1.is(ch) || p2.is(ch);
          +        }
          +        default CharPredicate negate() {
          +            return ch -> !is(ch);
          +        }
          +    }
          +
          +    static interface BmpCharPredicate extends CharPredicate {
          +
          +        default CharPredicate and(CharPredicate p) {
          +            if(p instanceof BmpCharPredicate)
          +                return (BmpCharPredicate)(ch -> is(ch) && p.is(ch));
          +            return ch -> is(ch) && p.is(ch);
          +        }
          +        default CharPredicate union(CharPredicate p) {
          +            if (p instanceof BmpCharPredicate)
          +                return (BmpCharPredicate)(ch -> is(ch) || p.is(ch));
          +            return ch -> is(ch) || p.is(ch);
          +        }
          +        static CharPredicate union(CharPredicate... predicates) {
          +            CharPredicate cp = ch -> {
          +                for (CharPredicate p : predicates) {
          +                    if (!p.is(ch))
          +                        return false;
          +                }
          +                return true;
          +            };
          +            for (CharPredicate p : predicates) {
          +                if (! (p instanceof BmpCharPredicate))
          +                    return cp;
          +            }
          +            return (BmpCharPredicate)cp;
          +        }
          +    }
          +
          +    /**
          +     * matches a Perl vertical whitespace
          +     */
          +    static BmpCharPredicate VertWS = cp ->
          +        (cp >= 0x0A && cp <= 0x0D) || cp == 0x85 || cp == 0x2028 || cp == 0x2029;
          +
          +    /**
          +     * matches a Perl horizontal whitespace
          +     */
          +    static BmpCharPredicate HorizWS = cp ->
          +        cp == 0x09 || cp == 0x20 || cp == 0xa0 || cp == 0x1680 ||
          +        cp == 0x180e || cp >= 0x2000 && cp <= 0x200a ||  cp == 0x202f ||
          +        cp == 0x205f || cp == 0x3000;
          +
          +    /**
          +     *  for the Unicode category ALL and the dot metacharacter when
          +     *  in dotall mode.
          +     */
          +    static CharPredicate ALL = ch -> true;
          +
          +    /**
          +     * for the dot metacharacter when dotall is not enabled.
          +     */
          +    static CharPredicate DOT = ch -> (ch != '\n' && ch != '\r'
          +                                          && (ch|1) != '\u2029'
          +                                          && ch != '\u0085');
          +    /**
          +     *  the dot metacharacter when dotall is not enabled but UNIX_LINES is enabled.
          +     */
          +    static CharPredicate UNIXDOT = ch ->  ch != '\n';
          +
          +    /**
          +     * Indicate that matches a Supplementary Unicode character
          +     */
          +    static CharPredicate SingleS(int c) {
          +        return ch -> ch == c;
          +    }
          +
          +    /**
          +     * A bmp/optimized predicate of single
          +     */
          +    static BmpCharPredicate Single(int c) {
          +        return ch -> ch == c;
          +    }
          +
          +    /**
          +     * Case insensitive matches a given BMP character
          +     */
          +    static BmpCharPredicate SingleI(int lower, int upper) {
          +        return ch -> ch == lower || ch == upper;
          +    }
          +
          +    /**
          +     * Unicode case insensitive matches a given Unicode character
          +     */
          +    static CharPredicate SingleU(int lower) {
          +        return ch -> lower == ch ||
          +                     lower == Character.toLowerCase(Character.toUpperCase(ch));
          +    }
          +
          +    private static boolean inRange(int lower, int ch, int upper) {
          +        return lower <= ch && ch <= upper;
          +    }
          +
          +    /**
          +     * Charactrs within a explicit value range
          +     */
          +    static CharPredicate Range(int lower, int upper) {
          +        if (upper < Character.MIN_HIGH_SURROGATE ||
          +            lower > Character.MAX_HIGH_SURROGATE &&
          +            upper < Character.MIN_SUPPLEMENTARY_CODE_POINT)
          +            return (BmpCharPredicate)(ch -> inRange(lower, ch, upper));
          +        return ch -> inRange(lower, ch, upper);
          +    }
          +
          +   /**
          +    * Charactrs within a explicit value range in a case insensitive manner.
          +    */
          +    static CharPredicate CIRange(int lower, int upper) {
          +        return ch -> inRange(lower, ch, upper) ||
          +                     ASCII.isAscii(ch) &&
          +                     (inRange(lower, ASCII.toUpper(ch), upper) ||
          +                      inRange(lower, ASCII.toLower(ch), upper));
          +    }
          +
          +    static CharPredicate CIRangeU(int lower, int upper) {
          +        return ch -> {
          +            if (inRange(lower, ch, upper))
          +                return true;
          +            int up = Character.toUpperCase(ch);
          +            return inRange(lower, up, upper) ||
          +                   inRange(lower, Character.toLowerCase(up), upper);
          +        };
          +    }
           
               /**
                *  This must be the very first initializer.
                */
          -    static Node accept = new Node();
          +    static final Node accept = new Node();
           
          -    static Node lastAccept = new LastNode();
          -
          -    private static class CharPropertyNames {
          -
          -        static CharProperty charPropertyFor(String name) {
          -            CharPropertyFactory m = map.get(name);
          -            return m == null ? null : m.make();
          -        }
          -
          -        private abstract static class CharPropertyFactory {
          -            abstract CharProperty make();
          -        }
          -
          -        private static void defCategory(String name,
          -                                        final int typeMask) {
          -            map.put(name, new CharPropertyFactory() {
          -                    CharProperty make() { return new Category(typeMask);}});
          -        }
          -
          -        private static void defRange(String name,
          -                                     final int lower, final int upper) {
          -            map.put(name, new CharPropertyFactory() {
          -                    CharProperty make() { return rangeFor(lower, upper);}});
          -        }
          -
          -        private static void defCtype(String name,
          -                                     final int ctype) {
          -            map.put(name, new CharPropertyFactory() {
          -                    CharProperty make() { return new Ctype(ctype);}});
          -        }
          -
          -        private abstract static class CloneableProperty
          -            extends CharProperty implements Cloneable
          -        {
          -            public CloneableProperty clone() {
          -                try {
          -                    return (CloneableProperty) super.clone();
          -                } catch (CloneNotSupportedException e) {
          -                    throw new AssertionError(e);
          -                }
          -            }
          -        }
          -
          -        private static void defClone(String name,
          -                                     final CloneableProperty p) {
          -            map.put(name, new CharPropertyFactory() {
          -                    CharProperty make() { return p.clone();}});
          -        }
          -
          -        private static final HashMap map
          -            = new HashMap<>();
          -
          -        static {
          -            // Unicode character property aliases, defined in
          -            // http://www.unicode.org/Public/UNIDATA/PropertyValueAliases.txt
          -            defCategory("Cn", 1< ids = new HashMap<>();
          +
          +    private static void print(Pattern.Node node, String text, int depth) {
          +        if (!ids.containsKey(node))
          +            ids.put(node, ids.size());
          +        print("%6d:%" + (depth==0? "": depth<<1) + "s<%s>", ids.get(node), "", text);
          +        if (ids.containsKey(node.next))
          +            print(" (=>%d)", ids.get(node.next));
          +        print("%n");
          +    }
          +
          +    private static void print(String s, int depth) {
          +        print("       %" + (depth==0?"":depth<<1) + "s<%s>%n", "", s);
          +    }
          +
          +    private static void print(String fmt, Object ... args) {
          +        System.err.printf(fmt, args);
          +    }
          +
          +    private static String toStringCPS(int[] cps) {
          +        StringBuilder sb = new StringBuilder(cps.length);
          +        for (int cp : cps)
          +            sb.append(toStringCP(cp));
          +        return sb.toString();
          +    }
          +
          +    private static String toStringCP(int cp) {
          +        return (isPrint(cp) ? "" + (char)cp
          +                            : "\\u" + Integer.toString(cp, 16));
          +    }
          +
          +    private static String toStringRange(int min, int max) {
          +       if (max == Pattern.MAX_REPS) {
          +           if (min == 0)
          +               return " * ";
          +           else if (min == 1)
          +               return " + ";
          +           return "{" + min + ", max}";
          +       }
          +       return "{" + min + ", " +  max + "}";
          +    }
          +
          +    private static String toStringCtype(int type) {
          +        switch(type) {
          +        case UPPER:  return "ASCII.UPPER";
          +        case LOWER:  return "ASCII.LOWER";
          +        case DIGIT:  return "ASCII.DIGIT";
          +        case SPACE:  return "ASCII.SPACE";
          +        case PUNCT:  return "ASCII.PUNCT";
          +        case CNTRL:  return "ASCII.CNTRL";
          +        case BLANK:  return "ASCII.BLANK";
          +        case UNDER:  return "ASCII.UNDER";
          +        case ASCII:  return "ASCII.ASCII";
          +        case ALPHA:  return "ASCII.ALPHA";
          +        case ALNUM:  return "ASCII.ALNUM";
          +        case GRAPH:  return "ASCII.GRAPH";
          +        case WORD:   return "ASCII.WORD";
          +        case XDIGIT: return "ASCII.XDIGIT";
          +        default: return "ASCII ?";
          +        }
          +    }
          +
          +    private static String toString(Pattern.Node node) {
          +        String name = node.getClass().getName();
          +        return name.substring(name.lastIndexOf('$') + 1);
          +    }
          +
          +    static HashMap pmap;
          +    static {
          +        pmap = new HashMap<>();
          +        pmap.put(Pattern.ALL, "All");
          +        pmap.put(Pattern.DOT, "Dot");
          +        pmap.put(Pattern.UNIXDOT, "UnixDot");
          +        pmap.put(Pattern.VertWS, "VertWS");
          +        pmap.put(Pattern.HorizWS, "HorizWS");
          +
          +        pmap.put(CharPredicates.ASCII_DIGIT, "ASCII.DIGIT");
          +        pmap.put(CharPredicates.ASCII_WORD,  "ASCII.WORD");
          +        pmap.put(CharPredicates.ASCII_SPACE, "ASCII.SPACE");
          +    }
          +
          +    static void walk(Pattern.Node node, int depth) {
          +        depth++;
          +        while(node != null) {
          +            String name = toString(node);
          +            String str;
          +            if (node instanceof Pattern.Prolog) {
          +                print(node, name, depth);
          +                // print the loop here
          +                Pattern.Loop loop = ((Pattern.Prolog)node).loop;
          +                name = toString(loop);
          +                str = name + " " + toStringRange(loop.cmin, loop.cmax);
          +                print(loop, str, depth);
          +                walk(loop.body, depth);
          +                print("/" + name, depth);
          +                node = loop;
          +            } else if (node instanceof Pattern.Loop) {
          +                return;  // stop here, body.next -> loop
          +            } else if (node instanceof Pattern.Curly) {
          +                Pattern.Curly c = (Pattern.Curly)node;
          +                str = "Curly " + c.type + " " + toStringRange(c.cmin, c.cmax);
          +                print(node, str, depth);
          +                walk(c.atom, depth);
          +                print("/Curly", depth);
          +            } else if (node instanceof Pattern.GroupCurly) {
          +                Pattern.GroupCurly gc = (Pattern.GroupCurly)node;
          +                str = "GroupCurly " + gc.groupIndex / 2 +
          +                      ", " + gc.type + " " + toStringRange(gc.cmin, gc.cmax);
          +                print(node, str, depth);
          +                walk(gc.atom, depth);
          +                print("/GroupCurly", depth);
          +            } else if (node instanceof Pattern.GroupHead) {
          +                Pattern.GroupHead head = (Pattern.GroupHead)node;
          +                Pattern.GroupTail tail = head.tail;
          +                print(head, "Group.head " + (tail.groupIndex / 2), depth);
          +                walk(head.next, depth);
          +                print(tail, "/Group.tail " + (tail.groupIndex / 2), depth);
          +                node = tail;
          +            } else if (node instanceof Pattern.GroupTail) {
          +                return;  // stopper
          +            } else if (node instanceof Pattern.Ques) {
          +                print(node, "Ques " + ((Pattern.Ques)node).type, depth);
          +                walk(((Pattern.Ques)node).atom, depth);
          +                print("/Ques", depth);
          +            } else if (node instanceof Pattern.Branch) {
          +                Pattern.Branch b = (Pattern.Branch)node;
          +                print(b, name, depth);
          +                int i = 0;
          +                while (true) {
          +                    if (b.atoms[i] != null) {
          +                        walk(b.atoms[i], depth);
          +                    } else {
          +                        print("  (accepted)", depth);
          +                    }
          +                    if (++i == b.size)
          +                        break;
          +                    print("-branch.separator-", depth);
          +                }
          +                node = b.conn;
          +                print(node, "/Branch", depth);
          +            } else if (node instanceof Pattern.BranchConn) {
          +                return;
          +            } else if (node instanceof Pattern.CharProperty) {
          +                str = pmap.get(((Pattern.CharProperty)node).predicate);
          +                if (str == null)
          +                    str = toString(node);
          +                else
          +                    str = "Single \"" + str + "\"";
          +                print(node, str, depth);
          +            } else if (node instanceof Pattern.SliceNode) {
          +                str = name + "  \"" +
          +                      toStringCPS(((Pattern.SliceNode)node).buffer) + "\"";
          +                print(node, str, depth);
          +            } else if (node instanceof Pattern.CharPropertyGreedy) {
          +                Pattern.CharPropertyGreedy gcp = (Pattern.CharPropertyGreedy)node;
          +                String pstr = pmap.get(gcp.predicate);
          +                if (pstr == null)
          +                    pstr = gcp.predicate.toString();
          +                else
          +                    pstr = "Single \"" + pstr + "\"";
          +                str = name + " " + pstr + ((gcp.cmin == 0) ? "*" : "+");
          +                print(node, str, depth);
          +            } else if (node instanceof Pattern.BackRef) {
          +                str = "GroupBackRef " + ((Pattern.BackRef)node).groupIndex / 2;
          +                print(node, str, depth);
          +            } else if (node instanceof Pattern.LastNode) {
          +                print(node, "END", depth);
          +            } else if (node == Pattern.accept) {
          +                return;
          +            } else {
          +                print(node, name, depth);
          +            }
          +            node = node.next;
          +        }
          +    }
          +
          +    public static void main(String[] args) {
          +        Pattern p = Pattern.compile(args[0]);
          +        System.out.println("   Pattern: " + p);
          +        walk(p.root, 0);
          +    }
          +}
          diff --git a/jdk/src/java.base/share/classes/java/util/regex/UnicodeProp.java b/jdk/src/java.base/share/classes/java/util/regex/UnicodeProp.java
          deleted file mode 100644
          index dccbd1c718e..00000000000
          --- a/jdk/src/java.base/share/classes/java/util/regex/UnicodeProp.java
          +++ /dev/null
          @@ -1,246 +0,0 @@
          -/*
          - * Copyright (c) 2011, 2013, 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 java.util.regex;
          -
          -import java.util.HashMap;
          -import java.util.Locale;
          -
          -enum UnicodeProp {
          -
          -    ALPHABETIC {
          -        public boolean is(int ch) {
          -            return Character.isAlphabetic(ch);
          -        }
          -    },
          -
          -    LETTER {
          -        public boolean is(int ch) {
          -            return Character.isLetter(ch);
          -        }
          -    },
          -
          -    IDEOGRAPHIC {
          -        public boolean is(int ch) {
          -            return Character.isIdeographic(ch);
          -        }
          -    },
          -
          -    LOWERCASE {
          -        public boolean is(int ch) {
          -            return Character.isLowerCase(ch);
          -        }
          -    },
          -
          -    UPPERCASE {
          -        public boolean is(int ch) {
          -            return Character.isUpperCase(ch);
          -        }
          -    },
          -
          -    TITLECASE {
          -        public boolean is(int ch) {
          -            return Character.isTitleCase(ch);
          -        }
          -    },
          -
          -    WHITE_SPACE {
          -        // \p{Whitespace}
          -        public boolean is(int ch) {
          -            return ((((1 << Character.SPACE_SEPARATOR) |
          -                      (1 << Character.LINE_SEPARATOR) |
          -                      (1 << Character.PARAGRAPH_SEPARATOR)) >> Character.getType(ch)) & 1)
          -                   != 0 || (ch >= 0x9 && ch <= 0xd) || (ch == 0x85);
          -        }
          -    },
          -
          -    CONTROL {
          -        // \p{gc=Control}
          -        public boolean is(int ch) {
          -            return Character.getType(ch) == Character.CONTROL;
          -        }
          -    },
          -
          -    PUNCTUATION {
          -        // \p{gc=Punctuation}
          -        public boolean is(int ch) {
          -            return ((((1 << Character.CONNECTOR_PUNCTUATION) |
          -                      (1 << Character.DASH_PUNCTUATION) |
          -                      (1 << Character.START_PUNCTUATION) |
          -                      (1 << Character.END_PUNCTUATION) |
          -                      (1 << Character.OTHER_PUNCTUATION) |
          -                      (1 << Character.INITIAL_QUOTE_PUNCTUATION) |
          -                      (1 << Character.FINAL_QUOTE_PUNCTUATION)) >> Character.getType(ch)) & 1)
          -                   != 0;
          -        }
          -    },
          -
          -    HEX_DIGIT {
          -        // \p{gc=Decimal_Number}
          -        // \p{Hex_Digit}    -> PropList.txt: Hex_Digit
          -        public boolean is(int ch) {
          -            return DIGIT.is(ch) ||
          -                   (ch >= 0x0030 && ch <= 0x0039) ||
          -                   (ch >= 0x0041 && ch <= 0x0046) ||
          -                   (ch >= 0x0061 && ch <= 0x0066) ||
          -                   (ch >= 0xFF10 && ch <= 0xFF19) ||
          -                   (ch >= 0xFF21 && ch <= 0xFF26) ||
          -                   (ch >= 0xFF41 && ch <= 0xFF46);
          -        }
          -    },
          -
          -    ASSIGNED {
          -        public boolean is(int ch) {
          -            return Character.getType(ch) != Character.UNASSIGNED;
          -        }
          -    },
          -
          -    NONCHARACTER_CODE_POINT {
          -        // PropList.txt:Noncharacter_Code_Point
          -        public boolean is(int ch) {
          -            return (ch & 0xfffe) == 0xfffe || (ch >= 0xfdd0 && ch <= 0xfdef);
          -        }
          -    },
          -
          -    DIGIT {
          -        // \p{gc=Decimal_Number}
          -        public boolean is(int ch) {
          -            return Character.isDigit(ch);
          -        }
          -    },
          -
          -    ALNUM {
          -        // \p{alpha}
          -        // \p{digit}
          -        public boolean is(int ch) {
          -            return ALPHABETIC.is(ch) || DIGIT.is(ch);
          -        }
          -    },
          -
          -    BLANK {
          -        // \p{Whitespace} --
          -        // [\N{LF} \N{VT} \N{FF} \N{CR} \N{NEL}  -> 0xa, 0xb, 0xc, 0xd, 0x85
          -        //  \p{gc=Line_Separator}
          -        //  \p{gc=Paragraph_Separator}]
          -        public boolean is(int ch) {
          -            return Character.getType(ch) == Character.SPACE_SEPARATOR ||
          -                   ch == 0x9; // \N{HT}
          -        }
          -    },
          -
          -    GRAPH {
          -        // [^
          -        //  \p{space}
          -        //  \p{gc=Control}
          -        //  \p{gc=Surrogate}
          -        //  \p{gc=Unassigned}]
          -        public boolean is(int ch) {
          -            return ((((1 << Character.SPACE_SEPARATOR) |
          -                      (1 << Character.LINE_SEPARATOR) |
          -                      (1 << Character.PARAGRAPH_SEPARATOR) |
          -                      (1 << Character.CONTROL) |
          -                      (1 << Character.SURROGATE) |
          -                      (1 << Character.UNASSIGNED)) >> Character.getType(ch)) & 1)
          -                   == 0;
          -        }
          -    },
          -
          -    PRINT {
          -        // \p{graph}
          -        // \p{blank}
          -        // -- \p{cntrl}
          -        public boolean is(int ch) {
          -            return (GRAPH.is(ch) || BLANK.is(ch)) && !CONTROL.is(ch);
          -        }
          -    },
          -
          -    WORD {
          -        //  \p{alpha}
          -        //  \p{gc=Mark}
          -        //  \p{digit}
          -        //  \p{gc=Connector_Punctuation}
          -        //  \p{Join_Control}    200C..200D
          -
          -        public boolean is(int ch) {
          -            return ALPHABETIC.is(ch) ||
          -                   ((((1 << Character.NON_SPACING_MARK) |
          -                      (1 << Character.ENCLOSING_MARK) |
          -                      (1 << Character.COMBINING_SPACING_MARK) |
          -                      (1 << Character.DECIMAL_DIGIT_NUMBER) |
          -                      (1 << Character.CONNECTOR_PUNCTUATION)) >> Character.getType(ch)) & 1)
          -                   != 0 ||
          -                   JOIN_CONTROL.is(ch);
          -        }
          -    },
          -
          -    JOIN_CONTROL {
          -        //  200C..200D    PropList.txt:Join_Control
          -        public boolean is(int ch) {
          -           return (ch == 0x200C || ch == 0x200D);
          -        }
          -    };
          -
          -    private static final HashMap posix = new HashMap<>();
          -    private static final HashMap aliases = new HashMap<>();
          -    static {
          -        posix.put("ALPHA", "ALPHABETIC");
          -        posix.put("LOWER", "LOWERCASE");
          -        posix.put("UPPER", "UPPERCASE");
          -        posix.put("SPACE", "WHITE_SPACE");
          -        posix.put("PUNCT", "PUNCTUATION");
          -        posix.put("XDIGIT","HEX_DIGIT");
          -        posix.put("ALNUM", "ALNUM");
          -        posix.put("CNTRL", "CONTROL");
          -        posix.put("DIGIT", "DIGIT");
          -        posix.put("BLANK", "BLANK");
          -        posix.put("GRAPH", "GRAPH");
          -        posix.put("PRINT", "PRINT");
          -
          -        aliases.put("WHITESPACE", "WHITE_SPACE");
          -        aliases.put("HEXDIGIT","HEX_DIGIT");
          -        aliases.put("NONCHARACTERCODEPOINT", "NONCHARACTER_CODE_POINT");
          -        aliases.put("JOINCONTROL", "JOIN_CONTROL");
          -    }
          -
          -    public static UnicodeProp forName(String propName) {
          -        propName = propName.toUpperCase(Locale.ENGLISH);
          -        String alias = aliases.get(propName);
          -        if (alias != null)
          -            propName = alias;
          -        try {
          -            return valueOf (propName);
          -        } catch (IllegalArgumentException x) {}
          -        return null;
          -    }
          -
          -    public static UnicodeProp forPOSIXName(String propName) {
          -        propName = posix.get(propName.toUpperCase(Locale.ENGLISH));
          -        if (propName == null)
          -            return null;
          -        return valueOf (propName);
          -    }
          -
          -    public abstract boolean is(int ch);
          -}
          diff --git a/jdk/test/java/util/regex/RegExTest.java b/jdk/test/java/util/regex/RegExTest.java
          index 2f5fca2b0c3..815cb99104e 100644
          --- a/jdk/test/java/util/regex/RegExTest.java
          +++ b/jdk/test/java/util/regex/RegExTest.java
          @@ -33,6 +33,9 @@
            * 6350801 6676425 6878475 6919132 6931676 6948903 6990617 7014645 7039066
            * 7067045 7014640 7189363 8007395 8013252 8013254 8012646 8023647 6559590
            * 8027645 8035076 8039124 8035975 8074678 6854417 8143854 8147531 7071819
          + * 8151481 4867170 7080302 6728861 6995635 6736245 4916384
          + * 6328855 6192895 6345469 6988218 6693451 7006761 8140212
          + *
            * @library /lib/testlibrary
            * @build jdk.testlibrary.*
            * @run main RegExTest
          @@ -162,6 +165,7 @@ public class RegExTest {
                   patternAsPredicate();
                   invalidFlags();
                   grapheme();
          +        expoBacktracking();
           
                   if (failure) {
                       throw new
          @@ -2659,51 +2663,101 @@ public class RegExTest {
                   check(p, "test\u00e4\u0323\u0300", true);
                   check(p, "test\u00e4\u0300\u0323", true);
           
          -        /*
          -         * The following canonical equivalence tests don't work. Bug id: 4916384.
          -         *
          -        // Decomposed hangul (jamos)
          -        p = Pattern.compile("\u1100\u1161", Pattern.CANON_EQ);
          -        m = p.matcher("\u1100\u1161");
          -        if (!m.matches())
          -            failCount++;
          +        Object[][] data = new Object[][] {
           
          -        m.reset("\uac00");
          -        if (!m.matches())
          -            failCount++;
          +        // JDK-4867170
          +        { "[\u1f80-\u1f82]", "ab\u1f80cd",             "f", true },
          +        { "[\u1f80-\u1f82]", "ab\u1f81cd",             "f", true },
          +        { "[\u1f80-\u1f82]", "ab\u1f82cd",             "f", true },
          +        { "[\u1f80-\u1f82]", "ab\u03b1\u0314\u0345cd", "f", true },
          +        { "[\u1f80-\u1f82]", "ab\u03b1\u0345\u0314cd", "f", true },
          +        { "[\u1f80-\u1f82]", "ab\u1f01\u0345cd",       "f", true },
          +        { "[\u1f80-\u1f82]", "ab\u1f00\u0345cd",       "f", true },
          +
          +        { "\\p{IsGreek}",    "ab\u1f80cd",             "f", true },
          +        { "\\p{IsGreek}",    "ab\u1f81cd",             "f", true },
          +        { "\\p{IsGreek}",    "ab\u1f82cd",             "f", true },
          +        { "\\p{IsGreek}",    "ab\u03b1\u0314\u0345cd", "f", true },
          +        { "\\p{IsGreek}",    "ab\u1f01\u0345cd",       "f", true },
          +
          +        // backtracking, force to match "\u1f80", instead of \u1f82"
          +        { "ab\\p{IsGreek}\u0300cd", "ab\u03b1\u0313\u0345\u0300cd", "m", true },
          +
          +        { "[\\p{IsGreek}]",  "\u03b1\u0314\u0345",     "m", true },
          +        { "\\p{IsGreek}",    "\u03b1\u0314\u0345",     "m", true },
          +
          +        { "[^\u1f80-\u1f82]","\u1f81",                 "m", false },
          +        { "[^\u1f80-\u1f82]","\u03b1\u0314\u0345",     "m", false },
          +        { "[^\u1f01\u0345]", "\u1f81",                 "f", false },
          +
          +        { "[^\u1f81]+",      "\u1f80\u1f82",           "f", true },
          +        { "[\u1f80]",        "ab\u1f80cd",             "f", true },
          +        { "\u1f80",          "ab\u1f80cd",             "f", true },
          +        { "\u1f00\u0345\u0300",  "\u1f82", "m", true },
          +        { "\u1f80",          "-\u1f00\u0345\u0300-",   "f", true },
          +        { "\u1f82",          "\u1f00\u0345\u0300",     "m", true },
          +        { "\u1f82",          "\u1f80\u0300",           "m", true },
          +
          +        // JDK-7080302       # compile failed
          +        { "a(\u0041\u0301\u0328)", "a\u0041\u0301\u0328", "m", true},
          +
          +        // JDK-6728861, same cause as above one
          +        { "\u00e9\u00e9n", "e\u0301e\u0301n", "m", true},
          +
          +        // JDK-6995635
          +        { "(\u00e9)", "e\u0301", "m", true },
          +
          +        // JDK-6736245
          +        // intereting special case, nfc(u2add+u0338) -> u2add+u0338) NOT u2adc
          +        { "\u2ADC", "\u2ADC", "m", true},          // NFC
          +        { "\u2ADC", "\u2ADD\u0338", "m", true},    // NFD
          +
          +        //  4916384.
          +        // Decomposed hangul (jamos) works inside clazz
          +        { "[\u1100\u1161]", "\u1100\u1161", "m", true},
          +        { "[\u1100\u1161]", "\uac00", "m", true},
          +
          +        { "[\uac00]", "\u1100\u1161", "m", true},
          +        { "[\uac00]", "\uac00", "m", true},
          +
          +        // Decomposed hangul (jamos)
          +        { "\u1100\u1161", "\u1100\u1161", "m", true},
          +        { "\u1100\u1161", "\uac00", "m", true},
           
                   // Composed hangul
          -        p = Pattern.compile("\uac00", Pattern.CANON_EQ);
          -        m = p.matcher("\u1100\u1161");
          -        if (!m.matches())
          -            failCount++;
          +        { "\uac00",  "\u1100\u1161", "m", true },
          +        { "\uac00",  "\uac00", "m", true },
           
          -        m.reset("\uac00");
          -        if (!m.matches())
          -            failCount++;
          +        /* Need a NFDSlice to nfd the source to solve this issue
          +           u+1d1c0 -> nfd:   -> nfc: 
          +           u+1d1bc -> nfd:            -> nfc: 
          +            -> nfd:  -> nfc: 
           
                   // Decomposed supplementary outside char classes
          -        p = Pattern.compile("test\ud834\uddbc\ud834\udd6f", Pattern.CANON_EQ);
          -        m = p.matcher("test\ud834\uddc0");
          -        if (!m.matches())
          -            failCount++;
          -
          -        m.reset("test\ud834\uddbc\ud834\udd6f");
          -        if (!m.matches())
          -            failCount++;
          -
          +        // { "test\ud834\uddbc\ud834\udd6f", "test\ud834\uddc0", "m", true },
                   // Composed supplementary outside char classes
          -        p = Pattern.compile("test\ud834\uddc0", Pattern.CANON_EQ);
          -        m.reset("test\ud834\uddbc\ud834\udd6f");
          -        if (!m.matches())
          -            failCount++;
          -
          -        m = p.matcher("test\ud834\uddc0");
          -        if (!m.matches())
          -            failCount++;
          -
          +        // { "test\ud834\uddc0", "test\ud834\uddbc\ud834\udd6f", "m", true },
                   */
          +        { "test\ud834\uddbc\ud834\udd6f", "test\ud834\uddbc\ud834\udd6f", "m", true },
          +        { "test\ud834\uddc0",             "test\ud834\uddbc\ud834\udd6f", "m", true },
           
          +        { "test\ud834\uddc0",             "test\ud834\uddc0",             "m", true },
          +        { "test\ud834\uddbc\ud834\udd6f", "test\ud834\uddc0",             "m", true },
          +        };
          +
          +        int failCount = 0;
          +        for (Object[] d : data) {
          +            String pn = (String)d[0];
          +            String tt = (String)d[1];
          +            boolean isFind = "f".equals(((String)d[2]));
          +            boolean expected = (boolean)d[3];
          +            boolean ret = isFind ? Pattern.compile(pn, Pattern.CANON_EQ).matcher(tt).find()
          +                                 : Pattern.compile(pn, Pattern.CANON_EQ).matcher(tt).matches();
          +            if (ret != expected) {
          +                failCount++;
          +                continue;
          +            }
          +        }
                   report("Canonical Equivalence");
               }
           
          @@ -3846,7 +3900,6 @@ public class RegExTest {
                   if (!patternString.startsWith("'")) {
                       return Pattern.compile(patternString);
                   }
          -
                   int break1 = patternString.lastIndexOf("'");
                   String flagString = patternString.substring(
                                                     break1+1, patternString.length());
          @@ -4092,10 +4145,11 @@ public class RegExTest {
                   report("NamedGroupCapture");
               }
           
          -    // This is for bug 6969132
          +    // This is for bug 6919132
               private static void nonBmpClassComplementTest() throws Exception {
                   Pattern p = Pattern.compile("\\P{Lu}");
                   Matcher m = p.matcher(new String(new int[] {0x1d400}, 0, 1));
          +
                   if (m.find() && m.start() == 1)
                       failCount++;
           
          @@ -4113,6 +4167,11 @@ public class RegExTest {
                   if (m.find() && m.start() == 1)
                       failCount++;
           
          +        p = Pattern.compile("\\P{sc=GRANTHA}");
          +        m = p.matcher(new String(new int[] {0x11350}, 0, 1));
          +        if (m.find() && m.start() == 1)
          +            failCount++;
          +
                   report("NonBmpClassComplement");
               }
           
          @@ -4662,4 +4721,92 @@ public class RegExTest {
                       failCount++;
                   report("Unicode extended grapheme cluster");
               }
          +
          +    // hangup/timeout if go into exponential backtracking
          +    private static void expoBacktracking() throws Exception {
          +
          +        Object[][] patternMatchers = {
          +            // 6328855
          +            { "(.*\n*)*",
          +              "this little fine string lets\r\njava.lang.String.matches\r\ncrash\r\n(We don't know why but adding \r* to the regex makes it work again)",
          +              false },
          +            // 6192895
          +            { " *([a-zA-Z0-9/\\-\\?:\\(\\)\\.,'\\+\\{\\}]+ *)+",
          +              "Hello World this is a test this is a test this is a test A",
          +              true },
          +            { " *([a-zA-Z0-9/\\-\\?:\\(\\)\\.,'\\+\\{\\}]+ *)+",
          +              "Hello World this is a test this is a test this is a test \u4e00 ",
          +              false },
          +            { " *([a-z0-9]+ *)+",
          +              "hello world this is a test this is a test this is a test A",
          +              false },
          +            // 4771934 [FIXED] #5013651?
          +            { "^(\\w+([\\.-]?\\w+)*@\\w+([\\.-]?\\w+)*(\\.\\w{2,4})+[,;]?)+$",
          +              "abc@efg.abc,efg@abc.abc,abc@xyz.mno;abc@sdfsd.com",
          +              true },
          +            // 4866249 [FIXED]
          +            { "<\\s*" + "(meta|META)" + "(\\s|[^>])+" + "(CHARSET|charset)=" + "(\\s|[^>])+>",
          +              "",
          +              true },
          +            { "^(\\w+([\\.-]?\\w+)*@\\w+([\\.-]?\\w+)*(\\.\\w{2,4})+[,;]?)+$",
          +              "abc@efg.abc,efg@abc.abc,abc@xyz.mno;sdfsd.com",
          +              false },
          +            // 6345469
          +            { "((<[^>]+>)?(((\\s)?)*(\\ )?)*((\\s)?)*)+",
          +              "   < br/>   < / p> 

           

          ", + true }, // --> matched + { "((<[^>]+>)?(((\\s)?)*(\\ )?)*((\\s)?)*)+", + "   < br/>   < / p>

            p

          ", + false }, + // 5026912 + { "^\\s*" + "(\\w|\\d|[\\xC0-\\xFF]|/)+" + "\\s+|$", + "156580451111112225588087755221111111566969655555555", + false}, + // 6988218 + { "^([+-]?((0[xX](\\p{XDigit}+))|(((\\p{Digit}+)(\\.)?((\\p{Digit}+)?)([eE][+-]?(\\p{Digit}+))?)|(\\.((\\p{Digit}+))([eE][+-]?(\\p{Digit}+))?)))|[n|N]?'([^']*(?:'')*[^']*)*')", + "'%)) order by ANGEBOT.ID", + false}, // find + // 6693451 + { "^(\\s*foo\\s*)*$", + "foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo", + true }, + { "^(\\s*foo\\s*)*$", + "foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo fo", + false + }, + // 7006761 + { "(([0-9A-Z]+)([_]?+)*)*", "FOOOOO_BAAAR_FOOOOOOOOO_BA_", true}, + { "(([0-9A-Z]+)([_]?+)*)*", "FOOOOO_BAAAR_FOOOOOOOOO_BA_ ", false}, + // 8140212 + { "(?.*)\\{(?\\w+):(?\\w+(\\.?\\w+(\\(((?(('[^']*')|((/|\\w)+))(,(('[^']*')|((/|\\w)+)))*))?\\))?)*)\\}(?.*)", + "{CeGlobal:getSodCutoff.getGui.getAmqp.getSimpleModeEnabled()", + false + }, + { "^(a+)+$", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", true}, + { "^(a+)+$", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa!", false}, + + { "(x+)*y", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxy", true }, + { "(x+)*y", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxz", false}, + + { "(x+x+)+y", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxy", true}, + { "(x+x+)+y", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxz", false}, + + { "(([0-9A-Z]+)([_]?+)*)*", "--------------------------------------", false}, + + /* not fixed + //8132141 ---> second level exponential backtracking + { "(h|h|ih(((i|a|c|c|a|i|i|j|b|a|i|b|a|a|j))+h)ahbfhba|c|i)*", + "hchcchicihcchciiicichhcichcihcchiihichiciiiihhcchicchhcihchcihiihciichhccciccichcichiihcchcihhicchcciicchcccihiiihhihihihichicihhcciccchihhhcchichchciihiicihciihcccciciccicciiiiiiiiicihhhiiiihchccchchhhhiiihchihcccchhhiiiiiiiicicichicihcciciihichhhhchihciiihhiccccccciciihhichiccchhicchicihihccichicciihcichccihhiciccccccccichhhhihihhcchchihihiihhihihihicichihiiiihhhhihhhchhichiicihhiiiiihchccccchichci" }, + */ + }; + + for (Object[] pm : patternMatchers) { + String p = (String)pm[0]; + String s = (String)pm[1]; + boolean r = (Boolean)pm[2]; + if (r != Pattern.compile(p).matcher(s).matches()) { + failCount++; + } + } + } } diff --git a/jdk/test/java/util/regex/TestCases.txt b/jdk/test/java/util/regex/TestCases.txt index 4490eaf9516..3c9174939ba 100644 --- a/jdk/test/java/util/regex/TestCases.txt +++ b/jdk/test/java/util/regex/TestCases.txt @@ -139,6 +139,71 @@ false 0 aaabbbcccdefg true defg 0 +// Negation with nested char class and intersection +[^[c]] +c +false 0 + +[^[a-z]] +e +false 0 + +[^[a-z][A-Z]] +E +false 0 + +[^a-d[0-9][m-p]] +e +true e 0 + +[^a-d[0-9][m-p]] +8 +false 0 + +[^[a-c]&&[d-f]] +z +true z 0 + +[^a-c&&d-f] +a +true a 0 + +[^a-m&&m-z] +m +false 0 + +[^a-m&&m-z&&a-c] +m +true m 0 + +[^a-cd-f&&[d-f]] +c +true c 0 + +[^[a-c][d-f]&&abc] +a +false 0 + +[^[a-c][d-f]&&abc] +d +true d 0 + +[^[a-c][d-f]&&abc[def]] +a +false 0 + +[^[a-c][d-f]&&abc[def]] +e +false 0 + +[^[a-c]&&[b-d]&&[c-e]] +a +true a 0 + +[^[a-c]&&[b-d]&&[c-e]] +c +false 0 + // Making sure a ^ not in first position matches literal ^ [abc^b] b From 7df23eb45e799b6cf6a27500807600242a329753 Mon Sep 17 00:00:00 2001 From: Weijun Wang Date: Wed, 11 May 2016 12:32:00 +0800 Subject: [PATCH 47/62] 8154523: SHA1PRNG output should change after setSeed Reviewed-by: xuelei --- .../sun/security/provider/SecureRandom.java | 1 + .../provider/SecureRandom/SHA1PRNGReseed.java | 55 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 jdk/test/sun/security/provider/SecureRandom/SHA1PRNGReseed.java diff --git a/jdk/src/java.base/share/classes/sun/security/provider/SecureRandom.java b/jdk/src/java.base/share/classes/sun/security/provider/SecureRandom.java index e9be3e11365..649e35cdea7 100644 --- a/jdk/src/java.base/share/classes/sun/security/provider/SecureRandom.java +++ b/jdk/src/java.base/share/classes/sun/security/provider/SecureRandom.java @@ -156,6 +156,7 @@ implements java.io.Serializable { } } state = digest.digest(seed); + remCount = 0; } private static void updateState(byte[] state, byte[] output) { diff --git a/jdk/test/sun/security/provider/SecureRandom/SHA1PRNGReseed.java b/jdk/test/sun/security/provider/SecureRandom/SHA1PRNGReseed.java new file mode 100644 index 00000000000..fdf6911c77a --- /dev/null +++ b/jdk/test/sun/security/provider/SecureRandom/SHA1PRNGReseed.java @@ -0,0 +1,55 @@ +/* + * Copyright (c) 2016, 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. + * + * 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. + */ +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.io.ObjectInputStream; +import java.io.ObjectOutputStream; +import java.security.SecureRandom; + +/** + * @test + * @bug 8154523 + * @summary SHA1PRNG output should change after setSeed + */ +public class SHA1PRNGReseed { + + public static void main(String[] args) throws Exception { + SecureRandom sr = SecureRandom.getInstance("SHA1PRNG"); + sr.setSeed(0); + sr.nextInt(); + + ByteArrayOutputStream bout = new ByteArrayOutputStream(); + new ObjectOutputStream(bout).writeObject(sr); + + SecureRandom sr2 = (SecureRandom) new ObjectInputStream( + new ByteArrayInputStream(bout.toByteArray())).readObject(); + + int i1 = sr.nextInt(); + sr2.setSeed(1); + int i2 = sr2.nextInt(); + + if (i1 == i2) { + throw new Exception("output should not be the same"); + } + } +} From 9c17407e9e3a2d5b52e8d1721243351b8c58446f Mon Sep 17 00:00:00 2001 From: Xue-Lei Andrew Fan Date: Wed, 11 May 2016 05:02:20 +0000 Subject: [PATCH 48/62] 8156716: Incorrect condition in test SupportedDHKeys.java Reviewed-by: weijun --- jdk/test/sun/security/pkcs11/KeyAgreement/SupportedDHKeys.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jdk/test/sun/security/pkcs11/KeyAgreement/SupportedDHKeys.java b/jdk/test/sun/security/pkcs11/KeyAgreement/SupportedDHKeys.java index f7f1bba25ad..50154df7c77 100644 --- a/jdk/test/sun/security/pkcs11/KeyAgreement/SupportedDHKeys.java +++ b/jdk/test/sun/security/pkcs11/KeyAgreement/SupportedDHKeys.java @@ -108,8 +108,7 @@ public class SupportedDHKeys extends PKCS11Test { BigInteger rightOpen = p.subtract(BigInteger.ONE); // ignore the private key range checking on Solaris at present - if (provider.getName().equals("SunPKCS11-Solaris") && - !System.getProperty("os.name").equals("SunOS")) { + if (!provider.getName().equals("SunPKCS11-Solaris")) { BigInteger x = privateKey.getX(); if ((x.compareTo(leftOpen) <= 0) || (x.compareTo(rightOpen) >= 0)) { From e7e64ceea370b227e01502bd93ec1394a98947cc Mon Sep 17 00:00:00 2001 From: Alexandre Iline Date: Tue, 10 May 2016 13:48:07 -0700 Subject: [PATCH 49/62] 8151914: java/util/jar/JarFile/MultiReleaseJar* tests do not declare module dependences Reviewed-by: chegar --- .../util/jar/JarFile/{ => mrjar}/MultiReleaseJarAPI.java | 0 .../{ => mrjar}/MultiReleaseJarHttpProperties.java | 5 ++++- .../jar/JarFile/{ => mrjar}/MultiReleaseJarIterators.java | 0 .../JarFile/{ => mrjar}/MultiReleaseJarProperties.java | 0 .../jar/JarFile/{ => mrjar}/MultiReleaseJarSecurity.java | 0 jdk/test/java/util/jar/JarFile/mrjar/TEST.properties | 3 +++ jdk/test/lib/testlibrary/java/util/jar/Compiler.java | 8 +++++--- 7 files changed, 12 insertions(+), 4 deletions(-) rename jdk/test/java/util/jar/JarFile/{ => mrjar}/MultiReleaseJarAPI.java (100%) rename jdk/test/java/util/jar/JarFile/{ => mrjar}/MultiReleaseJarHttpProperties.java (96%) rename jdk/test/java/util/jar/JarFile/{ => mrjar}/MultiReleaseJarIterators.java (100%) rename jdk/test/java/util/jar/JarFile/{ => mrjar}/MultiReleaseJarProperties.java (100%) rename jdk/test/java/util/jar/JarFile/{ => mrjar}/MultiReleaseJarSecurity.java (100%) create mode 100644 jdk/test/java/util/jar/JarFile/mrjar/TEST.properties diff --git a/jdk/test/java/util/jar/JarFile/MultiReleaseJarAPI.java b/jdk/test/java/util/jar/JarFile/mrjar/MultiReleaseJarAPI.java similarity index 100% rename from jdk/test/java/util/jar/JarFile/MultiReleaseJarAPI.java rename to jdk/test/java/util/jar/JarFile/mrjar/MultiReleaseJarAPI.java diff --git a/jdk/test/java/util/jar/JarFile/MultiReleaseJarHttpProperties.java b/jdk/test/java/util/jar/JarFile/mrjar/MultiReleaseJarHttpProperties.java similarity index 96% rename from jdk/test/java/util/jar/JarFile/MultiReleaseJarHttpProperties.java rename to jdk/test/java/util/jar/JarFile/mrjar/MultiReleaseJarHttpProperties.java index 50cec677ee6..9cff19fcfb3 100644 --- a/jdk/test/java/util/jar/JarFile/MultiReleaseJarHttpProperties.java +++ b/jdk/test/java/util/jar/JarFile/mrjar/MultiReleaseJarHttpProperties.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2016, 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 @@ -26,6 +26,9 @@ * @bug 8132734 * @summary Test the System properties for JarFile that support multi-release jar files * @library /lib/testlibrary/java/util/jar + * @modules jdk.jartool + * jdk.compiler + * jdk.httpserver * @build Compiler JarBuilder CreateMultiReleaseTestJars SimpleHttpServer * @run testng MultiReleaseJarHttpProperties * @run testng/othervm -Djdk.util.jar.version=0 MultiReleaseJarHttpProperties diff --git a/jdk/test/java/util/jar/JarFile/MultiReleaseJarIterators.java b/jdk/test/java/util/jar/JarFile/mrjar/MultiReleaseJarIterators.java similarity index 100% rename from jdk/test/java/util/jar/JarFile/MultiReleaseJarIterators.java rename to jdk/test/java/util/jar/JarFile/mrjar/MultiReleaseJarIterators.java diff --git a/jdk/test/java/util/jar/JarFile/MultiReleaseJarProperties.java b/jdk/test/java/util/jar/JarFile/mrjar/MultiReleaseJarProperties.java similarity index 100% rename from jdk/test/java/util/jar/JarFile/MultiReleaseJarProperties.java rename to jdk/test/java/util/jar/JarFile/mrjar/MultiReleaseJarProperties.java diff --git a/jdk/test/java/util/jar/JarFile/MultiReleaseJarSecurity.java b/jdk/test/java/util/jar/JarFile/mrjar/MultiReleaseJarSecurity.java similarity index 100% rename from jdk/test/java/util/jar/JarFile/MultiReleaseJarSecurity.java rename to jdk/test/java/util/jar/JarFile/mrjar/MultiReleaseJarSecurity.java diff --git a/jdk/test/java/util/jar/JarFile/mrjar/TEST.properties b/jdk/test/java/util/jar/JarFile/mrjar/TEST.properties new file mode 100644 index 00000000000..da021032d94 --- /dev/null +++ b/jdk/test/java/util/jar/JarFile/mrjar/TEST.properties @@ -0,0 +1,3 @@ +modules = \ + jdk.compiler \ + jdk.jartool diff --git a/jdk/test/lib/testlibrary/java/util/jar/Compiler.java b/jdk/test/lib/testlibrary/java/util/jar/Compiler.java index 4b56cac5184..2892291c9c3 100644 --- a/jdk/test/lib/testlibrary/java/util/jar/Compiler.java +++ b/jdk/test/lib/testlibrary/java/util/jar/Compiler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2016, 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 @@ -44,7 +44,7 @@ class Compiler { // so do it the old fashioned way // options = Arrays.asList("-release", String.valueOf(release)); String target = String.valueOf(release); - options = Arrays.asList("-source", target, "-target", target); + options = Arrays.asList("-source", target, "-target", target, "-classpath", ""); return this; } @@ -53,7 +53,9 @@ class Compiler { Map cfos = createClassFileObjects(); JavaCompiler jc = ToolProvider.getSystemJavaCompiler(); JavaFileManager jfm = new CustomFileManager(jc.getStandardFileManager(null, null, null), cfos); - jc.getTask(null, jfm, null, options, null, cunits).call(); + if(!jc.getTask(null, jfm, null, options, null, cunits).call()) { + throw new RuntimeException("Compilation failed"); + } return createOutput(cfos); } From f2dabbdb6ada125a550cb1e04b6cb10c5cf745a1 Mon Sep 17 00:00:00 2001 From: Bhanu Prakash Gopularam Date: Wed, 11 May 2016 10:28:23 +0000 Subject: [PATCH 50/62] 8062804: IsoFields WEEK_BASED_YEAR and QUARTER_OF_YEAR too lenient Addded the necessary chck in IsoFields WEEK_BASED_YEAR and QUARTER_OF_YEAR Reviewed-by: rriggs, scolebourne --- .../classes/java/time/temporal/IsoFields.java | 14 +++++++++- .../tck/java/time/temporal/TCKIsoFields.java | 28 ++++++++++++++++++- 2 files changed, 40 insertions(+), 2 deletions(-) diff --git a/jdk/src/java.base/share/classes/java/time/temporal/IsoFields.java b/jdk/src/java.base/share/classes/java/time/temporal/IsoFields.java index 73ebdf40abf..26e7e168446 100644 --- a/jdk/src/java.base/share/classes/java/time/temporal/IsoFields.java +++ b/jdk/src/java.base/share/classes/java/time/temporal/IsoFields.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2016, 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 @@ -402,6 +402,12 @@ public final class IsoFields { long moy = temporal.getLong(MONTH_OF_YEAR); return ((moy + 2) / 3); } + public ValueRange rangeRefinedBy(TemporalAccessor temporal) { + if (isSupportedBy(temporal) == false) { + throw new UnsupportedTemporalTypeException("Unsupported field: QuarterOfYear"); + } + return super.rangeRefinedBy(temporal); + } @SuppressWarnings("unchecked") @Override public R adjustInto(R temporal, long newValue) { @@ -529,6 +535,12 @@ public final class IsoFields { } return getWeekBasedYear(LocalDate.from(temporal)); } + public ValueRange rangeRefinedBy(TemporalAccessor temporal) { + if (isSupportedBy(temporal) == false) { + throw new UnsupportedTemporalTypeException("Unsupported field: WeekBasedYear"); + } + return super.rangeRefinedBy(temporal); + } @SuppressWarnings("unchecked") @Override public R adjustInto(R temporal, long newValue) { diff --git a/jdk/test/java/time/tck/java/time/temporal/TCKIsoFields.java b/jdk/test/java/time/tck/java/time/temporal/TCKIsoFields.java index d607571aba1..d1092d15ee6 100644 --- a/jdk/test/java/time/tck/java/time/temporal/TCKIsoFields.java +++ b/jdk/test/java/time/tck/java/time/temporal/TCKIsoFields.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2016, 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 @@ -71,12 +71,15 @@ import static org.testng.Assert.fail; import java.time.DayOfWeek; import java.time.LocalDate; import java.time.LocalDateTime; +import java.time.chrono.ThaiBuddhistDate; import java.time.format.DateTimeFormatter; import java.time.format.DateTimeFormatterBuilder; import java.time.format.DateTimeParseException; import java.time.format.ResolverStyle; import java.time.temporal.IsoFields; import java.time.temporal.Temporal; +import java.time.temporal.TemporalField; +import java.time.temporal.UnsupportedTemporalTypeException; import java.time.temporal.ValueRange; import org.testng.annotations.DataProvider; @@ -438,6 +441,29 @@ public class TCKIsoFields { assertEquals(parsed, expected); } + //----------------------------------------------------------------------- + // range refinedby + //----------------------------------------------------------------------- + @DataProvider(name="isofields") + Object[][] data_isofields() { + return new Object[][] { + {IsoFields.DAY_OF_QUARTER}, + {IsoFields.QUARTER_OF_YEAR}, + {IsoFields.WEEK_OF_WEEK_BASED_YEAR}, + {IsoFields.WEEK_BASED_YEAR}, + }; + } + + @Test(dataProvider = "isofields") + public void test_isofields_rangerefinedby(TemporalField field) { + field.rangeRefinedBy(LocalDate.now()); + } + + @Test(dataProvider = "isofields", expectedExceptions = UnsupportedTemporalTypeException.class) + public void test_nonisofields_rangerefinedby(TemporalField field) { + field.rangeRefinedBy(ThaiBuddhistDate.now()); + } + //----------------------------------------------------------------------- public void test_loop() { // loop round at least one 400 year cycle, including before 1970 From aefbfce7cf5372f70f2ae1306d511f6e9b7f514d Mon Sep 17 00:00:00 2001 From: Staffan Larsen Date: Wed, 11 May 2016 11:04:47 +0200 Subject: [PATCH 51/62] 8156658: Common way to run jtreg tests Reviewed-by: erikj, dsamersoff --- jdk/test/Makefile | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/jdk/test/Makefile b/jdk/test/Makefile index cab8eef73dd..487939266a8 100644 --- a/jdk/test/Makefile +++ b/jdk/test/Makefile @@ -76,14 +76,20 @@ endif TEST_ROOT := $(shell $(PWD)) # Root of all test results -ifdef ALT_OUTPUTDIR - ABS_OUTPUTDIR = $(shell $(CD) $(ALT_OUTPUTDIR) && $(PWD)) +ifdef TEST_OUTPUT_DIR + $(shell $(MKDIR) -p $(TEST_OUTPUT_DIR)/jtreg) + ABS_TEST_OUTPUT_DIR := \ + $(shell $(CD) $(TEST_OUTPUT_DIR)/jtreg && $(PWD)) else - ABS_OUTPUTDIR = $(shell $(CD) $(TEST_ROOT)/.. && $(PWD)) -endif + ifdef ALT_OUTPUTDIR + ABS_OUTPUTDIR = $(shell $(CD) $(ALT_OUTPUTDIR) && $(PWD)) + else + ABS_OUTPUTDIR = $(shell $(CD) $(TEST_ROOT)/.. && $(PWD)) + endif -ABS_PLATFORM_BUILD_ROOT = $(ABS_OUTPUTDIR) -ABS_TEST_OUTPUT_DIR := $(ABS_PLATFORM_BUILD_ROOT)/testoutput/$(UNIQUE_DIR) + ABS_PLATFORM_BUILD_ROOT = $(ABS_OUTPUTDIR) + ABS_TEST_OUTPUT_DIR := $(ABS_PLATFORM_BUILD_ROOT)/testoutput/$(UNIQUE_DIR) +endif # Expect JPRT to set PRODUCT_HOME (the product or jdk in this case to test) ifndef PRODUCT_HOME From 2bac8d91d1b932c9651fae148bc90dd143689f33 Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Wed, 11 May 2016 11:26:02 -0300 Subject: [PATCH 52/62] 8155237: jlink plugin to order resources should take a class list as input Reviewed-by: redestad --- .../jlink/internal/PluginOrderingGraph.java | 4 - .../jdk/tools/jlink/internal/Utils.java | 4 - .../plugins/OrderResourcesPlugin.java | 214 ++++++++++++++++++ .../internal/plugins/SortResourcesPlugin.java | 201 ---------------- .../tools/jlink/resources/plugins.properties | 10 +- .../jdk.jlink/share/classes/module-info.java | 2 +- 6 files changed, 220 insertions(+), 215 deletions(-) create mode 100644 jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/OrderResourcesPlugin.java delete mode 100644 jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/SortResourcesPlugin.java diff --git a/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/PluginOrderingGraph.java b/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/PluginOrderingGraph.java index 8e389b01796..6a8c0124b17 100644 --- a/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/PluginOrderingGraph.java +++ b/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/PluginOrderingGraph.java @@ -35,10 +35,6 @@ import java.util.Set; import jdk.tools.jlink.plugin.Plugin; import jdk.tools.jlink.plugin.PluginException; -/** - * - * @author jdenise - */ public class PluginOrderingGraph { static class Node { diff --git a/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/Utils.java b/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/Utils.java index ac278a0ff79..a8a9a45a5f4 100644 --- a/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/Utils.java +++ b/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/Utils.java @@ -32,10 +32,6 @@ import java.util.function.Function; import jdk.tools.jlink.plugin.Plugin; import jdk.tools.jlink.plugin.Plugin.PluginType; -/** - * - * @author jdenise - */ public class Utils { private Utils() {} diff --git a/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/OrderResourcesPlugin.java b/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/OrderResourcesPlugin.java new file mode 100644 index 00000000000..8fb124dd775 --- /dev/null +++ b/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/OrderResourcesPlugin.java @@ -0,0 +1,214 @@ +/* + * Copyright (c) 2015, 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 jdk.tools.jlink.internal.plugins; + +import java.io.File; +import java.io.IOException; +import java.nio.file.Files; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.function.ToIntFunction; +import jdk.tools.jlink.plugin.PluginException; +import jdk.tools.jlink.plugin.Pool; +import jdk.tools.jlink.plugin.Pool.ModuleData; +import jdk.tools.jlink.plugin.Pool.ModuleDataType; +import jdk.tools.jlink.plugin.TransformerPlugin; +import jdk.tools.jlink.internal.Utils; + +/** + * + * Order Resources plugin + */ +public final class OrderResourcesPlugin implements TransformerPlugin { + public static final String NAME = "order-resources"; + private final List> filters; + private final Map orderedPaths; + + public OrderResourcesPlugin() { + this.filters = new ArrayList<>(); + this.orderedPaths = new HashMap<>(); + } + + @Override + public String getName() { + return NAME; + } + + static class SortWrapper { + private final ModuleData resource; + private final int ordinal; + + SortWrapper(ModuleData resource, int ordinal) { + this.resource = resource; + this.ordinal = ordinal; + } + + ModuleData getResource() { + return resource; + } + + String getPath() { + return resource.getPath(); + } + + int getOrdinal() { + return ordinal; + } + } + + private String stripModule(String path) { + if (path.startsWith("/")) { + int index = path.indexOf('/', 1); + + if (index != -1) { + return path.substring(index + 1); + } + } + + return path; + } + + private int getOrdinal(ModuleData resource) { + String path = resource.getPath(); + + Integer value = orderedPaths.get(stripModule(path)); + + if (value != null) { + return value; + } + + for (ToIntFunction function : filters) { + int ordinal = function.applyAsInt(path); + + if (ordinal != Integer.MAX_VALUE) { + return ordinal; + } + } + + return Integer.MAX_VALUE; + } + + private static int compare(SortWrapper wrapper1, SortWrapper wrapper2) { + int compare = wrapper1.getOrdinal() - wrapper2.getOrdinal(); + + if (compare != 0) { + return compare; + } + + return wrapper1.getPath().compareTo(wrapper2.getPath()); + } + + @Override + public void visit(Pool in, Pool out) { + in.getContent().stream() + .filter(resource -> resource.getType() + .equals(ModuleDataType.CLASS_OR_RESOURCE)) + .map((resource) -> new SortWrapper(resource, getOrdinal(resource))) + .sorted(OrderResourcesPlugin::compare) + .forEach((wrapper) -> out.add(wrapper.getResource())); + in.getContent().stream() + .filter(other -> !other.getType() + .equals(ModuleDataType.CLASS_OR_RESOURCE)) + .forEach((other) -> out.add(other)); + } + + @Override + public Set getType() { + Set set = new HashSet<>(); + set.add(CATEGORY.SORTER); + + return Collections.unmodifiableSet(set); + } + + @Override + public String getDescription() { + return PluginsResourceBundle.getDescription(NAME); + } + + @Override + public boolean hasArguments() { + return true; + } + + @Override + public String getArgumentsDescription() { + return PluginsResourceBundle.getArgument(NAME); + } + + @Override + public void configure(Map config) { + String val = config.get(NAME); + String[] patterns = Utils.listParser.apply(val); + int ordinal = 0; + + for (String pattern : patterns) { + if (pattern.startsWith("@")) { + File file = new File(pattern.substring(1)); + + if (file.exists()) { + List lines; + + try { + lines = Files.readAllLines(file.toPath()); + } catch (IOException ex) { + throw new PluginException(ex); + } + + for (String line : lines) { + if (!line.startsWith("#")) { + orderedPaths.put(line + ".class", ordinal++); + } + } + } + } else { + boolean endsWith = pattern.startsWith("*"); + boolean startsWith = pattern.endsWith("*"); + ToIntFunction function; + final int result = ordinal++; + + if (startsWith && endsWith) { + final String string = pattern.substring(1, pattern.length() - 1); + function = (path)-> path.contains(string) ? result : Integer.MAX_VALUE; + } else if (startsWith) { + final String string = pattern.substring(0, pattern.length() - 1); + function = (path)-> path.startsWith(string) ? result : Integer.MAX_VALUE; + } else if (endsWith) { + final String string = pattern.substring(1); + function = (path)-> path.endsWith(string) ? result : Integer.MAX_VALUE; + } else { + final String string = pattern; + function = (path)-> path.equals(string) ? result : Integer.MAX_VALUE; + } + + filters.add(function); + } + } + } +} diff --git a/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/SortResourcesPlugin.java b/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/SortResourcesPlugin.java deleted file mode 100644 index 388bfae9e25..00000000000 --- a/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/SortResourcesPlugin.java +++ /dev/null @@ -1,201 +0,0 @@ -/* - * Copyright (c) 2015, 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 jdk.tools.jlink.internal.plugins; - -import java.io.BufferedReader; -import java.io.File; -import java.io.FileInputStream; -import java.io.IOException; -import java.io.InputStreamReader; -import java.nio.charset.StandardCharsets; -import java.util.ArrayList; -import java.util.Collections; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.regex.Matcher; -import java.util.regex.Pattern; -import java.util.stream.Collectors; -import jdk.tools.jlink.plugin.PluginException; -import jdk.tools.jlink.plugin.Pool; -import jdk.tools.jlink.plugin.Pool.ModuleData; -import jdk.tools.jlink.plugin.Pool.ModuleDataType; -import jdk.tools.jlink.plugin.TransformerPlugin; -import jdk.tools.jlink.internal.Utils; - -/** - * - * Sort Resources plugin - */ -public final class SortResourcesPlugin implements TransformerPlugin { - - public static final String NAME = "sort-resources"; - private final List filters = new ArrayList<>(); - private List orderedPaths; - private boolean isFile; - - @Override - public String getName() { - return NAME; - } - - static class SortWrapper { - - private final ModuleData resource; - private final int ordinal; - - SortWrapper(ModuleData resource, int ordinal) { - this.resource = resource; - this.ordinal = ordinal; - } - - ModuleData getResource() { - return resource; - } - - String getPath() { - return resource.getPath(); - } - - int getOrdinal() { - return ordinal; - } - } - - private int getPatternOrdinal(String path) { - int ordinal = -1; - for (int i = 0; i < filters.size(); i++) { - Matcher m = filters.get(i).matcher(path); - if (m.matches()) { - ordinal = i; - break; - } - } - return ordinal; - } - - private int getFileOrdinal(String path) { - return orderedPaths.indexOf(path); - } - - @Override - public void visit(Pool in, Pool out) { - in.getContent().stream() - .filter(w -> w.getType().equals(ModuleDataType.CLASS_OR_RESOURCE)) - .map((r) -> new SortWrapper(r, isFile - ? getFileOrdinal(r.getPath()) - : getPatternOrdinal(r.getPath()))) - .sorted((sw1, sw2) -> { - int ordinal1 = sw1.getOrdinal(); - int ordinal2 = sw2.getOrdinal(); - - if (ordinal1 >= 0) { - if (ordinal2 >= 0) { - return ordinal1 - ordinal2; - } else { - return -1; - } - } else if (ordinal2 >= 0) { - return 1; - } - - return sw1.getPath().compareTo(sw2.getPath()); - }).forEach((sw) -> { - try { - out.add(sw.getResource()); - } catch (Exception ex) { - throw new RuntimeException(ex); - } - }); - in.getContent().stream() - .filter(m -> !m.getType().equals(ModuleDataType.CLASS_OR_RESOURCE)) - .forEach((m) -> { - try { - out.add(m); - } catch (Exception ex) { - throw new RuntimeException(ex); - } - }); - } - - @Override - public Set getType() { - Set set = new HashSet<>(); - set.add(CATEGORY.SORTER); - return Collections.unmodifiableSet(set); - } - - @Override - public String getDescription() { - return PluginsResourceBundle.getDescription(NAME); - } - - @Override - public boolean hasArguments() { - return true; - } - - @Override - public String getArgumentsDescription() { - return PluginsResourceBundle.getArgument(NAME); - } - - @Override - public void configure(Map config) { - String val = config.get(NAME); - try { - String[] patterns = Utils.listParser.apply(val); - boolean isf = false; - List paths = null; - if (patterns != null) { - if (patterns.length == 1) { - String filePath = patterns[0]; - File f = new File(filePath); - if (f.exists()) { - isf = true; - try (FileInputStream fis = new FileInputStream(f); - InputStreamReader ins - = new InputStreamReader(fis, StandardCharsets.UTF_8); - BufferedReader reader = new BufferedReader(ins)) { - paths = reader.lines().collect(Collectors.toList()); - } - } - } - if (!isf) { - for (String p : patterns) { - p = p.replaceAll(" ", ""); - Pattern pattern = Pattern.compile(ResourceFilter.escape(p)); - filters.add(pattern); - } - } - } - orderedPaths = paths; - isFile = isf; - } catch (IOException ex) { - throw new PluginException(ex); - } - } -} diff --git a/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/resources/plugins.properties b/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/resources/plugins.properties index 6edcf645063..5b036466ef6 100644 --- a/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/resources/plugins.properties +++ b/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/resources/plugins.properties @@ -53,10 +53,10 @@ installed-modules.description=Fast loading of module descriptors (always enabled onoff.argument= -sort-resources.argument= +order-resources.argument= -sort-resources.description=\ -Sort resources. e.g.: */modules-info.class,/java-base/java/lang/* +order-resources.description=\ +Order resources. e.g.: */module-info.class,/java.base/java/lang/* strip-debug.description=\ Strip debug information from the output image @@ -68,7 +68,7 @@ vm.argument= vm.description=\ Select the HotSpot VM in the output image. Default is all - + zip.argument=[comma separated list of resource paths] zip.description=ZIP Compression @@ -160,7 +160,7 @@ err.provider.additional.arg.error=Error in additional argument specification in err.no.plugins.path=No plugins path argument. -err.dir.already.exits=directory already exists: {0} +err.dir.already.exits=directory already exists: {0} err.invalid.index=invalid index for option {0} diff --git a/jdk/src/jdk.jlink/share/classes/module-info.java b/jdk/src/jdk.jlink/share/classes/module-info.java index 2edf6460b29..49e426fed12 100644 --- a/jdk/src/jdk.jlink/share/classes/module-info.java +++ b/jdk/src/jdk.jlink/share/classes/module-info.java @@ -40,7 +40,7 @@ module jdk.jlink { provides jdk.tools.jlink.plugin.TransformerPlugin with jdk.tools.jlink.internal.plugins.ExcludeFilesPlugin; provides jdk.tools.jlink.plugin.TransformerPlugin with jdk.tools.jlink.internal.plugins.SystemModuleDescriptorPlugin; provides jdk.tools.jlink.plugin.TransformerPlugin with jdk.tools.jlink.internal.plugins.StripNativeCommandsPlugin; - provides jdk.tools.jlink.plugin.TransformerPlugin with jdk.tools.jlink.internal.plugins.SortResourcesPlugin; + provides jdk.tools.jlink.plugin.TransformerPlugin with jdk.tools.jlink.internal.plugins.OrderResourcesPlugin; provides jdk.tools.jlink.plugin.TransformerPlugin with jdk.tools.jlink.internal.plugins.DefaultCompressPlugin; provides jdk.tools.jlink.plugin.TransformerPlugin with jdk.tools.jlink.internal.plugins.OptimizationPlugin; provides jdk.tools.jlink.plugin.TransformerPlugin with jdk.tools.jlink.internal.plugins.ExcludeVMPlugin; From 0f02e652db54210e26d43c49840625f83ab7f046 Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Wed, 11 May 2016 12:01:19 -0300 Subject: [PATCH 53/62] 8156766: jdk/test/tools/jlink/plugins/SorterPluginTest.java broken Reviewed-by: redestad --- jdk/test/ProblemList.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/jdk/test/ProblemList.txt b/jdk/test/ProblemList.txt index de8331e3622..a023df99ada 100644 --- a/jdk/test/ProblemList.txt +++ b/jdk/test/ProblemList.txt @@ -386,6 +386,7 @@ com/sun/jndi/ldap/DeadSSLLdapTimeoutTest.java 8141370 linux-i5 # core_tools tools/jimage/JImageTest.java 8150975 linux-i586,windows-i586 +tools/jlink/plugins/SorterPluginTest.java generic-all ############################################################################ From 114e7f30f750cd4c674d59aa2520cba654ae4974 Mon Sep 17 00:00:00 2001 From: Alexandre Iline Date: Tue, 10 May 2016 14:51:29 -0700 Subject: [PATCH 54/62] 8156695: Fix @modules in tests in java/lang/management As part of JDK-8155993, tests are updated to declare dependencies on jdk.management. Reviewed-by: mchung --- .../java/lang/invoke/LFCaching/LFMultiThreadCachingTest.java | 4 ++-- jdk/test/java/lang/management/BufferPoolMXBean/Basic.java | 4 ++-- .../GarbageCollectorMXBean/GcInfoCompositeType.java | 5 ++--- jdk/test/java/lang/management/MXBean/MXBeanBehavior.java | 5 ++--- .../management/ManagementFactory/GetPlatformMXBeans.java | 4 ++-- .../ManagementFactory/GetPlatformManagementInterfaces.java | 4 ++-- .../ManagementFactory/MBeanServerMXBeanUnsupportedTest.java | 5 ++--- .../lang/management/ManagementFactory/MXBeanException.java | 4 ++-- .../lang/management/ManagementFactory/MXBeanProxyTest.java | 4 ++-- .../ManagementFactory/PlatformMBeanServerTest.java | 4 ++-- .../lang/management/ManagementFactory/ProxyExceptions.java | 5 ++--- .../lang/management/ManagementFactory/ProxyTypeMapping.java | 5 ++--- .../lang/management/ManagementFactory/ThreadMXBeanProxy.java | 4 ++-- .../lang/management/ManagementFactory/ValidateOpenTypes.java | 5 ++--- .../management/MemoryMXBean/CollectionUsageThreshold.java | 4 ++-- jdk/test/java/lang/management/MemoryMXBean/GetMBeanInfo.java | 4 ++-- .../java/lang/management/MemoryMXBean/MemoryManagement.java | 4 ++-- jdk/test/java/lang/management/MemoryMXBean/MemoryTest.java | 4 ++-- .../lang/management/MemoryMXBean/ResetPeakMemoryUsage.java | 4 ++-- .../management/PlatformLoggingMXBean/LoggingMXBeanTest.java | 5 ++--- .../PlatformLoggingMXBean/PlatformLoggingMXBeanTest.java | 5 ++--- .../java/lang/management/ThreadMXBean/ThreadInfoArray.java | 4 ++-- 22 files changed, 44 insertions(+), 52 deletions(-) diff --git a/jdk/test/java/lang/invoke/LFCaching/LFMultiThreadCachingTest.java b/jdk/test/java/lang/invoke/LFCaching/LFMultiThreadCachingTest.java index 780185753d2..464b275412d 100644 --- a/jdk/test/java/lang/invoke/LFCaching/LFMultiThreadCachingTest.java +++ b/jdk/test/java/lang/invoke/LFCaching/LFMultiThreadCachingTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, 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 @@ -28,7 +28,7 @@ * @summary Test verifies that lambda forms are cached when run with multiple threads * @author kshefov * @library /lib/testlibrary/jsr292 /lib/testlibrary - * @modules java.management + * @modules jdk.management * @build TestMethods * @build LambdaFormTestCase * @build LFCachingTestCase diff --git a/jdk/test/java/lang/management/BufferPoolMXBean/Basic.java b/jdk/test/java/lang/management/BufferPoolMXBean/Basic.java index ddca74f8200..6b2ce97285b 100644 --- a/jdk/test/java/lang/management/BufferPoolMXBean/Basic.java +++ b/jdk/test/java/lang/management/BufferPoolMXBean/Basic.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2016, 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 @@ -24,7 +24,7 @@ /* @test * @bug 6606598 7024172 * @summary Unit test for java.lang.management.BufferPoolMXBean - * @modules java.management + * @modules jdk.management * @run main/othervm Basic * @key randomness */ diff --git a/jdk/test/java/lang/management/GarbageCollectorMXBean/GcInfoCompositeType.java b/jdk/test/java/lang/management/GarbageCollectorMXBean/GcInfoCompositeType.java index b6c56f190a9..a8bb8badf9b 100644 --- a/jdk/test/java/lang/management/GarbageCollectorMXBean/GcInfoCompositeType.java +++ b/jdk/test/java/lang/management/GarbageCollectorMXBean/GcInfoCompositeType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2006, 2015 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2006, 2016 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 @@ -26,8 +26,7 @@ * @bug 6396794 * @summary Check that LastGcInfo contents are reasonable * @author Eamonn McManus - * @modules java.management - * jdk.management + * @modules jdk.management * @run main/othervm -XX:-ExplicitGCInvokesConcurrent GcInfoCompositeType */ // Passing "-XX:-ExplicitGCInvokesConcurrent" to force System.gc() diff --git a/jdk/test/java/lang/management/MXBean/MXBeanBehavior.java b/jdk/test/java/lang/management/MXBean/MXBeanBehavior.java index 243cc165bca..c2c47c91062 100644 --- a/jdk/test/java/lang/management/MXBean/MXBeanBehavior.java +++ b/jdk/test/java/lang/management/MXBean/MXBeanBehavior.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2016, 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 @@ -27,8 +27,7 @@ * @summary Check that java.lang.management MXBeans have the same behavior * as user MXBeans * @author Eamonn McManus - * @modules java.management - * jdk.management + * @modules jdk.management * @run main/othervm MXBeanBehavior */ diff --git a/jdk/test/java/lang/management/ManagementFactory/GetPlatformMXBeans.java b/jdk/test/java/lang/management/ManagementFactory/GetPlatformMXBeans.java index 7e06603e277..56f94fd7b76 100644 --- a/jdk/test/java/lang/management/ManagementFactory/GetPlatformMXBeans.java +++ b/jdk/test/java/lang/management/ManagementFactory/GetPlatformMXBeans.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2016, 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 @@ -28,7 +28,7 @@ * methods and PlatformManagedObject.getObjectName() * @author Mandy Chung * - * @modules java.management + * @modules jdk.management * @run main GetPlatformMXBeans */ diff --git a/jdk/test/java/lang/management/ManagementFactory/GetPlatformManagementInterfaces.java b/jdk/test/java/lang/management/ManagementFactory/GetPlatformManagementInterfaces.java index 7ccd852be00..307c6fc72bf 100644 --- a/jdk/test/java/lang/management/ManagementFactory/GetPlatformManagementInterfaces.java +++ b/jdk/test/java/lang/management/ManagementFactory/GetPlatformManagementInterfaces.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2016, 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 @@ -28,7 +28,7 @@ * ManagementFactory.getPlatformManagementInterfaces() method * @author Frederic Parain * - * @modules java.management + * @modules jdk.management * @run main GetPlatformManagementInterfaces */ diff --git a/jdk/test/java/lang/management/ManagementFactory/MBeanServerMXBeanUnsupportedTest.java b/jdk/test/java/lang/management/ManagementFactory/MBeanServerMXBeanUnsupportedTest.java index 4af1b4170c5..97b3c0e5efe 100644 --- a/jdk/test/java/lang/management/ManagementFactory/MBeanServerMXBeanUnsupportedTest.java +++ b/jdk/test/java/lang/management/ManagementFactory/MBeanServerMXBeanUnsupportedTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2006, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2006, 2016, 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 @@ -27,8 +27,7 @@ * @summary Test that all the platform MXBeans are wrapped in StandardMBean so * an MBeanServer which does not have support for MXBeans can be used. * @author Luis-Miguel Alventosa - * @modules java.management - * jdk.management + * @modules jdk.management * @run clean MBeanServerMXBeanUnsupportedTest * @run build MBeanServerMXBeanUnsupportedTest * @run main/othervm MBeanServerMXBeanUnsupportedTest diff --git a/jdk/test/java/lang/management/ManagementFactory/MXBeanException.java b/jdk/test/java/lang/management/ManagementFactory/MXBeanException.java index 33c1a833889..2f7d6394d1c 100644 --- a/jdk/test/java/lang/management/ManagementFactory/MXBeanException.java +++ b/jdk/test/java/lang/management/ManagementFactory/MXBeanException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2016, 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 @@ -29,7 +29,7 @@ * * @author Mandy Chung * - * @modules java.management + * @modules jdk.management * @build MXBeanException * @run main MXBeanException */ diff --git a/jdk/test/java/lang/management/ManagementFactory/MXBeanProxyTest.java b/jdk/test/java/lang/management/ManagementFactory/MXBeanProxyTest.java index 7895c6be58d..73aa6392484 100644 --- a/jdk/test/java/lang/management/ManagementFactory/MXBeanProxyTest.java +++ b/jdk/test/java/lang/management/ManagementFactory/MXBeanProxyTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2016, 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 @@ -25,7 +25,7 @@ * @test * @bug 5024531 * @summary Basic Test for ManagementFactory.newPlatformMXBean(). - * @modules java.management + * @modules jdk.management * @run main/othervm MXBeanProxyTest * @author Mandy Chung */ diff --git a/jdk/test/java/lang/management/ManagementFactory/PlatformMBeanServerTest.java b/jdk/test/java/lang/management/ManagementFactory/PlatformMBeanServerTest.java index 8f44e1e70af..b7c469a6da9 100644 --- a/jdk/test/java/lang/management/ManagementFactory/PlatformMBeanServerTest.java +++ b/jdk/test/java/lang/management/ManagementFactory/PlatformMBeanServerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2016, 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 @@ -26,7 +26,7 @@ * @bug 4947536 * @summary Basic unit test of ManagementFactory.getPlatformMBeanServer() * @author Mandy Chung - * @modules java.management + * @modules jdk.management */ import java.lang.management.*; diff --git a/jdk/test/java/lang/management/ManagementFactory/ProxyExceptions.java b/jdk/test/java/lang/management/ManagementFactory/ProxyExceptions.java index 886efdd2b56..7916867a03c 100644 --- a/jdk/test/java/lang/management/ManagementFactory/ProxyExceptions.java +++ b/jdk/test/java/lang/management/ManagementFactory/ProxyExceptions.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2016, 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 @@ -27,8 +27,7 @@ * @summary Test type mapping of the platform MXBean proxy * returned from Management.newPlatformMXBeanProxy(). * @author Mandy Chung - * @modules java.management - * jdk.management + * @modules jdk.management */ import java.lang.management.*; import javax.management.*; diff --git a/jdk/test/java/lang/management/ManagementFactory/ProxyTypeMapping.java b/jdk/test/java/lang/management/ManagementFactory/ProxyTypeMapping.java index f500d82c078..516c75aaba9 100644 --- a/jdk/test/java/lang/management/ManagementFactory/ProxyTypeMapping.java +++ b/jdk/test/java/lang/management/ManagementFactory/ProxyTypeMapping.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2016, 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 @@ -28,8 +28,7 @@ * returned from Management.newPlatformMXBeanProxy(). * @author Mandy Chung * - * @modules java.management - * jdk.management + * @modules jdk.management * @compile ProxyTypeMapping.java * @run main/othervm -verbose:gc ProxyTypeMapping */ diff --git a/jdk/test/java/lang/management/ManagementFactory/ThreadMXBeanProxy.java b/jdk/test/java/lang/management/ManagementFactory/ThreadMXBeanProxy.java index a5f4a1ea9a1..dc3c97f9c08 100644 --- a/jdk/test/java/lang/management/ManagementFactory/ThreadMXBeanProxy.java +++ b/jdk/test/java/lang/management/ManagementFactory/ThreadMXBeanProxy.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2016, 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 @@ -29,7 +29,7 @@ * * @author Mandy Chung * - * @modules java.management + * @modules jdk.management * @run main ThreadMXBeanProxy */ diff --git a/jdk/test/java/lang/management/ManagementFactory/ValidateOpenTypes.java b/jdk/test/java/lang/management/ManagementFactory/ValidateOpenTypes.java index 20ed9cb223c..ab2bbad6516 100644 --- a/jdk/test/java/lang/management/ManagementFactory/ValidateOpenTypes.java +++ b/jdk/test/java/lang/management/ManagementFactory/ValidateOpenTypes.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2016, 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 @@ -28,8 +28,7 @@ * MBeanServer. * @author Mandy Chung * - * @modules java.management - * jdk.management + * @modules jdk.management * @compile ValidateOpenTypes.java * @run main/othervm -verbose:gc ValidateOpenTypes */ diff --git a/jdk/test/java/lang/management/MemoryMXBean/CollectionUsageThreshold.java b/jdk/test/java/lang/management/MemoryMXBean/CollectionUsageThreshold.java index 2196f891354..894d7a7855e 100644 --- a/jdk/test/java/lang/management/MemoryMXBean/CollectionUsageThreshold.java +++ b/jdk/test/java/lang/management/MemoryMXBean/CollectionUsageThreshold.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2016, 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 @@ -31,7 +31,7 @@ * @author Mandy Chung * * @library /lib/testlibrary/ - * @modules java.management + * @modules jdk.management * @build jdk.testlibrary.* CollectionUsageThreshold MemoryUtil RunUtil * @requires vm.opt.ExplicitGCInvokesConcurrent == "false" | vm.opt.ExplicitGCInvokesConcurrent == "null" * @run main/timeout=300 CollectionUsageThreshold diff --git a/jdk/test/java/lang/management/MemoryMXBean/GetMBeanInfo.java b/jdk/test/java/lang/management/MemoryMXBean/GetMBeanInfo.java index a1ae359410c..c12e5ce5d4a 100644 --- a/jdk/test/java/lang/management/MemoryMXBean/GetMBeanInfo.java +++ b/jdk/test/java/lang/management/MemoryMXBean/GetMBeanInfo.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2016, 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 @@ -27,7 +27,7 @@ * @summary Make sure MemoryMXBean has two notification types. * @author Mandy Chung * - * @modules java.management + * @modules jdk.management * @run main GetMBeanInfo */ diff --git a/jdk/test/java/lang/management/MemoryMXBean/MemoryManagement.java b/jdk/test/java/lang/management/MemoryMXBean/MemoryManagement.java index 2ba06ecc0ff..bf457cd477b 100644 --- a/jdk/test/java/lang/management/MemoryMXBean/MemoryManagement.java +++ b/jdk/test/java/lang/management/MemoryMXBean/MemoryManagement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2016, 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 @@ -30,7 +30,7 @@ * * @author Mandy Chung * - * @modules java.management + * @modules jdk.management * @build MemoryManagement MemoryUtil * @run main/othervm/timeout=600 -Xmn8m -XX:+IgnoreUnrecognizedVMOptions -XX:G1HeapRegionSize=1 -XX:-UseLargePages MemoryManagement */ diff --git a/jdk/test/java/lang/management/MemoryMXBean/MemoryTest.java b/jdk/test/java/lang/management/MemoryMXBean/MemoryTest.java index ce55245b4c0..340c1b6e636 100644 --- a/jdk/test/java/lang/management/MemoryMXBean/MemoryTest.java +++ b/jdk/test/java/lang/management/MemoryMXBean/MemoryTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2016, 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 @@ -28,7 +28,7 @@ * MemoryMXBean.getMemoryManager(). * @author Mandy Chung * - * @modules java.management + * @modules jdk.management * @run main MemoryTest 2 */ diff --git a/jdk/test/java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java b/jdk/test/java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java index b1f6e781044..195cb3a2fd8 100644 --- a/jdk/test/java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java +++ b/jdk/test/java/lang/management/MemoryMXBean/ResetPeakMemoryUsage.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2016, 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 @@ -33,7 +33,7 @@ * @author Mandy Chung * * @library /lib/testlibrary/ - * @modules java.management + * @modules jdk.management * @build jdk.testlibrary.* ResetPeakMemoryUsage MemoryUtil RunUtil * @run main ResetPeakMemoryUsage */ diff --git a/jdk/test/java/lang/management/PlatformLoggingMXBean/LoggingMXBeanTest.java b/jdk/test/java/lang/management/PlatformLoggingMXBean/LoggingMXBeanTest.java index 67548b54c42..2cdd8957ac2 100644 --- a/jdk/test/java/lang/management/PlatformLoggingMXBean/LoggingMXBeanTest.java +++ b/jdk/test/java/lang/management/PlatformLoggingMXBean/LoggingMXBeanTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2016, 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 @@ -27,8 +27,7 @@ * @summary Test if proxy for PlatformLoggingMXBean is equivalent * to proxy for LoggingMXBean * - * @modules java.management - * jdk.management + * @modules jdk.management * @build LoggingMXBeanTest * @run main LoggingMXBeanTest */ diff --git a/jdk/test/java/lang/management/PlatformLoggingMXBean/PlatformLoggingMXBeanTest.java b/jdk/test/java/lang/management/PlatformLoggingMXBean/PlatformLoggingMXBeanTest.java index 3c697db7cce..ac0bc89f98c 100644 --- a/jdk/test/java/lang/management/PlatformLoggingMXBean/PlatformLoggingMXBeanTest.java +++ b/jdk/test/java/lang/management/PlatformLoggingMXBean/PlatformLoggingMXBeanTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2016, 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 @@ -29,8 +29,7 @@ * This test performs similar testing as * java/util/logging/LoggingMXBeanTest. * - * @modules java.management - * jdk.management + * @modules jdk.management * @build PlatformLoggingMXBeanTest * @run main PlatformLoggingMXBeanTest */ diff --git a/jdk/test/java/lang/management/ThreadMXBean/ThreadInfoArray.java b/jdk/test/java/lang/management/ThreadMXBean/ThreadInfoArray.java index 4de0f2e30d1..b61f72a35aa 100644 --- a/jdk/test/java/lang/management/ThreadMXBean/ThreadInfoArray.java +++ b/jdk/test/java/lang/management/ThreadMXBean/ThreadInfoArray.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2016, 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 @@ -30,7 +30,7 @@ * @author Mandy Chung * @author Jaroslav Bachorik * - * @modules java.management + * @modules jdk.management * @build ThreadInfoArray * @run main ThreadInfoArray */ From 172839f24f63d81efad1b44a47b99d02a5f4c3bc Mon Sep 17 00:00:00 2001 From: Daniel Fuchs Date: Wed, 11 May 2016 19:23:58 +0200 Subject: [PATCH 55/62] 8156153: java/lang/System/LoggerFinder/jdk/DefaultLoggerBridgeTest/DefaultLoggerBridgeTest.java fails with java.lang.RuntimeException Runs each scenario in its own VM to avoid unwanted interaction and start from a clean slate. Reviewed-by: mchung --- .../DefaultLoggerBridgeTest/DefaultLoggerBridgeTest.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/jdk/test/java/lang/System/LoggerFinder/jdk/DefaultLoggerBridgeTest/DefaultLoggerBridgeTest.java b/jdk/test/java/lang/System/LoggerFinder/jdk/DefaultLoggerBridgeTest/DefaultLoggerBridgeTest.java index 7118101cada..c796cd1888d 100644 --- a/jdk/test/java/lang/System/LoggerFinder/jdk/DefaultLoggerBridgeTest/DefaultLoggerBridgeTest.java +++ b/jdk/test/java/lang/System/LoggerFinder/jdk/DefaultLoggerBridgeTest/DefaultLoggerBridgeTest.java @@ -59,7 +59,9 @@ import java.lang.reflect.Module; * @modules java.base/sun.util.logging * java.base/jdk.internal.logger * java.logging/sun.util.logging.internal - * @run main/othervm DefaultLoggerBridgeTest + * @run main/othervm DefaultLoggerBridgeTest NOSECURITY + * @run main/othervm DefaultLoggerBridgeTest NOPERMISSIONS + * @run main/othervm DefaultLoggerBridgeTest WITHPERMISSIONS * @author danielfuchs */ public class DefaultLoggerBridgeTest { @@ -275,7 +277,6 @@ public class DefaultLoggerBridgeTest { }; Stream.of(args).map(TestCases::valueOf).forEach((testCase) -> { - LoggerFinder provider; switch (testCase) { case NOSECURITY: System.out.println("\n*** Without Security Manager\n"); @@ -396,10 +397,10 @@ public class DefaultLoggerBridgeTest { final boolean old = allowAll.get().get(); allowAll.get().set(true); try { - sysSink = LoggingProviderImpl.getLogManagerAccess().demandLoggerFor( - LogManager.getLogManager(), "foo", Thread.class.getModule()); appSink = LoggingProviderImpl.getLogManagerAccess().demandLoggerFor( LogManager.getLogManager(), "foo", DefaultLoggerBridgeTest.class.getModule()); + sysSink = LoggingProviderImpl.getLogManagerAccess().demandLoggerFor( + LogManager.getLogManager(), "foo", Thread.class.getModule()); if (appSink == sysSink) { throw new RuntimeException("identical backend loggers"); } From 82ae26a9a82cfe4735988f73364c718cc014e452 Mon Sep 17 00:00:00 2001 From: Roger Riggs Date: Wed, 11 May 2016 14:01:29 -0400 Subject: [PATCH 56/62] 8155978: Remove HTTP proxy implementation and tests from RMI Reviewed-by: smarks --- .../java/rmi/server/RMISocketFactory.java | 21 +- .../sun/rmi/transport/proxy/CGIHandler.java | 423 ---------------- .../proxy/HttpAwareServerSocket.java | 114 ----- .../rmi/transport/proxy/HttpInputStream.java | 205 -------- .../rmi/transport/proxy/HttpOutputStream.java | 80 --- .../transport/proxy/HttpReceiveSocket.java | 128 ----- .../transport/proxy/HttpSendInputStream.java | 161 ------ .../transport/proxy/HttpSendOutputStream.java | 105 ---- .../rmi/transport/proxy/HttpSendSocket.java | 344 ------------- .../proxy/RMIHttpToCGISocketFactory.java | 55 -- .../proxy/RMIHttpToPortSocketFactory.java | 53 -- .../proxy/RMIMasterSocketFactory.java | 468 ------------------ .../rmi/transport/proxy/RMISocketInfo.java | 39 -- .../rmi/transport/proxy/WrappedSocket.java | 192 ------- .../sun/rmi/transport/tcp/TCPConnection.java | 11 +- .../TCPDirectSocketFactory.java} | 4 +- .../sun/rmi/transport/tcp/TCPTransport.java | 30 +- .../transport/httpSocket/HttpSocketTest.java | 113 ----- .../httpSocket/HttpSocketTest_Stub.java | 130 ----- .../rmi/transport/httpSocket/security.policy | 10 - .../proxy/DisableHttpDefaultValue.java | 69 --- .../transport/proxy/EagerHttpFallback.java | 73 --- .../tcp/blockAccept/BlockAcceptTest.java | 175 ------- .../transport/tcp/blockAccept/TestIface.java | 31 -- .../transport/tcp/blockAccept/TestImpl.java | 49 -- .../tcp/blockAccept/TestImpl_Stub.java | 66 --- .../transport/tcp/blockAccept/security.policy | 10 - 27 files changed, 10 insertions(+), 3149 deletions(-) delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/CGIHandler.java delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpAwareServerSocket.java delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpInputStream.java delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpOutputStream.java delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpReceiveSocket.java delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpSendInputStream.java delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpSendOutputStream.java delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpSendSocket.java delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIHttpToCGISocketFactory.java delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIHttpToPortSocketFactory.java delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIMasterSocketFactory.java delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMISocketInfo.java delete mode 100644 jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/WrappedSocket.java rename jdk/src/java.rmi/share/classes/sun/rmi/transport/{proxy/RMIDirectSocketFactory.java => tcp/TCPDirectSocketFactory.java} (94%) delete mode 100644 jdk/test/java/rmi/transport/httpSocket/HttpSocketTest.java delete mode 100644 jdk/test/java/rmi/transport/httpSocket/HttpSocketTest_Stub.java delete mode 100644 jdk/test/java/rmi/transport/httpSocket/security.policy delete mode 100644 jdk/test/sun/rmi/transport/proxy/DisableHttpDefaultValue.java delete mode 100644 jdk/test/sun/rmi/transport/proxy/EagerHttpFallback.java delete mode 100644 jdk/test/sun/rmi/transport/tcp/blockAccept/BlockAcceptTest.java delete mode 100644 jdk/test/sun/rmi/transport/tcp/blockAccept/TestIface.java delete mode 100644 jdk/test/sun/rmi/transport/tcp/blockAccept/TestImpl.java delete mode 100644 jdk/test/sun/rmi/transport/tcp/blockAccept/TestImpl_Stub.java delete mode 100644 jdk/test/sun/rmi/transport/tcp/blockAccept/security.policy diff --git a/jdk/src/java.rmi/share/classes/java/rmi/server/RMISocketFactory.java b/jdk/src/java.rmi/share/classes/java/rmi/server/RMISocketFactory.java index e69c269f81a..df3bc9fd24a 100644 --- a/jdk/src/java.rmi/share/classes/java/rmi/server/RMISocketFactory.java +++ b/jdk/src/java.rmi/share/classes/java/rmi/server/RMISocketFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 2016, 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 @@ -35,21 +35,8 @@ import java.net.*; * request that the RMI runtime use its socket factory instance * instead of the default implementation. * - *

          The default socket factory implementation performs a - * three-tiered approach to creating client sockets. First, a direct - * socket connection to the remote VM is attempted. If that fails - * (due to a firewall), the runtime uses HTTP with the explicit port - * number of the server. If the firewall does not allow this type of - * communication, then HTTP to a cgi-bin script on the server is used - * to POST the RMI call. The HTTP tunneling mechanisms are disabled by - * default. This behavior is controlled by the {@code java.rmi.server.disableHttp} - * property, whose default value is {@code true}. Setting this property's - * value to {@code false} will enable the HTTP tunneling mechanisms. - * - *

          Deprecated: HTTP Tunneling. The HTTP tunneling mechanisms - * described above, specifically HTTP with an explicit port and HTTP to a - * cgi-bin script, are deprecated. These HTTP tunneling mechanisms are - * subject to removal in a future release of the platform. + *

          The default socket factory implementation creates a direct + * socket connection to the remote host. * *

          The default socket factory implementation creates server sockets that * are bound to the wildcard address, which accepts requests from all network @@ -181,7 +168,7 @@ public abstract class RMISocketFactory public synchronized static RMISocketFactory getDefaultSocketFactory() { if (defaultSocketFactory == null) { defaultSocketFactory = - new sun.rmi.transport.proxy.RMIMasterSocketFactory(); + new sun.rmi.transport.tcp.TCPDirectSocketFactory(); } return defaultSocketFactory; } diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/CGIHandler.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/CGIHandler.java deleted file mode 100644 index 546ccd8ea10..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/CGIHandler.java +++ /dev/null @@ -1,423 +0,0 @@ -/* - * Copyright (c) 1996, 2013, 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 sun.rmi.transport.proxy; - -import java.io.*; -import java.net.*; -import java.util.Hashtable; - -/** - * CGIClientException is thrown when an error is detected - * in a client's request. - */ -class CGIClientException extends Exception { - private static final long serialVersionUID = 8147981687059865216L; - - public CGIClientException(String s) { - super(s); - } - - public CGIClientException(String s, Throwable cause) { - super(s, cause); - } -} - -/** - * CGIServerException is thrown when an error occurs here on the server. - */ -class CGIServerException extends Exception { - - private static final long serialVersionUID = 6928425456704527017L; - - public CGIServerException(String s) { - super(s); - } - - public CGIServerException(String s, Throwable cause) { - super(s, cause); - } -} - -/** - * CGICommandHandler is the interface to an object that handles a - * particular supported command. - */ -interface CGICommandHandler { - - /** - * Return the string form of the command - * to be recognized in the query string. - */ - public String getName(); - - /** - * Execute the command with the given string as parameter. - */ - public void execute(String param) throws CGIClientException, CGIServerException; -} - -/** - * The CGIHandler class contains methods for executing as a CGI program. - * The main function interprets the query string as a command of the form - * "{@code =}". - * - * This class depends on the CGI 1.0 environment variables being set as - * properties of the same name in this Java VM. - * - * All data and methods of this class are static because they are specific - * to this particular CGI process. - */ -public final class CGIHandler { - - /* get CGI parameters that we need */ - static int ContentLength; - static String QueryString; - static String RequestMethod; - static String ServerName; - static int ServerPort; - - static { - java.security.AccessController.doPrivileged( - new java.security.PrivilegedAction() { - public Void run() { - ContentLength = - Integer.getInteger("CONTENT_LENGTH", 0).intValue(); - QueryString = System.getProperty("QUERY_STRING", ""); - RequestMethod = System.getProperty("REQUEST_METHOD", ""); - ServerName = System.getProperty("SERVER_NAME", ""); - ServerPort = Integer.getInteger("SERVER_PORT", 0).intValue(); - return null; - } - }); - } - - /* list of handlers for supported commands */ - private static CGICommandHandler commands[] = { - new CGIForwardCommand(), - new CGIGethostnameCommand(), - new CGIPingCommand(), - new CGITryHostnameCommand() - }; - - /* construct table mapping command strings to handlers */ - private static Hashtable commandLookup; - static { - commandLookup = new Hashtable<>(); - for (int i = 0; i < commands.length; ++ i) - commandLookup.put(commands[i].getName(), commands[i]); - } - - /* prevent instantiation of this class */ - private CGIHandler() {} - - /** - * Execute command given in query string on URL. The string before - * the first '=' is interpreted as the command name, and the string - * after the first '=' is the parameters to the command. - */ - public static void main(String args[]) - { - try { - String command, param; - int delim = QueryString.indexOf('='); - if (delim == -1) { - command = QueryString; - param = ""; - } - else { - command = QueryString.substring(0, delim); - param = QueryString.substring(delim + 1); - } - CGICommandHandler handler = - commandLookup.get(command); - if (handler != null) - try { - handler.execute(param); - } catch (CGIClientException e) { - e.printStackTrace(); - returnClientError(e.getMessage()); - } catch (CGIServerException e) { - e.printStackTrace(); - returnServerError(e.getMessage()); - } - else - returnClientError("invalid command."); - } catch (Exception e) { - e.printStackTrace(); - returnServerError("internal error: " + e.getMessage()); - } - System.exit(0); - } - - /** - * Return an HTML error message indicating there was error in - * the client's request. - */ - private static void returnClientError(String message) - { - System.out.println("Status: 400 Bad Request: " + message); - System.out.println("Content-type: text/html"); - System.out.println(""); - System.out.println("" + - "Java RMI Client Error" + - "" + - ""); - System.out.println("

          Java RMI Client Error

          "); - System.out.println(""); - System.out.println(message); - System.out.println(""); - System.exit(1); - } - - /** - * Return an HTML error message indicating an error occurred - * here on the server. - */ - private static void returnServerError(String message) - { - System.out.println("Status: 500 Server Error: " + message); - System.out.println("Content-type: text/html"); - System.out.println(""); - System.out.println("" + - "Java RMI Server Error" + - "" + - ""); - System.out.println("

          Java RMI Server Error

          "); - System.out.println(""); - System.out.println(message); - System.out.println(""); - System.exit(1); - } -} - -/** - * "forward" command: Forward request body to local port on the server, - * and send response back to client. - */ -final class CGIForwardCommand implements CGICommandHandler { - - public String getName() { - return "forward"; - } - - @SuppressWarnings("deprecation") - private String getLine (DataInputStream socketIn) throws IOException { - return socketIn.readLine(); - } - - public void execute(String param) throws CGIClientException, CGIServerException - { - if (!CGIHandler.RequestMethod.equals("POST")) - throw new CGIClientException("can only forward POST requests"); - - int port; - try { - port = Integer.parseInt(param); - } catch (NumberFormatException e) { - throw new CGIClientException("invalid port number.", e); - } - if (port <= 0 || port > 0xFFFF) - throw new CGIClientException("invalid port: " + port); - if (port < 1024) - throw new CGIClientException("permission denied for port: " + - port); - - byte buffer[]; - Socket socket; - try { - socket = new Socket(InetAddress.getLocalHost(), port); - } catch (IOException e) { - throw new CGIServerException("could not connect to local port", e); - } - - /* - * read client's request body - */ - DataInputStream clientIn = new DataInputStream(System.in); - buffer = new byte[CGIHandler.ContentLength]; - try { - clientIn.readFully(buffer); - } catch (EOFException e) { - throw new CGIClientException("unexpected EOF reading request body", e); - } catch (IOException e) { - throw new CGIClientException("error reading request body", e); - } - - /* - * send to local server in HTTP - */ - try { - DataOutputStream socketOut = - new DataOutputStream(socket.getOutputStream()); - socketOut.writeBytes("POST / HTTP/1.0\r\n"); - socketOut.writeBytes("Content-length: " + - CGIHandler.ContentLength + "\r\n\r\n"); - socketOut.write(buffer); - socketOut.flush(); - } catch (IOException e) { - throw new CGIServerException("error writing to server", e); - } - - /* - * read response - */ - DataInputStream socketIn; - try { - socketIn = new DataInputStream(socket.getInputStream()); - } catch (IOException e) { - throw new CGIServerException("error reading from server", e); - } - String key = "Content-length:".toLowerCase(); - boolean contentLengthFound = false; - String line; - int responseContentLength = -1; - do { - try { - line = getLine(socketIn); - } catch (IOException e) { - throw new CGIServerException("error reading from server", e); - } - if (line == null) - throw new CGIServerException( - "unexpected EOF reading server response"); - - if (line.toLowerCase().startsWith(key)) { - if (contentLengthFound) { - throw new CGIServerException( - "Multiple Content-length entries found."); - } else { - responseContentLength = - Integer.parseInt(line.substring(key.length()).trim()); - contentLengthFound = true; - } - } - } while ((line.length() != 0) && - (line.charAt(0) != '\r') && (line.charAt(0) != '\n')); - - if (!contentLengthFound || responseContentLength < 0) - throw new CGIServerException( - "missing or invalid content length in server response"); - buffer = new byte[responseContentLength]; - try { - socketIn.readFully(buffer); - } catch (EOFException e) { - throw new CGIServerException( - "unexpected EOF reading server response", e); - } catch (IOException e) { - throw new CGIServerException("error reading from server", e); - } - - /* - * send response back to client - */ - System.out.println("Status: 200 OK"); - System.out.println("Content-type: application/octet-stream"); - System.out.println(""); - try { - System.out.write(buffer); - } catch (IOException e) { - throw new CGIServerException("error writing response", e); - } - System.out.flush(); - } -} - -/** - * "gethostname" command: Return the host name of the server as the - * response body - */ -final class CGIGethostnameCommand implements CGICommandHandler { - - public String getName() { - return "gethostname"; - } - - public void execute(String param) - { - System.out.println("Status: 200 OK"); - System.out.println("Content-type: application/octet-stream"); - System.out.println("Content-length: " + - CGIHandler.ServerName.length()); - System.out.println(""); - System.out.print(CGIHandler.ServerName); - System.out.flush(); - } -} - -/** - * "ping" command: Return an OK status to indicate that connection - * was successful. - */ -final class CGIPingCommand implements CGICommandHandler { - - public String getName() { - return "ping"; - } - - public void execute(String param) - { - System.out.println("Status: 200 OK"); - System.out.println("Content-type: application/octet-stream"); - System.out.println("Content-length: 0"); - System.out.println(""); - } -} - -/** - * "tryhostname" command: Return a human readable message describing - * what host name is available to local Java VMs. - */ -final class CGITryHostnameCommand implements CGICommandHandler { - - public String getName() { - return "tryhostname"; - } - - public void execute(String param) - { - System.out.println("Status: 200 OK"); - System.out.println("Content-type: text/html"); - System.out.println(""); - System.out.println("" + - "Java RMI Server Hostname Info" + - "" + - ""); - System.out.println("

          Java RMI Server Hostname Info

          "); - System.out.println("

          Local host name available to Java VM:

          "); - System.out.print("

          InetAddress.getLocalHost().getHostName()"); - try { - String localHostName = InetAddress.getLocalHost().getHostName(); - - System.out.println(" = " + localHostName); - } catch (UnknownHostException e) { - System.out.println(" threw java.net.UnknownHostException"); - } - - System.out.println("

          Server host information obtained through CGI interface from HTTP server:

          "); - System.out.println("

          SERVER_NAME = " + CGIHandler.ServerName); - System.out.println("

          SERVER_PORT = " + CGIHandler.ServerPort); - System.out.println(""); - } -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpAwareServerSocket.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpAwareServerSocket.java deleted file mode 100644 index b4512fecd93..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpAwareServerSocket.java +++ /dev/null @@ -1,114 +0,0 @@ -/* - * Copyright (c) 1996, 2005, 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 sun.rmi.transport.proxy; - -import java.io.BufferedInputStream; -import java.io.IOException; -import java.net.ServerSocket; -import java.net.Socket; -import sun.rmi.runtime.Log; - -/** - * The HttpAwareServerSocket class extends the java.net.ServerSocket - * class. It behaves like a ServerSocket, except that if - * the first four bytes of an accepted socket are the letters "POST", - * then it returns an HttpReceiveSocket instead of a java.net.Socket. - * This means that the accept method blocks until four bytes have been - * read from the new socket's input stream. - */ -class HttpAwareServerSocket extends ServerSocket { - - /** - * Create a server socket on a specified port. - * @param port the port - * @exception IOException IO error when opening the socket. - */ - public HttpAwareServerSocket(int port) throws IOException - { - super(port); - } - - /** - * Create a server socket, bind it to the specified local port - * and listen to it. You can connect to an annonymous port by - * specifying the port number to be 0. backlog specifies - * how many connection requests the system will queue up while waiting - * for the ServerSocket to execute accept(). - * @param port the specified port - * @param backlog the number of queued connect requests pending accept - */ - public HttpAwareServerSocket(int port, int backlog) throws IOException - { - super(port, backlog); - } - - /** - * Accept a connection. This method will block until the connection - * is made and four bytes can be read from the input stream. - * If the first four bytes are "POST", then an HttpReceiveSocket is - * returned, which will handle the HTTP protocol wrapping. - * Otherwise, a WrappedSocket is returned. The input stream will be - * reset to the beginning of the transmission. - * In either case, a BufferedInputStream will already be on top of - * the underlying socket's input stream. - * @exception IOException IO error when waiting for the connection. - */ - public Socket accept() throws IOException - { - Socket socket = super.accept(); - BufferedInputStream in = - new BufferedInputStream(socket.getInputStream()); - - RMIMasterSocketFactory.proxyLog.log(Log.BRIEF, - "socket accepted (checking for POST)"); - - in.mark(4); - boolean isHttp = (in.read() == 'P') && - (in.read() == 'O') && - (in.read() == 'S') && - (in.read() == 'T'); - in.reset(); - - if (RMIMasterSocketFactory.proxyLog.isLoggable(Log.BRIEF)) { - RMIMasterSocketFactory.proxyLog.log(Log.BRIEF, - (isHttp ? "POST found, HTTP socket returned" : - "POST not found, direct socket returned")); - } - - if (isHttp) - return new HttpReceiveSocket(socket, in, null); - else - return new WrappedSocket(socket, in, null); - } - - /** - * Return the implementation address and implementation port of - * the HttpAwareServerSocket as a String. - */ - public String toString() - { - return "HttpAware" + super.toString(); - } -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpInputStream.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpInputStream.java deleted file mode 100644 index 4b5cad95044..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpInputStream.java +++ /dev/null @@ -1,205 +0,0 @@ -/* - * Copyright (c) 1996, 2014, 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 sun.rmi.transport.proxy; - -import java.io.*; - -import sun.rmi.runtime.Log; - -/** - * The HttpInputStream class assists the HttpSendSocket and HttpReceiveSocket - * classes by filtering out the header for the message as well as any - * data after its proper content length. - */ -class HttpInputStream extends FilterInputStream { - - /** bytes remaining to be read from proper content of message */ - protected int bytesLeft; - - /** bytes remaining to be read at time of last mark */ - protected int bytesLeftAtMark; - - /** - * Create new filter on a given input stream. - * @param in the InputStream to filter from - */ - @SuppressWarnings("deprecation") - public HttpInputStream(InputStream in) throws IOException - { - super(in); - - if (in.markSupported()) - in.mark(0); // prevent resetting back to old marks - - // pull out header, looking for content length - - DataInputStream dis = new DataInputStream(in); - String key = "Content-length:".toLowerCase(); - boolean contentLengthFound = false; - String line; - do { - line = dis.readLine(); - - if (RMIMasterSocketFactory.proxyLog.isLoggable(Log.VERBOSE)) { - RMIMasterSocketFactory.proxyLog.log(Log.VERBOSE, - "received header line: \"" + line + "\""); - } - - if (line == null) - throw new EOFException(); - - if (line.toLowerCase().startsWith(key)) { - if (contentLengthFound) { - throw new IOException( - "Multiple Content-length entries found."); - } else { - bytesLeft = - Integer.parseInt(line.substring(key.length()).trim()); - contentLengthFound = true; - } - } - - // The idea here is to go past the first blank line. - // Some DataInputStream.readLine() documentation specifies that - // it does include the line-terminating character(s) in the - // returned string, but it actually doesn't, so we'll cover - // all cases here... - } while ((line.length() != 0) && - (line.charAt(0) != '\r') && (line.charAt(0) != '\n')); - - if (!contentLengthFound || bytesLeft < 0) { - // This really shouldn't happen, but if it does, shoud we fail?? - // For now, just give up and let a whole lot of bytes through... - bytesLeft = Integer.MAX_VALUE; - } - bytesLeftAtMark = bytesLeft; - - if (RMIMasterSocketFactory.proxyLog.isLoggable(Log.VERBOSE)) { - RMIMasterSocketFactory.proxyLog.log(Log.VERBOSE, - "content length: " + bytesLeft); - } - } - - /** - * Returns the number of bytes that can be read with blocking. - * Make sure that this does not exceed the number of bytes remaining - * in the proper content of the message. - */ - public int available() throws IOException - { - int bytesAvailable = in.available(); - if (bytesAvailable > bytesLeft) - bytesAvailable = bytesLeft; - - return bytesAvailable; - } - - /** - * Read a byte of data from the stream. Make sure that one is available - * from the proper content of the message, else -1 is returned to - * indicate to the user that the end of the stream has been reached. - */ - public int read() throws IOException - { - if (bytesLeft > 0) { - int data = in.read(); - if (data != -1) - -- bytesLeft; - - if (RMIMasterSocketFactory.proxyLog.isLoggable(Log.VERBOSE)) { - RMIMasterSocketFactory.proxyLog.log(Log.VERBOSE, - "received byte: '" + - ((data & 0x7F) < ' ' ? " " : String.valueOf((char) data)) + - "' " + data); - } - - return data; - } - else { - RMIMasterSocketFactory.proxyLog.log(Log.VERBOSE, - "read past content length"); - - return -1; - } - } - - public int read(byte b[], int off, int len) throws IOException - { - if (bytesLeft == 0 && len > 0) { - RMIMasterSocketFactory.proxyLog.log(Log.VERBOSE, - "read past content length"); - - return -1; - } - if (len > bytesLeft) - len = bytesLeft; - int bytesRead = in.read(b, off, len); - bytesLeft -= bytesRead; - - if (RMIMasterSocketFactory.proxyLog.isLoggable(Log.VERBOSE)) { - RMIMasterSocketFactory.proxyLog.log(Log.VERBOSE, - "read " + bytesRead + " bytes, " + bytesLeft + " remaining"); - } - - return bytesRead; - } - - /** - * Mark the current position in the stream (for future calls to reset). - * Remember where we are within the proper content of the message, so - * that a reset method call can recreate our state properly. - * @param readlimit how many bytes can be read before mark becomes invalid - */ - public void mark(int readlimit) - { - in.mark(readlimit); - if (in.markSupported()) - bytesLeftAtMark = bytesLeft; - } - - /** - * Repositions the stream to the last marked position. Make sure to - * adjust our position within the proper content accordingly. - */ - public void reset() throws IOException - { - in.reset(); - bytesLeft = bytesLeftAtMark; - } - - /** - * Skips bytes of the stream. Make sure to adjust our - * position within the proper content accordingly. - * @param n number of bytes to be skipped - */ - public long skip(long n) throws IOException - { - if (n > bytesLeft) - n = bytesLeft; - long bytesSkipped = in.skip(n); - bytesLeft -= bytesSkipped; - return bytesSkipped; - } -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpOutputStream.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpOutputStream.java deleted file mode 100644 index 5f1f2a6a680..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpOutputStream.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Copyright (c) 1996, 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 sun.rmi.transport.proxy; - -import java.io.*; - -/** - * The HttpOutputStream class assists the HttpSendSocket and HttpReceiveSocket - * classes by providing an output stream that buffers its entire input until - * closed, and then it sends the complete transmission prefixed by the end of - * an HTTP header that specifies the content length. - */ -class HttpOutputStream extends ByteArrayOutputStream { - - /** the output stream to send response to */ - protected OutputStream out; - - /** true if HTTP response has been sent */ - boolean responseSent = false; - - /** - * Begin buffering new HTTP response to be sent to a given stream. - * @param out the OutputStream to send response to - */ - public HttpOutputStream(OutputStream out) { - super(); - this.out = out; - } - - /** - * On close, send HTTP-packaged response. - */ - public synchronized void close() throws IOException { - if (!responseSent) { - /* - * If response would have zero content length, then make it - * have some arbitrary data so that certain clients will not - * fail because the "document contains no data". - */ - if (size() == 0) - write(emptyData); - - DataOutputStream dos = new DataOutputStream(out); - dos.writeBytes("Content-type: application/octet-stream\r\n"); - dos.writeBytes("Content-length: " + size() + "\r\n"); - dos.writeBytes("\r\n"); - writeTo(dos); - dos.flush(); - // Do not close the underlying stream here, because that would - // close the underlying socket and prevent reading a response. - reset(); // reset byte array - responseSent = true; - } - } - - /** data to send if the response would otherwise be empty */ - private static byte[] emptyData = { 0 }; -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpReceiveSocket.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpReceiveSocket.java deleted file mode 100644 index c916254ffcd..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpReceiveSocket.java +++ /dev/null @@ -1,128 +0,0 @@ -/* - * Copyright (c) 1996, 2000, 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 sun.rmi.transport.proxy; - -import java.io.*; -import java.net.Socket; -import java.net.InetAddress; - -/** - * The HttpReceiveSocket class extends the WrappedSocket class - * by removing the HTTP protocol packaging from the input stream and - * formatting the output stream as an HTTP response. - * - * NOTES: - * - * The output stream must be explicitly closed for the output to be - * sent, since the HttpResponseOutputStream needs to buffer the entire - * transmission to be able to fill in the content-length field of - * the HTTP header. Closing this socket will do this. - * - * The constructor blocks until the HTTP protocol header - * is received. This could be fixed, but I don't think it should be a - * problem because this object would not be created unless the - * HttpAwareServerSocket has detected the beginning of the header - * anyway, so the rest should be there. - * - * This socket can only be used to process one POST and reply to it. - * Another message would be received on a newly accepted socket anyway. - */ -public class HttpReceiveSocket extends WrappedSocket implements RMISocketInfo { - - /** true if the HTTP header has pushed through the output stream yet */ - private boolean headerSent = false; - - /** - * Layer on top of a pre-existing Socket object, and use specified - * input and output streams. - * @param socket the pre-existing socket to use - * @param in the InputStream to use for this socket (can be null) - * @param out the OutputStream to use for this socket (can be null) - */ - public HttpReceiveSocket(Socket socket, InputStream in, OutputStream out) - throws IOException - { - super(socket, in, out); - - this.in = new HttpInputStream(in != null ? in : - socket.getInputStream()); - this.out = (out != null ? out : - socket.getOutputStream()); - } - - /** - * Indicate that this socket is not reusable. - */ - public boolean isReusable() - { - return false; - } - - /** - * Get the address to which this socket is connected. "null" is always - * returned (to indicate an unknown address) because the originating - * host's IP address cannot be reliably determined: both because the - * request probably went through a proxy server, and because if it was - * delivered by a local forwarder (CGI script or servlet), we do NOT - * want it to appear as if the call is coming from the local host (in - * case the remote object makes access control decisions based on the - * "client host" of a remote call; see bugid 4399040). - */ - public InetAddress getInetAddress() { - return null; - } - - /** - * Get an OutputStream for this socket. - */ - public OutputStream getOutputStream() throws IOException - { - if (!headerSent) { // could this be done in constructor?? - DataOutputStream dos = new DataOutputStream(out); - dos.writeBytes("HTTP/1.0 200 OK\r\n"); - dos.flush(); - headerSent = true; - out = new HttpOutputStream(out); - } - return out; - } - - /** - * Close the socket. - */ - public synchronized void close() throws IOException - { - getOutputStream().close(); // make sure response is sent - socket.close(); - } - - /** - * Return string representation of the socket. - */ - public String toString() - { - return "HttpReceive" + socket.toString(); - } -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpSendInputStream.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpSendInputStream.java deleted file mode 100644 index 0c6de28c266..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpSendInputStream.java +++ /dev/null @@ -1,161 +0,0 @@ -/* - * Copyright (c) 1996, 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 sun.rmi.transport.proxy; - -import java.io.*; - -/** - * The HttpSendInputStream class is used by the HttpSendSocket class as - * a layer on the top of the InputStream it returns so that it can be - * notified of attempts to read from it. This allows the HttpSendSocket - * to know when it should push across its output message. - */ -class HttpSendInputStream extends FilterInputStream { - - /** the HttpSendSocket object that is providing this stream */ - HttpSendSocket owner; - - /** - * Create new filter on a given input stream. - * @param in the InputStream to filter from - * @param owner the HttpSendSocket that is providing this stream - */ - public HttpSendInputStream(InputStream in, HttpSendSocket owner) - throws IOException - { - super(in); - - this.owner = owner; - } - - /** - * Mark this stream as inactive for its owner socket, so the next time - * a read is attempted, the owner will be notified and a new underlying - * input stream obtained. - */ - public void deactivate() - { - in = null; - } - - /** - * Read a byte of data from the stream. - */ - public int read() throws IOException - { - if (in == null) - in = owner.readNotify(); - return in.read(); - } - - /** - * Read into an array of bytes. - * @param b the buffer into which the data is to be read - * @param off the start offset of the data - * @param len the maximum number of bytes to read - */ - public int read(byte b[], int off, int len) throws IOException - { - if (len == 0) - return 0; - if (in == null) - in = owner.readNotify(); - return in.read(b, off, len); - } - - /** - * Skip bytes of input. - * @param n the number of bytes to be skipped - */ - public long skip(long n) throws IOException - { - if (n == 0) - return 0; - if (in == null) - in = owner.readNotify(); - return in.skip(n); - } - - /** - * Return the number of bytes that can be read without blocking. - */ - public int available() throws IOException - { - if (in == null) - in = owner.readNotify(); - return in.available(); - } - - /** - * Close the stream. - */ - public void close() throws IOException - { - owner.close(); - } - - /** - * Mark the current position in the stream. - * @param readlimit how many bytes can be read before mark becomes invalid - */ - public synchronized void mark(int readlimit) - { - if (in == null) { - try { - in = owner.readNotify(); - } - catch (IOException e) { - return; - } - } - in.mark(readlimit); - } - - /** - * Reposition the stream to the last marked position. - */ - public synchronized void reset() throws IOException - { - if (in == null) - in = owner.readNotify(); - in.reset(); - } - - /** - * Return true if this stream type supports mark/reset. - */ - public boolean markSupported() - { - if (in == null) { - try { - in = owner.readNotify(); - } - catch (IOException e) { - return false; - } - } - return in.markSupported(); - } -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpSendOutputStream.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpSendOutputStream.java deleted file mode 100644 index bc83945534f..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpSendOutputStream.java +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Copyright (c) 1996, 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 sun.rmi.transport.proxy; - -import java.io.*; - -/** - * The HttpSendOutputStream class is used by the HttpSendSocket class as - * a layer on the top of the OutputStream it returns so that it can be - * notified of attempts to write to it. This allows the HttpSendSocket - * to know when it should construct a new message. - */ -class HttpSendOutputStream extends FilterOutputStream { - - /** the HttpSendSocket object that is providing this stream */ - HttpSendSocket owner; - - /** - * Create new filter on a given output stream. - * @param out the OutputStream to filter from - * @param owner the HttpSendSocket that is providing this stream - */ - public HttpSendOutputStream(OutputStream out, HttpSendSocket owner) - throws IOException - { - super(out); - - this.owner = owner; - } - - /** - * Mark this stream as inactive for its owner socket, so the next time - * a write is attempted, the owner will be notified and a new underlying - * output stream obtained. - */ - public void deactivate() - { - out = null; - } - - /** - * Write a byte of data to the stream. - */ - public void write(int b) throws IOException - { - if (out == null) - out = owner.writeNotify(); - out.write(b); - } - - /** - * Write a subarray of bytes. - * @param b the buffer from which the data is to be written - * @param off the start offset of the data - * @param len the number of bytes to be written - */ - public void write(byte b[], int off, int len) throws IOException - { - if (len == 0) - return; - if (out == null) - out = owner.writeNotify(); - out.write(b, off, len); - } - - /** - * Flush the stream. - */ - public void flush() throws IOException - { - if (out != null) - out.flush(); - } - - /** - * Close the stream. - */ - public void close() throws IOException - { - flush(); - owner.close(); - } -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpSendSocket.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpSendSocket.java deleted file mode 100644 index a9932be35e1..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/HttpSendSocket.java +++ /dev/null @@ -1,344 +0,0 @@ -/* - * Copyright (c) 1996, 2012, 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 sun.rmi.transport.proxy; - -import java.io.*; -import java.net.*; -import java.security.PrivilegedAction; - -import sun.rmi.runtime.Log; - -/** - * The HttpSendSocket class extends the java.net.Socket class - * by enclosing the data output stream in, then extracting the input - * stream from, an HTTP protocol transmission. - * - * NOTES: - * - * Since the length of the output request must be known before the - * HTTP header can be completed, all of the output is buffered by - * an HttpOutputStream object until either an attempt is made to - * read from this socket, or the socket is explicitly closed. - * - * On the first read attempt to read from this socket, the buffered - * output is sent to the destination as the body of an HTTP POST - * request. All reads will then acquire data from the body of - * the response. A subsequent attempt to write to this socket will - * throw an IOException. - */ -class HttpSendSocket extends Socket implements RMISocketInfo { - - /** the host to connect to */ - protected String host; - - /** the port to connect to */ - protected int port; - - /** the URL to forward through */ - protected URL url; - - /** the object managing this connection through the URL */ - protected URLConnection conn = null; - - /** internal input stream for this socket */ - protected InputStream in = null; - - /** internal output stream for this socket */ - protected OutputStream out = null; - - /** the notifying input stream returned to users */ - protected HttpSendInputStream inNotifier; - - /** the notifying output stream returned to users */ - protected HttpSendOutputStream outNotifier; - - /** - * Line separator string. This is the value of the line.separator - * property at the moment that the socket was created. - */ - private String lineSeparator = - java.security.AccessController.doPrivileged( - (PrivilegedAction) () -> System.getProperty("line.separator")); - - /** - * Create a stream socket and connect it to the specified port on - * the specified host. - * @param host the host - * @param port the port - */ - public HttpSendSocket(String host, int port, URL url) throws IOException - { - super((SocketImpl)null); // no underlying SocketImpl for this object - - if (RMIMasterSocketFactory.proxyLog.isLoggable(Log.VERBOSE)) { - RMIMasterSocketFactory.proxyLog.log(Log.VERBOSE, - "host = " + host + ", port = " + port + ", url = " + url); - } - - this.host = host; - this.port = port; - this.url = url; - - inNotifier = new HttpSendInputStream(null, this); - outNotifier = new HttpSendOutputStream(writeNotify(), this); - } - - /** - * Create a stream socket and connect it to the specified port on - * the specified host. - * @param host the host - * @param port the port - */ - public HttpSendSocket(String host, int port) throws IOException - { - this(host, port, new URL("http", host, port, "/")); - } - - /** - * Create a stream socket and connect it to the specified address on - * the specified port. - * @param address the address - * @param port the port - */ - public HttpSendSocket(InetAddress address, int port) throws IOException - { - this(address.getHostName(), port); - } - - /** - * Indicate that this socket is not reusable. - */ - public boolean isReusable() - { - return false; - } - - /** - * Create a new socket connection to host (or proxy), and prepare to - * send HTTP transmission. - */ - public synchronized OutputStream writeNotify() throws IOException - { - if (conn != null) { - throw new IOException("attempt to write on HttpSendSocket after " + - "request has been sent"); - } - - conn = url.openConnection(); - conn.setDoOutput(true); - conn.setUseCaches(false); - conn.setRequestProperty("Content-type", "application/octet-stream"); - - inNotifier.deactivate(); - in = null; - - return out = conn.getOutputStream(); - } - - /** - * Send HTTP output transmission and prepare to receive response. - */ - public synchronized InputStream readNotify() throws IOException - { - RMIMasterSocketFactory.proxyLog.log(Log.VERBOSE, - "sending request and activating input stream"); - - outNotifier.deactivate(); - out.close(); - out = null; - - try { - in = conn.getInputStream(); - } catch (IOException e) { - RMIMasterSocketFactory.proxyLog.log(Log.BRIEF, - "failed to get input stream, exception: ", e); - - throw new IOException("HTTP request failed"); - } - - /* - * If an HTTP error response is returned, sometimes an IOException - * is thrown, which is handled above, and other times it isn't, and - * the error response body will be available for reading. - * As a safety net to catch any such unexpected HTTP behavior, we - * verify that the content type of the response is what the - * HttpOutputStream generates: "application/octet-stream". - * (Servers' error responses will generally be "text/html".) - * Any error response body is printed to the log. - */ - String contentType = conn.getContentType(); - if (contentType == null || - !conn.getContentType().equals("application/octet-stream")) - { - if (RMIMasterSocketFactory.proxyLog.isLoggable(Log.BRIEF)) { - String message; - if (contentType == null) { - message = "missing content type in response" + - lineSeparator; - } else { - message = "invalid content type in response: " + - contentType + lineSeparator; - } - - message += "HttpSendSocket.readNotify: response body: "; - try { - BufferedReader din = new BufferedReader(new InputStreamReader(in)); - String line; - while ((line = din.readLine()) != null) - message += line + lineSeparator; - } catch (IOException e) { - } - RMIMasterSocketFactory.proxyLog.log(Log.BRIEF, message); - } - - throw new IOException("HTTP request failed"); - } - - return in; - } - - /** - * Get the address to which the socket is connected. - */ - public InetAddress getInetAddress() - { - try { - return InetAddress.getByName(host); - } catch (UnknownHostException e) { - return null; // null if couldn't resolve destination host - } - } - - /** - * Get the local address to which the socket is bound. - */ - public InetAddress getLocalAddress() - { - try { - return InetAddress.getLocalHost(); - } catch (UnknownHostException e) { - return null; // null if couldn't determine local host - } - } - - /** - * Get the remote port to which the socket is connected. - */ - public int getPort() - { - return port; - } - - /** - * Get the local port to which the socket is connected. - */ - public int getLocalPort() - { - return -1; // request not applicable to this socket type - } - - /** - * Get an InputStream for this socket. - */ - public InputStream getInputStream() throws IOException - { - return inNotifier; - } - - /** - * Get an OutputStream for this socket. - */ - public OutputStream getOutputStream() throws IOException - { - return outNotifier; - } - - /** - * Enable/disable TCP_NODELAY. - * This operation has no effect for an HttpSendSocket. - */ - public void setTcpNoDelay(boolean on) throws SocketException - { - } - - /** - * Retrieve whether TCP_NODELAY is enabled. - */ - public boolean getTcpNoDelay() throws SocketException - { - return false; // imply option is disabled - } - - /** - * Enable/disable SO_LINGER with the specified linger time. - * This operation has no effect for an HttpSendSocket. - */ - public void setSoLinger(boolean on, int val) throws SocketException - { - } - - /** - * Retrive setting for SO_LINGER. - */ - public int getSoLinger() throws SocketException - { - return -1; // imply option is disabled - } - - /** - * Enable/disable SO_TIMEOUT with the specified timeout - * This operation has no effect for an HttpSendSocket. - */ - public synchronized void setSoTimeout(int timeout) throws SocketException - { - } - - /** - * Retrive setting for SO_TIMEOUT. - */ - public synchronized int getSoTimeout() throws SocketException - { - return 0; // imply option is disabled - } - - /** - * Close the socket. - */ - public synchronized void close() throws IOException - { - if (out != null) // push out transmission if not done - out.close(); - } - - /** - * Return string representation of this pseudo-socket. - */ - public String toString() - { - return "HttpSendSocket[host=" + host + - ",port=" + port + - ",url=" + url + "]"; - } -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIHttpToCGISocketFactory.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIHttpToCGISocketFactory.java deleted file mode 100644 index 548f584ae11..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIHttpToCGISocketFactory.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright (c) 1998, 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 sun.rmi.transport.proxy; - -import java.io.IOException; -import java.net.Socket; -import java.net.ServerSocket; -import java.net.URL; -import java.rmi.server.RMISocketFactory; - -/** - * RMIHttpToCGISocketFactory creates a socket connection to the - * specified host that is comminicated within an HTTP request, - * forwarded through the default firewall proxy, to the target host's - * normal HTTP server, to a CGI program which forwards the request to - * the actual specified port on the socket. - */ -public class RMIHttpToCGISocketFactory extends RMISocketFactory { - - public Socket createSocket(String host, int port) - throws IOException - { - return new HttpSendSocket(host, port, - new URL("http", host, - "/cgi-bin/java-rmi.cgi" + - "?forward=" + port)); - } - - public ServerSocket createServerSocket(int port) throws IOException - { - return new HttpAwareServerSocket(port); - } -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIHttpToPortSocketFactory.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIHttpToPortSocketFactory.java deleted file mode 100644 index c23df420e44..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIHttpToPortSocketFactory.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (c) 1998, 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 sun.rmi.transport.proxy; - -import java.io.IOException; -import java.net.Socket; -import java.net.ServerSocket; -import java.net.URL; -import java.rmi.server.RMISocketFactory; - -/** - * RMIHttpToPortSocketFactory creates a socket connection to the - * specified host that is communicated within an HTTP request, - * forwarded through the default firewall proxy, directly to the - * specified port. - */ -public class RMIHttpToPortSocketFactory extends RMISocketFactory { - - public Socket createSocket(String host, int port) - throws IOException - { - return new HttpSendSocket(host, port, - new URL("http", host, port, "/")); - } - - public ServerSocket createServerSocket(int port) - throws IOException - { - return new HttpAwareServerSocket(port); - } -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIMasterSocketFactory.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIMasterSocketFactory.java deleted file mode 100644 index 8cb7cc4185f..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIMasterSocketFactory.java +++ /dev/null @@ -1,468 +0,0 @@ -/* - * Copyright (c) 1996, 2013, 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 sun.rmi.transport.proxy; - -import java.io.*; -import java.net.*; -import java.security.*; -import java.util.*; -import java.rmi.server.LogStream; -import java.rmi.server.RMISocketFactory; -import sun.rmi.runtime.Log; -import sun.rmi.runtime.NewThreadAction; - -/** - * RMIMasterSocketFactory attempts to create a socket connection to the - * specified host using successively less efficient mechanisms - * until one succeeds. If the host is successfully connected to, - * the factory for the successful mechanism is stored in an internal - * hash table keyed by the host name, so that future attempts to - * connect to the same host will automatically use the same - * mechanism. - */ -@SuppressWarnings("deprecation") -public class RMIMasterSocketFactory extends RMISocketFactory { - - /** "proxy" package log level */ - static int logLevel = LogStream.parseLevel(getLogLevel()); - - private static String getLogLevel() { - return java.security.AccessController.doPrivileged( - (PrivilegedAction) () -> System.getProperty("sun.rmi.transport.proxy.logLevel")); - } - - /* proxy package log */ - static final Log proxyLog = - Log.getLog("sun.rmi.transport.tcp.proxy", - "transport", RMIMasterSocketFactory.logLevel); - - /** timeout for attemping direct socket connections */ - private static long connectTimeout = getConnectTimeout(); - - private static long getConnectTimeout() { - return java.security.AccessController.doPrivileged((PrivilegedAction) () -> - Long.getLong("sun.rmi.transport.proxy.connectTimeout", 15000)); // default: 15 seconds - } - - /** whether to fallback to HTTP on general connect failures */ - private static final boolean eagerHttpFallback = - java.security.AccessController.doPrivileged((PrivilegedAction) () -> - Boolean.getBoolean("sun.rmi.transport.proxy.eagerHttpFallback")); - - /** table of hosts successfully connected to and the factory used */ - private Hashtable successTable = - new Hashtable<>(); - - /** maximum number of hosts to remember successful connection to */ - private static final int MaxRememberedHosts = 64; - - /** list of the hosts in successTable in initial connection order */ - private Vector hostList = new Vector<>(MaxRememberedHosts); - - /** default factory for initial use for direct socket connection */ - protected RMISocketFactory initialFactory = new RMIDirectSocketFactory(); - - /** ordered list of factories to try as alternate connection - * mechanisms if a direct socket connections fails */ - protected Vector altFactoryList; - - /** - * Create a RMIMasterSocketFactory object. Establish order of - * connection mechanisms to attempt on createSocket, if a direct - * socket connection fails. - */ - public RMIMasterSocketFactory() { - altFactoryList = new Vector<>(2); - boolean setFactories = false; - - try { - String proxyHost; - proxyHost = java.security.AccessController.doPrivileged( - (PrivilegedAction) () -> System.getProperty("http.proxyHost")); - - if (proxyHost == null) - proxyHost = java.security.AccessController.doPrivileged( - (PrivilegedAction) () -> System.getProperty("proxyHost")); - - boolean disable = java.security.AccessController.doPrivileged( - (PrivilegedAction) () -> System.getProperty("java.rmi.server.disableHttp", "true")) - .equalsIgnoreCase("true"); - - if (!disable && proxyHost != null && proxyHost.length() > 0) { - setFactories = true; - } - } catch (Exception e) { - // unable to obtain the properties, so use the default behavior. - } - - if (setFactories) { - altFactoryList.addElement(new RMIHttpToPortSocketFactory()); - altFactoryList.addElement(new RMIHttpToCGISocketFactory()); - } - } - - /** - * Create a new client socket. If we remember connecting to this host - * successfully before, then use the same factory again. Otherwise, - * try using a direct socket connection and then the alternate factories - * in the order specified in altFactoryList. - */ - public Socket createSocket(String host, int port) - throws IOException - { - if (proxyLog.isLoggable(Log.BRIEF)) { - proxyLog.log(Log.BRIEF, "host: " + host + ", port: " + port); - } - - /* - * If we don't have any alternate factories to consult, short circuit - * the fallback procedure and delegate to the initial factory. - */ - if (altFactoryList.size() == 0) { - return initialFactory.createSocket(host, port); - } - - RMISocketFactory factory; - - /* - * If we remember successfully connecting to this host before, - * use the same factory. - */ - factory = successTable.get(host); - if (factory != null) { - if (proxyLog.isLoggable(Log.BRIEF)) { - proxyLog.log(Log.BRIEF, - "previously successful factory found: " + factory); - } - return factory.createSocket(host, port); - } - - /* - * Next, try a direct socket connection. Open socket in another - * thread and only wait for specified timeout, in case the socket - * would otherwise spend minutes trying an unreachable host. - */ - Socket initialSocket = null; - Socket fallbackSocket = null; - final AsyncConnector connector = - new AsyncConnector(initialFactory, host, port, - AccessController.getContext()); - // connection must be attempted with - // this thread's access control context - IOException initialFailure = null; - - try { - synchronized (connector) { - - Thread t = java.security.AccessController.doPrivileged( - new NewThreadAction(connector, "AsyncConnector", true)); - t.start(); - - try { - long now = System.currentTimeMillis(); - long deadline = now + connectTimeout; - do { - connector.wait(deadline - now); - initialSocket = checkConnector(connector); - if (initialSocket != null) - break; - now = System.currentTimeMillis(); - } while (now < deadline); - } catch (InterruptedException e) { - throw new InterruptedIOException( - "interrupted while waiting for connector"); - } - } - - // assume no route to host (for now) if no connection yet - if (initialSocket == null) - throw new NoRouteToHostException( - "connect timed out: " + host); - - proxyLog.log(Log.BRIEF, "direct socket connection successful"); - - return initialSocket; - - } catch (UnknownHostException | NoRouteToHostException e) { - initialFailure = e; - } catch (SocketException e) { - if (eagerHttpFallback) { - initialFailure = e; - } else { - throw e; - } - } finally { - if (initialFailure != null) { - - if (proxyLog.isLoggable(Log.BRIEF)) { - proxyLog.log(Log.BRIEF, - "direct socket connection failed: ", initialFailure); - } - - // Finally, try any alternate connection mechanisms. - for (int i = 0; i < altFactoryList.size(); ++ i) { - factory = altFactoryList.elementAt(i); - if (proxyLog.isLoggable(Log.BRIEF)) { - proxyLog.log(Log.BRIEF, - "trying with factory: " + factory); - } - try (Socket testSocket = - factory.createSocket(host, port)) { - // For HTTP connections, the output (POST request) must - // be sent before we verify a successful connection. - // So, sacrifice a socket for the sake of testing... - // The following sequence should verify a successful - // HTTP connection if no IOException is thrown. - InputStream in = testSocket.getInputStream(); - int b = in.read(); // probably -1 for EOF... - } catch (IOException ex) { - if (proxyLog.isLoggable(Log.BRIEF)) { - proxyLog.log(Log.BRIEF, "factory failed: ", ex); - } - - continue; - } - proxyLog.log(Log.BRIEF, "factory succeeded"); - - // factory succeeded, open new socket for caller's use - try { - fallbackSocket = factory.createSocket(host, port); - } catch (IOException ex) { // if it fails 2nd time, - } // just give up - break; - } - } - } - - synchronized (successTable) { - try { - // check once again to see if direct connection succeeded - synchronized (connector) { - initialSocket = checkConnector(connector); - } - if (initialSocket != null) { - // if we had made another one as well, clean it up... - if (fallbackSocket != null) - fallbackSocket.close(); - return initialSocket; - } - // if connector ever does get socket, it won't be used - connector.notUsed(); - } catch (UnknownHostException | NoRouteToHostException e) { - initialFailure = e; - } catch (SocketException e) { - if (eagerHttpFallback) { - initialFailure = e; - } else { - throw e; - } - } - // if we had found an alternate mechanism, go and use it - if (fallbackSocket != null) { - // remember this successful host/factory pair - rememberFactory(host, factory); - return fallbackSocket; - } - throw initialFailure; - } - } - - /** - * Remember a successful factory for connecting to host. - * Currently, excess hosts are removed from the remembered list - * using a Least Recently Created strategy. - */ - void rememberFactory(String host, RMISocketFactory factory) { - synchronized (successTable) { - while (hostList.size() >= MaxRememberedHosts) { - successTable.remove(hostList.elementAt(0)); - hostList.removeElementAt(0); - } - hostList.addElement(host); - successTable.put(host, factory); - } - } - - /** - * Check if an AsyncConnector succeeded. If not, return socket - * given to fall back to. - */ - Socket checkConnector(AsyncConnector connector) - throws IOException - { - Exception e = connector.getException(); - if (e != null) { - e.fillInStackTrace(); - /* - * The AsyncConnector implementation guaranteed that the exception - * will be either an IOException or a RuntimeException, and we can - * only throw one of those, so convince that compiler that it must - * be one of those. - */ - if (e instanceof IOException) { - throw (IOException) e; - } else if (e instanceof RuntimeException) { - throw (RuntimeException) e; - } else { - throw new Error("internal error: " + - "unexpected checked exception: " + e.toString()); - } - } - return connector.getSocket(); - } - - /** - * Create a new server socket. - */ - public ServerSocket createServerSocket(int port) throws IOException { - //return new HttpAwareServerSocket(port); - return initialFactory.createServerSocket(port); - } - - - /** - * AsyncConnector is used by RMIMasterSocketFactory to attempt socket - * connections on a separate thread. This allows RMIMasterSocketFactory - * to control how long it will wait for the connection to succeed. - */ - private class AsyncConnector implements Runnable { - - /** what factory to use to attempt connection */ - private RMISocketFactory factory; - - /** the host to connect to */ - private String host; - - /** the port to connect to */ - private int port; - - /** access control context to attempt connection within */ - private AccessControlContext acc; - - /** exception that occurred during connection, if any */ - private Exception exception = null; - - /** the connected socket, if successful */ - private Socket socket = null; - - /** socket should be closed after created, if ever */ - private boolean cleanUp = false; - - /** - * Create a new asynchronous connector object. - */ - AsyncConnector(RMISocketFactory factory, String host, int port, - AccessControlContext acc) - { - this.factory = factory; - this.host = host; - this.port = port; - this.acc = acc; - SecurityManager security = System.getSecurityManager(); - if (security != null) { - security.checkConnect(host, port); - } - } - - /** - * Attempt socket connection in separate thread. If successful, - * notify master waiting, - */ - public void run() { - try { - /* - * Using the privileges of the thread that wants to make the - * connection is tempting, but it will fail with applets with - * the current applet security manager because the applet - * network connection policy is not captured in the permission - * framework of the access control context we have. - * - * java.security.AccessController.beginPrivileged(acc); - */ - try { - Socket temp = factory.createSocket(host, port); - synchronized (this) { - socket = temp; - notify(); - } - rememberFactory(host, factory); - synchronized (this) { - if (cleanUp) - try { - socket.close(); - } catch (IOException e) { - } - } - } catch (Exception e) { - /* - * Note that the only exceptions which could actually have - * occurred here are IOException or RuntimeException. - */ - synchronized (this) { - exception = e; - notify(); - } - } - } finally { - /* - * See above comments for matching beginPrivileged() call that - * is also commented out. - * - * java.security.AccessController.endPrivileged(); - */ - } - } - - /** - * Get exception that occurred during connection attempt, if any. - * In the current implementation, this is guaranteed to be either - * an IOException or a RuntimeException. - */ - private synchronized Exception getException() { - return exception; - } - - /** - * Get successful socket, if any. - */ - private synchronized Socket getSocket() { - return socket; - } - - /** - * Note that this connector's socket, if ever successfully created, - * will not be used, so it should be cleaned up quickly - */ - synchronized void notUsed() { - if (socket != null) { - try { - socket.close(); - } catch (IOException e) { - } - } - cleanUp = true; - } - } -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMISocketInfo.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMISocketInfo.java deleted file mode 100644 index 85008fb231e..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMISocketInfo.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) 1996, 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 sun.rmi.transport.proxy; - -/** - * RMISocketInfo is an interface that extensions of the java.net.Socket - * class may use to provide more information on its capabilities. - */ -public interface RMISocketInfo { - - /** - * Return true if this socket can be used for more than one - * RMI call. If a socket does not implement this interface, then - * it is assumed to be reusable. - */ - public boolean isReusable(); -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/WrappedSocket.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/WrappedSocket.java deleted file mode 100644 index 7bc8503f60f..00000000000 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/WrappedSocket.java +++ /dev/null @@ -1,192 +0,0 @@ -/* - * Copyright (c) 1996, 2013, 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 sun.rmi.transport.proxy; - -import java.io.*; -import java.net.InetAddress; -import java.net.Socket; -import java.net.SocketException; -import java.security.AccessController; -import java.security.PrivilegedAction; - -/** - * The WrappedSocket class provides a general wrapper for providing an - * extended implementation of java.net.Socket that can be attached to - * a pre-existing Socket object. WrappedSocket itself provides a - * constructor for specifying alternate input or output streams to be - * returned than those of the underlying Socket. - */ -class WrappedSocket extends Socket { - - /** the underlying concrete socket */ - protected Socket socket; - - /** the input stream to return for socket */ - protected InputStream in = null; - - /** the output stream to return for socket */ - protected OutputStream out = null; - - /** - * Layer on top of a pre-existing Socket object, and use specified - * input and output streams. This allows the creator of the - * underlying socket to peek at the beginning of the input with a - * BufferedInputStream and determine which kind of socket - * to create, without consuming the input. - * @param socket the pre-existing socket to use - * @param in the InputStream to return to users (can be null) - * @param out the OutputStream to return to users (can be null) - */ - public WrappedSocket(Socket socket, InputStream in, OutputStream out) - throws IOException - { - super((java.net.SocketImpl)null); // no underlying SocketImpl for this object - this.socket = socket; - this.in = in; - this.out = out; - } - - /** - * Get the address to which the socket is connected. - */ - public InetAddress getInetAddress() - { - return socket.getInetAddress(); - } - - /** - * Get the local address to which the socket is bound. - */ - public InetAddress getLocalAddress() { - return AccessController.doPrivileged( - new PrivilegedAction() { - @Override - public InetAddress run() { - return socket.getLocalAddress(); - - } - }); - } - - /** - * Get the remote port to which the socket is connected. - */ - public int getPort() - { - return socket.getPort(); - } - - /** - * Get the local port to which the socket is connected. - */ - public int getLocalPort() - { - return socket.getLocalPort(); - } - - /** - * Get an InputStream for this socket. - */ - public InputStream getInputStream() throws IOException - { - if (in == null) - in = socket.getInputStream(); - return in; - } - - /** - * Get an OutputStream for this socket. - */ - public OutputStream getOutputStream() throws IOException - { - if (out == null) - out = socket.getOutputStream(); - return out; - } - - /** - * Enable/disable TCP_NODELAY. - */ - public void setTcpNoDelay(boolean on) throws SocketException - { - socket.setTcpNoDelay(on); - } - - /** - * Retrieve whether TCP_NODELAY is enabled. - */ - public boolean getTcpNoDelay() throws SocketException - { - return socket.getTcpNoDelay(); - } - - /** - * Enable/disable SO_LINGER with the specified linger time. - */ - public void setSoLinger(boolean on, int val) throws SocketException - { - socket.setSoLinger(on, val); - } - - /** - * Retrive setting for SO_LINGER. - */ - public int getSoLinger() throws SocketException - { - return socket.getSoLinger(); - } - - /** - * Enable/disable SO_TIMEOUT with the specified timeout - */ - public synchronized void setSoTimeout(int timeout) throws SocketException - { - socket.setSoTimeout(timeout); - } - - /** - * Retrive setting for SO_TIMEOUT. - */ - public synchronized int getSoTimeout() throws SocketException - { - return socket.getSoTimeout(); - } - - /** - * Close the socket. - */ - public synchronized void close() throws IOException - { - socket.close(); - } - - /** - * Return string representation of the socket. - */ - public String toString() - { - return "Wrapped" + socket.toString(); - } -} diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/TCPConnection.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/TCPConnection.java index 08eb50b29a7..8b5a610005b 100644 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/TCPConnection.java +++ b/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/TCPConnection.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, 2001, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 2016, 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 @@ -26,14 +26,10 @@ package sun.rmi.transport.tcp; import java.io.*; -import java.net.InetAddress; import java.net.Socket; -import java.net.SocketException; import java.rmi.*; -import java.rmi.server.RMISocketFactory; import sun.rmi.runtime.Log; import sun.rmi.transport.*; -import sun.rmi.transport.proxy.*; public class TCPConnection implements Connection { @@ -120,10 +116,7 @@ public class TCPConnection implements Connection { */ public boolean isReusable() { - if ((socket != null) && (socket instanceof RMISocketInfo)) - return ((RMISocketInfo) socket).isReusable(); - else - return true; + return true; } /** diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIDirectSocketFactory.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/TCPDirectSocketFactory.java similarity index 94% rename from jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIDirectSocketFactory.java rename to jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/TCPDirectSocketFactory.java index 953d47ca400..8274742ec1b 100644 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/proxy/RMIDirectSocketFactory.java +++ b/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/TCPDirectSocketFactory.java @@ -22,7 +22,7 @@ * or visit www.oracle.com if you need additional information or have any * questions. */ -package sun.rmi.transport.proxy; +package sun.rmi.transport.tcp; import java.io.IOException; import java.net.Socket; @@ -33,7 +33,7 @@ import java.rmi.server.RMISocketFactory; * RMIDirectSocketFactory creates a direct socket connection to the * specified port on the specified host. */ -public class RMIDirectSocketFactory extends RMISocketFactory { +public class TCPDirectSocketFactory extends RMISocketFactory { public Socket createSocket(String host, int port) throws IOException { diff --git a/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/TCPTransport.java b/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/TCPTransport.java index 1caa362803a..764abefb551 100644 --- a/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/TCPTransport.java +++ b/jdk/src/java.rmi/share/classes/sun/rmi/transport/tcp/TCPTransport.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 2016, 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 @@ -75,7 +75,6 @@ import sun.rmi.transport.StreamRemoteCall; import sun.rmi.transport.Target; import sun.rmi.transport.Transport; import sun.rmi.transport.TransportConstants; -import sun.rmi.transport.proxy.HttpReceiveSocket; /** * TCPTransport is the socket-based implementation of the RMI Transport @@ -711,35 +710,10 @@ public class TCPTransport extends Transport { ? sockIn : new BufferedInputStream(sockIn); - // Read magic (or HTTP wrapper) - bufIn.mark(4); + // Read magic DataInputStream in = new DataInputStream(bufIn); int magic = in.readInt(); - if (magic == POST) { - tcpLog.log(Log.BRIEF, "decoding HTTP-wrapped call"); - - // It's really a HTTP-wrapped request. Repackage - // the socket in a HttpReceiveSocket, reinitialize - // sockIn and in, and reread magic. - bufIn.reset(); // unread "POST" - - try { - socket = new HttpReceiveSocket(socket, bufIn, null); - remoteHost = "0.0.0.0"; - sockIn = socket.getInputStream(); - bufIn = new BufferedInputStream(sockIn); - in = new DataInputStream(bufIn); - magic = in.readInt(); - - } catch (IOException e) { - throw new RemoteException("Error HTTP-unwrapping call", - e); - } - } - // bufIn's mark will invalidate itself when it overflows - // so it doesn't have to be turned off - // read and verify transport header short version = in.readShort(); if (magic != TransportConstants.Magic || diff --git a/jdk/test/java/rmi/transport/httpSocket/HttpSocketTest.java b/jdk/test/java/rmi/transport/httpSocket/HttpSocketTest.java deleted file mode 100644 index 8999c3d7310..00000000000 --- a/jdk/test/java/rmi/transport/httpSocket/HttpSocketTest.java +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Copyright (c) 1999, 2012, 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. - * - * 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. - */ - -/* @test - * - * @summary HttpSocket functionality test - * @author Dana Burns - * - * @library ../../testlibrary - * @modules java.rmi/sun.rmi.registry - * java.rmi/sun.rmi.server - * java.rmi/sun.rmi.transport - * java.rmi/sun.rmi.transport.proxy - * java.rmi/sun.rmi.transport.tcp - * @build TestLibrary HttpSocketTest HttpSocketTest_Stub - * @run main/othervm/policy=security.policy HttpSocketTest - */ - -/* - * This test assures remote methods can be carried out over RMI. - * After setting the RMI runtime socket factory to the http proxy version, - * a registry is created, a remote object (an instance of this class) is - * registered with it, and then it is exercised. - */ - -import java.rmi.Remote; -import java.rmi.RemoteException; -import java.rmi.Naming; -import java.rmi.RMISecurityManager; -import java.rmi.registry.LocateRegistry; -import java.rmi.registry.Registry; -import java.rmi.server.RMISocketFactory; -import java.rmi.server.UnicastRemoteObject; -import sun.rmi.transport.proxy.RMIHttpToPortSocketFactory; - -interface MyRemoteInterface extends Remote { - void setRemoteObject( Remote r ) throws RemoteException; - Remote getRemoteObject() throws RemoteException; -} - -public class HttpSocketTest extends UnicastRemoteObject - implements MyRemoteInterface -{ - private static final String NAME = "HttpSocketTest"; - - public HttpSocketTest() throws RemoteException{} - - private Remote ro; - - public static void main(String[] args) - throws Exception - { - - Registry registry = null; - - TestLibrary.suggestSecurityManager(null); - - // Set the socket factory. - System.err.println("installing socket factory"); - RMISocketFactory.setSocketFactory(new RMIHttpToPortSocketFactory()); - int registryPort = -1; - - try { - System.err.println("Starting registry"); - registry = TestLibrary.createRegistryOnUnusedPort(); - registryPort = TestLibrary.getRegistryPort(registry); - } catch (Exception e) { - TestLibrary.bomb(e); - } - - try { - registry.rebind( NAME, new HttpSocketTest() ); - MyRemoteInterface httpTest = - (MyRemoteInterface)Naming.lookup("//:" + registryPort + "/" + NAME); - httpTest.setRemoteObject( new HttpSocketTest() ); - Remote r = httpTest.getRemoteObject(); - - } catch (Exception e) { - TestLibrary.bomb(e); - } - - - } - - public void setRemoteObject( Remote ro ) throws RemoteException { - this.ro = ro; - } - - public Remote getRemoteObject() throws RemoteException { - return( this.ro ); - } - -} diff --git a/jdk/test/java/rmi/transport/httpSocket/HttpSocketTest_Stub.java b/jdk/test/java/rmi/transport/httpSocket/HttpSocketTest_Stub.java deleted file mode 100644 index 03757a3df20..00000000000 --- a/jdk/test/java/rmi/transport/httpSocket/HttpSocketTest_Stub.java +++ /dev/null @@ -1,130 +0,0 @@ -/* - * Copyright (c) 1999, 2008, 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. - * - * 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. - */ - -// Stub class generated by rmic, do not edit. -// Contents subject to change without notice. - -public final class HttpSocketTest_Stub - extends java.rmi.server.RemoteStub - implements MyRemoteInterface, java.rmi.Remote -{ - private static final java.rmi.server.Operation[] operations = { - new java.rmi.server.Operation("java.rmi.Remote getRemoteObject()"), - new java.rmi.server.Operation("void setRemoteObject(java.rmi.Remote)") - }; - - private static final long interfaceHash = 3775375480010579665L; - - private static final long serialVersionUID = 2; - - private static boolean useNewInvoke; - private static java.lang.reflect.Method $method_getRemoteObject_0; - private static java.lang.reflect.Method $method_setRemoteObject_1; - - static { - try { - java.rmi.server.RemoteRef.class.getMethod("invoke", - new java.lang.Class[] { - java.rmi.Remote.class, - java.lang.reflect.Method.class, - java.lang.Object[].class, - long.class - }); - useNewInvoke = true; - $method_getRemoteObject_0 = MyRemoteInterface.class.getMethod("getRemoteObject", new java.lang.Class[] {}); - $method_setRemoteObject_1 = MyRemoteInterface.class.getMethod("setRemoteObject", new java.lang.Class[] {java.rmi.Remote.class}); - } catch (java.lang.NoSuchMethodException e) { - useNewInvoke = false; - } - } - - // constructors - public HttpSocketTest_Stub() { - super(); - } - public HttpSocketTest_Stub(java.rmi.server.RemoteRef ref) { - super(ref); - } - - // methods from remote interfaces - - // implementation of getRemoteObject() - public java.rmi.Remote getRemoteObject() - throws java.rmi.RemoteException - { - try { - if (useNewInvoke) { - Object $result = ref.invoke(this, $method_getRemoteObject_0, null, -2578437860804964265L); - return ((java.rmi.Remote) $result); - } else { - java.rmi.server.RemoteCall call = ref.newCall((java.rmi.server.RemoteObject) this, operations, 0, interfaceHash); - ref.invoke(call); - java.rmi.Remote $result; - try { - java.io.ObjectInput in = call.getInputStream(); - $result = (java.rmi.Remote) in.readObject(); - } catch (java.io.IOException e) { - throw new java.rmi.UnmarshalException("error unmarshalling return", e); - } catch (java.lang.ClassNotFoundException e) { - throw new java.rmi.UnmarshalException("error unmarshalling return", e); - } finally { - ref.done(call); - } - return $result; - } - } catch (java.lang.RuntimeException e) { - throw e; - } catch (java.rmi.RemoteException e) { - throw e; - } catch (java.lang.Exception e) { - throw new java.rmi.UnexpectedException("undeclared checked exception", e); - } - } - - // implementation of setRemoteObject(Remote) - public void setRemoteObject(java.rmi.Remote $param_Remote_1) - throws java.rmi.RemoteException - { - try { - if (useNewInvoke) { - ref.invoke(this, $method_setRemoteObject_1, new java.lang.Object[] {$param_Remote_1}, -7518632118115022871L); - } else { - java.rmi.server.RemoteCall call = ref.newCall((java.rmi.server.RemoteObject) this, operations, 1, interfaceHash); - try { - java.io.ObjectOutput out = call.getOutputStream(); - out.writeObject($param_Remote_1); - } catch (java.io.IOException e) { - throw new java.rmi.MarshalException("error marshalling arguments", e); - } - ref.invoke(call); - ref.done(call); - } - } catch (java.lang.RuntimeException e) { - throw e; - } catch (java.rmi.RemoteException e) { - throw e; - } catch (java.lang.Exception e) { - throw new java.rmi.UnexpectedException("undeclared checked exception", e); - } - } -} diff --git a/jdk/test/java/rmi/transport/httpSocket/security.policy b/jdk/test/java/rmi/transport/httpSocket/security.policy deleted file mode 100644 index f1960c9772d..00000000000 --- a/jdk/test/java/rmi/transport/httpSocket/security.policy +++ /dev/null @@ -1,10 +0,0 @@ - -grant { - permission java.net.SocketPermission "*:1024-", "accept,connect,listen"; - permission java.lang.RuntimePermission "accessClassInPackage.sun.rmi.registry"; - permission java.lang.RuntimePermission "accessClassInPackage.sun.rmi.server"; - permission java.lang.RuntimePermission "accessClassInPackage.sun.rmi.transport"; - permission java.lang.RuntimePermission "accessClassInPackage.sun.rmi.transport.proxy"; - permission java.lang.RuntimePermission "accessClassInPackage.sun.rmi.transport.tcp"; - permission java.lang.RuntimePermission "setFactory"; -}; diff --git a/jdk/test/sun/rmi/transport/proxy/DisableHttpDefaultValue.java b/jdk/test/sun/rmi/transport/proxy/DisableHttpDefaultValue.java deleted file mode 100644 index 5449c3b8759..00000000000 --- a/jdk/test/sun/rmi/transport/proxy/DisableHttpDefaultValue.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright (c) 2013, 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. - * - * 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. - */ - -/* @test - * @bug 8023862 - * @summary Verify that the default value of the java.rmi.server.disableHttp - * has been changed from false to true. - * @modules java.rmi/sun.rmi.transport.proxy - * @compile -XDignore.symbol.file DisableHttpDefaultValue.java - * - * @run main/othervm DisableHttpDefaultValue true - * @run main/othervm -Djava.rmi.server.disableHttp DisableHttpDefaultValue false - * @run main/othervm -Djava.rmi.server.disableHttp=false DisableHttpDefaultValue false - * @run main/othervm -Djava.rmi.server.disableHttp=xyzzy DisableHttpDefaultValue false - * @run main/othervm -Djava.rmi.server.disableHttp=true DisableHttpDefaultValue true - */ - -import sun.rmi.transport.proxy.RMIMasterSocketFactory; - -public class DisableHttpDefaultValue { - /** - * Subclass RMIMasterSocketFactory to get access to - * protected field altFactoryList. This list has a - * zero size if proxying is disabled. - */ - static class SocketFactory extends RMIMasterSocketFactory { - boolean proxyDisabled() { - return altFactoryList.size() == 0; - } - } - - /** - * Takes a single arg, which is the expected boolean value of - * java.rmi.server.disableHttp. - */ - public static void main(String[] args) throws Exception { - // Force there to be a proxy host, so that we are able to - // tell whether proxying is enabled or disabled. - System.setProperty("http.proxyHost", "proxy.example.com"); - - String propval = System.getProperty("java.rmi.server.disableHttp"); - String propdisp = (propval == null) ? "null" : ("\"" + propval + "\""); - boolean expected = Boolean.parseBoolean(args[0]); - boolean actual = new SocketFactory().proxyDisabled(); - System.out.printf("### prop=%s exp=%s act=%s%n", propdisp, expected, actual); - if (expected != actual) - throw new AssertionError(); - } -} diff --git a/jdk/test/sun/rmi/transport/proxy/EagerHttpFallback.java b/jdk/test/sun/rmi/transport/proxy/EagerHttpFallback.java deleted file mode 100644 index 5b5691701c7..00000000000 --- a/jdk/test/sun/rmi/transport/proxy/EagerHttpFallback.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (c) 2002, 2012, 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. - * - * 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. - */ - -/* @test - * @bug 4290727 - * @summary Verify that ConnectException will trigger HTTP fallback if - * sun.rmi.transport.proxy.eagerHttpFallback system property is set. - * - * @library ../../../../java/rmi/testlibrary - * @modules java.rmi/sun.rmi.registry - * java.rmi/sun.rmi.server - * java.rmi/sun.rmi.transport - * java.rmi/sun.rmi.transport.tcp - * @build TestLibrary - * @run main/othervm EagerHttpFallback - */ - -import java.rmi.*; -import java.rmi.registry.*; - -public class EagerHttpFallback { - - static final int INITIAL_PORT = TestLibrary.getUnusedRandomPort(); - static final int FALLBACK_PORT = TestLibrary.getUnusedRandomPort(); - - public static void main(String[] args) throws Exception { - System.setProperty("http.proxyHost", "127.0.0.1"); - System.setProperty("http.proxyPort", Integer.toString(FALLBACK_PORT)); - System.setProperty("sun.rmi.transport.proxy.eagerHttpFallback", - "true"); - LocateRegistry.createRegistry(FALLBACK_PORT); - - /* - * The call below should trigger a ConnectException in the - * RMIMasterSocketFactory when it attempts a direct connection to - * INITIAL_PORT, which no one is listening on. Since - * eagerHttpFallback is set, this ConnectException should trigger HTTP - * fallback, which will send a call through the HTTP proxy, which is - * configured to be localhost with a port behind which a registry is - * listening--so if fallback works properly, the list() call should - * succeed. - */ - try { - LocateRegistry.getRegistry(INITIAL_PORT).list(); - } catch (Exception e) { - System.err.println( - "call on registry stub with port " + INITIAL_PORT + - "did not successfully perform HTTP fallback to " + - FALLBACK_PORT); - throw e; - } - } -} diff --git a/jdk/test/sun/rmi/transport/tcp/blockAccept/BlockAcceptTest.java b/jdk/test/sun/rmi/transport/tcp/blockAccept/BlockAcceptTest.java deleted file mode 100644 index 7de92ee2c47..00000000000 --- a/jdk/test/sun/rmi/transport/tcp/blockAccept/BlockAcceptTest.java +++ /dev/null @@ -1,175 +0,0 @@ -/* - * Copyright (c) 1999, 2012, 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. - * - * 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. - */ - -/* @test - * @bug 4203167 - * - * @summary RMI blocks in HttpAwareServerSocket.accept() if you telnet to it - * @author Adrian Colley - * - * @library ../../../../../java/rmi/testlibrary - * @modules java.rmi/sun.rmi.transport.proxy - * @build TestIface TestImpl TestImpl_Stub - * @run main/othervm/policy=security.policy/timeout=60 BlockAcceptTest - */ - -/* This test attempts to stymie the RMI accept loop. The accept loop in - * RMI endlessly accepts a connection, spawns a thread for it, and repeats. - * The accept() call can be replaced by a user-supplied library which - * might foolishly block indefinitely in its accept() method, which would - * prevent RMI from accepting other connections on that socket. - * - * Unfortunately, HttpAwareServerSocket (default server socket) is/was such - * a foolish thing. It reads 4 bytes to see if they're "POST" before - * returning. The bug fix is to move the HTTP stuff into the mainloop, - * which has the side effect of enabling it for non-default socketfactories. - * - * This test: - * 1. Creates an object and exports it. - * 2. Connects to the listening RMI port and sends nothing, to hold it up. - * 3. Makes a regular call, using HTTP tunnelling. - * 4. Fails to deadlock, thereby passing the test. - * - * Some runtime dependencies I'm trying to eliminate: - * 1. We don't know the port number until after exporting the object, but - * have to set it in http.proxyPort somehow. Hopefully http.proxyPort - * isn't read too soon or this test will fail with a ConnectException. - */ - -import java.rmi.*; -import java.rmi.server.RMISocketFactory; -import java.io.*; -import java.net.*; - -import sun.rmi.transport.proxy.RMIMasterSocketFactory; -import sun.rmi.transport.proxy.RMIHttpToPortSocketFactory; - -public class BlockAcceptTest -{ - public static void main(String[] args) - throws Exception - { - // Make trouble for ourselves - if (System.getSecurityManager() == null) - System.setSecurityManager(new RMISecurityManager()); - - // HTTP direct to the server port - System.setProperty("http.proxyHost", "127.0.0.1"); - - // Set the socket factory. - System.err.println("(installing HTTP-out socket factory)"); - HttpOutFactory fac = new HttpOutFactory(); - RMISocketFactory.setSocketFactory(fac); - - // Create remote object - TestImpl impl = new TestImpl(); - - // Export and get which port. - System.err.println("(exporting remote object)"); - TestIface stub = impl.export(); - try { - int port = fac.whichPort(); - - // Sanity - if (port == 0) - throw new Error("TEST FAILED: export didn't reserve a port(?)"); - - // Set the HTTP port, at last. - System.setProperty("http.proxyPort", port+""); - - // Now, connect to that port - //Thread.sleep(2000); - System.err.println("(connecting to listening port on 127.0.0.1:" + - port + ")"); - Socket DoS = new Socket("127.0.0.1", port); - // we hold the connection open until done with the test. - - // The test itself: make a remote call and see if it's blocked or - // if it works - //Thread.sleep(2000); - System.err.println("(making RMI-through-HTTP call)"); - System.err.println("(typical test failure deadlocks here)"); - String result = stub.testCall("dummy load"); - - System.err.println(" => " + result); - if (!("OK".equals(result))) - throw new Error("TEST FAILED: result not OK"); - System.err.println("Test passed."); - - // Clean up, including writing a byte to that connection just in - // case an optimizer thought of optimizing it out of existence - try { - DoS.getOutputStream().write(0); - DoS.getOutputStream().close(); - } catch (Throwable apathy) { - } - - } finally { - try { - impl.unexport(); - } catch (Throwable unmatter) { - } - } - - // Should exit here - } - - private static class HttpOutFactory - extends RMISocketFactory - { - private int servport = 0; - - public Socket createSocket(String h, int p) - throws IOException - { - return ((new RMIHttpToPortSocketFactory()).createSocket(h, p)); - } - - /** Create a server socket and remember which port it's on. - * Aborts if createServerSocket(0) is called twice, because then - * it doesn't know whether to remember the first or second port. - */ - public ServerSocket createServerSocket(int p) - throws IOException - { - ServerSocket ss; - ss = (new RMIMasterSocketFactory()).createServerSocket(p); - if (p == 0) { - if (servport != 0) { - System.err.println("TEST FAILED: " + - "Duplicate createServerSocket(0)"); - throw new Error("Test aborted (createServerSocket)"); - } - servport = ss.getLocalPort(); - } - return (ss); - } - - /** Return which port was reserved by createServerSocket(0). - * If the return value was 0, createServerSocket(0) wasn't called. - */ - public int whichPort() { - return (servport); - } - } // end class HttpOutFactory -} diff --git a/jdk/test/sun/rmi/transport/tcp/blockAccept/TestIface.java b/jdk/test/sun/rmi/transport/tcp/blockAccept/TestIface.java deleted file mode 100644 index 85bab51483d..00000000000 --- a/jdk/test/sun/rmi/transport/tcp/blockAccept/TestIface.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) 1999, 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. - * - * 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. - */ - -import java.rmi.*; - -public interface TestIface - extends Remote -{ - public String testCall(String ign) - throws RemoteException; -} diff --git a/jdk/test/sun/rmi/transport/tcp/blockAccept/TestImpl.java b/jdk/test/sun/rmi/transport/tcp/blockAccept/TestImpl.java deleted file mode 100644 index 73601a9e3b6..00000000000 --- a/jdk/test/sun/rmi/transport/tcp/blockAccept/TestImpl.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) 1999, 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. - * - * 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. - */ - -import java.rmi.*; -import java.rmi.server.*; - -public class TestImpl - extends Object - implements TestIface -{ - public TestImpl() { - } - - public TestIface export() - throws RemoteException - { - return (TestIface)UnicastRemoteObject.exportObject(this); - } - - public void unexport() - throws NoSuchObjectException - { - UnicastRemoteObject.unexportObject(this, true); - } - - public String testCall(String ign) { - return ("OK"); - } -} diff --git a/jdk/test/sun/rmi/transport/tcp/blockAccept/TestImpl_Stub.java b/jdk/test/sun/rmi/transport/tcp/blockAccept/TestImpl_Stub.java deleted file mode 100644 index 2de40012e16..00000000000 --- a/jdk/test/sun/rmi/transport/tcp/blockAccept/TestImpl_Stub.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright (c) 1999, 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. - * - * 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. - */ - -// Stub class generated by rmic, do not edit. -// Contents subject to change without notice. - -public final class TestImpl_Stub - extends java.rmi.server.RemoteStub - implements TestIface -{ - private static final long serialVersionUID = 2; - - private static java.lang.reflect.Method $method_testCall_0; - - static { - try { - $method_testCall_0 = TestIface.class.getMethod("testCall", new java.lang.Class[] {java.lang.String.class}); - } catch (java.lang.NoSuchMethodException e) { - throw new java.lang.NoSuchMethodError( - "stub class initialization failed"); - } - } - - // constructors - public TestImpl_Stub(java.rmi.server.RemoteRef ref) { - super(ref); - } - - // methods from remote interfaces - - // implementation of testCall(String) - public java.lang.String testCall(java.lang.String $param_String_1) - throws java.rmi.RemoteException - { - try { - Object $result = ref.invoke(this, $method_testCall_0, new java.lang.Object[] {$param_String_1}, -4495720265115653109L); - return ((java.lang.String) $result); - } catch (java.lang.RuntimeException e) { - throw e; - } catch (java.rmi.RemoteException e) { - throw e; - } catch (java.lang.Exception e) { - throw new java.rmi.UnexpectedException("undeclared checked exception", e); - } - } -} diff --git a/jdk/test/sun/rmi/transport/tcp/blockAccept/security.policy b/jdk/test/sun/rmi/transport/tcp/blockAccept/security.policy deleted file mode 100644 index a8c8d0a64d8..00000000000 --- a/jdk/test/sun/rmi/transport/tcp/blockAccept/security.policy +++ /dev/null @@ -1,10 +0,0 @@ -grant { - // Take this out once we can specify -Djava.security.debug on - // the run line and figure out what else is needed - permission java.security.AllPermission; - - permission java.net.SocketPermission "*:1024-65535", "connect,listen"; - permission java.util.PropertyPermission "http.proxyHost", "write"; - permission java.util.PropertyPermission "http.proxyPort", "write"; - permission java.lang.RuntimePermission "setFactory"; -}; From dcb864bfec5326f5867846b1a6b8113088e72fb3 Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Wed, 11 May 2016 16:17:45 -0300 Subject: [PATCH 57/62] 8156781: change to jlink has result in test failure Reviewed-by: redestad --- jdk/test/ProblemList.txt | 1 - jdk/test/tools/jlink/JLinkTest.java | 2 +- ...est.java => OrderResourcesPluginTest.java} | 72 ++++++++++--------- 3 files changed, 39 insertions(+), 36 deletions(-) rename jdk/test/tools/jlink/plugins/{SorterPluginTest.java => OrderResourcesPluginTest.java} (60%) diff --git a/jdk/test/ProblemList.txt b/jdk/test/ProblemList.txt index a023df99ada..de8331e3622 100644 --- a/jdk/test/ProblemList.txt +++ b/jdk/test/ProblemList.txt @@ -386,7 +386,6 @@ com/sun/jndi/ldap/DeadSSLLdapTimeoutTest.java 8141370 linux-i5 # core_tools tools/jimage/JImageTest.java 8150975 linux-i586,windows-i586 -tools/jlink/plugins/SorterPluginTest.java generic-all ############################################################################ diff --git a/jdk/test/tools/jlink/JLinkTest.java b/jdk/test/tools/jlink/JLinkTest.java index 9f7749df72d..ccbce3e8354 100644 --- a/jdk/test/tools/jlink/JLinkTest.java +++ b/jdk/test/tools/jlink/JLinkTest.java @@ -162,7 +162,7 @@ public class JLinkTest { { String[] userOptions2 = {"--compress=2:compress-filter=^/java.base/*", "--strip-debug", "--exclude-resources", - "*.jcov, */META-INF/*", "--sort-resources", + "*.jcov, */META-INF/*", "--order-resources", "*/module-info.class,/sortcomposite2/*,*/javax/management/*"}; String moduleName = "excludezipfilterskipdebugcomposite2"; helper.generateDefaultJModule(moduleName, "composite2"); diff --git a/jdk/test/tools/jlink/plugins/SorterPluginTest.java b/jdk/test/tools/jlink/plugins/OrderResourcesPluginTest.java similarity index 60% rename from jdk/test/tools/jlink/plugins/SorterPluginTest.java rename to jdk/test/tools/jlink/plugins/OrderResourcesPluginTest.java index 1e01fa9a001..cbf418669c0 100644 --- a/jdk/test/tools/jlink/plugins/SorterPluginTest.java +++ b/jdk/test/tools/jlink/plugins/OrderResourcesPluginTest.java @@ -27,7 +27,7 @@ * @author Jean-Francois Denise * @modules jdk.jlink/jdk.tools.jlink.internal * jdk.jlink/jdk.tools.jlink.internal.plugins - * @run main SorterPluginTest + * @run main OrderResourcesPluginTest */ import java.io.File; @@ -38,49 +38,50 @@ import java.util.HashMap; import java.util.Map; import jdk.tools.jlink.internal.PoolImpl; -import jdk.tools.jlink.internal.plugins.SortResourcesPlugin; +import jdk.tools.jlink.internal.plugins.OrderResourcesPlugin; import jdk.tools.jlink.plugin.Pool; import jdk.tools.jlink.plugin.Pool.ModuleData; import jdk.tools.jlink.plugin.TransformerPlugin; -public class SorterPluginTest { +public class OrderResourcesPluginTest { public static void main(String[] args) throws Exception { - new SorterPluginTest().test(); + new OrderResourcesPluginTest().test(); } public void test() throws Exception { ModuleData[] array = { - Pool.newResource("/module1/toto1", new byte[0]), - Pool.newResource("/module2/toto1", new byte[0]), - Pool.newResource("/module3/toto1", new byte[0]), - Pool.newResource("/module3/toto1/module-info.class", new byte[0]), - Pool.newResource("/zazou/toto1", new byte[0]), - Pool.newResource("/module4/zazou", new byte[0]), - Pool.newResource("/module5/toto1", new byte[0]), - Pool.newResource("/module6/toto1/module-info.class", new byte[0]) + Pool.newResource("/module1/toto1.class", new byte[0]), + Pool.newResource("/module2/toto2.class", new byte[0]), + Pool.newResource("/module3/toto3.class", new byte[0]), + Pool.newResource("/module3/toto3/module-info.class", new byte[0]), + Pool.newResource("/zazou/toto.class", new byte[0]), + Pool.newResource("/module4/zazou.class", new byte[0]), + Pool.newResource("/module5/toto5.class", new byte[0]), + Pool.newResource("/module6/toto6/module-info.class", new byte[0]) }; ModuleData[] sorted = { - Pool.newResource("/zazou/toto1", new byte[0]), - Pool.newResource("/module3/toto1/module-info.class", new byte[0]), - Pool.newResource("/module6/toto1/module-info.class", new byte[0]), - Pool.newResource("/module1/toto1", new byte[0]), - Pool.newResource("/module2/toto1", new byte[0]), - Pool.newResource("/module3/toto1", new byte[0]), - Pool.newResource("/module4/zazou", new byte[0]), - Pool.newResource("/module5/toto1", new byte[0]), -}; + Pool.newResource("/zazou/toto.class", new byte[0]), + Pool.newResource("/module3/toto3/module-info.class", new byte[0]), + Pool.newResource("/module6/toto6/module-info.class", new byte[0]), + Pool.newResource("/module1/toto1.class", new byte[0]), + Pool.newResource("/module2/toto2.class", new byte[0]), + Pool.newResource("/module3/toto3.class", new byte[0]), + Pool.newResource("/module4/zazou.class", new byte[0]), + Pool.newResource("/module5/toto5.class", new byte[0]) + }; ModuleData[] sorted2 = { - Pool.newResource("/module5/toto1", new byte[0]), - Pool.newResource("/module6/toto1/module-info.class", new byte[0]), - Pool.newResource("/module4/zazou", new byte[0]), - Pool.newResource("/module3/toto1", new byte[0]), - Pool.newResource("/module3/toto1/module-info.class", new byte[0]), - Pool.newResource("/module1/toto1", new byte[0]), - Pool.newResource("/module2/toto1", new byte[0]), - Pool.newResource("/zazou/toto1", new byte[0]),}; + Pool.newResource("/module5/toto5.class", new byte[0]), + Pool.newResource("/module6/toto6/module-info.class", new byte[0]), + Pool.newResource("/module4/zazou.class", new byte[0]), + Pool.newResource("/module3/toto3.class", new byte[0]), + Pool.newResource("/module3/toto3/module-info.class", new byte[0]), + Pool.newResource("/module1/toto1.class", new byte[0]), + Pool.newResource("/module2/toto2.class", new byte[0]), + Pool.newResource("/zazou/toto.class", new byte[0]) + }; Pool resources = new PoolImpl(); for (ModuleData r : array) { @@ -90,8 +91,8 @@ public class SorterPluginTest { { Pool out = new PoolImpl(); Map config = new HashMap<>(); - config.put(SortResourcesPlugin.NAME, "/zazou/*,*/module-info.class"); - TransformerPlugin p = new SortResourcesPlugin(); + config.put(OrderResourcesPlugin.NAME, "/zazou/*,*/module-info.class"); + TransformerPlugin p = new OrderResourcesPlugin(); p.configure(config); p.visit(resources, out); check(out.getContent(), sorted); @@ -104,14 +105,17 @@ public class SorterPluginTest { StringBuilder builder = new StringBuilder(); // 5 first resources come from file for (int i = 0; i < 5; i++) { - builder.append(sorted2[i].getPath()).append("\n"); + String path = sorted2[i].getPath(); + int index = path.indexOf('/', 1); + path = path.substring(index + 1, path.length() - ".class".length()); + builder.append(path).append("\n"); } Files.write(order.toPath(), builder.toString().getBytes()); Pool out = new PoolImpl(); Map config = new HashMap<>(); - config.put(SortResourcesPlugin.NAME, order.getAbsolutePath()); - TransformerPlugin p = new SortResourcesPlugin(); + config.put(OrderResourcesPlugin.NAME, "@" + order.getAbsolutePath()); + TransformerPlugin p = new OrderResourcesPlugin(); p.configure(config); p.visit(resources, out); check(out.getContent(), sorted2); From e0606a40d34e2cb67adb7bb00d4e5cc50c7a1c58 Mon Sep 17 00:00:00 2001 From: Stuart Marks Date: Wed, 11 May 2016 17:37:11 -0700 Subject: [PATCH 58/62] 8156810: remove redundant sentence in SecurityManager.checkMemberAccess doc Reviewed-by: darcy --- jdk/src/java.base/share/classes/java/lang/SecurityManager.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jdk/src/java.base/share/classes/java/lang/SecurityManager.java b/jdk/src/java.base/share/classes/java/lang/SecurityManager.java index e88a5eaa181..8fcd1be6d23 100644 --- a/jdk/src/java.base/share/classes/java/lang/SecurityManager.java +++ b/jdk/src/java.base/share/classes/java/lang/SecurityManager.java @@ -1627,8 +1627,7 @@ class SecurityManager { * @deprecated This method relies on the caller being at a stack depth * of 4 which is error-prone and cannot be enforced by the runtime. * Users of this method should instead invoke {@link #checkPermission} - * directly. This method will be changed in a future release - * to check the permission {@code java.security.AllPermission}. + * directly. * This method is subject to removal in a future version of Java SE. * * @see java.lang.reflect.Member From 1a854bcc1e95150cffb7e53bdc603130fb621d3b Mon Sep 17 00:00:00 2001 From: Weijun Wang Date: Thu, 12 May 2016 09:49:42 +0800 Subject: [PATCH 59/62] 8156501: DRBG not synchronized at reseeding Reviewed-by: xuelei --- .../sun/security/provider/AbstractDrbg.java | 25 +++++++++++-------- .../sun/security/provider/CtrDrbg.java | 2 +- .../sun/security/provider/HashDrbg.java | 2 +- .../sun/security/provider/HmacDrbg.java | 2 +- 4 files changed, 17 insertions(+), 14 deletions(-) diff --git a/jdk/src/java.base/share/classes/sun/security/provider/AbstractDrbg.java b/jdk/src/java.base/share/classes/sun/security/provider/AbstractDrbg.java index c4091eb39d5..15254237a18 100644 --- a/jdk/src/java.base/share/classes/sun/security/provider/AbstractDrbg.java +++ b/jdk/src/java.base/share/classes/sun/security/provider/AbstractDrbg.java @@ -51,12 +51,9 @@ import static java.security.DrbgParameters.Capability.*; * configuration is eagerly called to set up parameters, and instantiation * is lazily called only when nextBytes or reseed is called. *

          - * Synchronized keyword should be added to all externally callable engine - * methods including {@link #engineReseed}, {@link #engineSetSeed}, and - * {@link #engineNextBytes} (but not {@link #engineGenerateSeed}). - * Internal methods like {@link #configure} and {@link #instantiateAlgorithm} - * are not synchronized. They will either be called in a constructor or - * in another synchronized method. + * SecureRandom methods like reseed and nextBytes are not thread-safe. + * An implementation is required to protect shared access to instantiate states + * (instantiated, nonce) and DRBG states (v, c, key, reseedCounter). */ public abstract class AbstractDrbg extends SecureRandomSpi { @@ -78,8 +75,10 @@ public abstract class AbstractDrbg extends SecureRandomSpi { * Reseed counter of a DRBG instance. A mechanism should increment it * after each random bits generation and reset it in reseed. A mechanism * does not need to compare it to {@link #reseedInterval}. + * + * Volatile, will be used in a double checked locking. */ - protected transient int reseedCounter = 0; + protected transient volatile int reseedCounter = 0; // Mech features. If not same as below, must be redefined in constructor. @@ -383,9 +382,14 @@ public abstract class AbstractDrbg extends SecureRandomSpi { instantiateIfNecessary(null); // Step 7: Auto reseed + // Double checked locking, safe because reseedCounter is volatile if (reseedCounter > reseedInterval || pr) { - reseedAlgorithm(getEntropyInput(pr), ai); - ai = null; + synchronized (this) { + if (reseedCounter > reseedInterval || pr) { + reseedAlgorithm(getEntropyInput(pr), ai); + ai = null; + } + } } // Step 8, 10: Generate_algorithm @@ -615,8 +619,7 @@ public abstract class AbstractDrbg extends SecureRandomSpi { * @throws IllegalArgumentException if {@code params} is * inappropriate for this SecureRandom. */ - protected final synchronized void configure( - SecureRandomParameters params) { + protected final void configure(SecureRandomParameters params) { if (debug != null) { debug.println(this, "configure " + this + " with " + params); } diff --git a/jdk/src/java.base/share/classes/sun/security/provider/CtrDrbg.java b/jdk/src/java.base/share/classes/sun/security/provider/CtrDrbg.java index e1904cbbbbf..6039db704bf 100644 --- a/jdk/src/java.base/share/classes/sun/security/provider/CtrDrbg.java +++ b/jdk/src/java.base/share/classes/sun/security/provider/CtrDrbg.java @@ -350,7 +350,7 @@ public class CtrDrbg extends AbstractDrbg { } @Override - protected void reseedAlgorithm( + protected synchronized void reseedAlgorithm( byte[] ei, byte[] additionalInput) { if (usedf) { diff --git a/jdk/src/java.base/share/classes/sun/security/provider/HashDrbg.java b/jdk/src/java.base/share/classes/sun/security/provider/HashDrbg.java index 0b59f7d4c33..e3c676b8979 100644 --- a/jdk/src/java.base/share/classes/sun/security/provider/HashDrbg.java +++ b/jdk/src/java.base/share/classes/sun/security/provider/HashDrbg.java @@ -115,7 +115,7 @@ public class HashDrbg extends AbstractHashDrbg { // This method is used by both instantiation and reseeding. @Override - protected final void hashReseedInternal(byte[] input) { + protected final synchronized void hashReseedInternal(byte[] input) { // 800-90Ar1 10.1.1.2: Instantiate Process. // 800-90Ar1 10.1.1.3: Reseed Process. diff --git a/jdk/src/java.base/share/classes/sun/security/provider/HmacDrbg.java b/jdk/src/java.base/share/classes/sun/security/provider/HmacDrbg.java index c4a1fe543d2..1ee07b02fee 100644 --- a/jdk/src/java.base/share/classes/sun/security/provider/HmacDrbg.java +++ b/jdk/src/java.base/share/classes/sun/security/provider/HmacDrbg.java @@ -115,7 +115,7 @@ public class HmacDrbg extends AbstractHashDrbg { // This method is used by both instantiation and reseeding. @Override - protected final void hashReseedInternal(byte[] input) { + protected final synchronized void hashReseedInternal(byte[] input) { // 800-90Ar1 10.1.2.3: Instantiate Process. // 800-90Ar1 10.1.2.4: Reseed Process. From 07f2c9d05f71d836c650fe8fa7e18b21018b5dd2 Mon Sep 17 00:00:00 2001 From: Weijun Wang Date: Thu, 12 May 2016 13:06:03 +0800 Subject: [PATCH 60/62] 8156213: Remove SHA-1 and 3KeyTDEA algorithms from DRBG Reviewed-by: wetmore, xuelei --- .../classes/java/security/DrbgParameters.java | 7 +-- .../sun/security/provider/AbstractDrbg.java | 5 +- .../security/provider/AbstractHashDrbg.java | 6 -- .../sun/security/provider/CtrDrbg.java | 61 ++----------------- .../share/conf/security/java.security | 15 +++-- .../provider/SecureRandom/DRBGAlg.java | 21 +++---- .../provider/SecureRandom/DrbgCavp.java | 7 ++- 7 files changed, 31 insertions(+), 91 deletions(-) diff --git a/jdk/src/java.base/share/classes/java/security/DrbgParameters.java b/jdk/src/java.base/share/classes/java/security/DrbgParameters.java index f30c80da2e3..50fa82e0313 100644 --- a/jdk/src/java.base/share/classes/java/security/DrbgParameters.java +++ b/jdk/src/java.base/share/classes/java/security/DrbgParameters.java @@ -196,10 +196,9 @@ import java.util.Objects; * of the JDK reference implementation. *

          * This implementation supports the Hash_DRBG and HMAC_DRBG mechanisms with - * DRBG algorithm SHA-1, SHA-224, SHA-512/224, SHA-256, SHA-512/256, - * SHA-384 and SHA-512, and CTR_DRBG (both using derivation function and - * not using derivation function) with DRBG algorithm 3KeyTDEA - * (also known as DESede in JCE), AES-128, AES-192 and AES-256. + * DRBG algorithm SHA-224, SHA-512/224, SHA-256, SHA-512/256, SHA-384 and + * SHA-512, and CTR_DRBG (both using derivation function and not using + * derivation function) with DRBG algorithm AES-128, AES-192 and AES-256. *

          * The mechanism name and DRBG algorithm name are determined by the * {@linkplain Security#getProperty(String) security property} diff --git a/jdk/src/java.base/share/classes/sun/security/provider/AbstractDrbg.java b/jdk/src/java.base/share/classes/sun/security/provider/AbstractDrbg.java index 15254237a18..8106ceaf644 100644 --- a/jdk/src/java.base/share/classes/sun/security/provider/AbstractDrbg.java +++ b/jdk/src/java.base/share/classes/sun/security/provider/AbstractDrbg.java @@ -267,10 +267,9 @@ public abstract class AbstractDrbg extends SecureRandomSpi { * {@code DEFAULT_STRENGTH} is 128) for HashDRBG: *

                * requested             effective
          -     * (SHA-1, -1)           (SHA-1,128)
          -     * (SHA-1, 112)          (SHA-1,112)
          -     * (SHA-1, 192)          IAE
          +     * (SHA-224, 256)        IAE
                * (SHA-256, -1)         (SHA-256,128)
          +     * (SHA-256, 112)        (SHA-256,112)
                * (SHA-256, 128)        (SHA-256,128)
                * (SHA-3, -1)           IAE
                * (null, -1)            (SHA-256,128)
          diff --git a/jdk/src/java.base/share/classes/sun/security/provider/AbstractHashDrbg.java b/jdk/src/java.base/share/classes/sun/security/provider/AbstractHashDrbg.java
          index 75edd923aca..73d40b777da 100644
          --- a/jdk/src/java.base/share/classes/sun/security/provider/AbstractHashDrbg.java
          +++ b/jdk/src/java.base/share/classes/sun/security/provider/AbstractHashDrbg.java
          @@ -39,8 +39,6 @@ public abstract class AbstractHashDrbg extends AbstractDrbg {
           
               private static int alg2strength(String algorithm) {
                   switch (algorithm.toUpperCase(Locale.ROOT)) {
          -            case "SHA-1":
          -                return 128;
                       case "SHA-224":
                       case "SHA-512/224":
                           return 192;
          @@ -82,10 +80,6 @@ public abstract class AbstractHashDrbg extends AbstractDrbg {
                       this.securityStrength = tryStrength;
                   }
                   switch (algorithm.toUpperCase(Locale.ROOT)) {
          -            case "SHA-1":
          -                this.seedLen = 440 / 8;
          -                this.outLen = 160 / 8;
          -                break;
                       case "SHA-224":
                       case "SHA-512/224":
                           this.seedLen = 440 / 8;
          diff --git a/jdk/src/java.base/share/classes/sun/security/provider/CtrDrbg.java b/jdk/src/java.base/share/classes/sun/security/provider/CtrDrbg.java
          index 6039db704bf..4182383e6da 100644
          --- a/jdk/src/java.base/share/classes/sun/security/provider/CtrDrbg.java
          +++ b/jdk/src/java.base/share/classes/sun/security/provider/CtrDrbg.java
          @@ -27,7 +27,6 @@ package sun.security.provider;
           
           import javax.crypto.Cipher;
           import javax.crypto.NoSuchPaddingException;
          -import javax.crypto.SecretKey;
           import javax.crypto.spec.SecretKeySpec;
           import java.io.IOException;
           import java.security.*;
          @@ -68,11 +67,6 @@ public class CtrDrbg extends AbstractDrbg {
           
               private static int alg2strength(String algorithm) {
                   switch (algorithm.toUpperCase(Locale.ROOT)) {
          -            case "TDEA":
          -            case "3KEYTDEA":
          -            case "3 KEY TDEA":
          -            case "DESEDE":
          -                return 112;
                       case "AES-128":
                           return 128;
                       case "AES-192":
          @@ -120,16 +114,6 @@ public class CtrDrbg extends AbstractDrbg {
                       this.securityStrength = tryStrength;
                   }
                   switch (algorithm.toUpperCase(Locale.ROOT)) {
          -            case "TDEA":
          -            case "3KEYTDEA":
          -            case "3 KEY TDEA":
          -            case "DESEDE":
          -                algorithm = "DESede";
          -                this.keyAlg = "DESede";
          -                this.cipherAlg = "DESede/ECB/NoPadding";
          -                this.blockLen = 64 / 8;
          -                this.keyLen = 168 / 8;
          -                break;
                       case "AES-128":
                       case "AES-192":
                       case "AES-256":
          @@ -224,7 +208,7 @@ public class CtrDrbg extends AbstractDrbg {
                           // Step 2.1. Increment
                           addOne(v, ctrLen);
                           // Step 2.2. Block_Encrypt
          -                cipher.init(Cipher.ENCRYPT_MODE, getKey(keyAlg, k));
          +                cipher.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(k, keyAlg));
                           // Step 2.3. Encrypt into right position, no need to cat
                           cipher.doFinal(v, 0, blockLen, temp, i * blockLen);
                       }
          @@ -316,7 +300,7 @@ public class CtrDrbg extends AbstractDrbg {
           
                   for (int i = 0; i * blockLen < seedLen; i++) {
                       try {
          -                cipher.init(Cipher.ENCRYPT_MODE, getKey(keyAlg, k));
          +                cipher.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(k, keyAlg));
                           int tailLen = temp.length - blockLen*i;
                           if (tailLen > blockLen) {
                               tailLen = blockLen;
          @@ -340,7 +324,7 @@ public class CtrDrbg extends AbstractDrbg {
                           inputBlock[j] ^= chain[j];
                       }
                       try {
          -                cipher.init(Cipher.ENCRYPT_MODE, getKey(keyAlg, k));
          +                cipher.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(k, keyAlg));
                           chain = cipher.doFinal(inputBlock);
                       } catch (GeneralSecurityException e) {
                           throw new InternalError(e);
          @@ -456,7 +440,7 @@ public class CtrDrbg extends AbstractDrbg {
                       addOne(v, ctrLen);
                       try {
                           // Step 4.2. Encrypt
          -                cipher.init(Cipher.ENCRYPT_MODE, getKey(keyAlg, k));
          +                cipher.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(k, keyAlg));
                           byte[] out = cipher.doFinal(v);
           
                           // Step 4.3 and 5. Cat bytes and leftmost
          @@ -479,43 +463,6 @@ public class CtrDrbg extends AbstractDrbg {
                   // Step 8. Return
               }
           
          -    private static void des7to8(
          -            byte[] key56, int off56, byte[] key64, int off64) {
          -        key64[off64 + 0] = (byte)
          -                (key56[off56 + 0] & 0xFE); // << 0
          -        key64[off64 + 1] = (byte)
          -                ((key56[off56 + 0] << 7) | ((key56[off56 + 1] & 0xFF) >>> 1));
          -        key64[off64 + 2] = (byte)
          -                ((key56[off56 + 1] << 6) | ((key56[off56 + 2] & 0xFF) >>> 2));
          -        key64[off64 + 3] = (byte)
          -                ((key56[off56 + 2] << 5) | ((key56[off56 + 3] & 0xFF) >>> 3));
          -        key64[off64 + 4] = (byte)
          -                ((key56[off56 + 3] << 4) | ((key56[off56 + 4] & 0xFF) >>> 4));
          -        key64[off64 + 5] = (byte)
          -                ((key56[off56 + 4] << 3) | ((key56[off56 + 5] & 0xFF) >>> 5));
          -        key64[off64 + 6] = (byte)
          -                ((key56[off56 + 5] << 2) | ((key56[off56 + 6] & 0xFF) >>> 6));
          -        key64[off64 + 7] = (byte)
          -                (key56[off56 + 6] << 1);
          -
          -        for (int i = 0; i < 8; i++) {
          -            // if even # bits, make uneven, XOR with 1 (uneven & 1)
          -            // for uneven # bits, make even, XOR with 0 (even & 1)
          -            key64[off64 + i] ^= Integer.bitCount(key64[off64 + i] ^ 1) & 1;
          -        }
          -    }
          -
          -    private static SecretKey getKey(String keyAlg, byte[] k) {
          -        if (keyAlg.equals("DESede")) {
          -            byte[] k2 = new byte[24];
          -            des7to8(k, 0, k2, 0);
          -            des7to8(k, 7, k2, 8);
          -            des7to8(k, 14, k2, 16);
          -            k = k2;
          -        }
          -        return new SecretKeySpec(k, keyAlg);
          -    }
          -
               private void readObject(java.io.ObjectInputStream s)
                       throws IOException, ClassNotFoundException {
                   s.defaultReadObject ();
          diff --git a/jdk/src/java.base/share/conf/security/java.security b/jdk/src/java.base/share/conf/security/java.security
          index 5e6afc59363..6fa0d301d33 100644
          --- a/jdk/src/java.base/share/conf/security/java.security
          +++ b/jdk/src/java.base/share/conf/security/java.security
          @@ -206,16 +206,15 @@ securerandom.strongAlgorithms=NativePRNGBlocking:SUN,DRBG:SUN
           #     "Hash_DRBG" | "HMAC_DRBG" | "CTR_DRBG"
           #
           #   // The DRBG algorithm name. The "SHA-***" names are for Hash_DRBG and
          -#   // HMAC_DRBG, default "SHA-256". "3KeyTDEA" and "AES-***" names are for
          -#   // CTR_DRBG, default "AES-128" when using the limited cryptographic
          -#   // or "AES-256" when using the unlimited.
          +#   // HMAC_DRBG, default "SHA-256". The "AES-***" names are for CTR_DRBG,
          +#   // default "AES-128" when using the limited cryptographic or "AES-256"
          +#   // when using the unlimited.
           #   algorithm_name:
          -#     "SHA-1" | "SHA-224" | "SHA-512/224" | "SHA-256" |
          +#     "SHA-224" | "SHA-512/224" | "SHA-256" |
           #     "SHA-512/256" | "SHA-384" | "SHA-512" |
          -#     "3KeyTDEA" | "AES-128" | "AES-192" | "AES-256"
          +#     "AES-128" | "AES-192" | "AES-256"
           #
          -#   // Security strength requested. Default "128", or "112"
          -#   // if mech_name is CTR_DRBG and algorithm_name is "3KeyTDEA"
          +#   // Security strength requested. Default "128"
           #   strength:
           #     "112" | "128" | "192" | "256"
           #
          @@ -234,7 +233,7 @@ securerandom.strongAlgorithms=NativePRNGBlocking:SUN,DRBG:SUN
           #     "use_df" | "no_df"
           #
           # Examples,
          -#   securerandom.drbg.config=Hash_DRBG,SHA-1,112,none
          +#   securerandom.drbg.config=Hash_DRBG,SHA-224,112,none
           #   securerandom.drbg.config=CTR_DRBG,AES-256,192,pr_and_reseed,use_df
           #
           # The default value is an empty string, which is equivalent to
          diff --git a/jdk/test/sun/security/provider/SecureRandom/DRBGAlg.java b/jdk/test/sun/security/provider/SecureRandom/DRBGAlg.java
          index 31a308a0f5e..8c37fd4dbfa 100644
          --- a/jdk/test/sun/security/provider/SecureRandom/DRBGAlg.java
          +++ b/jdk/test/sun/security/provider/SecureRandom/DRBGAlg.java
          @@ -47,7 +47,6 @@ public class DRBGAlg {
           
                   check(null, "Hash_DRBG", "SHA-256", "reseed_only", ",128");
                   check("", "Hash_DRBG", "SHA-256", "reseed_only", ",128");
          -        check("sha-1", "Hash_DRBG", "SHA-1", "reseed_only", ",128");
                   check("sha-256", "Hash_DRBG", "SHA-256", "reseed_only", ",128");
                   check("SHA-3");
                   check("hash_drbg", "Hash_DRBG", "SHA-256", "reseed_only", ",128");
          @@ -61,20 +60,20 @@ public class DRBGAlg {
                           "Hash_DRBG", "SHA-512", "pr_and_reseed", ",192");
           
                   check("Hash_DRBG,Hmac_DRBG");
          -        check("SHA-1,SHA-256");
          +        check("SHA-224,SHA-256");
                   check("128,256");
                   check("none,reseed_only");
                   check("use_df,no_df");
          -        check("Hash_DRBG,,SHA-1");
          +        check("Hash_DRBG,,SHA-256");
           
                   check(null, DrbgParameters.instantiation(112, PR_AND_RESEED, null),
                           "Hash_DRBG", "SHA-256", "pr_and_reseed", ",112");
                   check(null, DrbgParameters.instantiation(256, PR_AND_RESEED, null),
                           "Hash_DRBG", "SHA-256", "pr_and_reseed", ",256");
                   check(null, DrbgParameters.instantiation(384, PR_AND_RESEED, null));
          -        check("sha-1", DrbgParameters.instantiation(112, PR_AND_RESEED, null),
          -                "Hash_DRBG", "SHA-1", "pr_and_reseed", ",112");
          -        check("sha-1", DrbgParameters.instantiation(192, PR_AND_RESEED, null));
          +        check("sha-224", DrbgParameters.instantiation(112, PR_AND_RESEED, null),
          +                "Hash_DRBG", "SHA-224", "pr_and_reseed", ",112");
          +        check("sha-224", DrbgParameters.instantiation(256, PR_AND_RESEED, null));
                   check("hash_drbg,sha-512,Pr_and_Reseed,192",
                           DrbgParameters.instantiation(112, NONE, null),
                           "Hash_DRBG", "SHA-512", "reseed_only", ",112");
          @@ -86,23 +85,23 @@ public class DRBGAlg {
                           DrbgParameters.instantiation(192, PR_AND_RESEED, null),
                           "Hash_DRBG", "SHA-256", "pr_and_reseed", ",192");
           
          -        check("hash_drbg,sha-1", new MoreDrbgParameters(
          +        check("hash_drbg,sha-224", new MoreDrbgParameters(
                               null, null, "sha-512", null, false,
                               DrbgParameters.instantiation(-1, NONE, null)),
                           "Hash_DRBG", "SHA-512");
          -        check("hash_drbg,sha-1", new MoreDrbgParameters(
          +        check("hash_drbg,sha-224", new MoreDrbgParameters(
                               null, null, null, null, false,
                               DrbgParameters.instantiation(-1, NONE, null)),
          -                "Hash_DRBG", "SHA-1");
          +                "Hash_DRBG", "SHA-224");
                   check("hash_drbg", new MoreDrbgParameters(
                               null, "hmac_drbg", null, null, false,
                               DrbgParameters.instantiation(-1, NONE, null)),
                           "HMAC_DRBG", "SHA-256");
           
          -        check("hash_drbg,sha-1", new MoreDrbgParameters(
          +        check("hash_drbg,sha-224", new MoreDrbgParameters(
                               null, null, "sha-3", null, false,
                               DrbgParameters.instantiation(-1, NONE, null)));
          -        check("hash_drbg,sha-1", new MoreDrbgParameters(
          +        check("hash_drbg,sha-224", new MoreDrbgParameters(
                               null, "Unknown_DRBG", null, null, false,
                               DrbgParameters.instantiation(-1, NONE, null)));
               }
          diff --git a/jdk/test/sun/security/provider/SecureRandom/DrbgCavp.java b/jdk/test/sun/security/provider/SecureRandom/DrbgCavp.java
          index 51dba4b23d9..9e67848772b 100644
          --- a/jdk/test/sun/security/provider/SecureRandom/DrbgCavp.java
          +++ b/jdk/test/sun/security/provider/SecureRandom/DrbgCavp.java
          @@ -278,10 +278,13 @@ public class DrbgCavp {
                                                               ps)),
                                               "SUN");
                                   } catch (NoSuchAlgorithmException iae) {
          +                            // We don't support SHA-1 and 3KeyTDEA. AES-192 or
                                       // AES-256 might not be available. This is OK.
          -                            if ((algorithm.equals("AES-192")
          +                            if (algorithm.equals("SHA-1") ||
          +                                    algorithm.equals("3KeyTDEA") ||
          +                                    ((algorithm.equals("AES-192")
                                               || algorithm.equals("AES-256"))
          -                                    && AES_LIMIT == 128) {
          +                                    && AES_LIMIT == 128)) {
                                           hd = null;
                                       } else {
                                           throw iae;
          
          From 6ce3711133a668794abbda6ad540421fd0d26f23 Mon Sep 17 00:00:00 2001
          From: Michael McMahon 
          Date: Thu, 12 May 2016 16:06:17 +0100
          Subject: [PATCH 61/62] 8156801: java/net/httpclient/security/Driver.java
           failed with RuntimeException: Non zero return value
          
          Reviewed-by: chegar
          ---
           .../java/net/httpclient/security/Security.java | 18 ++++++++++++------
           1 file changed, 12 insertions(+), 6 deletions(-)
          
          diff --git a/jdk/test/java/net/httpclient/security/Security.java b/jdk/test/java/net/httpclient/security/Security.java
          index 185b8a7be26..1f9ec1a8374 100644
          --- a/jdk/test/java/net/httpclient/security/Security.java
          +++ b/jdk/test/java/net/httpclient/security/Security.java
          @@ -68,6 +68,8 @@ import java.util.function.*;
           import java.util.logging.ConsoleHandler;
           import java.util.logging.Level;
           import java.util.logging.Logger;
          +import java.lang.reflect.InvocationTargetException;
          +import java.net.BindException;
           
           /**
            * Security checks test
          @@ -142,8 +144,12 @@ public class Security {
                   }
               }
           
          -    static Object getProxy(int port, boolean b) throws Exception {
          -        return proxyConstructor.newInstance(port, b);
          +    static Object getProxy(int port, boolean b) throws Throwable {
          +        try {
          +            return proxyConstructor.newInstance(port, b);
          +        } catch (InvocationTargetException e) {
          +            throw e.getTargetException();
          +        }
               }
           
               static Class proxyClass;
          @@ -319,10 +325,10 @@ public class Security {
                   Object proxy = null;
                   try {
                       proxy = getProxy(proxyPort, true);
          -        } catch (IOException e) {
          -            System.out.println("Cannot bind. Not running test");
          -            throw new SecurityException("test not run");
          -        } catch (Exception ee) {
          +        } catch (BindException e) {
          +            System.out.println("Bind failed");
          +            throw e;
          +        } catch (Throwable ee) {
                       throw new RuntimeException(ee);
                   }
                   System.out.println("Proxy port = " + proxyPort);
          
          From fa1227e9bd02afd713c3a9be0538c74c29f5e505 Mon Sep 17 00:00:00 2001
          From: Christoph Langer 
          Date: Thu, 12 May 2016 16:33:37 +0100
          Subject: [PATCH 62/62] 8156521: Minor fixes and cleanups in NetworkInterface.c
          
          Reviewed-by: alanb, chegar, dsamersoff, msheppar
          ---
           .../unix/native/libnet/NetworkInterface.c     | 1100 ++++++++---------
           1 file changed, 520 insertions(+), 580 deletions(-)
          
          diff --git a/jdk/src/java.base/unix/native/libnet/NetworkInterface.c b/jdk/src/java.base/unix/native/libnet/NetworkInterface.c
          index 64ddb46d541..3e181c0ee9d 100644
          --- a/jdk/src/java.base/unix/native/libnet/NetworkInterface.c
          +++ b/jdk/src/java.base/unix/native/libnet/NetworkInterface.c
          @@ -1,5 +1,5 @@
           /*
          - * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
          + * Copyright (c) 2000, 2016, 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
          @@ -23,7 +23,6 @@
            * questions.
            */
           
          -
           #include 
           #include 
           #if defined(_ALLBSD_SOURCE) && defined(__OpenBSD__)
          @@ -38,14 +37,14 @@
           #include 
           #include 
           
          -#ifdef __solaris__
          +#if defined(__solaris__)
           #include 
           #include 
           #include 
           #include 
           #endif
           
          -#ifdef __linux__
          +#if defined(__linux__)
           #include 
           #include 
           #include 
          @@ -59,10 +58,6 @@
           #include 
           #endif
           
          -#ifdef __linux__
          -#define _PATH_PROCNET_IFINET6           "/proc/net/if_inet6"
          -#endif
          -
           #if defined(_ALLBSD_SOURCE)
           #include 
           #include 
          @@ -80,6 +75,10 @@
           #include "jni_util.h"
           #include "net_util.h"
           
          +#if defined(__linux__)
          +#define _PATH_PROCNET_IFINET6 "/proc/net/if_inet6"
          +#endif
          +
           typedef struct _netaddr  {
               struct sockaddr *addr;
               struct sockaddr *brdcast;
          @@ -135,29 +134,32 @@ static netif  *enumIPv4Interfaces(JNIEnv *env, int sock, netif *ifs);
           static netif  *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs);
           #endif
           
          -static netif  *addif(JNIEnv *env, int sock, const char * if_name, netif *ifs, struct sockaddr* ifr_addrP, int family, short prefix);
          +static netif  *addif(JNIEnv *env, int sock, const char *if_name, netif *ifs,
          +                     struct sockaddr *ifr_addrP, int family, short prefix);
           static void    freeif(netif *ifs);
           
           static int     openSocket(JNIEnv *env, int proto);
           static int     openSocketWithFallback(JNIEnv *env, const char *ifname);
           
           
          -static struct  sockaddr *getBroadcast(JNIEnv *env, int sock, const char *name, struct sockaddr *brdcast_store);
          +static struct  sockaddr *getBroadcast(JNIEnv *env, int sock, const char *name,
          +                                      struct sockaddr *brdcast_store);
           static short   getSubnet(JNIEnv *env, int sock, const char *ifname);
           static int     getIndex(int sock, const char *ifname);
           
           static int     getFlags(int sock, const char *ifname, int *flags);
          -static int     getMacAddress(JNIEnv *env, int sock,  const char* ifname, const struct in_addr* addr, unsigned char *buf);
          +static int     getMacAddress(JNIEnv *env, int sock,  const char *ifname,
          +                             const struct in_addr *addr, unsigned char *buf);
           static int     getMTU(JNIEnv *env, int sock, const char *ifname);
           
           
          -
          -#ifdef __solaris__
          -static netif *enumIPvXInterfaces(JNIEnv *env, int sock, netif *ifs, int family);
          -static int    getMacFromDevice(JNIEnv *env, const char* ifname, unsigned char* retbuf);
          +#if defined(__solaris__)
          +static netif  *enumIPvXInterfaces(JNIEnv *env, int sock, netif *ifs, int family);
          +static int     getMacFromDevice(JNIEnv *env, const char *ifname,
          +                                unsigned char *retbuf);
           
           #ifndef SIOCGLIFHWADDR
          -#define SIOCGLIFHWADDR  _IOWR('i', 192, struct lifreq)
          +#define SIOCGLIFHWADDR _IOWR('i', 192, struct lifreq)
           #endif
           
           #endif
          @@ -169,27 +171,33 @@ static int    getMacFromDevice(JNIEnv *env, const char* ifname, unsigned char* r
            * Method:    init
            * Signature: ()V
            */
          -JNIEXPORT void JNICALL
          -Java_java_net_NetworkInterface_init(JNIEnv *env, jclass cls) {
          -    ni_class = (*env)->FindClass(env,"java/net/NetworkInterface");
          +JNIEXPORT void JNICALL Java_java_net_NetworkInterface_init
          +  (JNIEnv *env, jclass cls)
          +{
          +    ni_class = (*env)->FindClass(env, "java/net/NetworkInterface");
               CHECK_NULL(ni_class);
               ni_class = (*env)->NewGlobalRef(env, ni_class);
               CHECK_NULL(ni_class);
          -    ni_nameID = (*env)->GetFieldID(env, ni_class,"name", "Ljava/lang/String;");
          +    ni_nameID = (*env)->GetFieldID(env, ni_class, "name", "Ljava/lang/String;");
               CHECK_NULL(ni_nameID);
               ni_indexID = (*env)->GetFieldID(env, ni_class, "index", "I");
               CHECK_NULL(ni_indexID);
          -    ni_addrsID = (*env)->GetFieldID(env, ni_class, "addrs", "[Ljava/net/InetAddress;");
          +    ni_addrsID = (*env)->GetFieldID(env, ni_class, "addrs",
          +                                    "[Ljava/net/InetAddress;");
               CHECK_NULL(ni_addrsID);
          -    ni_bindsID = (*env)->GetFieldID(env, ni_class, "bindings", "[Ljava/net/InterfaceAddress;");
          +    ni_bindsID = (*env)->GetFieldID(env, ni_class, "bindings",
          +                                    "[Ljava/net/InterfaceAddress;");
               CHECK_NULL(ni_bindsID);
          -    ni_descID = (*env)->GetFieldID(env, ni_class, "displayName", "Ljava/lang/String;");
          +    ni_descID = (*env)->GetFieldID(env, ni_class, "displayName",
          +                                   "Ljava/lang/String;");
               CHECK_NULL(ni_descID);
               ni_virutalID = (*env)->GetFieldID(env, ni_class, "virtual", "Z");
               CHECK_NULL(ni_virutalID);
          -    ni_childsID = (*env)->GetFieldID(env, ni_class, "childs", "[Ljava/net/NetworkInterface;");
          +    ni_childsID = (*env)->GetFieldID(env, ni_class, "childs",
          +                                     "[Ljava/net/NetworkInterface;");
               CHECK_NULL(ni_childsID);
          -    ni_parentID = (*env)->GetFieldID(env, ni_class, "parent", "Ljava/net/NetworkInterface;");
          +    ni_parentID = (*env)->GetFieldID(env, ni_class, "parent",
          +                                     "Ljava/net/NetworkInterface;");
               CHECK_NULL(ni_parentID);
               ni_ctrID = (*env)->GetMethodID(env, ni_class, "", "()V");
               CHECK_NULL(ni_ctrID);
          @@ -199,27 +207,28 @@ Java_java_net_NetworkInterface_init(JNIEnv *env, jclass cls) {
               CHECK_NULL(ni_ibcls);
               ni_ibctrID = (*env)->GetMethodID(env, ni_ibcls, "", "()V");
               CHECK_NULL(ni_ibctrID);
          -    ni_ibaddressID = (*env)->GetFieldID(env, ni_ibcls, "address", "Ljava/net/InetAddress;");
          +    ni_ibaddressID = (*env)->GetFieldID(env, ni_ibcls, "address",
          +                                        "Ljava/net/InetAddress;");
               CHECK_NULL(ni_ibaddressID);
          -    ni_ib4broadcastID = (*env)->GetFieldID(env, ni_ibcls, "broadcast", "Ljava/net/Inet4Address;");
          +    ni_ib4broadcastID = (*env)->GetFieldID(env, ni_ibcls, "broadcast",
          +                                           "Ljava/net/Inet4Address;");
               CHECK_NULL(ni_ib4broadcastID);
               ni_ib4maskID = (*env)->GetFieldID(env, ni_ibcls, "maskLength", "S");
               CHECK_NULL(ni_ib4maskID);
          -    ni_defaultIndexID = (*env)->GetStaticFieldID(env, ni_class, "defaultIndex", "I");
          +    ni_defaultIndexID = (*env)->GetStaticFieldID(env, ni_class, "defaultIndex",
          +                                                 "I");
               CHECK_NULL(ni_defaultIndexID);
          -
               initInetAddressIDs(env);
           }
           
          -
           /*
            * Class:     java_net_NetworkInterface
            * Method:    getByName0
            * Signature: (Ljava/lang/String;)Ljava/net/NetworkInterface;
            */
           JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByName0
          -    (JNIEnv *env, jclass cls, jstring name) {
          -
          +  (JNIEnv *env, jclass cls, jstring name)
          +{
               netif *ifs, *curr;
               jboolean isCopy;
               const char* name_utf;
          @@ -236,9 +245,8 @@ JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByName0
                      JNU_ThrowOutOfMemoryError(env, NULL);
                  return NULL;
               }
          -    /*
          -     * Search the list of interface based on name
          -     */
          +
          +    // Search the list of interface based on name
               curr = ifs;
               while (curr != NULL) {
                   if (strcmp(name_utf, curr->name) == 0) {
          @@ -247,27 +255,26 @@ JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByName0
                   curr = curr->next;
               }
           
          -    /* if found create a NetworkInterface */
          +    // if found create a NetworkInterface
               if (curr != NULL) {;
                   obj = createNetworkInterface(env, curr);
               }
           
          -    /* release the UTF string and interface list */
          +    // release the UTF string and interface list
               (*env)->ReleaseStringUTFChars(env, name, name_utf);
               freeif(ifs);
           
               return obj;
           }
           
          -
           /*
            * Class:     java_net_NetworkInterface
            * Method:    getByIndex0
            * Signature: (Ljava/lang/String;)Ljava/net/NetworkInterface;
            */
           JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByIndex0
          -    (JNIEnv *env, jclass cls, jint index) {
          -
          +  (JNIEnv *env, jclass cls, jint index)
          +{
               netif *ifs, *curr;
               jobject obj = NULL;
           
          @@ -279,9 +286,7 @@ JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByIndex0
                   return NULL;
               }
           
          -    /*
          -     * Search the list of interface based on index
          -     */
          +    // Search the list of interface based on index
               curr = ifs;
               while (curr != NULL) {
                   if (index == curr->index) {
          @@ -290,7 +295,7 @@ JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByIndex0
                   curr = curr->next;
               }
           
          -    /* if found create a NetworkInterface */
          +    // if found create a NetworkInterface
               if (curr != NULL) {;
                   obj = createNetworkInterface(env, curr);
               }
          @@ -305,8 +310,8 @@ JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByIndex0
            * Signature: (Ljava/net/InetAddress;)Ljava/net/NetworkInterface;
            */
           JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByInetAddress0
          -    (JNIEnv *env, jclass cls, jobject iaObj) {
          -
          +  (JNIEnv *env, jclass cls, jobject iaObj)
          +{
               netif *ifs, *curr;
           
           #ifdef AF_INET6
          @@ -327,14 +332,13 @@ JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByInetAddress0
               while (curr != NULL) {
                   netaddr *addrP = curr->addr;
           
          -        /*
          -         * Iterate through each address on the interface
          -         */
          +        // Iterate through each address on the interface
                   while (addrP != NULL) {
           
                       if (family == addrP->family) {
                           if (family == AF_INET) {
          -                    int address1 = htonl(((struct sockaddr_in*)addrP->addr)->sin_addr.s_addr);
          +                    int address1 = htonl(
          +                        ((struct sockaddr_in*)addrP->addr)->sin_addr.s_addr);
                               int address2 = getInetAddress_addr(env, iaObj);
           
                               if (address1 == address2) {
          @@ -345,7 +349,8 @@ JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByInetAddress0
           
           #ifdef AF_INET6
                           if (family == AF_INET6) {
          -                    jbyte *bytes = (jbyte *)&(((struct sockaddr_in6*)addrP->addr)->sin6_addr);
          +                    jbyte *bytes = (jbyte *)&(
          +                        ((struct sockaddr_in6*)addrP->addr)->sin6_addr);
                               jbyte caddr[16];
                               int i;
                               getInet6Address_ipaddress(env, iaObj, (char *)caddr);
          @@ -362,7 +367,6 @@ JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByInetAddress0
                               }
                           }
           #endif
          -
                       }
           
                       if (match) {
          @@ -377,7 +381,7 @@ JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByInetAddress0
                   curr = curr->next;
               }
           
          -    /* if found create a NetworkInterface */
          +    // if found create a NetworkInterface
               if (match) {;
                   obj = createNetworkInterface(env, curr);
               }
          @@ -386,15 +390,14 @@ JNIEXPORT jobject JNICALL Java_java_net_NetworkInterface_getByInetAddress0
               return obj;
           }
           
          -
           /*
            * Class:     java_net_NetworkInterface
            * Method:    getAll
            * Signature: ()[Ljava/net/NetworkInterface;
            */
           JNIEXPORT jobjectArray JNICALL Java_java_net_NetworkInterface_getAll
          -    (JNIEnv *env, jclass cls) {
          -
          +  (JNIEnv *env, jclass cls)
          +{
               netif *ifs, *curr;
               jobjectArray netIFArr;
               jint arr_index, ifCount;
          @@ -404,7 +407,7 @@ JNIEXPORT jobjectArray JNICALL Java_java_net_NetworkInterface_getAll
                   return NULL;
               }
           
          -    /* count the interface */
          +    // count the interface
               ifCount = 0;
               curr = ifs;
               while (curr != NULL) {
          @@ -412,17 +415,15 @@ JNIEXPORT jobjectArray JNICALL Java_java_net_NetworkInterface_getAll
                   curr = curr->next;
               }
           
          -    /* allocate a NetworkInterface array */
          +    // allocate a NetworkInterface array
               netIFArr = (*env)->NewObjectArray(env, ifCount, cls, NULL);
               if (netIFArr == NULL) {
                   freeif(ifs);
                   return NULL;
               }
           
          -    /*
          -     * Iterate through the interfaces, create a NetworkInterface instance
          -     * for each array element and populate the object.
          -     */
          +    // Iterate through the interfaces, create a NetworkInterface instance
          +    // for each array element and populate the object.
               curr = ifs;
               arr_index = 0;
               while (curr != NULL) {
          @@ -434,7 +435,7 @@ JNIEXPORT jobjectArray JNICALL Java_java_net_NetworkInterface_getAll
                       return NULL;
                   }
           
          -        /* put the NetworkInterface into the array */
          +        // put the NetworkInterface into the array
                   (*env)->SetObjectArrayElement(env, netIFArr, arr_index++, netifObj);
           
                   curr = curr->next;
          @@ -444,13 +445,14 @@ JNIEXPORT jobjectArray JNICALL Java_java_net_NetworkInterface_getAll
               return netIFArr;
           }
           
          -
           /*
            * Class:     java_net_NetworkInterface
            * Method:    isUp0
            * Signature: (Ljava/lang/String;I)Z
            */
          -JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_isUp0(JNIEnv *env, jclass cls, jstring name, jint index) {
          +JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_isUp0
          +  (JNIEnv *env, jclass cls, jstring name, jint index)
          +{
               int ret = getFlags0(env, name);
               return ((ret & IFF_UP) && (ret & IFF_RUNNING)) ? JNI_TRUE :  JNI_FALSE;
           }
          @@ -460,7 +462,9 @@ JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_isUp0(JNIEnv *env, jcl
            * Method:    isP2P0
            * Signature: (Ljava/lang/String;I)Z
            */
          -JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_isP2P0(JNIEnv *env, jclass cls, jstring name, jint index) {
          +JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_isP2P0
          +  (JNIEnv *env, jclass cls, jstring name, jint index)
          +{
               int ret = getFlags0(env, name);
               return (ret & IFF_POINTOPOINT) ? JNI_TRUE :  JNI_FALSE;
           }
          @@ -470,7 +474,9 @@ JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_isP2P0(JNIEnv *env, jc
            * Method:    isLoopback0
            * Signature: (Ljava/lang/String;I)Z
            */
          -JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_isLoopback0(JNIEnv *env, jclass cls, jstring name, jint index) {
          +JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_isLoopback0
          +  (JNIEnv *env, jclass cls, jstring name, jint index)
          +{
               int ret = getFlags0(env, name);
               return (ret & IFF_LOOPBACK) ? JNI_TRUE :  JNI_FALSE;
           }
          @@ -480,7 +486,9 @@ JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_isLoopback0(JNIEnv *en
            * Method:    supportsMulticast0
            * Signature: (Ljava/lang/String;I)Z
            */
          -JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_supportsMulticast0(JNIEnv *env, jclass cls, jstring name, jint index) {
          +JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_supportsMulticast0
          +  (JNIEnv *env, jclass cls, jstring name, jint index)
          +{
               int ret = getFlags0(env, name);
               return (ret & IFF_MULTICAST) ? JNI_TRUE :  JNI_FALSE;
           }
          @@ -490,7 +498,9 @@ JNIEXPORT jboolean JNICALL Java_java_net_NetworkInterface_supportsMulticast0(JNI
            * Method:    getMacAddr0
            * Signature: ([bLjava/lang/String;I)[b
            */
          -JNIEXPORT jbyteArray JNICALL Java_java_net_NetworkInterface_getMacAddr0(JNIEnv *env, jclass class, jbyteArray addrArray, jstring name, jint index) {
          +JNIEXPORT jbyteArray JNICALL Java_java_net_NetworkInterface_getMacAddr0
          +  (JNIEnv *env, jclass cls, jbyteArray addrArray, jstring name, jint index)
          +{
               jint addr;
               jbyte caddr[4];
               struct in_addr iaddr;
          @@ -507,12 +517,11 @@ JNIEXPORT jbyteArray JNICALL Java_java_net_NetworkInterface_getMacAddr0(JNIEnv *
                      JNU_ThrowOutOfMemoryError(env, NULL);
                  return NULL;
               }
          -    if ((sock =openSocketWithFallback(env, name_utf)) < 0) {
          +    if ((sock = openSocketWithFallback(env, name_utf)) < 0) {
                  (*env)->ReleaseStringUTFChars(env, name, name_utf);
                  return JNI_FALSE;
               }
           
          -
               if (!IS_NULL(addrArray)) {
                  (*env)->GetByteArrayRegion(env, addrArray, 0, 4, caddr);
                  addr = ((caddr[0]<<24) & 0xff000000);
          @@ -522,7 +531,7 @@ JNIEXPORT jbyteArray JNICALL Java_java_net_NetworkInterface_getMacAddr0(JNIEnv *
                  iaddr.s_addr = htonl(addr);
                  len = getMacAddress(env, sock, name_utf, &iaddr, mac);
               } else {
          -       len = getMacAddress(env, sock, name_utf,NULL, mac);
          +       len = getMacAddress(env, sock, name_utf, NULL, mac);
               }
               if (len > 0) {
                  ret = (*env)->NewByteArray(env, len);
          @@ -530,10 +539,10 @@ JNIEXPORT jbyteArray JNICALL Java_java_net_NetworkInterface_getMacAddr0(JNIEnv *
                     /* we may have memory to free at the end of this */
                     goto fexit;
                  }
          -       (*env)->SetByteArrayRegion(env, ret, 0, len, (jbyte *) (mac));
          +       (*env)->SetByteArrayRegion(env, ret, 0, len, (jbyte *)(mac));
               }
            fexit:
          -   /* release the UTF string and interface list */
          +   // release the UTF string and interface list
              (*env)->ReleaseStringUTFChars(env, name, name_utf);
           
              close(sock);
          @@ -545,8 +554,9 @@ JNIEXPORT jbyteArray JNICALL Java_java_net_NetworkInterface_getMacAddr0(JNIEnv *
            * Method:      getMTU0
            * Signature:   ([bLjava/lang/String;I)I
            */
          -
          -JNIEXPORT jint JNICALL Java_java_net_NetworkInterface_getMTU0(JNIEnv *env, jclass class, jstring name, jint index) {
          +JNIEXPORT jint JNICALL Java_java_net_NetworkInterface_getMTU0
          +  (JNIEnv *env, jclass cls, jstring name, jint index)
          +{
               jboolean isCopy;
               int ret = -1;
               int sock;
          @@ -564,7 +574,7 @@ JNIEXPORT jint JNICALL Java_java_net_NetworkInterface_getMTU0(JNIEnv *env, jclas
                  return ret;
               }
           
          -    if ((sock =openSocketWithFallback(env, name_utf)) < 0) {
          +    if ((sock = openSocketWithFallback(env, name_utf)) < 0) {
                  (*env)->ReleaseStringUTFChars(env, name, name_utf);
                  return JNI_FALSE;
               }
          @@ -608,19 +618,17 @@ static int getFlags0(JNIEnv *env, jstring name) {
               (*env)->ReleaseStringUTFChars(env, name, name_utf);
           
               if (ret < 0) {
          -        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL  SIOCGLIFFLAGS failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGLIFFLAGS failed");
                   return -1;
               }
           
               return flags;
           }
           
          -
          -
          -
           /*
          - * Create a NetworkInterface object, populate the name and index, and
          - * populate the InetAddress array based on the IP addresses for this
          + * Creates a NetworkInterface object, populates the name, the index, and
          + * populates the InetAddress array based on the IP addresses for this
            * interface.
            */
           jobject createNetworkInterface(JNIEnv *env, netif *ifs) {
          @@ -636,9 +644,7 @@ jobject createNetworkInterface(JNIEnv *env, netif *ifs) {
               netif *childP;
               jobject tmp;
           
          -    /*
          -     * Create a NetworkInterface object and populate it
          -     */
          +    // Create a NetworkInterface object and populate it
               netifObj = (*env)->NewObject(env, ni_class, ni_ctrID);
               CHECK_NULL_RETURN(netifObj, NULL);
               name = (*env)->NewStringUTF(env, ifs->name);
          @@ -646,11 +652,10 @@ jobject createNetworkInterface(JNIEnv *env, netif *ifs) {
               (*env)->SetObjectField(env, netifObj, ni_nameID, name);
               (*env)->SetObjectField(env, netifObj, ni_descID, name);
               (*env)->SetIntField(env, netifObj, ni_indexID, ifs->index);
          -    (*env)->SetBooleanField(env, netifObj, ni_virutalID, ifs->virtual ? JNI_TRUE : JNI_FALSE);
          +    (*env)->SetBooleanField(env, netifObj, ni_virutalID,
          +                            ifs->virtual ? JNI_TRUE : JNI_FALSE);
           
          -    /*
          -     * Count the number of address on this interface
          -     */
          +    //Count the number of address on this interface
               addr_count = 0;
               addrP = ifs->addr;
               while (addrP != NULL) {
          @@ -658,9 +663,7 @@ jobject createNetworkInterface(JNIEnv *env, netif *ifs) {
                   addrP = addrP->next;
               }
           
          -    /*
          -     * Create the array of InetAddresses
          -     */
          +    // Create the array of InetAddresses
               addrArr = (*env)->NewObjectArray(env, addr_count,  ia_class, NULL);
               if (addrArr == NULL) {
                   return NULL;
          @@ -680,7 +683,8 @@ jobject createNetworkInterface(JNIEnv *env, netif *ifs) {
                   if (addrP->family == AF_INET) {
                       iaObj = (*env)->NewObject(env, ia4_class, ia4_ctrID);
                       if (iaObj) {
          -                 setInetAddress_addr(env, iaObj, htonl(((struct sockaddr_in*)addrP->addr)->sin_addr.s_addr));
          +                 setInetAddress_addr(env, iaObj, htonl(
          +                     ((struct sockaddr_in*)addrP->addr)->sin_addr.s_addr));
                       } else {
                           return NULL;
                       }
          @@ -691,7 +695,8 @@ jobject createNetworkInterface(JNIEnv *env, netif *ifs) {
                               jobject ia2Obj = NULL;
                               ia2Obj = (*env)->NewObject(env, ia4_class, ia4_ctrID);
                               if (ia2Obj) {
          -                       setInetAddress_addr(env, ia2Obj, htonl(((struct sockaddr_in*)addrP->brdcast)->sin_addr.s_addr));
          +                       setInetAddress_addr(env, ia2Obj, htonl(
          +                           ((struct sockaddr_in*)addrP->brdcast)->sin_addr.s_addr));
                                  (*env)->SetObjectField(env, ibObj, ni_ib4broadcastID, ia2Obj);
                               } else {
                                   return NULL;
          @@ -709,7 +714,8 @@ jobject createNetworkInterface(JNIEnv *env, netif *ifs) {
                       int scope=0;
                       iaObj = (*env)->NewObject(env, ia6_class, ia6_ctrID);
                       if (iaObj) {
          -                jboolean ret = setInet6Address_ipaddress(env, iaObj, (char *)&(((struct sockaddr_in6*)addrP->addr)->sin6_addr));
          +                jboolean ret = setInet6Address_ipaddress(env, iaObj,
          +                    (char *)&(((struct sockaddr_in6*)addrP->addr)->sin6_addr));
                           if (ret == JNI_FALSE) {
                               return NULL;
                           }
          @@ -738,9 +744,7 @@ jobject createNetworkInterface(JNIEnv *env, netif *ifs) {
                   addrP = addrP->next;
               }
           
          -    /*
          -     * See if there is any virtual interface attached to this one.
          -     */
          +    // See if there is any virtual interface attached to this one.
               child_count = 0;
               childP = ifs->childs;
               while (childP) {
          @@ -753,10 +757,7 @@ jobject createNetworkInterface(JNIEnv *env, netif *ifs) {
                   return NULL;
               }
           
          -    /*
          -     * Create the NetworkInterface instances for the sub-interfaces as
          -     * well.
          -     */
          +    // Create the NetworkInterface instances for the sub-interfaces as well.
               child_index = 0;
               childP = ifs->childs;
               while(childP) {
          @@ -772,7 +773,7 @@ jobject createNetworkInterface(JNIEnv *env, netif *ifs) {
               (*env)->SetObjectField(env, netifObj, ni_bindsID, bindArr);
               (*env)->SetObjectField(env, netifObj, ni_childsID, childArr);
           
          -    /* return the NetworkInterface */
          +    // return the NetworkInterface
               return netifObj;
           }
           
          @@ -783,10 +784,7 @@ static netif *enumInterfaces(JNIEnv *env) {
               netif *ifs;
               int sock;
           
          -    /*
          -     * Enumerate IPv4 addresses
          -     */
          -
          +    // Enumerate IPv4 addresses
               sock = openSocket(env, AF_INET);
               if (sock < 0 && (*env)->ExceptionOccurred(env)) {
                   return NULL;
          @@ -799,19 +797,16 @@ static netif *enumInterfaces(JNIEnv *env) {
                   return NULL;
               }
           
          -    /* return partial list if an exception occurs in the middle of process ???*/
          +    // return partial list if an exception occurs in the middle of process ???
           
          -    /*
          -     * If IPv6 is available then enumerate IPv6 addresses.
          -     */
          +    // If IPv6 is available then enumerate IPv6 addresses.
           #ifdef AF_INET6
           
          -        /* User can disable ipv6 explicitly by -Djava.net.preferIPv4Stack=true,
          -         * so we have to call ipv6_available()
          -         */
          +        // User can disable ipv6 explicitly by -Djava.net.preferIPv4Stack=true,
          +        // so we have to call ipv6_available()
                   if (ipv6_available()) {
           
          -           sock =  openSocket(env, AF_INET6);
          +           sock = openSocket(env, AF_INET6);
                      if (sock < 0 && (*env)->ExceptionOccurred(env)) {
                          freeif(ifs);
                          return NULL;
          @@ -831,18 +826,18 @@ static netif *enumInterfaces(JNIEnv *env) {
               return ifs;
           }
           
          -#define CHECKED_MALLOC3(_pointer,_type,_size) \
          -       do{ \
          -        _pointer = (_type)malloc( _size ); \
          +#define CHECKED_MALLOC3(_pointer, _type, _size) \
          +    do { \
          +        _pointer = (_type)malloc(_size); \
                   if (_pointer == NULL) { \
                       JNU_ThrowOutOfMemoryError(env, "Native heap allocation failed"); \
                       return ifs; /* return untouched list */ \
                   } \
          -       } while(0)
          +    } while(0)
           
           
           /*
          - * Free an interface list (including any attached addresses)
          + * Frees an interface list (including any attached addresses)
            */
           void freeif(netif *ifs) {
               netif *currif = ifs;
          @@ -854,24 +849,21 @@ void freeif(netif *ifs) {
                       netaddr *next = addrP->next;
                       free(addrP);
                       addrP = next;
          -         }
          +        }
           
          -            /*
          -            * Don't forget to free the sub-interfaces.
          -            */
          -          if (currif->childs != NULL) {
          -                freeif(currif->childs);
          -          }
          +        // Don't forget to free the sub-interfaces.
          +        if (currif->childs != NULL) {
          +            freeif(currif->childs);
          +        }
           
          -          ifs = currif->next;
          -          free(currif);
          -          currif = ifs;
          +        ifs = currif->next;
          +        free(currif);
          +        currif = ifs;
               }
           }
           
          -netif *addif(JNIEnv *env, int sock, const char * if_name,
          -             netif *ifs, struct sockaddr* ifr_addrP, int family,
          -             short prefix)
          +netif *addif(JNIEnv *env, int sock, const char *if_name, netif *ifs,
          +             struct sockaddr *ifr_addrP, int family, short prefix)
           {
               netif *currif = ifs, *parent;
               netaddr *addrP;
          @@ -884,37 +876,34 @@ netif *addif(JNIEnv *env, int sock, const char * if_name,
               char name[IFNAMSIZ], vname[IFNAMSIZ];
           #endif
           
          -    char  *name_colonP;
          +    char *name_colonP;
               int mask;
               int isVirtual = 0;
               int addr_size;
               int flags = 0;
           
          -    /*
          -     * If the interface name is a logical interface then we
          -     * remove the unit number so that we have the physical
          -     * interface (eg: hme0:1 -> hme0). NetworkInterface
          -     * currently doesn't have any concept of physical vs.
          -     * logical interfaces.
          -     */
          +    // If the interface name is a logical interface then we remove the unit
          +    // number so that we have the physical interface (eg: hme0:1 -> hme0).
          +    // NetworkInterface currently doesn't have any concept of physical vs.
          +    // logical interfaces.
               strncpy(name, if_name, ifnam_size);
               name[ifnam_size - 1] = '\0';
               *vname = 0;
           
          -    /*
          -     * Create and populate the netaddr node. If allocation fails
          -     * return an un-updated list.
          -     */
          -    /*Allocate for addr and brdcast at once*/
          +     // Create and populate the netaddr node. If allocation fails
          +     // return an un-updated list.
          +
          +     // Allocate for addr and brdcast at once
           
           #ifdef AF_INET6
          -    addr_size = (family == AF_INET) ? sizeof(struct sockaddr_in) : sizeof(struct sockaddr_in6);
          +    addr_size = (family == AF_INET) ? sizeof(struct sockaddr_in)
          +                                    : sizeof(struct sockaddr_in6);
           #else
               addr_size = sizeof(struct sockaddr_in);
           #endif
           
          -    CHECKED_MALLOC3(addrP, netaddr *, sizeof(netaddr)+2*addr_size);
          -    addrP->addr = (struct sockaddr *)( (char *) addrP+sizeof(netaddr) );
          +    CHECKED_MALLOC3(addrP, netaddr *, sizeof(netaddr) + 2 * addr_size);
          +    addrP->addr = (struct sockaddr *)((char *)addrP + sizeof(netaddr));
               memcpy(addrP->addr, ifr_addrP, addr_size);
           
               addrP->family = family;
          @@ -923,8 +912,9 @@ netif *addif(JNIEnv *env, int sock, const char * if_name,
               addrP->next = 0;
               if (family == AF_INET) {
                  // Deal with broadcast addr & subnet mask
          -       struct sockaddr * brdcast_to = (struct sockaddr *) ((char *) addrP + sizeof(netaddr) + addr_size);
          -       addrP->brdcast = getBroadcast(env, sock, name,  brdcast_to );
          +       struct sockaddr *brdcast_to =
          +              (struct sockaddr *) ((char *)addrP + sizeof(netaddr) + addr_size);
          +       addrP->brdcast = getBroadcast(env, sock, name, brdcast_to);
                  if ((*env)->ExceptionCheck(env) == JNI_TRUE) {
                      return ifs;
                  }
          @@ -935,36 +925,28 @@ netif *addif(JNIEnv *env, int sock, const char * if_name,
                  }
                }
           
          -    /**
          -     * Deal with virtual interface with colon notation e.g. eth0:1
          -     */
          +    // Deal with virtual interface with colon notation e.g. eth0:1
               name_colonP = strchr(name, ':');
               if (name_colonP != NULL) {
          -      /**
          -       * This is a virtual interface. If we are able to access the parent
          -       * we need to create a new entry if it doesn't exist yet *and* update
          -       * the 'parent' interface with the new records.
          -       */
          +        // This is a virtual interface. If we are able to access the parent
          +        // we need to create a new entry if it doesn't exist yet *and* update
          +        // the 'parent' interface with the new records.
                   *name_colonP = 0;
                   if (getFlags(sock, name, &flags) < 0 || flags < 0) {
          -            // failed to access parent interface do not create parent.
          -            // We are a virtual interface with no parent.
          -            isVirtual = 1;
          -            *name_colonP = ':';
          -        }
          -        else{
          -           // Got access to parent, so create it if necessary.
          -           // Save original name to vname and truncate name by ':'
          -            memcpy(vname, name, sizeof(vname) );
          -            vname[name_colonP - name] = ':';
          +             // failed to access parent interface do not create parent.
          +             // We are a virtual interface with no parent.
          +             isVirtual = 1;
          +             *name_colonP = ':';
          +        } else {
          +             // Got access to parent, so create it if necessary.
          +             // Save original name to vname and truncate name by ':'
          +             memcpy(vname, name, sizeof(vname) );
          +             vname[name_colonP - name] = ':';
                   }
               }
           
          -    /*
          -     * Check if this is a "new" interface. Use the interface
          -     * name for matching because index isn't supported on
          -     * Solaris 2.6 & 7.
          -     */
          +    // Check if this is a "new" interface. Use the interface name for
          +    // matching because index isn't supported on Solaris 2.6 & 7.
               while (currif != NULL) {
                   if (strcmp(name, currif->name) == 0) {
                       break;
          @@ -972,13 +954,10 @@ netif *addif(JNIEnv *env, int sock, const char * if_name,
                   currif = currif->next;
               }
           
          -    /*
          -     * If "new" then create an netif structure and
          -     * insert it onto the list.
          -     */
          +    // If "new" then create an netif structure and insert it into the list.
               if (currif == NULL) {
                    CHECKED_MALLOC3(currif, netif *, sizeof(netif) + ifnam_size);
          -         currif->name = (char *) currif+sizeof(netif);
          +         currif->name = (char *)currif + sizeof(netif);
                    strncpy(currif->name, name, ifnam_size);
                    currif->name[ifnam_size - 1] = '\0';
                    currif->index = getIndex(sock, name);
          @@ -989,17 +968,13 @@ netif *addif(JNIEnv *env, int sock, const char * if_name,
                    ifs = currif;
               }
           
          -    /*
          -     * Finally insert the address on the interface
          -     */
          +    // Finally insert the address on the interface
               addrP->next = currif->addr;
               currif->addr = addrP;
           
               parent = currif;
           
          -    /**
          -     * Let's deal with the virtual interface now.
          -     */
          +    // Deal with the virtual interface now.
               if (vname[0]) {
                   netaddr *tmpaddr;
           
          @@ -1014,27 +989,29 @@ netif *addif(JNIEnv *env, int sock, const char * if_name,
           
                   if (currif == NULL) {
                       CHECKED_MALLOC3(currif, netif *, sizeof(netif) + ifnam_size);
          -            currif->name = (char *) currif + sizeof(netif);
          +            currif->name = (char *)currif + sizeof(netif);
                       strncpy(currif->name, vname, ifnam_size);
                       currif->name[ifnam_size - 1] = '\0';
                       currif->index = getIndex(sock, vname);
                       currif->addr = NULL;
          -           /* Need to duplicate the addr entry? */
          +            // Need to duplicate the addr entry?
                       currif->virtual = 1;
                       currif->childs = NULL;
                       currif->next = parent->childs;
                       parent->childs = currif;
                   }
           
          -        CHECKED_MALLOC3(tmpaddr, netaddr *, sizeof(netaddr)+2*addr_size);
          +        CHECKED_MALLOC3(tmpaddr, netaddr *, sizeof(netaddr) + 2 * addr_size);
                   memcpy(tmpaddr, addrP, sizeof(netaddr));
                   if (addrP->addr != NULL) {
          -            tmpaddr->addr = (struct sockaddr *) ( (char*)tmpaddr + sizeof(netaddr) ) ;
          +            tmpaddr->addr = (struct sockaddr *)
          +                ((char*)tmpaddr + sizeof(netaddr));
                       memcpy(tmpaddr->addr, addrP->addr, addr_size);
                   }
           
                   if (addrP->brdcast != NULL) {
          -            tmpaddr->brdcast = (struct sockaddr *) ((char *) tmpaddr + sizeof(netaddr)+addr_size);
          +            tmpaddr->brdcast = (struct sockaddr *)
          +                ((char *)tmpaddr + sizeof(netaddr) + addr_size);
                       memcpy(tmpaddr->brdcast, addrP->brdcast, addr_size);
                   }
           
          @@ -1045,19 +1022,18 @@ netif *addif(JNIEnv *env, int sock, const char * if_name,
               return ifs;
           }
           
          -/* Open socket for further ioct calls
          - * proto is AF_INET/AF_INET6
          +/*
          + * Opens a socket for further ioct calls. proto is one of AF_INET or AF_INET6.
            */
          -static int  openSocket(JNIEnv *env, int proto){
          +static int openSocket(JNIEnv *env, int proto) {
               int sock;
           
               if ((sock = socket(proto, SOCK_DGRAM, 0)) < 0) {
          -        /*
          -         * If EPROTONOSUPPORT is returned it means we don't have
          -         * support  for this proto so don't throw an exception.
          -         */
          +        // If EPROTONOSUPPORT is returned it means we don't have
          +        // support for this proto so don't throw an exception.
                   if (errno != EPROTONOSUPPORT) {
          -            NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "Socket creation failed");
          +            NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                         "Socket creation failed");
                   }
                   return -1;
               }
          @@ -1068,37 +1044,38 @@ static int  openSocket(JNIEnv *env, int proto){
           
           /** Linux, AIX **/
           #if defined(__linux__) || defined(_AIX)
          -/* Open socket for further ioct calls, try v4 socket first and
          - * if it falls return v6 socket
          - */
           
           #ifdef AF_INET6
          +/*
          + * Opens a socket for further ioct calls. Tries AF_INET socket first and
          + * if it falls return AF_INET6 socket.
          + */
           // unused arg ifname and struct if2
          -static int openSocketWithFallback(JNIEnv *env, const char *ifname){
          +static int openSocketWithFallback(JNIEnv *env, const char *ifname) {
               int sock;
               struct ifreq if2;
           
          -     if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
          -         if (errno == EPROTONOSUPPORT){
          -              if ( (sock = socket(AF_INET6, SOCK_DGRAM, 0)) < 0 ){
          -                 NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "IPV6 Socket creation failed");
          -                 return -1;
          -              }
          -         }
          -         else{ // errno is not NOSUPPORT
          -             NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "IPV4 Socket creation failed");
          -             return -1;
          -         }
          -   }
          +    if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
          +        if (errno == EPROTONOSUPPORT) {
          +            if ((sock = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
          +                NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                             "IPV6 Socket creation failed");
          +                return -1;
          +            }
          +        } else { // errno is not NOSUPPORT
          +            NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                         "IPV4 Socket creation failed");
          +            return -1;
          +        }
          +    }
           
          -     /* Linux starting from 2.6.? kernel allows ioctl call with either IPv4 or IPv6 socket regardless of type
          -        of address of an interface */
          -
          -       return sock;
          +    // Linux starting from 2.6.? kernel allows ioctl call with either IPv4 or
          +    // IPv6 socket regardless of type of address of an interface.
          +    return sock;
           }
           
           #else
          -static int openSocketWithFallback(JNIEnv *env, const char *ifname){
          +static int openSocketWithFallback(JNIEnv *env, const char *ifname) {
               return openSocket(env,AF_INET);
           }
           #endif
          @@ -1111,52 +1088,48 @@ static netif *enumIPv4Interfaces(JNIEnv *env, int sock, netif *ifs) {
               unsigned i;
               int siocgifconfRequest = SIOCGIFCONF;
           
          -
           #if defined(__linux__)
          -    /* need to do a dummy SIOCGIFCONF to determine the buffer size.
          -     * SIOCGIFCOUNT doesn't work
          -     */
          +    // need to do a dummy SIOCGIFCONF to determine the buffer size.
          +    // SIOCGIFCOUNT doesn't work
               ifc.ifc_buf = NULL;
               if (ioctl(sock, SIOCGIFCONF, (char *)&ifc) < 0) {
          -        NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "ioctl SIOCGIFCONF failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGIFCONF failed");
                   return ifs;
               }
           #elif defined(_AIX)
               ifc.ifc_buf = NULL;
               if (ioctl(sock, SIOCGSIZIFCONF, &(ifc.ifc_len)) < 0) {
          -        NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "ioctl SIOCGSIZIFCONF failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGSIZIFCONF failed");
                   return ifs;
               }
           #endif /* __linux__ */
           
          -    CHECKED_MALLOC3(buf,char *, ifc.ifc_len);
          +    CHECKED_MALLOC3(buf, char *, ifc.ifc_len);
           
               ifc.ifc_buf = buf;
           #if defined(_AIX)
               siocgifconfRequest = CSIOCGIFCONF;
           #endif
               if (ioctl(sock, siocgifconfRequest, (char *)&ifc) < 0) {
          -        NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "ioctl SIOCGIFCONF failed");
          -        (void) free(buf);
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGIFCONF failed");
          +        free(buf);
                   return ifs;
               }
           
          -    /*
          -     * Iterate through each interface
          -     */
          +    // Iterate through each interface
               ifreqP = ifc.ifc_req;
          -    for (i=0; iifr_addr.sa_family != AF_INET) continue;
           #endif
          -        /*
          -         * Add to the list
          -         */
          -        ifs = addif(env, sock, ifreqP->ifr_name, ifs, (struct sockaddr *) & (ifreqP->ifr_addr), AF_INET, 0);
          +        // Add to the list
          +        ifs = addif(env, sock, ifreqP->ifr_name, ifs,
          +                    (struct sockaddr *)&(ifreqP->ifr_addr), AF_INET, 0);
           
          -        /*
          -         * If an exception occurred then free the list
          -         */
          +        // If an exception occurred then free the list
                   if ((*env)->ExceptionOccurred(env)) {
                       free(buf);
                       freeif(ifs);
          @@ -1164,37 +1137,37 @@ static netif *enumIPv4Interfaces(JNIEnv *env, int sock, netif *ifs) {
                   }
               }
           
          -    /*
          -     * Free socket and buffer
          -     */
          +    // Free socket and buffer
               free(buf);
               return ifs;
           }
           
           
          -/*
          - * Enumerates and returns all IPv6 interfaces on Linux
          - */
          -
           #if defined(AF_INET6) && defined(__linux__)
          +
          +/*
          + * Enumerates and returns all IPv6 interfaces on Linux.
          + */
           static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) {
               FILE *f;
               char addr6[40], devname[21];
               char addr6p[8][5];
          -    int plen, scope, dad_status, if_idx;
          +    int prefix, scope, dad_status, if_idx;
               uint8_t ipv6addr[16];
           
               if ((f = fopen(_PATH_PROCNET_IFINET6, "r")) != NULL) {
                   while (fscanf(f, "%4s%4s%4s%4s%4s%4s%4s%4s %08x %02x %02x %02x %20s\n",
          -                         addr6p[0], addr6p[1], addr6p[2], addr6p[3], addr6p[4], addr6p[5], addr6p[6], addr6p[7],
          -                         &if_idx, &plen, &scope, &dad_status, devname) != EOF) {
          +                      addr6p[0], addr6p[1], addr6p[2], addr6p[3],
          +                      addr6p[4], addr6p[5], addr6p[6], addr6p[7],
          +                      &if_idx, &prefix, &scope, &dad_status, devname) != EOF) {
           
                       struct netif *ifs_ptr = NULL;
                       struct netif *last_ptr = NULL;
                       struct sockaddr_in6 addr;
           
                       sprintf(addr6, "%s:%s:%s:%s:%s:%s:%s:%s",
          -                           addr6p[0], addr6p[1], addr6p[2], addr6p[3], addr6p[4], addr6p[5], addr6p[6], addr6p[7]);
          +                    addr6p[0], addr6p[1], addr6p[2], addr6p[3],
          +                    addr6p[4], addr6p[5], addr6p[6], addr6p[7]);
                       inet_pton(AF_INET6, addr6, ipv6addr);
           
                       memset(&addr, 0, sizeof(struct sockaddr_in6));
          @@ -1202,12 +1175,10 @@ static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) {
           
                       addr.sin6_scope_id = if_idx;
           
          -            ifs = addif(env, sock, devname, ifs, (struct sockaddr *)&addr, AF_INET6, plen);
          +            ifs = addif(env, sock, devname, ifs, (struct sockaddr *)&addr,
          +                        AF_INET6, (short)prefix);
           
          -
          -            /*
          -             * If an exception occurred then return the list as is.
          -             */
          +            // If an exception occurred then return the list as is.
                       if ((*env)->ExceptionOccurred(env)) {
                           fclose(f);
                           return ifs;
          @@ -1220,11 +1191,11 @@ static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) {
           #endif
           
           
          -/*
          - * Enumerates and returns all IPv6 interfaces on AIX
          - */
          -
           #if defined(AF_INET6) && defined(_AIX)
          +
          +/*
          + * Enumerates and returns all IPv6 interfaces on AIX.
          + */
           static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) {
               struct ifconf ifc;
               struct ifreq *ifreqP;
          @@ -1234,12 +1205,12 @@ static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) {
               unsigned bufsize;
               char *cp, *cplimit;
           
          -    /* use SIOCGSIZIFCONF to get size for  SIOCGIFCONF */
          +    // use SIOCGSIZIFCONF to get size for  SIOCGIFCONF
           
               ifc.ifc_buf = NULL;
               if (ioctl(sock, SIOCGSIZIFCONF, &(ifc.ifc_len)) < 0) {
          -        NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException",
          -                        "ioctl SIOCGSIZIFCONF failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                    "ioctl SIOCGSIZIFCONF failed");
                   return ifs;
               }
               bufsize = ifc.ifc_len;
          @@ -1252,29 +1223,27 @@ static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) {
               ifc.ifc_len = bufsize;
               ifc.ifc_buf = buf;
               if (ioctl(sock, SIOCGIFCONF, (char *)&ifc) < 0) {
          -        NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException",
          -                       "ioctl CSIOCGIFCONF failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl CSIOCGIFCONF failed");
                   free(buf);
                   return ifs;
               }
           
          -    /*
          -     * Iterate through each interface
          -     */
          +    // Iterate through each interface
               ifreqP = ifc.ifc_req;
               cp = (char *)ifc.ifc_req;
               cplimit = cp + ifc.ifc_len;
           
          -    for ( ; cp < cplimit; cp += (sizeof(ifreqP->ifr_name) + MAX((ifreqP->ifr_addr).sa_len, sizeof(ifreqP->ifr_addr)))) {
          +    for (; cp < cplimit;
          +        cp += (sizeof(ifreqP->ifr_name) +
          +               MAX((ifreqP->ifr_addr).sa_len, sizeof(ifreqP->ifr_addr))))
          +    {
                   ifreqP = (struct ifreq *)cp;
                   struct ifreq if2;
          -
                   memset((char *)&if2, 0, sizeof(if2));
          -        strcpy(if2.ifr_name, ifreqP->ifr_name);
          +        strncpy(if2.ifr_name, ifreqP->ifr_name, sizeof(if2.ifr_name) - 1);
           
          -        /*
          -         * Skip interface that aren't UP
          -         */
          +        // Skip interface that aren't UP
                   if (ioctl(sock, SIOCGIFFLAGS, (char *)&if2) >= 0) {
                       if (!(if2.ifr_flags & IFF_UP)) {
                           continue;
          @@ -1289,16 +1258,11 @@ static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) {
                       s6->sin6_scope_id = if2.ifr_site6;
                   }
           
          -        /*
          -         * Add to the list
          -         */
          +        // Add to the list
                   ifs = addif(env, sock, ifreqP->ifr_name, ifs,
          -                    (struct sockaddr *)&(ifreqP->ifr_addr),
          -                    AF_INET6, 0);
          +                    (struct sockaddr *)&(ifreqP->ifr_addr), AF_INET6, 0);
           
          -        /*
          -         * If an exception occurred then free the list
          -         */
          +        // If an exception occurred then free the list
                   if ((*env)->ExceptionOccurred(env)) {
                       free(buf);
                       freeif(ifs);
          @@ -1306,24 +1270,21 @@ static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) {
                   }
               }
           
          -    /*
          -     * Free socket and buffer
          -     */
          +    // Free socket and buffer
               free(buf);
               return ifs;
           }
           #endif
           
           
          -static int getIndex(int sock, const char *name){
          -     /*
          -      * Try to get the interface index
          -      */
          +static int getIndex(int sock, const char *name) {
          +     // Try to get the interface index
           #if defined(_AIX)
               return if_nametoindex(name);
           #else
               struct ifreq if2;
          -    strcpy(if2.ifr_name, name);
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.ifr_name, name, sizeof(if2.ifr_name) - 1);
           
               if (ioctl(sock, SIOCGIFINDEX, (char *)&if2) < 0) {
                   return -1;
          @@ -1333,38 +1294,41 @@ static int getIndex(int sock, const char *name){
           #endif
           }
           
          -/**
          +/*
            * Returns the IPv4 broadcast address of a named interface, if it exists.
            * Returns 0 if it doesn't have one.
            */
          -static struct sockaddr *getBroadcast(JNIEnv *env, int sock, const char *ifname, struct sockaddr *brdcast_store) {
          -  struct sockaddr *ret = NULL;
          -  struct ifreq if2;
          +static struct sockaddr *getBroadcast
          +  (JNIEnv *env, int sock, const char *ifname, struct sockaddr *brdcast_store)
          +{
          +    struct sockaddr *ret = NULL;
          +    struct ifreq if2;
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.ifr_name, ifname, sizeof(if2.ifr_name) - 1);
           
          -  memset((char *) &if2, 0, sizeof(if2));
          -  strcpy(if2.ifr_name, ifname);
          +    // Let's make sure the interface does have a broadcast address.
          +    if (ioctl(sock, SIOCGIFFLAGS, (char *)&if2)  < 0) {
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGIFFLAGS failed");
          +        return ret;
          +    }
           
          -  /* Let's make sure the interface does have a broadcast address */
          -  if (ioctl(sock, SIOCGIFFLAGS, (char *)&if2)  < 0) {
          -      NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL  SIOCGIFFLAGS failed");
          -      return ret;
          -  }
          +    if (if2.ifr_flags & IFF_BROADCAST) {
          +        // It does, let's retrieve it
          +        if (ioctl(sock, SIOCGIFBRDADDR, (char *)&if2) < 0) {
          +            NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                         "ioctl SIOCGIFBRDADDR failed");
          +            return ret;
          +        }
           
          -  if (if2.ifr_flags & IFF_BROADCAST) {
          -      /* It does, let's retrieve it*/
          -      if (ioctl(sock, SIOCGIFBRDADDR, (char *)&if2) < 0) {
          -          NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL SIOCGIFBRDADDR failed");
          -          return ret;
          -      }
          +        ret = brdcast_store;
          +        memcpy(ret, &if2.ifr_broadaddr, sizeof(struct sockaddr));
          +    }
           
          -      ret = brdcast_store;
          -      memcpy(ret, &if2.ifr_broadaddr, sizeof(struct sockaddr));
          -  }
          -
          -  return ret;
          +    return ret;
           }
           
          -/**
          +/*
            * Returns the IPv4 subnet prefix length (aka subnet mask) for the named
            * interface, if it has one, otherwise return -1.
            */
          @@ -1372,12 +1336,12 @@ static short getSubnet(JNIEnv *env, int sock, const char *ifname) {
               unsigned int mask;
               short ret;
               struct ifreq if2;
          -
          -    memset((char *) &if2, 0, sizeof(if2));
          -    strcpy(if2.ifr_name, ifname);
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.ifr_name, ifname, sizeof(if2.ifr_name) - 1);
           
               if (ioctl(sock, SIOCGIFNETMASK, (char *)&if2) < 0) {
          -        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL SIOCGIFNETMASK failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGIFNETMASK failed");
                   return -1;
               }
           
          @@ -1391,12 +1355,15 @@ static short getSubnet(JNIEnv *env, int sock, const char *ifname) {
               return ret;
           }
           
          -/**
          - * Get the Hardware address (usually MAC address) for the named interface.
          - * return puts the data in buf, and returns the length, in byte, of the
          +/*
          + * Gets the Hardware address (usually MAC address) for the named interface.
          + * On return puts the data in buf, and returns the length, in byte, of the
            * MAC address. Returns -1 if there is no hardware address on that interface.
            */
          -static int getMacAddress(JNIEnv *env, int sock, const char* ifname, const struct in_addr* addr, unsigned char *buf) {
          +static int getMacAddress
          +  (JNIEnv *env, int sock, const char* ifname, const struct in_addr* addr,
          +   unsigned char *buf)
          +{
           #if defined (_AIX)
               int size;
               struct kinfo_ndd *nddp;
          @@ -1415,7 +1382,8 @@ static int getMacAddress(JNIEnv *env, int sock, const char* ifname, const struct
               nddp = (struct kinfo_ndd *)malloc(size);
           
               if (!nddp) {
          -        JNU_ThrowOutOfMemoryError(env, "Network interface getMacAddress native buffer allocation failed");
          +        JNU_ThrowOutOfMemoryError(env,
          +            "Network interface getMacAddress native buffer allocation failed");
                   return -1;
               }
           
          @@ -1436,22 +1404,20 @@ static int getMacAddress(JNIEnv *env, int sock, const char* ifname, const struct
               }
           
               return -1;
          -
           #elif defined(__linux__)
               static struct ifreq ifr;
               int i;
          -
          -    strcpy(ifr.ifr_name, ifname);
          +    memset((char *)&ifr, 0, sizeof(ifr));
          +    strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name) - 1);
               if (ioctl(sock, SIOCGIFHWADDR, &ifr) < 0) {
          -        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL SIOCGIFHWADDR failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGIFHWADDR failed");
                   return -1;
               }
           
               memcpy(buf, &ifr.ifr_hwaddr.sa_data, IFHWADDRLEN);
           
          -   /*
          -    * All bytes to 0 means no hardware address.
          -    */
          +    // All bytes to 0 means no hardware address.
           
               for (i = 0; i < IFHWADDRLEN; i++) {
                   if (buf[i] != 0)
          @@ -1464,17 +1430,18 @@ static int getMacAddress(JNIEnv *env, int sock, const char* ifname, const struct
           
           static int getMTU(JNIEnv *env, int sock,  const char *ifname) {
               struct ifreq if2;
          -    memset((char *) &if2, 0, sizeof(if2));
          +    memset((char *)&if2, 0, sizeof(if2));
           
               if (ifname != NULL) {
          -        strcpy(if2.ifr_name, ifname);
          +        strncpy(if2.ifr_name, ifname, sizeof(if2.ifr_name) - 1);
               } else {
                   JNU_ThrowNullPointerException(env, "network interface name is NULL");
                   return -1;
               }
           
               if (ioctl(sock, SIOCGIFMTU, (char *)&if2) < 0) {
          -        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL SIOCGIFMTU failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGIFMTU failed");
                   return -1;
               }
           
          @@ -1483,11 +1450,10 @@ static int getMTU(JNIEnv *env, int sock,  const char *ifname) {
           
           static int getFlags(int sock, const char *ifname, int *flags) {
             struct ifreq if2;
          +  memset((char *)&if2, 0, sizeof(if2));
          +  strncpy(if2.ifr_name, ifname, sizeof(if2.ifr_name) - 1);
           
          -  memset((char *) &if2, 0, sizeof(if2));
          -  strcpy(if2.ifr_name, ifname);
          -
          -  if (ioctl(sock, SIOCGIFFLAGS, (char *)&if2) < 0){
          +  if (ioctl(sock, SIOCGIFFLAGS, (char *)&if2) < 0) {
                 return -1;
             }
           
          @@ -1499,53 +1465,54 @@ static int getFlags(int sock, const char *ifname, int *flags) {
             return 0;
           }
           
          -#endif
          +#endif  /* defined(__linux__) || defined(_AIX) */
           
           /** Solaris **/
          -#ifdef __solaris__
          -/* Open socket for further ioct calls, try v4 socket first and
          - * if it falls return v6 socket
          - */
          +#if defined(__solaris__)
           
          +/*
          + * Opens a socket for further ioct calls. Tries AF_INET socket first and
          + * if it falls return AF_INET6 socket.
          + */
           #ifdef AF_INET6
          -static int openSocketWithFallback(JNIEnv *env, const char *ifname){
          +static int openSocketWithFallback(JNIEnv *env, const char *ifname) {
               int sock, alreadyV6 = 0;
               struct lifreq if2;
           
          -     if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
          -         if (errno == EPROTONOSUPPORT){
          -              if ( (sock = socket(AF_INET6, SOCK_DGRAM, 0)) < 0 ){
          -                 NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "IPV6 Socket creation failed");
          -                 return -1;
          -              }
          +    if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
          +        if (errno == EPROTONOSUPPORT) {
          +            if ((sock = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
          +                NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                             "IPV6 Socket creation failed");
          +                return -1;
          +            }
           
          -              alreadyV6=1;
          -         }
          -         else{ // errno is not NOSUPPORT
          -             NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "IPV4 Socket creation failed");
          -             return -1;
          -         }
          -   }
          +            alreadyV6=1;
          +        } else { // errno is not NOSUPPORT
          +            NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                         "IPV4 Socket creation failed");
          +            return -1;
          +        }
          +    }
           
          -     /**
          -      * Solaris requires that we have an IPv6 socket to query an
          -      * interface without an IPv4 address - check it here.
          -      * POSIX 1 require the kernel to return ENOTTY if the call is
          -      * inappropriate for a device e.g. the NETMASK for a device having IPv6
          -      * only address but not all devices follow the standard so
          -      * fall back on any error. It's not an ecologically friendly gesture
          -      * but more reliable.
          -      */
           
          -    if (! alreadyV6 ){
          -        memset((char *) &if2, 0, sizeof(if2));
          -        strcpy(if2.lifr_name, ifname);
          +    // Solaris requires that we have an IPv6 socket to query an  interface
          +    // without an IPv4 address - check it here. POSIX 1 require the kernel to
          +    // return ENOTTY if the call is inappropriate for a device e.g. the NETMASK
          +    // for a device having IPv6 only address but not all devices follow the
          +    // standard so fall back on any error. It's not an ecologically friendly
          +    // gesture but more reliable.
          +
          +    if (!alreadyV6) {
          +        memset((char *)&if2, 0, sizeof(if2));
          +        strncpy(if2.lifr_name, ifname, sizeof(if2.lifr_name) - 1);
                   if (ioctl(sock, SIOCGLIFNETMASK, (char *)&if2) < 0) {
          -                close(sock);
          -                if ( (sock = socket(AF_INET6, SOCK_DGRAM, 0)) < 0 ){
          -                      NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "IPV6 Socket creation failed");
          -                      return -1;
          -                }
          +            close(sock);
          +            if ((sock = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
          +                NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                             "IPV6 Socket creation failed");
          +                return -1;
          +            }
                   }
               }
           
          @@ -1553,18 +1520,16 @@ static int openSocketWithFallback(JNIEnv *env, const char *ifname){
           }
           
           #else
          -static int openSocketWithFallback(JNIEnv *env, const char *ifname){
          +static int openSocketWithFallback(JNIEnv *env, const char *ifname) {
               return openSocket(env,AF_INET);
           }
           #endif
           
           /*
          - * Enumerates and returns all IPv4 interfaces
          - * (linux verision)
          + * Enumerates and returns all IPv4 interfaces.
            */
          -
           static netif *enumIPv4Interfaces(JNIEnv *env, int sock, netif *ifs) {
          -     return enumIPvXInterfaces(env,sock, ifs, AF_INET);
          +    return enumIPvXInterfaces(env,sock, ifs, AF_INET);
           }
           
           #ifdef AF_INET6
          @@ -1574,8 +1539,8 @@ static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) {
           #endif
           
           /*
          -   Enumerates and returns all interfaces on Solaris
          -   use the same code for IPv4 and IPv6
          + * Enumerates and returns all interfaces on Solaris.
          + * Uses the same code for IPv4 and IPv6.
            */
           static netif *enumIPvXInterfaces(JNIEnv *env, int sock, netif *ifs, int family) {
               struct lifconf ifc;
          @@ -1585,19 +1550,16 @@ static netif *enumIPvXInterfaces(JNIEnv *env, int sock, netif *ifs, int family)
               struct lifnum numifs;
               unsigned bufsize;
           
          -    /*
          -     * Get the interface count
          -     */
          +    // Get the interface count
               numifs.lifn_family = family;
               numifs.lifn_flags = 0;
               if (ioctl(sock, SIOCGLIFNUM, (char *)&numifs) < 0) {
          -        NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "ioctl SIOCGLIFNUM failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGLIFNUM failed");
                   return ifs;
               }
           
          -    /*
          -     *  Enumerate the interface configurations
          -     */
          +    //  Enumerate the interface configurations
               bufsize = numifs.lifn_count * sizeof (struct lifreq);
               CHECKED_MALLOC3(buf, char *, bufsize);
           
          @@ -1606,22 +1568,19 @@ static netif *enumIPvXInterfaces(JNIEnv *env, int sock, netif *ifs, int family)
               ifc.lifc_len = bufsize;
               ifc.lifc_buf = buf;
               if (ioctl(sock, SIOCGLIFCONF, (char *)&ifc) < 0) {
          -        NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "ioctl SIOCGLIFCONF failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGLIFCONF failed");
                   free(buf);
                   return ifs;
               }
           
          -    /*
          -     * Iterate through each interface
          -     */
          +    // Iterate through each interface
               ifr = ifc.lifc_req;
               for (n=0; nlifr_addr.ss_family != family) {
                       continue;
                   }
          @@ -1633,12 +1592,12 @@ static netif *enumIPvXInterfaces(JNIEnv *env, int sock, netif *ifs, int family)
                   }
           #endif
           
          -        /* add to the list */
          -        ifs = addif(env, sock,ifr->lifr_name, ifs, (struct sockaddr *)&(ifr->lifr_addr),family, (short) ifr->lifr_addrlen);
          +        // add to the list
          +        ifs = addif(env, sock,ifr->lifr_name, ifs,
          +                    (struct sockaddr *)&(ifr->lifr_addr), family,
          +                    (short)ifr->lifr_addrlen);
           
          -        /*
          -        * If an exception occurred we return immediately
          -        */
          +        // If an exception occurred we return immediately
                   if ((*env)->ExceptionOccurred(env)) {
                       free(buf);
                       return ifs;
          @@ -1650,13 +1609,11 @@ static netif *enumIPvXInterfaces(JNIEnv *env, int sock, netif *ifs, int family)
               return ifs;
           }
           
          -static int getIndex(int sock, const char *name){
          -   /*
          -    * Try to get the interface index
          -    * (Not supported on Solaris 2.6 or 7)
          -    */
          +static int getIndex(int sock, const char *name) {
          +    // Try to get the interface index.  (Not supported on Solaris 2.6 or 7)
               struct lifreq if2;
          -    strcpy(if2.lifr_name, name);
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.lifr_name, name, sizeof(if2.lifr_name) - 1);
           
               if (ioctl(sock, SIOCGLIFINDEX, (char *)&if2) < 0) {
                   return -1;
          @@ -1665,27 +1622,30 @@ static int getIndex(int sock, const char *name){
               return if2.lifr_index;
           }
           
          -/**
          +/*
            * Returns the IPv4 broadcast address of a named interface, if it exists.
            * Returns 0 if it doesn't have one.
            */
          -static struct sockaddr *getBroadcast(JNIEnv *env, int sock, const char *ifname, struct sockaddr *brdcast_store) {
          +static struct sockaddr *getBroadcast
          +  (JNIEnv *env, int sock, const char *ifname, struct sockaddr *brdcast_store)
          +{
               struct sockaddr *ret = NULL;
               struct lifreq if2;
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.lifr_name, ifname, sizeof(if2.lifr_name) - 1);
           
          -    memset((char *) &if2, 0, sizeof(if2));
          -    strcpy(if2.lifr_name, ifname);
          -
          -    /* Let's make sure the interface does have a broadcast address */
          +    // Let's make sure the interface does have a broadcast address
               if (ioctl(sock, SIOCGLIFFLAGS, (char *)&if2)  < 0) {
          -        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL  SIOCGLIFFLAGS failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGLIFFLAGS failed");
                   return ret;
               }
           
               if (if2.lifr_flags & IFF_BROADCAST) {
          -        /* It does, let's retrieve it*/
          +        // It does, let's retrieve it
                   if (ioctl(sock, SIOCGLIFBRDADDR, (char *)&if2) < 0) {
          -            NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL SIOCGLIFBRDADDR failed");
          +            NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                         "ioctl SIOCGLIFBRDADDR failed");
                       return ret;
                   }
           
          @@ -1696,7 +1656,7 @@ static struct sockaddr *getBroadcast(JNIEnv *env, int sock, const char *ifname,
               return ret;
           }
           
          -/**
          +/*
            * Returns the IPv4 subnet prefix length (aka subnet mask) for the named
            * interface, if it has one, otherwise return -1.
            */
          @@ -1704,12 +1664,12 @@ static short getSubnet(JNIEnv *env, int sock, const char *ifname) {
               unsigned int mask;
               short ret;
               struct lifreq if2;
          -
          -    memset((char *) &if2, 0, sizeof(if2));
          -    strcpy(if2.lifr_name, ifname);
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.lifr_name, ifname, sizeof(if2.lifr_name) - 1);
           
               if (ioctl(sock, SIOCGLIFNETMASK, (char *)&if2) < 0) {
          -        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL SIOCGLIFNETMASK failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGLIFNETMASK failed");
                   return -1;
               }
           
          @@ -1725,15 +1685,16 @@ static short getSubnet(JNIEnv *env, int sock, const char *ifname) {
           }
           
           
          -
           #define DEV_PREFIX  "/dev/"
           
          -/**
          +/*
            * Solaris specific DLPI code to get hardware address from a device.
            * Unfortunately, at least up to Solaris X, you have to have special
            * privileges (i.e. be root).
            */
          -static int getMacFromDevice(JNIEnv *env, const char* ifname, unsigned char* retbuf) {
          +static int getMacFromDevice
          +  (JNIEnv *env, const char* ifname, unsigned char* retbuf)
          +{
               char style1dev[MAXPATHLEN];
               int fd;
               dl_phys_addr_req_t dlpareq;
          @@ -1742,17 +1703,12 @@ static int getMacFromDevice(JNIEnv *env, const char* ifname, unsigned char* retb
               char buf[128];
               int flags = 0;
           
          -   /**
          -    * Device is in /dev
          -    * e.g.: /dev/bge0
          -    */
          +    // Device is in /dev.  e.g.: /dev/bge0
               strcpy(style1dev, DEV_PREFIX);
               strcat(style1dev, ifname);
               if ((fd = open(style1dev, O_RDWR)) < 0) {
          -        /*
          -         * Can't open it. We probably are missing the privilege.
          -         * We'll have to try something else
          -         */
          +         // Can't open it. We probably are missing the privilege.
          +         // We'll have to try something else
                    return 0;
               }
           
          @@ -1763,7 +1719,8 @@ static int getMacFromDevice(JNIEnv *env, const char* ifname, unsigned char* retb
               msg.len = DL_PHYS_ADDR_REQ_SIZE;
           
               if (putmsg(fd, &msg, NULL, 0) < 0) {
          -        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "putmsg failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "putmsg failed");
                   return -1;
               }
           
          @@ -1773,12 +1730,14 @@ static int getMacFromDevice(JNIEnv *env, const char* ifname, unsigned char* retb
               msg.len = 0;
               msg.maxlen = sizeof (buf);
               if (getmsg(fd, &msg, NULL, &flags) < 0) {
          -        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "getmsg failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "getmsg failed");
                   return -1;
               }
           
               if (msg.len < DL_PHYS_ADDR_ACK_SIZE || dlpaack->dl_primitive != DL_PHYS_ADDR_ACK) {
          -        JNU_ThrowByName(env, JNU_JAVANETPKG "SocketException", "Couldn't obtain phys addr\n");
          +        JNU_ThrowByName(env, JNU_JAVANETPKG "SocketException",
          +                        "Couldn't obtain phys addr\n");
                   return -1;
               }
           
          @@ -1786,21 +1745,23 @@ static int getMacFromDevice(JNIEnv *env, const char* ifname, unsigned char* retb
               return dlpaack->dl_addr_length;
           }
           
          -/**
          - * Get the Hardware address (usually MAC address) for the named interface.
          - * return puts the data in buf, and returns the length, in byte, of the
          +/*
          + * Gets the Hardware address (usually MAC address) for the named interface.
          + * On return puts the data in buf, and returns the length, in byte, of the
            * MAC address. Returns -1 if there is no hardware address on that interface.
            */
          -static int getMacAddress(JNIEnv *env, int sock, const char *ifname,  const struct in_addr* addr, unsigned char *buf) {
          +static int getMacAddress
          +  (JNIEnv *env, int sock, const char *ifname, const struct in_addr* addr,
          +   unsigned char *buf)
          +{
               struct arpreq arpreq;
               struct sockaddr_in* sin;
               struct sockaddr_in ipAddr;
               int len, i;
               struct lifreq lif;
           
          -    /* First, try the new (S11) SIOCGLIFHWADDR ioctl(). If that fails
          -     * try the old way.
          -     */
          +    // First, try the new (S11) SIOCGLIFHWADDR ioctl(). If that fails
          +    // try the old way.
               memset(&lif, 0, sizeof(lif));
               strlcpy(lif.lifr_name, ifname, sizeof(lif.lifr_name));
           
          @@ -1811,18 +1772,14 @@ static int getMacAddress(JNIEnv *env, int sock, const char *ifname,  const struc
                   return sp->sdl_alen;
               }
           
          -   /**
          -    * On Solaris we have to use DLPI, but it will only work if we have
          -    * privileged access (i.e. root). If that fails, we try a lookup
          -    * in the ARP table, which requires an IPv4 address.
          -    */
          +    // On Solaris we have to use DLPI, but it will only work if we have
          +    // privileged access (i.e. root). If that fails, we try a lookup
          +    // in the ARP table, which requires an IPv4 address.
               if ((len = getMacFromDevice(env, ifname, buf))  == 0) {
          -        /*DLPI failed - trying to do arp lookup*/
          +        // DLPI failed - trying to do arp lookup
           
                   if (addr == NULL) {
          -            /**
          -             * No IPv4 address for that interface, so can't do an ARP lookup.
          -             */
          +             // No IPv4 address for that interface, so can't do an ARP lookup.
                        return -1;
                    }
           
          @@ -1843,10 +1800,7 @@ static int getMacAddress(JNIEnv *env, int sock, const char *ifname,  const struc
                    memcpy(buf, &arpreq.arp_ha.sa_data[0], len );
               }
           
          -    /*
          -     * All bytes to 0 means no hardware address.
          -     */
          -
          +    // All bytes to 0 means no hardware address.
               for (i = 0; i < len; i++) {
                 if (buf[i] != 0)
                    return len;
          @@ -1857,56 +1811,58 @@ static int getMacAddress(JNIEnv *env, int sock, const char *ifname,  const struc
           
           static int getMTU(JNIEnv *env, int sock,  const char *ifname) {
               struct lifreq if2;
          -
          -    memset((char *) &if2, 0, sizeof(if2));
          -    strcpy(if2.lifr_name, ifname);
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.lifr_name, ifname, sizeof(if2.lifr_name) - 1);
           
               if (ioctl(sock, SIOCGLIFMTU, (char *)&if2) < 0) {
          -        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL SIOCGLIFMTU failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                    "ioctl SIOCGLIFMTU failed");
                   return -1;
               }
           
          -    return  if2.lifr_mtu;
          +    return if2.lifr_mtu;
           }
           
          -
           static int getFlags(int sock, const char *ifname, int *flags) {
          -     struct   lifreq lifr;
          -     memset((caddr_t)&lifr, 0, sizeof(lifr));
          -     strcpy((caddr_t)&(lifr.lifr_name), ifname);
          +    struct lifreq if2;
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.lifr_name, ifname, sizeof(if2.lifr_name) - 1);
           
          -     if (ioctl(sock, SIOCGLIFFLAGS, (char *)&lifr) < 0) {
          +    if (ioctl(sock, SIOCGLIFFLAGS, (char *)&if2) < 0) {
                    return -1;
          -     }
          +    }
           
          -     *flags = lifr.lifr_flags;
          -     return 0;
          +    *flags = if2.lifr_flags;
          +    return 0;
           }
           
           
          -#endif
          +#endif  /* __solaris__ */
           
           
           /** BSD **/
           #ifdef _ALLBSD_SOURCE
          -/* Open socket for further ioct calls, try v4 socket first and
          - * if it falls return v6 socket
          - */
           
          +/*
          + * Opens a socket for further ioct calls. Tries AF_INET socket first and
          + * if it falls return AF_INET6 socket.
          + */
           #ifdef AF_INET6
          -static int openSocketWithFallback(JNIEnv *env, const char *ifname){
          +static int openSocketWithFallback(JNIEnv *env, const char *ifname) {
               int sock;
               struct ifreq if2;
           
                if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
          -         if (errno == EPROTONOSUPPORT){
          -              if ( (sock = socket(AF_INET6, SOCK_DGRAM, 0)) < 0 ){
          -                 NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "IPV6 Socket creation failed");
          +         if (errno == EPROTONOSUPPORT) {
          +              if ((sock = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
          +                 NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                              "IPV6 Socket creation failed");
                            return -1;
                         }
                    }
                    else{ // errno is not NOSUPPORT
          -             NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException", "IPV4 Socket creation failed");
          +             NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                          "IPV4 Socket creation failed");
                        return -1;
                    }
              }
          @@ -1915,39 +1871,33 @@ static int openSocketWithFallback(JNIEnv *env, const char *ifname){
           }
           
           #else
          -static int openSocketWithFallback(JNIEnv *env, const char *ifname){
          +static int openSocketWithFallback(JNIEnv *env, const char *ifname) {
               return openSocket(env,AF_INET);
           }
           #endif
           
           /*
          - * Enumerates and returns all IPv4 interfaces
          + * Enumerates and returns all IPv4 interfaces.
            */
           static netif *enumIPv4Interfaces(JNIEnv *env, int sock, netif *ifs) {
               struct ifaddrs *ifa, *origifa;
           
               if (getifaddrs(&origifa) != 0) {
          -        NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException",
          -                         "getifaddrs() function failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "getifaddrs() function failed");
                   return ifs;
               }
           
               for (ifa = origifa; ifa != NULL; ifa = ifa->ifa_next) {
           
          -        /*
          -         * Skip non-AF_INET entries.
          -         */
          +        // Skip non-AF_INET entries.
                   if (ifa->ifa_addr == NULL || ifa->ifa_addr->sa_family != AF_INET)
                       continue;
           
          -        /*
          -         * Add to the list.
          -         */
          +        // Add to the list.
                   ifs = addif(env, sock, ifa->ifa_name, ifs, ifa->ifa_addr, AF_INET, 0);
           
          -        /*
          -         * If an exception occurred then free the list.
          -         */
          +        // If an exception occurred then free the list.
                   if ((*env)->ExceptionOccurred(env)) {
                       freeifaddrs(origifa);
                       freeif(ifs);
          @@ -1955,33 +1905,25 @@ static netif *enumIPv4Interfaces(JNIEnv *env, int sock, netif *ifs) {
                   }
               }
           
          -    /*
          -     * Free socket and buffer
          -     */
          +    // Free socket and buffer
               freeifaddrs(origifa);
               return ifs;
           }
           
          -
          -/*
          - * Enumerates and returns all IPv6 interfaces on Linux
          - */
          -
           #ifdef AF_INET6
           /*
            * Determines the prefix on BSD for IPv6 interfaces.
            */
          -static
          -int prefix(void *val, int size) {
          +static int prefix(void *val, int size) {
               u_char *name = (u_char *)val;
          -    int byte, bit, plen = 0;
          +    int byte, bit, prefix = 0;
           
          -    for (byte = 0; byte < size; byte++, plen += 8)
          +    for (byte = 0; byte < size; byte++, prefix += 8)
                   if (name[byte] != 0xff)
                       break;
               if (byte == size)
          -        return (plen);
          -    for (bit = 7; bit != 0; bit--, plen++)
          +        return prefix;
          +    for (bit = 7; bit != 0; bit--, prefix++)
                   if (!(name[byte] & (1 << bit)))
                       break;
               for (; bit != 0; bit--)
          @@ -1991,11 +1933,11 @@ int prefix(void *val, int size) {
               for (; byte < size; byte++)
                   if (name[byte])
                       return (0);
          -    return (plen);
          +    return prefix;
           }
           
           /*
          - * Enumerates and returns all IPv6 interfaces on BSD
          + * Enumerates and returns all IPv6 interfaces on BSD.
            */
           static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) {
               struct ifaddrs *ifa, *origifa;
          @@ -2003,37 +1945,36 @@ static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) {
               struct in6_ifreq ifr6;
           
               if (getifaddrs(&origifa) != 0) {
          -        NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException",
          -                         "getifaddrs() function failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "getifaddrs() function failed");
                   return ifs;
               }
           
               for (ifa = origifa; ifa != NULL; ifa = ifa->ifa_next) {
           
          -        /*
          -         * Skip non-AF_INET6 entries.
          -         */
          +        // Skip non-AF_INET6 entries.
                   if (ifa->ifa_addr == NULL || ifa->ifa_addr->sa_family != AF_INET6)
                       continue;
           
                   memset(&ifr6, 0, sizeof(ifr6));
                   strlcpy(ifr6.ifr_name, ifa->ifa_name, sizeof(ifr6.ifr_name));
          -        memcpy(&ifr6.ifr_addr, ifa->ifa_addr, MIN(sizeof(ifr6.ifr_addr), ifa->ifa_addr->sa_len));
          +        memcpy(&ifr6.ifr_addr, ifa->ifa_addr,
          +               MIN(sizeof(ifr6.ifr_addr), ifa->ifa_addr->sa_len));
           
                   if (ioctl(sock, SIOCGIFNETMASK_IN6, (caddr_t)&ifr6) < 0) {
          -            NET_ThrowByNameWithLastError(env , JNU_JAVANETPKG "SocketException",
          -                             "ioctl SIOCGIFNETMASK_IN6 failed");
          +            NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                         "ioctl SIOCGIFNETMASK_IN6 failed");
                       freeifaddrs(origifa);
                       freeif(ifs);
                       return NULL;
                   }
           
          -        /* Add to the list.  */
          +        // Add to the list.
                   sin6 = (struct sockaddr_in6 *)&ifr6.ifr_addr;
                   ifs = addif(env, sock, ifa->ifa_name, ifs, ifa->ifa_addr, AF_INET6,
          -                    prefix(&sin6->sin6_addr, sizeof(struct in6_addr)));
          +            (short)prefix(&sin6->sin6_addr, sizeof(struct in6_addr)));
           
          -        /* If an exception occurred then free the list.  */
          +        // If an exception occurred then free the list.
                   if ((*env)->ExceptionOccurred(env)) {
                       freeifaddrs(origifa);
                       freeif(ifs);
          @@ -2041,22 +1982,19 @@ static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) {
                   }
               }
           
          -    /*
          -     * Free socket and ifaddrs buffer
          -     */
          +    // Free socket and ifaddrs buffer
               freeifaddrs(origifa);
               return ifs;
           }
           #endif
           
          -static int getIndex(int sock, const char *name){
          +static int getIndex(int sock, const char *name) {
           #ifdef __FreeBSD__
          -     /*
          -      * Try to get the interface index
          -      * (Not supported on Solaris 2.6 or 7)
          -      */
          +    // Try to get the interface index
          +    // (Not supported on Solaris 2.6 or 7)
               struct ifreq if2;
          -    strcpy(if2.ifr_name, name);
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.ifr_name, name, sizeof(if2.ifr_name) - 1);
           
               if (ioctl(sock, SIOCGIFINDEX, (char *)&if2) < 0) {
                   return -1;
          @@ -2064,46 +2002,47 @@ static int getIndex(int sock, const char *name){
           
               return if2.ifr_index;
           #else
          -    /*
          -     * Try to get the interface index using BSD specific if_nametoindex
          -     */
          +    // Try to get the interface index using BSD specific if_nametoindex
               int index = if_nametoindex(name);
               return (index == 0) ? -1 : index;
           #endif
           }
           
          -/**
          +/*
            * Returns the IPv4 broadcast address of a named interface, if it exists.
            * Returns 0 if it doesn't have one.
            */
          -static struct sockaddr *getBroadcast(JNIEnv *env, int sock, const char *ifname, struct sockaddr *brdcast_store) {
          -  struct sockaddr *ret = NULL;
          -  struct ifreq if2;
          +static struct sockaddr *getBroadcast
          +  (JNIEnv *env, int sock, const char *ifname, struct sockaddr *brdcast_store)
          +{
          +    struct sockaddr *ret = NULL;
          +    struct ifreq if2;
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.ifr_name, ifname, sizeof(if2.ifr_name) - 1);
           
          -  memset((char *) &if2, 0, sizeof(if2));
          -  strcpy(if2.ifr_name, ifname);
          +    // Make sure the interface does have a broadcast address
          +    if (ioctl(sock, SIOCGIFFLAGS, (char *)&if2) < 0) {
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGIFFLAGS failed");
          +        return ret;
          +    }
           
          -  /* Let's make sure the interface does have a broadcast address */
          -  if (ioctl(sock, SIOCGIFFLAGS, (char *)&if2) < 0) {
          -      NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL SIOCGIFFLAGS failed");
          -      return ret;
          -  }
          +    if (if2.ifr_flags & IFF_BROADCAST) {
          +        // It does, let's retrieve it
          +        if (ioctl(sock, SIOCGIFBRDADDR, (char *)&if2) < 0) {
          +            NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                         "ioctl SIOCGIFBRDADDR failed");
          +            return ret;
          +        }
           
          -  if (if2.ifr_flags & IFF_BROADCAST) {
          -      /* It does, let's retrieve it*/
          -      if (ioctl(sock, SIOCGIFBRDADDR, (char *)&if2) < 0) {
          -          NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL SIOCGIFBRDADDR failed");
          -          return ret;
          -      }
          +        ret = brdcast_store;
          +        memcpy(ret, &if2.ifr_broadaddr, sizeof(struct sockaddr));
          +    }
           
          -      ret = brdcast_store;
          -      memcpy(ret, &if2.ifr_broadaddr, sizeof(struct sockaddr));
          -  }
          -
          -  return ret;
          +    return ret;
           }
           
          -/**
          +/*
            * Returns the IPv4 subnet prefix length (aka subnet mask) for the named
            * interface, if it has one, otherwise return -1.
            */
          @@ -2111,12 +2050,12 @@ static short getSubnet(JNIEnv *env, int sock, const char *ifname) {
               unsigned int mask;
               short ret;
               struct ifreq if2;
          -
          -    memset((char *) &if2, 0, sizeof(if2));
          -    strcpy(if2.ifr_name, ifname);
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.ifr_name, ifname, sizeof(if2.ifr_name) - 1);
           
               if (ioctl(sock, SIOCGIFNETMASK, (char *)&if2) < 0) {
          -        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL SIOCGIFNETMASK failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGIFNETMASK failed");
                   return -1;
               }
           
          @@ -2130,25 +2069,28 @@ static short getSubnet(JNIEnv *env, int sock, const char *ifname) {
               return ret;
           }
           
          -/**
          - * Get the Hardware address (usually MAC address) for the named interface.
          +/*
          + * Gets the Hardware address (usually MAC address) for the named interface.
            * return puts the data in buf, and returns the length, in byte, of the
            * MAC address. Returns -1 if there is no hardware address on that interface.
            */
          -static int getMacAddress(JNIEnv *env, int sock, const char* ifname, const struct in_addr* addr, unsigned char *buf) {
          +static int getMacAddress
          +  (JNIEnv *env, int sock, const char* ifname, const struct in_addr* addr,
          +   unsigned char *buf)
          +{
               struct ifaddrs *ifa0, *ifa;
               struct sockaddr *saddr;
               int i;
           
          -    /* Grab the interface list */
          +    // Grab the interface list
               if (!getifaddrs(&ifa0)) {
          -        /* Cycle through the interfaces */
          +        // Cycle through the interfaces
                   for (i = 0, ifa = ifa0; ifa != NULL; ifa = ifa->ifa_next, i++) {
                       saddr = ifa->ifa_addr;
          -            /* Link layer contains the MAC address */
          +            // Link layer contains the MAC address
                       if (saddr->sa_family == AF_LINK && !strcmp(ifname, ifa->ifa_name)) {
                           struct sockaddr_dl *sadl = (struct sockaddr_dl *) saddr;
          -                /* Check the address is the correct length */
          +                // Check the address is the correct length
                           if (sadl->sdl_alen == ETHER_ADDR_LEN) {
                               memcpy(buf, (sadl->sdl_data + sadl->sdl_nlen), ETHER_ADDR_LEN);
                               freeifaddrs(ifa0);
          @@ -2164,12 +2106,12 @@ static int getMacAddress(JNIEnv *env, int sock, const char* ifname, const struct
           
           static int getMTU(JNIEnv *env, int sock,  const char *ifname) {
               struct ifreq if2;
          -
          -    memset((char *) &if2, 0, sizeof(if2));
          -    strcpy(if2.ifr_name, ifname);
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.ifr_name, ifname, sizeof(if2.ifr_name) - 1);
           
               if (ioctl(sock, SIOCGIFMTU, (char *)&if2) < 0) {
          -        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException", "IOCTL SIOCGIFMTU failed");
          +        NET_ThrowByNameWithLastError(env, JNU_JAVANETPKG "SocketException",
          +                                     "ioctl SIOCGIFMTU failed");
                   return -1;
               }
           
          @@ -2177,22 +2119,20 @@ static int getMTU(JNIEnv *env, int sock,  const char *ifname) {
           }
           
           static int getFlags(int sock, const char *ifname, int *flags) {
          -  struct ifreq if2;
          -  int ret = -1;
          +    struct ifreq if2;
          +    int ret = -1;
          +    memset((char *)&if2, 0, sizeof(if2));
          +    strncpy(if2.ifr_name, ifname, sizeof(if2.ifr_name) - 1);
           
          -  memset((char *) &if2, 0, sizeof(if2));
          -  strcpy(if2.ifr_name, ifname);
          +    if (ioctl(sock, SIOCGIFFLAGS, (char *)&if2) < 0) {
          +        return -1;
          +    }
           
          -  if (ioctl(sock, SIOCGIFFLAGS, (char *)&if2) < 0){
          -      return -1;
          -  }
          -
          -  if (sizeof(if2.ifr_flags) == sizeof(short)) {
          -    *flags = (if2.ifr_flags & 0xffff);
          -  } else {
          -    *flags = if2.ifr_flags;
          -  }
          -  return 0;
          +    if (sizeof(if2.ifr_flags) == sizeof(short)) {
          +        *flags = (if2.ifr_flags & 0xffff);
          +    } else {
          +        *flags = if2.ifr_flags;
          +    }
          +    return 0;
           }
          -
          -#endif
          +#endif /* __ALLBSD_SOURCE__ */