summaryrefslogtreecommitdiffstats
path: root/net/ocsp
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-02 16:03:56 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-02 16:03:56 +0000
commit65ccfa27c948c295e039480610192af60b3cb1ce (patch)
tree7c6e2b8ad0f40b6b4ebff2c4b2ecba8fd2eeacb9 /net/ocsp
parent79d2c56f095e9324e9e7bb85950cfae5b3c84164 (diff)
downloadchromium_src-65ccfa27c948c295e039480610192af60b3cb1ce.zip
chromium_src-65ccfa27c948c295e039480610192af60b3cb1ce.tar.gz
chromium_src-65ccfa27c948c295e039480610192af60b3cb1ce.tar.bz2
Revert "net: Change how we detect OCSP vs CRL requests from NSS."
(Builder compilers are dumb.) git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51538 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/ocsp')
-rw-r--r--net/ocsp/nss_ocsp.cc81
1 files changed, 24 insertions, 57 deletions
diff --git a/net/ocsp/nss_ocsp.cc b/net/ocsp/nss_ocsp.cc
index cc991ad..6f8f1c3 100644
--- a/net/ocsp/nss_ocsp.cc
+++ b/net/ocsp/nss_ocsp.cc
@@ -599,11 +599,7 @@ SECStatus OCSPTrySendAndReceive(SEC_HTTP_REQUEST_SESSION request,
const char** http_response_headers,
const char** http_response_data,
PRUint32* http_response_data_len) {
- if (http_response_data_len) {
- // We must always set an output value, even on failure. The output value 0
- // means the failure was unrelated to the acceptable response data length.
- *http_response_data_len = 0;
- }
+ base::Time start_time, end_time;
LOG(INFO) << "OCSP try send and receive";
DCHECK(!MessageLoop::current());
@@ -616,69 +612,40 @@ SECStatus OCSPTrySendAndReceive(SEC_HTTP_REQUEST_SESSION request,
// We support blocking mode only, so this function shouldn't be called
// again when req has stareted or finished.
NOTREACHED();
- PORT_SetError(SEC_ERROR_BAD_HTTP_RESPONSE); // Simple approximation.
- return SECFailure;
+ goto failed;
}
- const base::Time start_time = base::Time::Now();
+ start_time = base::Time::Now();
req->Start();
- if (!req->Wait() || req->http_response_code() == static_cast<PRUint16>(-1)) {
- // If the response code is -1, the request failed and there is no response.
- PORT_SetError(SEC_ERROR_BAD_HTTP_RESPONSE); // Simple approximation.
- return SECFailure;
- }
- const base::TimeDelta duration = base::Time::Now() - start_time;
-
- // We want to know if this was:
- // 1) An OCSP request
- // 2) A CRL request
- // 3) A request for a missing intermediate certificate
- // There's no sure way to do this, so we use heuristics like MIME type and
- // URL.
- const char* mime_type = req->http_response_content_type().c_str();
- bool is_ocsp_resp =
- strcasecmp(mime_type, "application/ocsp-response") == 0;
- bool is_crl_resp = strcasecmp(mime_type, "application/x-pkcs7-crl") == 0 ||
- strcasecmp(mime_type, "application/x-x509-crl") == 0 ||
- strcasecmp(mime_type, "application/pkix-crl") == 0;
- bool is_crt_resp =
- strcasecmp(mime_type, "application/x-x509-ca-cert") == 0 ||
- strcasecmp(mime_type, "application/x-x509-server-cert") == 0 ||
- strcasecmp(mime_type, "application/pkix-cert") == 0 ||
- strcasecmp(mime_type, "application/pkcs7-mime") == 0;
- bool known_resp_type = is_crt_resp || is_crt_resp || is_ocsp_resp;
-
- bool crl_in_url, crt_in_url, ocsp_in_url, have_url_hint;
- if (!known_resp_type) {
- const char* path = req->url().path().c_str();
- const char* host = req->url().host().c_str();
- crl_in_url = strcasestr(path, ".crl") != NULL;
- crt_in_url = strcasestr(path, ".crt") != NULL ||
- strcasestr(path, ".p7c") != NULL ||
- strcasestr(path, ".cer") != NULL;
- ocsp_in_url = strcasestr(host, "ocsp") != NULL;
- have_url_hint = crl_in_url || crt_in_url || ocsp_in_url;
- }
-
- if (is_ocsp_resp ||
- (!known_resp_type && (ocsp_in_url ||
- (!have_url_hint &&
- req->http_request_method() == "POST")))) {
- UMA_HISTOGRAM_TIMES("Net.OCSPRequestTimeMs", duration);
- } else if (is_crl_resp || (!known_resp_type && crl_in_url)) {
- UMA_HISTOGRAM_TIMES("Net.CRLRequestTimeMs", duration);
- } else if (is_crt_resp || (!known_resp_type && crt_in_url)) {
- UMA_HISTOGRAM_TIMES("Net.CRTRequestTimeMs", duration);
- } else {
- UMA_HISTOGRAM_TIMES("Net.UnknownTypeRequestTimeMs", duration);
+ if (!req->Wait())
+ goto failed;
+ end_time = base::Time::Now();
+
+ if (req->http_request_method() == "POST") {
+ UMA_HISTOGRAM_TIMES("Net.OCSPRequestTimeMs", end_time - start_time);
+ } else if (req->http_request_method() == "GET") {
+ UMA_HISTOGRAM_TIMES("Net.CRLRequestTimeMs", end_time - start_time);
}
+ // If the response code is -1, the request failed and there is no response.
+ if (req->http_response_code() == static_cast<PRUint16>(-1))
+ goto failed;
+
return OCSPSetResponse(
req, http_response_code,
http_response_content_type,
http_response_headers,
http_response_data,
http_response_data_len);
+
+ failed:
+ if (http_response_data_len) {
+ // We must always set an output value, even on failure. The output value 0
+ // means the failure was unrelated to the acceptable response data length.
+ *http_response_data_len = 0;
+ }
+ PORT_SetError(SEC_ERROR_BAD_HTTP_RESPONSE); // Simple approximation.
+ return SECFailure;
}
SECStatus OCSPFree(SEC_HTTP_REQUEST_SESSION request) {