google-cloud-functionsssl-certificatesslhandshakeexception

Google cloud function - trying 2 way ssl handshake but getting error unable to find valid certification path to requested target


I have my own clients Private key and certificate which I have put in keystore, and servers public certificate root and intermediate I have created truststore and put them into it. I am trying to ssl handshake but not able to do so. I have below code snippet not sure what went wrong

KeyManagerFactory kmf = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
                KeyStore keystore = KeyStore.getInstance("JKS");
                keystore.load(keystoreStream, "mypass".toCharArray());
                kmf.init(keystore, "mypass".toCharArray());
                KeyManager[] keyManagers = kmf.getKeyManagers();
                keystoreStream.close();
                keystoreStream = null;
                
                
                TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
                KeyStore truststore = KeyStore.getInstance("JKS");
                truststore.load(truststoreStream, "mypass".toCharArray());
                tmf.init(truststore);
                TrustManager[] trustManagers = tmf.getTrustManagers();
                truststoreStream.close();
                truststoreStream = null;
                
                SSLContext sslContext = SSLContext.getInstance("SSL");
                sslContext.init(keyManagers, trustManagers, null);
                
                if (urlConnection instanceof HttpsURLConnection) {
                    HttpsURLConnection httpURLConnection = (HttpsURLConnection) urlConnection;
                    httpURLConnection.setRequestMethod("POST");
                    httpURLConnection.setSSLSocketFactory(sslContext.getSocketFactory());
                    //error on below line                   
                    httpURLConnection.connect();

                    OutputStreamWriter wr = new OutputStreamWriter(urlConnection.getOutputStream());
                    wr.write(requestData.toString());
                    wr.flush();

                    responseCode = httpURLConnection.getResponseCode();
                }
            }

Error -

javax.net.ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target


Solution

  • The problem is caused by a certificate that is self-signed (a Certificate Authority did not sign it) or a certificate chain that does not exist within the Java truststore.

    As a workaround, you can add this certificate to the list of trusted certificates of your JVM.