CertificateCombinedException.java 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /* ownCloud Android client application
  2. * Copyright (C) 2012 Bartek Przybylski
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. package com.owncloud.android.network;
  19. import java.security.cert.CertPathValidatorException;
  20. import java.security.cert.CertificateException;
  21. import java.security.cert.CertificateExpiredException;
  22. import java.security.cert.CertificateNotYetValidException;
  23. import java.security.cert.X509Certificate;
  24. import javax.net.ssl.SSLPeerUnverifiedException;
  25. /**
  26. * Exception joining all the problems that {@link AdvancedX509TrustManager} can find in
  27. * a certificate chain for a server.
  28. *
  29. * This was initially created as an extension of CertificateException, but some
  30. * implementations of the SSL socket layer in existing devices are REPLACING the CertificateException
  31. * instances thrown by {@link javax.net.ssl.X509TrustManager#checkServerTrusted(X509Certificate[], String)}
  32. * with SSLPeerUnverifiedException FORGETTING THE CAUSING EXCEPTION instead of wrapping it.
  33. *
  34. * Due to this, extending RuntimeException is necessary to get that the CertificateCombinedException
  35. * instance reaches {@link AdvancedSslSocketFactory#verifyPeerIdentity}.
  36. *
  37. * BE CAREFUL. As a RuntimeException extensions, Java compilers do not require to handle it
  38. * in client methods. Be sure to use it only when you know exactly where it will go.
  39. *
  40. * @author David A. Velasco
  41. */
  42. public class CertificateCombinedException extends RuntimeException {
  43. /** Generated */
  44. private static final long serialVersionUID = -8875782030758554999L;
  45. private X509Certificate mServerCert = null;
  46. private String mHostInUrl;
  47. private CertificateExpiredException mCertificateExpiredException = null;
  48. private CertificateNotYetValidException mCertificateNotYetValidException = null;
  49. private CertPathValidatorException mCertPathValidatorException = null;
  50. private CertificateException mOtherCertificateException = null;
  51. private SSLPeerUnverifiedException mSslPeerUnverifiedException = null;
  52. public CertificateCombinedException(X509Certificate x509Certificate) {
  53. mServerCert = x509Certificate;
  54. }
  55. public X509Certificate getServerCertificate() {
  56. return mServerCert;
  57. }
  58. public String getHostInUrl() {
  59. return mHostInUrl;
  60. }
  61. public void setHostInUrl(String host) {
  62. mHostInUrl = host;
  63. }
  64. public CertificateExpiredException getCertificateExpiredException() {
  65. return mCertificateExpiredException;
  66. }
  67. public void setCertificateExpiredException(CertificateExpiredException c) {
  68. mCertificateExpiredException = c;
  69. }
  70. public CertificateNotYetValidException getCertificateNotYetValidException() {
  71. return mCertificateNotYetValidException;
  72. }
  73. public void setCertificateNotYetException(CertificateNotYetValidException c) {
  74. mCertificateNotYetValidException = c;
  75. }
  76. public CertPathValidatorException getCertPathValidatorException() {
  77. return mCertPathValidatorException;
  78. }
  79. public void setCertPathValidatorException(CertPathValidatorException c) {
  80. mCertPathValidatorException = c;
  81. }
  82. public CertificateException getOtherCertificateException() {
  83. return mOtherCertificateException;
  84. }
  85. public void setOtherCertificateException(CertificateException c) {
  86. mOtherCertificateException = c;
  87. }
  88. public SSLPeerUnverifiedException getSslPeerUnverifiedException() {
  89. return mSslPeerUnverifiedException ;
  90. }
  91. public void setSslPeerUnverifiedException(SSLPeerUnverifiedException s) {
  92. mSslPeerUnverifiedException = s;
  93. }
  94. public boolean isException() {
  95. return (mCertificateExpiredException != null ||
  96. mCertificateNotYetValidException != null ||
  97. mCertPathValidatorException != null ||
  98. mOtherCertificateException != null ||
  99. mSslPeerUnverifiedException != null);
  100. }
  101. public boolean isRecoverable() {
  102. return (mCertificateExpiredException != null ||
  103. mCertificateNotYetValidException != null ||
  104. mCertPathValidatorException != null ||
  105. mSslPeerUnverifiedException != null);
  106. }
  107. }