Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(751)

Unified Diff: net/ssl/openssl_ssl_util.h

Issue 494913002: Include better OpenSSL error information in NetLog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rsleevi comments Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/socket/ssl_server_socket_openssl.cc ('k') | net/ssl/openssl_ssl_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/openssl_ssl_util.h
diff --git a/net/ssl/openssl_ssl_util.h b/net/ssl/openssl_ssl_util.h
index 6721453e07febac63741d9f5c319f77a9eb31666..587dac82e9e0775ce159655296a8c1ff643245b3 100644
--- a/net/ssl/openssl_ssl_util.h
+++ b/net/ssl/openssl_ssl_util.h
@@ -5,6 +5,8 @@
#ifndef NET_SSL_OPENSSL_SSL_UTIL_H_
#define NET_SSL_OPENSSL_SSL_UTIL_H_
+#include "net/base/net_log.h"
+
namespace crypto {
class OpenSSLErrStackTracer;
}
@@ -30,11 +32,40 @@ struct SslSetClearMask {
};
// Converts an OpenSSL error code into a net error code, walking the OpenSSL
-// error stack if needed. Note that |tracer| is not currently used in the
-// implementation, but is passed in anyway as this ensures the caller will clear
-// any residual codes left on the error stack.
+// error stack if needed.
+//
+// Note that |tracer| is not currently used in the implementation, but is passed
+// in anyway as this ensures the caller will clear any residual codes left on
+// the error stack.
int MapOpenSSLError(int err, const crypto::OpenSSLErrStackTracer& tracer);
+// Helper struct to store information about an OpenSSL error stack entry.
+struct OpenSSLErrorInfo {
+ OpenSSLErrorInfo();
Ryan Sleevi 2014/08/26 22:38:01 An inline ctor is fine here, it's all POD, and no
davidben 2014/08/27 15:48:22 Done. Also set *out_error_info = OpenSSLErrorInfo(
+
+ uint32_t error_code;
+ const char* file;
+ int line;
+};
+
+// Converts an OpenSSL error code into a net error code, walking the OpenSSL
+// error stack if needed. If a value on the stack is used, the error code and
+// associated information are returned in |*out_error_info|. Otherwise its
+// fields are set to 0 and NULL.
+//
+// Note that |tracer| is not currently used in the implementation, but is passed
+// in anyway as this ensures the caller will clear any residual codes left on
+// the error stack.
+int MapOpenSSLErrorWithDetails(int err,
+ const crypto::OpenSSLErrStackTracer& tracer,
+ OpenSSLErrorInfo* out_error_info);
+
+// Creates NetLog callback for an OpenSSL error.
+NetLog::ParametersCallback CreateNetLogOpenSSLErrorCallback(
+ int net_error,
+ int ssl_error,
+ const OpenSSLErrorInfo& error_info);
+
} // namespace net
#endif // NET_SSL_OPENSSL_SSL_UTIL_H_
« no previous file with comments | « net/socket/ssl_server_socket_openssl.cc ('k') | net/ssl/openssl_ssl_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698