summaryrefslogtreecommitdiffstats
path: root/content/browser/loader/certificate_resource_handler.cc
blob: b6226ca55107a8b864901f0d2af4ddfc76ba9810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/loader/certificate_resource_handler.h"

#include <limits.h>

#include "components/mime_util/mime_util.h"
#include "content/browser/loader/resource_request_info_impl.h"
#include "content/public/browser/content_browser_client.h"
#include "content/public/common/resource_response.h"
#include "net/base/io_buffer.h"
#include "net/url_request/url_request.h"
#include "net/url_request/url_request_status.h"

namespace content {

CertificateResourceHandler::CertificateResourceHandler(net::URLRequest* request)
    : ResourceHandler(request),
      buffer_(new net::GrowableIOBuffer),
      cert_type_(net::CERTIFICATE_MIME_TYPE_UNKNOWN) {
}

CertificateResourceHandler::~CertificateResourceHandler() {
}

bool CertificateResourceHandler::OnUploadProgress(uint64 position,
                                                  uint64 size) {
  return true;
}

bool CertificateResourceHandler::OnRequestRedirected(
    const net::RedirectInfo& redirect_info,
    ResourceResponse* resp,
    bool* defer) {
  return true;
}

bool CertificateResourceHandler::OnResponseStarted(ResourceResponse* resp,
                                                   bool* defer) {
  cert_type_ =
      mime_util::GetCertificateMimeTypeForMimeType(resp->head.mime_type);
  return cert_type_ != net::CERTIFICATE_MIME_TYPE_UNKNOWN;
}

bool CertificateResourceHandler::OnWillStart(const GURL& url, bool* defer) {
  return true;
}

bool CertificateResourceHandler::OnBeforeNetworkStart(const GURL& url,
                                                      bool* defer) {
  return true;
}

bool CertificateResourceHandler::OnWillRead(scoped_refptr<net::IOBuffer>* buf,
                                            int* buf_size,
                                            int min_size) {
  static const int kInitialBufferSizeInBytes = 32768;
  static const int kMaxCertificateSizeInBytes = 1024 * 1024;

  // TODO(gauravsh): Should we use 'min_size' here?
  DCHECK(buf);
  DCHECK(buf_size);

  if (buffer_->capacity() == 0) {
    buffer_->SetCapacity(kInitialBufferSizeInBytes);
  } else if (buffer_->RemainingCapacity() == 0) {
    int capacity = buffer_->capacity();
    if (capacity >= kMaxCertificateSizeInBytes)
      return false;
    static_assert(kMaxCertificateSizeInBytes < INT_MAX / 2,
                  "The size limit ensures the capacity remains in bounds.");
    capacity *= 2;
    if (capacity > kMaxCertificateSizeInBytes)
      capacity = kMaxCertificateSizeInBytes;
    buffer_->SetCapacity(capacity);
  }

  *buf = buffer_.get();
  *buf_size = buffer_->RemainingCapacity();

  return true;
}

bool CertificateResourceHandler::OnReadCompleted(int bytes_read, bool* defer) {
  DCHECK_LE(0, bytes_read);
  DCHECK_LE(bytes_read, buffer_->RemainingCapacity());
  if (!bytes_read)
    return true;

  buffer_->set_offset(buffer_->offset() + bytes_read);
  return true;
}

void CertificateResourceHandler::OnResponseCompleted(
    const net::URLRequestStatus& urs,
    const std::string& sec_info,
    bool* defer) {
  if (urs.status() != net::URLRequestStatus::SUCCESS)
    return;

  // Note that it's up to the browser to verify that the certificate
  // data is well-formed.
  const ResourceRequestInfo* info = GetRequestInfo();
  GetContentClient()->browser()->AddCertificate(
      cert_type_, buffer_->StartOfBuffer(),
      static_cast<size_t>(buffer_->offset()), info->GetChildID(),
      info->GetRenderFrameID());
}

void CertificateResourceHandler::OnDataDownloaded(int bytes_downloaded) {
  NOTREACHED();
}

}  // namespace content