Blame SOURCES/pr2974-rh1337583-add_systemlineendings_option_to_keytool_and_use_line_separator_instead_of_crlf_in_pkcs10.patch

2296bf
# HG changeset patch
2296bf
# User andrew
2296bf
# Date 1464316115 -3600
2296bf
#      Fri May 27 03:28:35 2016 +0100
2296bf
# Node ID 794541fbbdc323f7da8a5cee75611f977eee66ee
2296bf
# Parent  0be28a33e12dfc9ae1e4be381530643f691d351a
2296bf
PR2974: PKCS#10 certificate requests now use CRLF line endings rather than system line endings
2296bf
Summary: Add -systemlineendings option to keytool to allow system line endings to be used again.
2296bf
7e9da4
diff --git openjdk.orig/jdk/src/share/classes/sun/security/pkcs10/PKCS10.java openjdk/jdk/src/share/classes/sun/security/pkcs10/PKCS10.java
7e9da4
--- openjdk.orig/jdk/src/share/classes/sun/security/pkcs10/PKCS10.java
a42b25
+++ openjdk/jdk/src/share/classes/sun/security/pkcs10/PKCS10.java
7e9da4
@@ -35,6 +35,7 @@
2296bf
 
2296bf
 import java.util.Base64;
2296bf
 
2296bf
+import sun.security.action.GetPropertyAction;
2296bf
 import sun.security.util.*;
2296bf
 import sun.security.x509.AlgorithmId;
2296bf
 import sun.security.x509.X509Key;
7e9da4
@@ -74,6 +75,14 @@
2296bf
  * @author Hemma Prafullchandra
2296bf
  */
2296bf
 public class PKCS10 {
2296bf
+
2296bf
+    private static final byte[] sysLineEndings;
2296bf
+
2296bf
+    static {
2296bf
+        sysLineEndings =
2296bf
+	    AccessController.doPrivileged(new GetPropertyAction("line.separator")).getBytes();
2296bf
+    }
2296bf
+
2296bf
     /**
2296bf
      * Constructs an unsigned PKCS #10 certificate request.  Before this
2296bf
      * request may be used, it must be encoded and signed.  Then it
7e9da4
@@ -303,13 +312,39 @@
2296bf
      */
2296bf
     public void print(PrintStream out)
2296bf
     throws IOException, SignatureException {
2296bf
+        print(out, false);
2296bf
+    }
2296bf
+
2296bf
+    /**
2296bf
+     * Prints an E-Mailable version of the certificate request on the print
2296bf
+     * stream passed.  The format is a common base64 encoded one, supported
2296bf
+     * by most Certificate Authorities because Netscape web servers have
2296bf
+     * used this for some time.  Some certificate authorities expect some
2296bf
+     * more information, in particular contact information for the web
2296bf
+     * server administrator.
2296bf
+     *
2296bf
+     * @param out the print stream where the certificate request
2296bf
+     *  will be printed.
2296bf
+     * @param systemLineEndings true if the request should be terminated
2296bf
+     *  using the system line endings.
2296bf
+     * @exception IOException when an output operation failed
2296bf
+     * @exception SignatureException when the certificate request was
2296bf
+     *  not yet signed.
2296bf
+     */
2296bf
+    public void print(PrintStream out, boolean systemLineEndings)
2296bf
+    throws IOException, SignatureException {
2296bf
+        byte[] lineEndings;
2296bf
+
2296bf
         if (encoded == null)
2296bf
             throw new SignatureException("Cert request was not signed");
2296bf
 
2296bf
+        if (systemLineEndings)
2296bf
+            lineEndings = sysLineEndings;
2296bf
+        else
2296bf
+            lineEndings = new byte[] {'\r', '\n'}; // CRLF
2296bf
 
8f84c8
-        byte[] CRLF = new byte[] {'\r', '\n'};
2296bf
         out.println("-----BEGIN NEW CERTIFICATE REQUEST-----");
8f84c8
-        out.println(Base64.getMimeEncoder(64, CRLF).encodeToString(encoded));
8f84c8
+        out.println(Base64.getMimeEncoder(64, lineEndings).encodeToString(encoded));
2296bf
         out.println("-----END NEW CERTIFICATE REQUEST-----");
2296bf
     }
2296bf
 
7e9da4
diff --git openjdk.orig/jdk/src/share/classes/sun/security/tools/keytool/Main.java openjdk/jdk/src/share/classes/sun/security/tools/keytool/Main.java
7e9da4
--- openjdk.orig/jdk/src/share/classes/sun/security/tools/keytool/Main.java
a42b25
+++ openjdk/jdk/src/share/classes/sun/security/tools/keytool/Main.java
7e9da4
@@ -126,6 +126,7 @@
2296bf
     private String infilename = null;
2296bf
     private String outfilename = null;
2296bf
     private String srcksfname = null;
2296bf
+    private boolean systemLineEndings = false;
2296bf
 
2296bf
     // User-specified providers are added before any command is called.
2296bf
     // However, they are not removed before the end of the main() method.
7e9da4
@@ -188,7 +189,7 @@
2296bf
         CERTREQ("Generates.a.certificate.request",
2296bf
             ALIAS, SIGALG, FILEOUT, KEYPASS, KEYSTORE, DNAME,
2296bf
             STOREPASS, STORETYPE, PROVIDERNAME, PROVIDERCLASS,
2296bf
-            PROVIDERARG, PROVIDERPATH, V, PROTECTED),
2296bf
+            PROVIDERARG, PROVIDERPATH, SYSTEMLINEENDINGS, V, PROTECTED),
2296bf
         CHANGEALIAS("Changes.an.entry.s.alias",
2296bf
             ALIAS, DESTALIAS, KEYPASS, KEYSTORE, STOREPASS,
2296bf
             STORETYPE, PROVIDERNAME, PROVIDERCLASS, PROVIDERARG,
7e9da4
@@ -321,6 +322,7 @@
2296bf
         STARTDATE("startdate", "<startdate>", "certificate.validity.start.date.time"),
2296bf
         STOREPASS("storepass", "<arg>", "keystore.password"),
2296bf
         STORETYPE("storetype", "<storetype>", "keystore.type"),
2296bf
+        SYSTEMLINEENDINGS("systemlineendings", null, "system.line.endings"),
2296bf
         TRUSTCACERTS("trustcacerts", null, "trust.certificates.from.cacerts"),
2296bf
         V("v", null, "verbose.output"),
2296bf
         VALIDITY("validity", "<valDays>", "validity.number.of.days");
7e9da4
@@ -561,6 +563,8 @@
2296bf
                 protectedPath = true;
2296bf
             } else if (collator.compare(flags, "-srcprotected") == 0) {
2296bf
                 srcprotectedPath = true;
2296bf
+            } else if (collator.compare(flags, "-systemlineendings") == 0) {
2296bf
+                systemLineEndings = true;
2296bf
             } else  {
2296bf
                 System.err.println(rb.getString("Illegal.option.") + flags);
2296bf
                 tinyHelp();
7e9da4
@@ -1464,7 +1468,7 @@
2296bf
 
2296bf
         // Sign the request and base-64 encode it
2296bf
         request.encodeAndSign(subject, signature);
2296bf
-        request.print(out);
2296bf
+        request.print(out, systemLineEndings);
2296bf
 
a42b25
         checkWeak(rb.getString("the.generated.certificate.request"), request);
a42b25
     }
7e9da4
@@ -4544,4 +4548,3 @@
2296bf
         return new Pair<>(a,b);
2296bf
     }
2296bf
 }
2296bf
-
7e9da4
diff --git openjdk.orig/jdk/src/share/classes/sun/security/tools/keytool/Resources.java openjdk/jdk/src/share/classes/sun/security/tools/keytool/Resources.java
7e9da4
--- openjdk.orig/jdk/src/share/classes/sun/security/tools/keytool/Resources.java
a42b25
+++ openjdk/jdk/src/share/classes/sun/security/tools/keytool/Resources.java
2296bf
@@ -168,6 +168,8 @@
2296bf
                 "keystore password"}, //-storepass
2296bf
         {"keystore.type",
2296bf
                 "keystore type"}, //-storetype
2296bf
+	{"system.line.endings",
2296bf
+	        "use system line endings rather than CRLF to terminate output"}, //-systemlineendings
2296bf
         {"trust.certificates.from.cacerts",
2296bf
                 "trust certificates from cacerts"}, //-trustcacerts
2296bf
         {"verbose.output",