# HG changeset patch # User iris # Date 1439261948 25200 # Node ID aa2d897f553b652b3d658c4fd009602ce46a4426 # Parent 8eff0937c9c443ac71d98145f07cc1860105d2e2# Parent af09b15a346b7c773d8b2f3fddf12bc2f2166d01 Merge diff -r 8eff0937c9c4 -r aa2d897f553b jdk/make/CompileDemos.gmk --- a/jdk/make/CompileDemos.gmk Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/make/CompileDemos.gmk Mon Aug 10 19:59:08 2015 -0700 @@ -55,7 +55,8 @@ SOURCE_FILES := $(JDK_TOPDIR)/make/data/mainmanifest/manifest.mf, \ OUTPUT_FILE := $(SUPPORT_OUTPUTDIR)/demo/java-main-manifest.mf, \ REPLACEMENTS := \ - @@RELEASE@@ => $(RELEASE) ; \ + @@VERSION_SPECIFICATION@@ => $(VERSION_SPECIFICATION) ; \ + @@VERSION_SHORT@@ => $(VERSION_SHORT) ; \ @@COMPANY_NAME@@ => $(COMPANY_NAME) , \ )) diff -r 8eff0937c9c4 -r aa2d897f553b jdk/make/data/mainmanifest/manifest.mf --- a/jdk/make/data/mainmanifest/manifest.mf Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/make/data/mainmanifest/manifest.mf Mon Aug 10 19:59:08 2015 -0700 @@ -1,7 +1,7 @@ Manifest-Version: 1.0 Specification-Title: Java Platform API Specification -Specification-Version: 1.9 +Specification-Version: @@VERSION_SPECIFICATION@@ Specification-Vendor: Oracle Corporation Implementation-Title: Java Runtime Environment -Implementation-Version: @@RELEASE@@ +Implementation-Version: @@VERSION_SHORT@@ Implementation-Vendor: @@COMPANY_NAME@@ diff -r 8eff0937c9c4 -r aa2d897f553b jdk/make/gensrc/GensrcMisc.gmk --- a/jdk/make/gensrc/GensrcMisc.gmk Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/make/gensrc/GensrcMisc.gmk Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ # -# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2011, 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 @@ -26,28 +26,18 @@ ########################################################################################## # Install the launcher name, release version string, full version # string and the runtime name into the Version.java file. -# To be printed by java -version - -# These dependencies should ideally be added to prerequesites for Version.java -# but skip for now until we have better incremental build for java. -# $(call DependOnVariable, LAUNCHER_NAME) \ -# $(call DependOnVariable, RELEASE) \ -# $(call DependOnVariable, FULL_VERSION) \ -# $(call DependOnVariable, RUNTIME_VERSION) -$(SUPPORT_OUTPUTDIR)/gensrc/java.base/sun/misc/Version.java: \ - $(JDK_TOPDIR)/src/java.base/share/classes/sun/misc/Version.java.template - $(MKDIR) -p $(@D) - $(RM) $@ $@.tmp - $(ECHO) Generating sun/misc/Version.java - $(SED) -e 's/@@launcher_name@@/$(LAUNCHER_NAME)/g' \ - -e 's/@@java_version@@/$(RELEASE)/g' \ - -e 's/@@java_runtime_version@@/$(FULL_VERSION)/g' \ - -e 's/@@java_runtime_name@@/$(RUNTIME_NAME)/g' \ - $< > $@.tmp - $(MV) $@.tmp $@ +$(eval $(call SetupTextFileProcessing, BUILD_VERSION_JAVA, \ + SOURCE_FILES := $(JDK_TOPDIR)/src/java.base/share/classes/sun/misc/Version.java.template, \ + OUTPUT_FILE := $(SUPPORT_OUTPUTDIR)/gensrc/java.base/sun/misc/Version.java, \ + REPLACEMENTS := \ + @@LAUNCHER_NAME@@ => $(LAUNCHER_NAME) ; \ + @@RUNTIME_NAME@@ => $(RUNTIME_NAME) ; \ + @@VERSION_SHORT@@ => $(VERSION_SHORT) ; \ + @@VERSION_STRING@@ => $(VERSION_STRING), \ +)) -GENSRC_JAVA_BASE += $(SUPPORT_OUTPUTDIR)/gensrc/java.base/sun/misc/Version.java +GENSRC_JAVA_BASE += $(BUILD_VERSION_JAVA) ########################################################################################## diff -r 8eff0937c9c4 -r aa2d897f553b jdk/make/launcher/Launcher-jdk.accessibility.gmk --- a/jdk/make/launcher/Launcher-jdk.accessibility.gmk Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/make/launcher/Launcher-jdk.accessibility.gmk Mon Aug 10 19:59:08 2015 -0700 @@ -52,7 +52,7 @@ -D "JDK_INTERNAL_NAME=jabswitch" \ -D "JDK_FTYPE=0x01L", \ MANIFEST := $(JABSWITCH_SRC)/jabswitch.manifest, \ - MANIFEST_VERSION := $(JDK_VERSION_FOR_MANIFEST), \ + MANIFEST_VERSION := $(VERSION_NUMBER_FOUR_POSITIONS), \ )) TARGETS += $(BUILD_JABSWITCH) diff -r 8eff0937c9c4 -r aa2d897f553b jdk/make/launcher/Launcher-jdk.pack200.gmk --- a/jdk/make/launcher/Launcher-jdk.pack200.gmk Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/make/launcher/Launcher-jdk.pack200.gmk Mon Aug 10 19:59:08 2015 -0700 @@ -103,7 +103,7 @@ -D "JDK_FTYPE=0x1L", \ DEBUG_SYMBOLS := true, \ MANIFEST := $(JDK_TOPDIR)/src/jdk.pack200/windows/native/unpack200/unpack200_proto.exe.manifest, \ - MANIFEST_VERSION := $(JDK_VERSION_FOR_MANIFEST), \ + MANIFEST_VERSION := $(VERSION_NUMBER_FOUR_POSITIONS), \ )) ifneq ($(USE_EXTERNAL_LIBZ), true) diff -r 8eff0937c9c4 -r aa2d897f553b jdk/make/launcher/LauncherCommon.gmk --- a/jdk/make/launcher/LauncherCommon.gmk Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/make/launcher/LauncherCommon.gmk Mon Aug 10 19:59:08 2015 -0700 @@ -164,9 +164,7 @@ OPTIMIZATION := $$($1_OPTIMIZATION_ARG), \ CFLAGS := $$($1_CFLAGS) \ $(LAUNCHER_CFLAGS) \ - -DFULL_VERSION='"$(FULL_VERSION)"' \ - -DJDK_MAJOR_VERSION='"$(JDK_MAJOR_VERSION)"' \ - -DJDK_MINOR_VERSION='"$(JDK_MINOR_VERSION)"' \ + $(VERSION_CFLAGS) \ -DLAUNCHER_NAME='"$(LAUNCHER_NAME)"' \ -DPROGNAME='"$1"' $(DPACKAGEPATH) \ $2, \ @@ -198,7 +196,7 @@ -D "JDK_FTYPE=0x1L" \ $7, \ MANIFEST := $(JAVA_MANIFEST), \ - MANIFEST_VERSION := $(JDK_VERSION_FOR_MANIFEST), \ + MANIFEST_VERSION := $(VERSION_NUMBER_FOUR_POSITIONS), \ CODESIGN := $$($1_CODESIGN), \ ) diff -r 8eff0937c9c4 -r aa2d897f553b jdk/make/lib/CoreLibraries.gmk --- a/jdk/make/lib/CoreLibraries.gmk Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/make/lib/CoreLibraries.gmk Mon Aug 10 19:59:08 2015 -0700 @@ -119,15 +119,6 @@ -I$(SUPPORT_OUTPUTDIR)/headers/java.base \ -DARCHPROPNAME='"$(OPENJDK_TARGET_CPU_OSARCH)"' -LIBJAVA_CFLAGS += -DJDK_MAJOR_VERSION='"$(JDK_MAJOR_VERSION)"' \ - -DJDK_MINOR_VERSION='"$(JDK_MINOR_VERSION)"' \ - -DJDK_MICRO_VERSION='"$(JDK_MICRO_VERSION)"' \ - -DJDK_BUILD_NUMBER='"$(JDK_BUILD_NUMBER)"' - -ifneq (, $(JDK_UPDATE_VERSION)) - LIBJAVA_CFLAGS += -DJDK_UPDATE_VERSION='"$(JDK_UPDATE_VERSION)"' -endif - ifeq ($(OPENJDK_TARGET_OS), macosx) BUILD_LIBJAVA_java_props_md.c_CFLAGS := -x objective-c BUILD_LIBJAVA_java_props_macosx.c_CFLAGS := -x objective-c @@ -146,6 +137,8 @@ OPTIMIZATION := HIGH, \ CFLAGS := $(CFLAGS_JDKLIB) \ $(LIBJAVA_CFLAGS), \ + System.c_CFLAGS := $(VERSION_CFLAGS), \ + jdk_util.c_CFLAGS := $(VERSION_CFLAGS), \ MAPFILE := $(JDK_TOPDIR)/make/mapfiles/libjava/mapfile-vers, \ LDFLAGS := $(LDFLAGS_JDKLIB) \ $(call SET_SHARED_LIBRARY_ORIGIN), \ diff -r 8eff0937c9c4 -r aa2d897f553b jdk/make/mapfiles/libjava/mapfile-vers --- a/jdk/make/mapfiles/libjava/mapfile-vers Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/make/mapfiles/libjava/mapfile-vers Mon Aug 10 19:59:08 2015 -0700 @@ -280,9 +280,7 @@ Java_sun_reflect_Reflection_getCallerClass__I; Java_sun_reflect_Reflection_getClassAccessFlags; Java_sun_misc_Version_getJdkVersionInfo; - Java_sun_misc_Version_getJdkSpecialVersion; Java_sun_misc_Version_getJvmVersionInfo; - Java_sun_misc_Version_getJvmSpecialVersion; Java_sun_misc_VM_latestUserDefinedLoader; Java_sun_misc_VM_getuid; Java_sun_misc_VM_geteuid; diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/classes/com/sun/crypto/provider/SunJCE.java --- a/jdk/src/java.base/share/classes/com/sun/crypto/provider/SunJCE.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/classes/com/sun/crypto/provider/SunJCE.java Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 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 @@ -104,7 +104,7 @@ public SunJCE() { /* We are the "SunJCE" provider */ - super("SunJCE", 1.9d, info); + super("SunJCE", 9.0d, info); final String BLOCK_MODES = "ECB|CBC|PCBC|CTR|CTS|CFB|OFB" + "|CFB8|CFB16|CFB24|CFB32|CFB40|CFB48|CFB56|CFB64" + diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/classes/sun/misc/Version.java.template --- a/jdk/src/java.base/share/classes/sun/misc/Version.java.template Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/classes/sun/misc/Version.java.template Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 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 @@ -30,16 +30,16 @@ private static final String launcher_name = - "@@launcher_name@@"; + "@@LAUNCHER_NAME@@"; private static final String java_version = - "@@java_version@@"; + "@@VERSION_SHORT@@"; private static final String java_runtime_name = - "@@java_runtime_name@@"; + "@@RUNTIME_NAME@@"; private static final String java_runtime_version = - "@@java_runtime_version@@"; + "@@VERSION_STRING@@"; static { init(); @@ -54,16 +54,14 @@ private static boolean versionsInitialized = false; private static int jvm_major_version = 0; private static int jvm_minor_version = 0; - private static int jvm_micro_version = 0; - private static int jvm_update_version = 0; + private static int jvm_security_version = 0; + private static int jvm_patch_version = 0; private static int jvm_build_number = 0; - private static String jvm_special_version = null; private static int jdk_major_version = 0; private static int jdk_minor_version = 0; - private static int jdk_micro_version = 0; - private static int jdk_update_version = 0; + private static int jdk_security_version = 0; + private static int jdk_patch_version = 0; private static int jdk_build_number = 0; - private static String jdk_special_version = null; /** * In case you were wondering this method is called by java -version. @@ -146,44 +144,29 @@ /** - * Returns the micro version of the running JVM if it's 1.6 or newer - * or any RE VM build. It will return 0 if it's an internal 1.5 or - * 1.4.x build. + * Returns the security version of the running JVM * @since 1.6 */ - public static synchronized int jvmMicroVersion() { + public static synchronized int jvmSecurityVersion() { if (!versionsInitialized) { initVersions(); } - return jvm_micro_version; + return jvm_security_version; } /** - * Returns the update release version of the running JVM if it's - * a RE build. It will return 0 if it's an internal build. - * @since 1.6 + * Returns the patch release version of the running JVM + * @since JDK9 */ - public static synchronized int jvmUpdateVersion() { + public static synchronized int jvmPatchVersion() { if (!versionsInitialized) { initVersions(); } - return jvm_update_version; + return jvm_patch_version; } - public static synchronized String jvmSpecialVersion() { - if (!versionsInitialized) { - initVersions(); - } - if (jvm_special_version == null) { - jvm_special_version = getJvmSpecialVersion(); - } - return jvm_special_version; - } - public static native String getJvmSpecialVersion(); - /** - * Returns the build number of the running JVM if it's a RE build - * It will return 0 if it's an internal build. + * Returns the build number of the running JVM * @since 1.6 */ public static synchronized int jvmBuildNumber() { @@ -217,42 +200,29 @@ } /** - * Returns the micro version of the running JDK. + * Returns the security version of the running JDK. * @since 1.6 */ - public static synchronized int jdkMicroVersion() { + public static synchronized int jdkSecurityVersion() { if (!versionsInitialized) { initVersions(); } - return jdk_micro_version; + return jdk_security_version; } /** - * Returns the update release version of the running JDK if it's - * a RE build. It will return 0 if it's an internal build. - * @since 1.6 + * Returns the patch release version of the running JDK + * @since 9 */ - public static synchronized int jdkUpdateVersion() { + public static synchronized int jdkPatchVersion() { if (!versionsInitialized) { initVersions(); } - return jdk_update_version; + return jdk_patch_version; } - public static synchronized String jdkSpecialVersion() { - if (!versionsInitialized) { - initVersions(); - } - if (jdk_special_version == null) { - jdk_special_version = getJdkSpecialVersion(); - } - return jdk_special_version; - } - public static native String getJdkSpecialVersion(); - /** - * Returns the build number of the running JDK if it's a RE build - * It will return 0 if it's an internal build. + * Returns the build number of the running JDK * @since 1.6 */ public static synchronized int jdkBuildNumber() { @@ -262,64 +232,12 @@ return jdk_build_number; } - // true if JVM exports the version info including the capabilities - private static boolean jvmVersionInfoAvailable; private static synchronized void initVersions() { if (versionsInitialized) { return; } - jvmVersionInfoAvailable = getJvmVersionInfo(); - if (!jvmVersionInfoAvailable) { - // parse java.vm.version for older JVM before the - // new JVM_GetVersionInfo is added. - // valid format of the version string is: - // n.n.n[_uu[c]][-]-bxx - CharSequence cs = System.getProperty("java.vm.version"); - if (cs.length() >= 5 && - Character.isDigit(cs.charAt(0)) && cs.charAt(1) == '.' && - Character.isDigit(cs.charAt(2)) && cs.charAt(3) == '.' && - Character.isDigit(cs.charAt(4))) { - jvm_major_version = Character.digit(cs.charAt(0), 10); - jvm_minor_version = Character.digit(cs.charAt(2), 10); - jvm_micro_version = Character.digit(cs.charAt(4), 10); - cs = cs.subSequence(5, cs.length()); - if (cs.charAt(0) == '_' && cs.length() >= 3 && - Character.isDigit(cs.charAt(1)) && - Character.isDigit(cs.charAt(2))) { - int nextChar = 3; - try { - String uu = cs.subSequence(1, 3).toString(); - jvm_update_version = Integer.valueOf(uu).intValue(); - if (cs.length() >= 4) { - char c = cs.charAt(3); - if (c >= 'a' && c <= 'z') { - jvm_special_version = Character.toString(c); - nextChar++; - } - } - } catch (NumberFormatException e) { - // not conforming to the naming convention - return; - } - cs = cs.subSequence(nextChar, cs.length()); - } - if (cs.charAt(0) == '-') { - // skip the first character - // valid format: -bxx or bxx - // non-product VM will have -debug|-release appended - cs = cs.subSequence(1, cs.length()); - String[] res = cs.toString().split("-"); - for (String s : res) { - if (s.charAt(0) == 'b' && s.length() == 3 && - Character.isDigit(s.charAt(1)) && - Character.isDigit(s.charAt(2))) { - jvm_build_number = - Integer.valueOf(s.substring(1, 3)).intValue(); - break; - } - } - } - } + if (!getJvmVersionInfo()) { + throw new InternalError("Unable to obtain JVM version info"); } getJdkVersionInfo(); versionsInitialized = true; @@ -327,8 +245,6 @@ // Gets the JVM version info if available and sets the jvm_*_version fields // and its capabilities. - // - // Return false if not available which implies an old VM (Tiger or before). private static native boolean getJvmVersionInfo(); private static native void getJdkVersionInfo(); } diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/classes/sun/security/provider/MD4.java --- a/jdk/src/java.base/share/classes/sun/security/provider/MD4.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/classes/sun/security/provider/MD4.java Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 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 @@ -65,7 +65,7 @@ private final static Provider md4Provider; static { - md4Provider = new Provider("MD4Provider", 1.9d, "MD4 MessageDigest") { + md4Provider = new Provider("MD4Provider", 9.0d, "MD4 MessageDigest") { private static final long serialVersionUID = -8850464997518327965L; }; AccessController.doPrivileged(new PrivilegedAction() { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/classes/sun/security/provider/Sun.java --- a/jdk/src/java.base/share/classes/sun/security/provider/Sun.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/classes/sun/security/provider/Sun.java Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 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 @@ -47,7 +47,7 @@ public Sun() { /* We are the SUN provider */ - super("SUN", 1.9d, INFO); + super("SUN", 9.0d, INFO); // if there is no security manager installed, put directly into // the provider. Otherwise, create a temporary map and use a diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/classes/sun/security/provider/VerificationProvider.java --- a/jdk/src/java.base/share/classes/sun/security/provider/VerificationProvider.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/classes/sun/security/provider/VerificationProvider.java Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 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 @@ -61,7 +61,7 @@ } public VerificationProvider() { - super("SunJarVerification", 1.9d, "Jar Verification Provider"); + super("SunJarVerification", 9.0d, "Jar Verification Provider"); // register all algorithms normally registered by the Sun and SunRsaSign // providers, but only if they are missing if (ACTIVE == false) { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/classes/sun/security/rsa/SunRsaSign.java --- a/jdk/src/java.base/share/classes/sun/security/rsa/SunRsaSign.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/classes/sun/security/rsa/SunRsaSign.java Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 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 @@ -43,7 +43,7 @@ private static final long serialVersionUID = 866040293550393045L; public SunRsaSign() { - super("SunRsaSign", 1.9d, "Sun RSA signature provider"); + super("SunRsaSign", 9.0d, "Sun RSA signature provider"); // if there is no security manager installed, put directly into // the provider. Otherwise, create a temporary map and use a diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/classes/sun/security/ssl/JsseJce.java --- a/jdk/src/java.base/share/classes/sun/security/ssl/JsseJce.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/classes/sun/security/ssl/JsseJce.java Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2001, 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 @@ -95,7 +95,7 @@ private static final long serialVersionUID = -3284138292032213752L; SunCertificates(final Provider p) { - super("SunCertificates", 1.9d, "SunJSSE internal"); + super("SunCertificates", 9.0d, "SunJSSE internal"); AccessController.doPrivileged(new PrivilegedAction() { @Override public Object run() { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/classes/sun/security/ssl/SunJSSE.java --- a/jdk/src/java.base/share/classes/sun/security/ssl/SunJSSE.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/classes/sun/security/ssl/SunJSSE.java Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 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 @@ -104,7 +104,7 @@ // standard constructor protected SunJSSE() { - super("SunJSSE", 1.9d, info); + super("SunJSSE", 9.0d, info); subclassCheck(); if (Boolean.TRUE.equals(fips)) { throw new ProviderException @@ -132,7 +132,7 @@ private SunJSSE(java.security.Provider cryptoProvider, String providerName) { - super("SunJSSE", 1.9d, fipsInfo + providerName + ")"); + super("SunJSSE", 9.0d, fipsInfo + providerName + ")"); subclassCheck(); if (cryptoProvider == null) { // Calling Security.getProvider() will cause other providers to be diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/native/include/jvm.h --- a/jdk/src/java.base/share/native/include/jvm.h Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/native/include/jvm.h Mon Aug 10 19:59:08 2015 -0700 @@ -49,7 +49,7 @@ * These functions allow the verifier and format checker to be written * in a VM-independent way. * - * Third, this file contains various I/O and nerwork operations needed + * Third, this file contains various I/O and network operations needed * by the standard Java I/O and network APIs. */ @@ -1169,11 +1169,9 @@ * ========================================================================== */ typedef struct { - /* Naming convention of RE build version string: n.n.n[_uu[c]][-]-bxx */ - unsigned int jvm_version; /* Consists of major, minor, micro (n.n.n) */ - /* and build number (xx) */ - unsigned int update_version : 8; /* Update release version (uu) */ - unsigned int special_update_version : 8; /* Special update release version (c)*/ + unsigned int jvm_version; /* Encoded $VNUM as specified by JEP-223 */ + unsigned int patch_version : 8; /* JEP-223 patch version */ + unsigned int reserved3 : 8; unsigned int reserved1 : 16; unsigned int reserved2; @@ -1192,22 +1190,16 @@ #define JVM_VERSION_MAJOR(version) ((version & 0xFF000000) >> 24) #define JVM_VERSION_MINOR(version) ((version & 0x00FF0000) >> 16) -#define JVM_VERSION_MICRO(version) ((version & 0x0000FF00) >> 8) - -/* Build number is available only for RE builds. - * It will be zero for internal builds. - */ +#define JVM_VERSION_SECURITY(version) ((version & 0x0000FF00) >> 8) #define JVM_VERSION_BUILD(version) ((version & 0x000000FF)) JNIEXPORT void JNICALL JVM_GetVersionInfo(JNIEnv* env, jvm_version_info* info, size_t info_size); typedef struct { - // Naming convention of RE build version string: n.n.n[_uu[c]][-]-bxx - unsigned int jdk_version; /* Consists of major, minor, micro (n.n.n) */ - /* and build number (xx) */ - unsigned int update_version : 8; /* Update release version (uu) */ - unsigned int special_update_version : 8; /* Special update release version (c)*/ + unsigned int jdk_version; /* Encoded $VNUM as specified by JEP-223 */ + unsigned int patch_version : 8; /* JEP-223 patch version */ + unsigned int reserved3 : 8; unsigned int reserved1 : 16; unsigned int reserved2; @@ -1228,11 +1220,7 @@ #define JDK_VERSION_MAJOR(version) ((version & 0xFF000000) >> 24) #define JDK_VERSION_MINOR(version) ((version & 0x00FF0000) >> 16) -#define JDK_VERSION_MICRO(version) ((version & 0x0000FF00) >> 8) - -/* Build number is available only for RE build (i.e. JDK_BUILD_NUMBER is set to bNN) - * It will be zero for internal builds. - */ +#define JDK_VERSION_SECURITY(version) ((version & 0x0000FF00) >> 8) #define JDK_VERSION_BUILD(version) ((version & 0x000000FF)) /* diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/native/launcher/defines.h --- a/jdk/src/java.base/share/native/launcher/defines.h Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/native/launcher/defines.h Mon Aug 10 19:59:08 2015 -0700 @@ -28,22 +28,20 @@ #include "java.h" +#define STR_HELPER(x) #x +#define STR(x) STR_HELPER(x) + /* * This file contains commonly defined constants used only by main.c * and should not be included by another file. */ -#ifndef FULL_VERSION +#ifndef VERSION_STRING /* make sure the compilation fails */ -#error "FULL_VERSION must be defined" +#error "VERSION_STRING must be defined" #endif -#if defined(JDK_MAJOR_VERSION) && defined(JDK_MINOR_VERSION) -#define DOT_VERSION JDK_MAJOR_VERSION "." JDK_MINOR_VERSION -#else -/* make sure the compilation fails */ -#error "JDK_MAJOR_VERSION and JDK_MINOR_VERSION must be defined" -#endif - +/* Unused, but retained for JLI_Launch compatibility*/ +#define DOT_VERSION "0.0" #ifdef JAVA_ARGS #define HAS_JAVA_ARGS JNI_TRUE diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/native/launcher/main.c --- a/jdk/src/java.base/share/native/launcher/main.c Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/native/launcher/main.c Mon Aug 10 19:59:08 2015 -0700 @@ -125,7 +125,7 @@ return JLI_Launch(margc, margv, sizeof(const_jargs) / sizeof(char *), const_jargs, sizeof(const_appclasspath) / sizeof(char *), const_appclasspath, - FULL_VERSION, + VERSION_STRING, DOT_VERSION, (const_progname != NULL) ? const_progname : *margv, (const_launcher != NULL) ? const_launcher : *margv, diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/native/libjava/System.c --- a/jdk/src/java.base/share/native/libjava/System.c Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/native/libjava/System.c Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1994, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1994, 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 @@ -208,13 +208,13 @@ CHECK_NULL_RETURN(getPropID, NULL); PUTPROP(props, "java.specification.version", - JDK_MAJOR_VERSION "." JDK_MINOR_VERSION); + VERSION_SPECIFICATION); PUTPROP(props, "java.specification.name", "Java Platform API Specification"); PUTPROP(props, "java.specification.vendor", JAVA_SPECIFICATION_VENDOR); - PUTPROP(props, "java.version", RELEASE); + PUTPROP(props, "java.version", VERSION_SHORT); PUTPROP(props, "java.vendor", VENDOR); PUTPROP(props, "java.vendor.url", VENDOR_URL); PUTPROP(props, "java.vendor.url.bug", VENDOR_URL_BUG); diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/native/libjava/Version.c --- a/jdk/src/java.base/share/native/libjava/Version.c Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/native/libjava/Version.c Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 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 @@ -30,8 +30,6 @@ #include "sun_misc_Version.h" -char jvm_special_version = '\0'; -char jdk_special_version = '\0'; static void setStaticIntField(JNIEnv* env, jclass cls, const char* name, jint value) { jfieldID fid; @@ -63,27 +61,16 @@ JNU_CHECK_EXCEPTION_RETURN(env, JNI_FALSE); setStaticIntField(env, cls, "jvm_minor_version", JVM_VERSION_MINOR(info.jvm_version)); JNU_CHECK_EXCEPTION_RETURN(env, JNI_FALSE); - setStaticIntField(env, cls, "jvm_micro_version", JVM_VERSION_MICRO(info.jvm_version)); + setStaticIntField(env, cls, "jvm_security_version", JVM_VERSION_SECURITY(info.jvm_version)); JNU_CHECK_EXCEPTION_RETURN(env, JNI_FALSE); setStaticIntField(env, cls, "jvm_build_number", JVM_VERSION_BUILD(info.jvm_version)); JNU_CHECK_EXCEPTION_RETURN(env, JNI_FALSE); - setStaticIntField(env, cls, "jvm_update_version", info.update_version); + setStaticIntField(env, cls, "jvm_patch_version", info.patch_version); JNU_CHECK_EXCEPTION_RETURN(env, JNI_FALSE); - jvm_special_version = info.special_update_version; return JNI_TRUE; } -JNIEXPORT jstring JNICALL -Java_sun_misc_Version_getJvmSpecialVersion(JNIEnv *env, jclass cls) { - char s[2]; - jstring special; - s[0] = jvm_special_version; - s[1] = '\0'; - special = (*env)->NewStringUTF(env, s); - return special; -} - JNIEXPORT void JNICALL Java_sun_misc_Version_getJdkVersionInfo(JNIEnv *env, jclass cls) { @@ -94,21 +81,10 @@ JNU_CHECK_EXCEPTION(env); setStaticIntField(env, cls, "jdk_minor_version", JDK_VERSION_MINOR(info.jdk_version)); JNU_CHECK_EXCEPTION(env); - setStaticIntField(env, cls, "jdk_micro_version", JDK_VERSION_MICRO(info.jdk_version)); + setStaticIntField(env, cls, "jdk_security_version", JDK_VERSION_SECURITY(info.jdk_version)); JNU_CHECK_EXCEPTION(env); setStaticIntField(env, cls, "jdk_build_number", JDK_VERSION_BUILD(info.jdk_version)); JNU_CHECK_EXCEPTION(env); - setStaticIntField(env, cls, "jdk_update_version", info.update_version); + setStaticIntField(env, cls, "jdk_patch_version", info.patch_version); JNU_CHECK_EXCEPTION(env); - jdk_special_version = info.special_update_version; } - -JNIEXPORT jstring JNICALL -Java_sun_misc_Version_getJdkSpecialVersion(JNIEnv *env, jclass cls) { - char s[2]; - jstring special; - s[0] = jdk_special_version; - s[1] = '\0'; - special = (*env)->NewStringUTF(env, s); - return special; -} diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/native/libjava/jdk_util.c --- a/jdk/src/java.base/share/native/libjava/jdk_util.c Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/native/libjava/jdk_util.c Mon Aug 10 19:59:08 2015 -0700 @@ -31,72 +31,21 @@ #include "jvm.h" #include "jdk_util.h" -#ifndef JDK_UPDATE_VERSION - /* if not defined set to 00 */ - #define JDK_UPDATE_VERSION "00" -#endif - JNIEXPORT void JDK_GetVersionInfo0(jdk_version_info* info, size_t info_size) { - /* These JDK_* macros are set at Makefile or the command line */ - const unsigned int jdk_major_version = - (unsigned int) atoi(JDK_MAJOR_VERSION); - const unsigned int jdk_minor_version = - (unsigned int) atoi(JDK_MINOR_VERSION); - const unsigned int jdk_micro_version = - (unsigned int) atoi(JDK_MICRO_VERSION); - - const char* jdk_build_string = JDK_BUILD_NUMBER; - char build_number[4]; - unsigned int jdk_build_number = 0; - - const char* jdk_update_string = JDK_UPDATE_VERSION; - unsigned int jdk_update_version = 0; - char update_ver[3]; - char jdk_special_version = '\0'; - - /* If the JDK_BUILD_NUMBER is of format bXX and XX is an integer - * XX is the jdk_build_number. - */ - size_t len = strlen(jdk_build_string); - if (jdk_build_string[0] == 'b' && len >= 2) { - size_t i = 0; - for (i = 1; i < len; i++) { - if (isdigit(jdk_build_string[i])) { - build_number[i-1] = jdk_build_string[i]; - } else { - // invalid build number - i = -1; - break; - } - } - if (i == len) { - build_number[len-1] = '\0'; - jdk_build_number = (unsigned int) atoi(build_number) ; - } - } - - assert(jdk_build_number <= 255); - - if (strlen(jdk_update_string) == 2 || strlen(jdk_update_string) == 3) { - if (isdigit(jdk_update_string[0]) && isdigit(jdk_update_string[1])) { - update_ver[0] = jdk_update_string[0]; - update_ver[1] = jdk_update_string[1]; - update_ver[2] = '\0'; - jdk_update_version = (unsigned int) atoi(update_ver); - if (strlen(jdk_update_string) == 3) { - jdk_special_version = jdk_update_string[2]; - } - } - } + /* These VERSION_* macros are given by the build system */ + const unsigned int version_major = VERSION_MAJOR; + const unsigned int version_minor = VERSION_MINOR; + const unsigned int version_security = VERSION_SECURITY; + const unsigned int version_patch = VERSION_PATCH; + const unsigned int version_build = VERSION_BUILD; memset(info, 0, info_size); - info->jdk_version = ((jdk_major_version & 0xFF) << 24) | - ((jdk_minor_version & 0xFF) << 16) | - ((jdk_micro_version & 0xFF) << 8) | - (jdk_build_number & 0xFF); - info->update_version = jdk_update_version; - info->special_update_version = (unsigned int) jdk_special_version; + info->jdk_version = ((version_major & 0xFF) << 24) | + ((version_minor & 0xFF) << 16) | + ((version_security & 0xFF) << 8) | + (version_build & 0xFF); + info->patch_version = version_patch; info->thread_park_blocker = 1; // Advertise presence of sun.misc.PostVMInitHook: // future optimization: detect if this is enabled. diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/native/libjli/java.c --- a/jdk/src/java.base/share/native/libjli/java.c Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/native/libjli/java.c Mon Aug 10 19:59:08 2015 -0700 @@ -74,7 +74,6 @@ static const char *_launcher_name; static jboolean _is_java_args = JNI_FALSE; static const char *_fVersion; -static const char *_dVersion; static jboolean _wc_enabled = JNI_FALSE; static jint _ergo_policy = DEFAULT_POLICY; @@ -183,7 +182,7 @@ int jargc, const char** jargv, /* java args */ int appclassc, const char** appclassv, /* app classpath */ const char* fullversion, /* full version defined */ - const char* dotversion, /* dot version defined */ + const char* dotversion, /* UNUSED dot version defined */ const char* pname, /* program name */ const char* lname, /* launcher name */ jboolean javaargs, /* JAVA_ARGS */ @@ -204,7 +203,6 @@ char jvmcfg[MAXPATHLEN]; _fVersion = fullversion; - _dVersion = dotversion; _launcher_name = lname; _program_name = pname; _is_java_args = javaargs; @@ -1886,12 +1884,6 @@ } const char* -GetDotVersion() -{ - return _dVersion; -} - -const char* GetFullVersion() { return _fVersion; @@ -1978,7 +1970,6 @@ printf("\tlauncher name:%s\n", GetLauncherName()); printf("\tjavaw:%s\n", (IsJavaw() == JNI_TRUE) ? "on" : "off"); printf("\tfullversion:%s\n", GetFullVersion()); - printf("\tdotversion:%s\n", GetDotVersion()); printf("\tergo_policy:"); switch(GetErgoPolicy()) { case NEVER_SERVER_CLASS: diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/share/native/libjli/java.h --- a/jdk/src/java.base/share/native/libjli/java.h Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/share/native/libjli/java.h Mon Aug 10 19:59:08 2015 -0700 @@ -169,7 +169,6 @@ }; const char* GetProgramName(); -const char* GetDotVersion(); const char* GetFullVersion(); jboolean IsJavaArgs(); jboolean IsJavaw(); diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.base/windows/native/common/version.rc --- a/jdk/src/java.base/windows/native/common/version.rc Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.base/windows/native/common/version.rc Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ // -// Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved. +// Copyright (c) 2004, 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 @@ -58,7 +58,7 @@ VALUE "CompanyName", XSTR(JDK_COMPANY) "\0" VALUE "FileDescription", XSTR(JDK_COMPONENT) "\0" VALUE "FileVersion", XSTR(JDK_VER) "\0" - VALUE "Full Version", XSTR(JDK_BUILD_ID) "\0" + VALUE "Full Version", XSTR(JDK_VERSION_STRING) "\0" VALUE "InternalName", XSTR(JDK_INTERNAL_NAME) "\0" VALUE "LegalCopyright", XSTR(JDK_COPYRIGHT) "\0" VALUE "OriginalFilename", XSTR(JDK_FNAME) "\0" diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.desktop/windows/native/libawt/windows/awt.rc --- a/jdk/src/java.desktop/windows/native/libawt/windows/awt.rc Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.desktop/windows/native/libawt/windows/awt.rc Mon Aug 10 19:59:08 2015 -0700 @@ -68,7 +68,7 @@ VALUE "CompanyName", XSTR(JDK_COMPANY) "\0" VALUE "FileDescription", XSTR(JDK_COMPONENT) "\0" VALUE "FileVersion", XSTR(JDK_VER) "\0" - VALUE "Full Version", XSTR(JDK_BUILD_ID) "\0" + VALUE "Full Version", XSTR(JDK_VERSION_STRING) "\0" VALUE "InternalName", XSTR(JDK_INTERNAL_NAME) "\0" VALUE "LegalCopyright", XSTR(JDK_COPYRIGHT) "\0" VALUE "OriginalFilename", XSTR(JDK_FNAME) "\0" diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.naming/share/classes/sun/security/provider/certpath/ldap/JdkLDAP.java --- a/jdk/src/java.naming/share/classes/sun/security/provider/certpath/ldap/JdkLDAP.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.naming/share/classes/sun/security/provider/certpath/ldap/JdkLDAP.java Mon Aug 10 19:59:08 2015 -0700 @@ -69,7 +69,7 @@ } public JdkLDAP() { - super("JdkLDAP", 1.9d, "JdkLDAP Provider (implements LDAP CertStore)"); + super("JdkLDAP", 9.0d, "JdkLDAP Provider (implements LDAP CertStore)"); final Provider p = this; AccessController.doPrivileged(new PrivilegedAction() { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.security.jgss/share/classes/sun/security/jgss/SunProvider.java --- a/jdk/src/java.security.jgss/share/classes/sun/security/jgss/SunProvider.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.security.jgss/share/classes/sun/security/jgss/SunProvider.java Mon Aug 10 19:59:08 2015 -0700 @@ -101,7 +101,7 @@ public SunProvider() { /* We are the Sun JGSS provider */ - super("SunJGSS", 1.9d, INFO); + super("SunJGSS", 9.0d, INFO); final Provider p = this; AccessController.doPrivileged(new PrivilegedAction() { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.security.jgss/share/classes/sun/security/jgss/wrapper/SunNativeProvider.java --- a/jdk/src/java.security.jgss/share/classes/sun/security/jgss/wrapper/SunNativeProvider.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.security.jgss/share/classes/sun/security/jgss/wrapper/SunNativeProvider.java Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 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 @@ -120,7 +120,7 @@ public SunNativeProvider() { /* We are the Sun NativeGSS provider */ - super(NAME, 1.9d, INFO); + super(NAME, 9.0d, INFO); if (MECH_MAP != null) { AccessController.doPrivileged(new PutAllAction(this, MECH_MAP)); diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.security.sasl/share/classes/com/sun/security/sasl/Provider.java --- a/jdk/src/java.security.sasl/share/classes/com/sun/security/sasl/Provider.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.security.sasl/share/classes/com/sun/security/sasl/Provider.java Mon Aug 10 19:59:08 2015 -0700 @@ -98,7 +98,7 @@ } public Provider() { - super("SunSASL", 1.9d, info); + super("SunSASL", 9.0d, info); final Provider p = this; AccessController.doPrivileged(new PrivilegedAction() { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.smartcardio/share/classes/sun/security/smartcardio/SunPCSC.java --- a/jdk/src/java.smartcardio/share/classes/sun/security/smartcardio/SunPCSC.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.smartcardio/share/classes/sun/security/smartcardio/SunPCSC.java Mon Aug 10 19:59:08 2015 -0700 @@ -65,7 +65,7 @@ } public SunPCSC() { - super("SunPCSC", 1.9d, "Sun PC/SC provider"); + super("SunPCSC", 9.0d, "Sun PC/SC provider"); final Provider p = this; AccessController.doPrivileged(new PrivilegedAction() { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/XMLDSigRI.java --- a/jdk/src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/XMLDSigRI.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/XMLDSigRI.java Mon Aug 10 19:59:08 2015 -0700 @@ -28,7 +28,7 @@ * =========================================================================== */ /* - * Copyright (c) 2005, 2015 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved. */ /* * $Id: XMLDSigRI.java 1400021 2012-10-19 10:16:04Z coheigea $ @@ -129,7 +129,7 @@ public XMLDSigRI() { /* We are the XMLDSig provider */ - super("XMLDSig", 1.9d, INFO); + super("XMLDSig", 9.0d, INFO); final Provider p = this; AccessController.doPrivileged(new PrivilegedAction() { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/jdk.accessibility/windows/native/common/AccessBridgeStatusWindow.RC --- a/jdk/src/jdk.accessibility/windows/native/common/AccessBridgeStatusWindow.RC Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/jdk.accessibility/windows/native/common/AccessBridgeStatusWindow.RC Mon Aug 10 19:59:08 2015 -0700 @@ -44,7 +44,7 @@ LTEXT "Status:",IDC_STATIC,11,149,23,8 EDITTEXT cWindowsID,67,39,121,13,ES_READONLY LTEXT "Windows ID:",IDC_STATIC,21,41,42,8 - EDITTEXT cCallInfo,12,65,184,75,ES_MULTILINE | ES_AUTOVSCROLL | + EDITTEXT cCallInfo,12,65,184,75,ES_MULTILINE | ES_AUTOVSCROLL | ES_AUTOHSCROLL | ES_READONLY | WS_VSCROLL GROUPBOX "Call info",IDC_STATIC,4,55,197,90 EDITTEXT cInvokedByText,67,1,121,13,ES_READONLY @@ -67,12 +67,12 @@ // TEXTINCLUDE // -1 TEXTINCLUDE DISCARDABLE +1 TEXTINCLUDE DISCARDABLE BEGIN "resource.h\0" END -2 TEXTINCLUDE DISCARDABLE +2 TEXTINCLUDE DISCARDABLE BEGIN "#define APSTUDIO_HIDDEN_SYMBOLS\r\n" "#include ""windows.h""\r\n" @@ -80,7 +80,7 @@ "\0" END -3 TEXTINCLUDE DISCARDABLE +3 TEXTINCLUDE DISCARDABLE BEGIN "\r\n" "\0" @@ -95,7 +95,7 @@ // #ifdef APSTUDIO_INVOKED -GUIDELINES DESIGNINFO DISCARDABLE +GUIDELINES DESIGNINFO DISCARDABLE BEGIN "ACCESSBRIDGESTATUSWINDOW", DIALOG BEGIN @@ -142,7 +142,7 @@ VALUE "CompanyName", XSTR(JDK_COMPANY) "\0" VALUE "FileDescription", XSTR(JDK_COMPONENT) "\0" VALUE "FileVersion", XSTR(JDK_VER) "\0" - VALUE "Full Version", XSTR(JDK_BUILD_ID) "\0" + VALUE "Full Version", XSTR(JDK_VERSION_STRING) "\0" VALUE "InternalName", XSTR(JDK_INTERNAL_NAME) "\0" VALUE "LegalCopyright", XSTR(JDK_COPYRIGHT) "\0" VALUE "OriginalFilename", XSTR(JDK_FNAME) "\0" @@ -172,4 +172,3 @@ ///////////////////////////////////////////////////////////////////////////// #endif // not APSTUDIO_INVOKED - diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/jdk.crypto.ec/share/classes/sun/security/ec/SunEC.java --- a/jdk/src/jdk.crypto.ec/share/classes/sun/security/ec/SunEC.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/jdk.crypto.ec/share/classes/sun/security/ec/SunEC.java Mon Aug 10 19:59:08 2015 -0700 @@ -142,7 +142,7 @@ } public SunEC() { - super("SunEC", 1.9d, "Sun Elliptic Curve provider (EC, ECDSA, ECDH)"); + super("SunEC", 9.0d, "Sun Elliptic Curve provider (EC, ECDSA, ECDH)"); AccessController.doPrivileged(new PrivilegedAction() { public Void run() { putEntries(useFullImplementation); diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/SunMSCAPI.java --- a/jdk/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/SunMSCAPI.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/SunMSCAPI.java Mon Aug 10 19:59:08 2015 -0700 @@ -124,7 +124,7 @@ } public SunMSCAPI() { - super("SunMSCAPI", 1.9d, INFO); + super("SunMSCAPI", 9.0d, INFO); final Provider p = this; AccessController.doPrivileged(new PrivilegedAction() { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/jdk.crypto.pkcs11/share/classes/sun/security/pkcs11/SunPKCS11.java --- a/jdk/src/jdk.crypto.pkcs11/share/classes/sun/security/pkcs11/SunPKCS11.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/jdk.crypto.pkcs11/share/classes/sun/security/pkcs11/SunPKCS11.java Mon Aug 10 19:59:08 2015 -0700 @@ -90,7 +90,7 @@ } public SunPKCS11() { - super("SunPKCS11", 1.9d, "Unconfigured and unusable PKCS11 provider"); + super("SunPKCS11", 9.0d, "Unconfigured and unusable PKCS11 provider"); p11 = null; config = null; slotID = 0; @@ -128,7 +128,7 @@ // Used by Secmod SunPKCS11(Config c) { - super("SunPKCS11-" + c.getName(), 1.9d, c.getDescription()); + super("SunPKCS11-" + c.getName(), 9.0d, c.getDescription()); this.config = c; if (debug != null) { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/jdk.crypto.ucrypto/solaris/classes/com/oracle/security/ucrypto/UcryptoProvider.java --- a/jdk/src/jdk.crypto.ucrypto/solaris/classes/com/oracle/security/ucrypto/UcryptoProvider.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/jdk.crypto.ucrypto/solaris/classes/com/oracle/security/ucrypto/UcryptoProvider.java Mon Aug 10 19:59:08 2015 -0700 @@ -224,7 +224,7 @@ } public UcryptoProvider() { - super("OracleUcrypto", 1.9d, "Provider using Oracle Ucrypto API"); + super("OracleUcrypto", 9.0d, "Provider using Oracle Ucrypto API"); AccessController.doPrivileged(new PrivilegedAction<>() { public Void run() { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/jdk.deploy.osx/macosx/classes/apple/security/AppleProvider.java --- a/jdk/src/jdk.deploy.osx/macosx/classes/apple/security/AppleProvider.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/jdk.deploy.osx/macosx/classes/apple/security/AppleProvider.java Mon Aug 10 19:59:08 2015 -0700 @@ -74,7 +74,7 @@ public AppleProvider() { /* We are the Apple provider */ - super("Apple", 1.9d, info); + super("Apple", 9.0d, info); final Provider p = this; AccessController.doPrivileged(new PrivilegedAction() { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/src/jdk.security.jgss/share/classes/com/sun/security/sasl/gsskerb/JdkSASL.java --- a/jdk/src/jdk.security.jgss/share/classes/com/sun/security/sasl/gsskerb/JdkSASL.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/src/jdk.security.jgss/share/classes/com/sun/security/sasl/gsskerb/JdkSASL.java Mon Aug 10 19:59:08 2015 -0700 @@ -73,7 +73,7 @@ } public JdkSASL() { - super("JdkSASL", 1.9d, info); + super("JdkSASL", 9.0d, info); final Provider p = this; AccessController.doPrivileged(new PrivilegedAction() { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/test/java/security/Provider/ProviderVersionCheck.java --- a/jdk/test/java/security/Provider/ProviderVersionCheck.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/test/java/security/Provider/ProviderVersionCheck.java Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 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 @@ -27,7 +27,7 @@ /* * @test - * @bug 8030823 + * @bug 8030823 8130696 * @run main/othervm ProviderVersionCheck * @summary Verify all providers in the default Providers list have the proper * version for the release @@ -42,7 +42,7 @@ for (Provider p: Security.getProviders()) { System.out.print(p.getName() + " "); - if (p.getVersion() != 1.9d) { + if (p.getVersion() != 9.0d) { System.out.println("failed. " + "Version received was " + p.getVersion()); failure = true; diff -r 8eff0937c9c4 -r aa2d897f553b jdk/test/javax/management/remote/mandatory/notif/NotSerializableNotifTest.java --- a/jdk/test/javax/management/remote/mandatory/notif/NotSerializableNotifTest.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/test/javax/management/remote/mandatory/notif/NotSerializableNotifTest.java Mon Aug 10 19:59:08 2015 -0700 @@ -24,7 +24,7 @@ /* * @test * @summary Tests to send a not serializable notification. - * @bug 5022196 + * @bug 5022196 8132003 * @author Shanliang JIANG * @modules java.management * @run clean NotSerializableNotifTest @@ -53,22 +53,13 @@ private static final MBeanServer mbeanServer = MBeanServerFactory.createMBeanServer(); private static ObjectName emitter; - private static String[] protocols; + private static String[] protocols = new String[] {"rmi", "iiop", "jmxmp"}; private static final int sentNotifs = 10; public static void main(String[] args) throws Exception { System.out.println(">>> Test to send a not serializable notification"); - // IIOP fails on JDK1.4, see 5034318 - final String v = System.getProperty("java.version"); - float f = Float.parseFloat(v.substring(0, 3)); - if (f<1.5) { - protocols = new String[] {"rmi", "jmxmp"}; - } else { - protocols = new String[] {"rmi", "iiop", "jmxmp"}; - } - emitter = new ObjectName("Default:name=NotificationEmitter"); mbeanServer.registerMBean(new NotificationEmitter(), emitter); diff -r 8eff0937c9c4 -r aa2d897f553b jdk/test/sun/misc/Version/Version.java --- a/jdk/test/sun/misc/Version/Version.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/test/sun/misc/Version/Version.java Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2010, 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 @@ -31,15 +31,17 @@ */ import static sun.misc.Version.*; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + public class Version { public static void main(String[] args) throws Exception { VersionInfo jdk = newVersionInfo(System.getProperty("java.runtime.version")); VersionInfo v1 = new VersionInfo(jdkMajorVersion(), jdkMinorVersion(), - jdkMicroVersion(), - jdkUpdateVersion(), - jdkSpecialVersion(), + jdkSecurityVersion(), + jdkPatchVersion(), jdkBuildNumber()); System.out.println("JDK version = " + jdk + " " + v1); if (!jdk.equals(v1)) { @@ -48,9 +50,8 @@ VersionInfo jvm = newVersionInfo(System.getProperty("java.vm.version")); VersionInfo v2 = new VersionInfo(jvmMajorVersion(), jvmMinorVersion(), - jvmMicroVersion(), - jvmUpdateVersion(), - jvmSpecialVersion(), + jvmSecurityVersion(), + jvmPatchVersion(), jvmBuildNumber()); System.out.println("JVM version = " + jvm + " " + v2); if (!jvm.equals(v2)) { @@ -61,108 +62,67 @@ static class VersionInfo { final int major; final int minor; - final int micro; - final int update; - final String special; + final int security; + final int patch; final int build; - VersionInfo(int major, int minor, int micro, - int update, String special, int build) { + VersionInfo(int major, int minor, int security, + int patch, int build) { this.major = major; this.minor = minor; - this.micro = micro; - this.update = update; - this.special = special; + this.security = security; + this.patch = patch; this.build = build; } + VersionInfo(int[] fields) { + this.major = fields[0]; + this.minor = fields[1]; + this.security = fields[2]; + this.patch = fields[3]; + this.build = fields[4]; + } + public boolean equals(VersionInfo v) { return (this.major == v.major && this.minor == v.minor && - this.micro == v.micro && this.update == v.update && - this.special.equals(v.special) && this.build == v.build); + this.security == v.security && this.patch == v.patch && + this.build == v.build); } public String toString() { StringBuilder sb = new StringBuilder(); - sb.append(major + "." + minor + "." + micro); - if (update > 0) { - sb.append("_" + update); + sb.append(major + "." + minor + "." + security); + if (patch > 0) { + sb.append("." + patch); } - if (!special.isEmpty()) { - sb.append(special); - } - sb.append("-b" + build); + sb.append("+" + build); return sb.toString(); } } private static VersionInfo newVersionInfo(String version) throws Exception { - // valid format of the version string is: - // n.n.n[_uu[c]][-]-bxx - int major = 0; - int minor = 0; - int micro = 0; - int update = 0; - String special = ""; - int build = 0; - CharSequence cs = version; - if (cs.length() >= 5) { - if (Character.isDigit(cs.charAt(0)) && cs.charAt(1) == '.' && - Character.isDigit(cs.charAt(2)) && cs.charAt(3) == '.' && - Character.isDigit(cs.charAt(4))) { - major = Character.digit(cs.charAt(0), 10); - minor = Character.digit(cs.charAt(2), 10); - micro = Character.digit(cs.charAt(4), 10); - cs = cs.subSequence(5, cs.length()); - } else if (Character.isDigit(cs.charAt(0)) && - Character.isDigit(cs.charAt(1)) && cs.charAt(2) == '.' && - Character.isDigit(cs.charAt(3))) { - // HSX has nn.n[n] (major.minor) version - major = Integer.valueOf(version.substring(0, 2)).intValue(); - if (Character.isDigit(cs.charAt(4))) { - minor = Integer.valueOf(version.substring(3, 5)).intValue(); - cs = cs.subSequence(5, cs.length()); - } - else { - minor = Character.digit(cs.charAt(3), 10); - cs = cs.subSequence(4, cs.length()); - } - } - if (cs.charAt(0) == '_' && cs.length() >= 3 && - Character.isDigit(cs.charAt(1)) && - Character.isDigit(cs.charAt(2))) { - int nextChar = 3; - String uu = cs.subSequence(1, 3).toString(); - update = Integer.valueOf(uu).intValue(); - if (cs.length() >= 4) { - char c = cs.charAt(3); - if (c >= 'a' && c <= 'z') { - special = Character.toString(c); - nextChar++; - } - } - cs = cs.subSequence(nextChar, cs.length()); - } - if (cs.charAt(0) == '-') { - // skip the first character - // valid format: -bxx or bxx - // non-product VM will have -debug|-release appended - cs = cs.subSequence(1, cs.length()); - String[] res = cs.toString().split("-"); - for (int i = res.length - 1; i >= 0; i--) { - String s = res[i]; - if (s.charAt(0) == 'b') { - try { - build = Integer.parseInt(s.substring(1, s.length())); - break; - } catch (NumberFormatException nfe) { - // ignore - } - } - } + // Version string fromat as defined by JEP-223 + String jep223Pattern = + "^([0-9]+)(\\.([0-9]+))?(\\.([0-9]+))?(\\.([0-9]+))?" + // $VNUM + "(-([a-zA-Z]+))?(\\.([a-zA-Z]+))?" + // $PRE + "(\\+([0-9]+))?" + // Build Number + "(([-a-zA-Z0-9.]+))?$"; // $OPT + + // Pattern group index for: Major, Minor, Security, Patch, Build + int[] groups = {1, 3, 5, 7, 13}; + // Default values for Major, Minor, Security, Patch, Build + int[] versionFields = {0, 0, 0, 0, 0}; + + Pattern pattern = Pattern.compile(jep223Pattern); + Matcher matcher = pattern.matcher(version); + if (matcher.matches()) { + for (int i = 0; i < versionFields.length; i++) { + String field = matcher.group(groups[i]); + versionFields[i] = (field != null) ? Integer.parseInt(field) : 0; } } - VersionInfo vi = new VersionInfo(major, minor, micro, update, special, build); + + VersionInfo vi = new VersionInfo(versionFields); System.out.printf("newVersionInfo: input=%s output=%s\n", version, vi); return vi; } diff -r 8eff0937c9c4 -r aa2d897f553b jdk/test/sun/security/util/Oid/S11N.java --- a/jdk/test/sun/security/util/Oid/S11N.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/test/sun/security/util/Oid/S11N.java Mon Aug 10 19:59:08 2015 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 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 @@ -23,7 +23,7 @@ /* * @test - * @bug 4811968 6908628 8006564 + * @bug 4811968 6908628 8006564 8130696 * @modules java.base/sun.misc * java.base/sun.security.util * @run main S11N check @@ -66,8 +66,11 @@ public static void main(String[] args) throws Exception { if (args[0].equals("check")) { - int version = Integer.valueOf(System.getProperty("java.version") - .split("\\.")[1]); + String jv = System.getProperty("java.version"); + // java.version format: $VNUM\-$PRE + String [] va = (jv.split("-")[0]).split("\\."); + String v = (va.length == 1 || !va[0].equals("1")) ? va[0] : va[1]; + int version = Integer.valueOf(v); System.out.println("version is " + version); if (version >= 7) { for (String oid: SMALL) { diff -r 8eff0937c9c4 -r aa2d897f553b jdk/test/tools/launcher/VersionCheck.java --- a/jdk/test/tools/launcher/VersionCheck.java Thu Aug 06 08:07:39 2015 -0700 +++ b/jdk/test/tools/launcher/VersionCheck.java Mon Aug 10 19:59:08 2015 -0700 @@ -183,13 +183,6 @@ "build".length() + 1, refVersion.lastIndexOf(")")); - String[] vStr = bStr.split("\\.|-|_"); - String jdkMajor = vStr[0]; - String jdkMinor = vStr[1]; - String jdkMicro = vStr[2]; - String jdkBuild = vStr[vStr.length - 1]; - - String expectedDotVersion = "dotversion:" + jdkMajor + "." + jdkMinor; String expectedFullVersion = "fullversion:" + bStr; Map envMap = new HashMap<>(); @@ -200,10 +193,6 @@ for (String x : tr.testOutput) { alist.add(x.trim()); } - if (!alist.contains(expectedDotVersion)) { - System.out.println("Error: could not find " + expectedDotVersion); - failcount++; - } if (!alist.contains(expectedFullVersion)) { System.out.println("Error: could not find " + expectedFullVersion);