1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "sync/internal_api/public/http_bridge.h"
7 #include "base/message_loop/message_loop.h"
8 #include "base/strings/string_number_conversions.h"
9 #include "net/base/load_flags.h"
10 #include "net/base/net_errors.h"
11 #include "net/cookies/cookie_monster.h"
12 #include "net/http/http_cache.h"
13 #include "net/http/http_network_layer.h"
14 #include "net/http/http_response_headers.h"
15 #include "net/url_request/static_http_user_agent_settings.h"
16 #include "net/url_request/url_fetcher.h"
17 #include "net/url_request/url_request_context.h"
18 #include "net/url_request/url_request_job_factory_impl.h"
19 #include "net/url_request/url_request_status.h"
20 #include "sync/internal_api/public/base/cancelation_signal.h"
24 HttpBridge::RequestContextGetter::RequestContextGetter(
25 net::URLRequestContextGetter
* baseline_context_getter
,
26 const std::string
& user_agent
)
27 : baseline_context_getter_(baseline_context_getter
),
29 baseline_context_getter_
->GetNetworkTaskRunner()),
30 user_agent_(user_agent
) {
31 DCHECK(baseline_context_getter_
.get());
32 DCHECK(network_task_runner_
.get());
33 DCHECK(!user_agent_
.empty());
36 HttpBridge::RequestContextGetter::~RequestContextGetter() {}
38 net::URLRequestContext
*
39 HttpBridge::RequestContextGetter::GetURLRequestContext() {
40 // Lazily create the context.
42 net::URLRequestContext
* baseline_context
=
43 baseline_context_getter_
->GetURLRequestContext();
45 new RequestContext(baseline_context
, GetNetworkTaskRunner(),
47 baseline_context_getter_
= NULL
;
50 return context_
.get();
53 scoped_refptr
<base::SingleThreadTaskRunner
>
54 HttpBridge::RequestContextGetter::GetNetworkTaskRunner() const {
55 return network_task_runner_
;
58 HttpBridgeFactory::HttpBridgeFactory(
59 net::URLRequestContextGetter
* baseline_context_getter
,
60 const NetworkTimeUpdateCallback
& network_time_update_callback
,
61 CancelationSignal
* cancelation_signal
)
62 : baseline_request_context_getter_(baseline_context_getter
),
63 network_time_update_callback_(network_time_update_callback
),
64 cancelation_signal_(cancelation_signal
) {
65 // Registration should never fail. This should happen on the UI thread during
66 // init. It would be impossible for a shutdown to have been requested at this
68 bool result
= cancelation_signal_
->TryRegisterHandler(this);
72 HttpBridgeFactory::~HttpBridgeFactory() {
73 cancelation_signal_
->UnregisterHandler(this);
76 void HttpBridgeFactory::Init(const std::string
& user_agent
) {
77 base::AutoLock
lock(context_getter_lock_
);
79 if (!baseline_request_context_getter_
.get()) {
80 // Uh oh. We've been aborted before we finished initializing. There's no
81 // point in initializating further; let's just return right away.
85 request_context_getter_
=
86 new HttpBridge::RequestContextGetter(
87 baseline_request_context_getter_
, user_agent
);
90 HttpPostProviderInterface
* HttpBridgeFactory::Create() {
91 base::AutoLock
lock(context_getter_lock_
);
93 // If we've been asked to shut down (something which may happen asynchronously
94 // and at pretty much any time), then we won't have a request_context_getter_.
95 // Some external mechanism must ensure that this function is not called after
96 // we've been asked to shut down.
97 CHECK(request_context_getter_
.get());
99 HttpBridge
* http
= new HttpBridge(request_context_getter_
.get(),
100 network_time_update_callback_
);
105 void HttpBridgeFactory::Destroy(HttpPostProviderInterface
* http
) {
106 static_cast<HttpBridge
*>(http
)->Release();
109 void HttpBridgeFactory::OnSignalReceived() {
110 base::AutoLock
lock(context_getter_lock_
);
111 // Release |baseline_request_context_getter_| as soon as possible so that it
112 // is destroyed in the right order on its network task runner. The
113 // |request_context_getter_| has a reference to the baseline, so we must
114 // drop our reference to it, too.
115 baseline_request_context_getter_
= NULL
;
116 request_context_getter_
= NULL
;
119 HttpBridge::RequestContext::RequestContext(
120 net::URLRequestContext
* baseline_context
,
121 const scoped_refptr
<base::SingleThreadTaskRunner
>&
123 const std::string
& user_agent
)
124 : baseline_context_(baseline_context
),
125 network_task_runner_(network_task_runner
),
126 job_factory_(new net::URLRequestJobFactoryImpl()) {
127 DCHECK(!user_agent
.empty());
129 // Create empty, in-memory cookie store.
130 set_cookie_store(new net::CookieMonster(NULL
, NULL
));
132 // We don't use a cache for bridged loads, but we do want to share proxy info.
133 set_host_resolver(baseline_context
->host_resolver());
134 set_proxy_service(baseline_context
->proxy_service());
135 set_ssl_config_service(baseline_context
->ssl_config_service());
137 // Use its own job factory, which only supports http and https.
138 set_job_factory(job_factory_
.get());
140 // We want to share the HTTP session data with the network layer factory,
141 // which includes auth_cache for proxies.
142 // Session is not refcounted so we need to be careful to not lose the parent
144 net::HttpNetworkSession
* session
=
145 baseline_context
->http_transaction_factory()->GetSession();
147 set_http_transaction_factory(new net::HttpNetworkLayer(session
));
149 // TODO(timsteele): We don't currently listen for pref changes of these
150 // fields or CookiePolicy; I'm not sure we want to strictly follow the
151 // default settings, since for example if the user chooses to block all
152 // cookies, sync will start failing. Also it seems like accept_lang/charset
153 // should be tied to whatever the sync servers expect (if anything). These
154 // fields should probably just be settable by sync backend; though we should
155 // figure out if we need to give the user explicit control over policies etc.
156 std::string accepted_language_list
;
157 if (baseline_context
->http_user_agent_settings()) {
158 accepted_language_list
=
159 baseline_context
->http_user_agent_settings()->GetAcceptLanguage();
161 http_user_agent_settings_
.reset(new net::StaticHttpUserAgentSettings(
162 accepted_language_list
,
164 set_http_user_agent_settings(http_user_agent_settings_
.get());
166 set_net_log(baseline_context
->net_log());
169 HttpBridge::RequestContext::~RequestContext() {
170 DCHECK(network_task_runner_
->BelongsToCurrentThread());
171 delete http_transaction_factory();
174 HttpBridge::URLFetchState::URLFetchState() : url_poster(NULL
),
176 request_completed(false),
177 request_succeeded(false),
178 http_response_code(-1),
180 HttpBridge::URLFetchState::~URLFetchState() {}
182 HttpBridge::HttpBridge(
183 HttpBridge::RequestContextGetter
* context_getter
,
184 const NetworkTimeUpdateCallback
& network_time_update_callback
)
185 : created_on_loop_(base::MessageLoop::current()),
186 http_post_completed_(false, false),
187 context_getter_for_request_(context_getter
),
188 network_task_runner_(
189 context_getter_for_request_
->GetNetworkTaskRunner()),
190 network_time_update_callback_(network_time_update_callback
) {
193 HttpBridge::~HttpBridge() {
196 void HttpBridge::SetExtraRequestHeaders(const char * headers
) {
197 DCHECK(extra_headers_
.empty())
198 << "HttpBridge::SetExtraRequestHeaders called twice.";
199 extra_headers_
.assign(headers
);
202 void HttpBridge::SetURL(const char* url
, int port
) {
204 DCHECK_EQ(base::MessageLoop::current(), created_on_loop_
);
206 base::AutoLock
lock(fetch_state_lock_
);
207 DCHECK(!fetch_state_
.request_completed
);
209 DCHECK(url_for_request_
.is_empty())
210 << "HttpBridge::SetURL called more than once?!";
213 GURL::Replacements replacements
;
214 std::string port_str
= base::IntToString(port
);
215 replacements
.SetPort(port_str
.c_str(), url::Component(0, port_str
.length()));
216 url_for_request_
= temp
.ReplaceComponents(replacements
);
219 void HttpBridge::SetPostPayload(const char* content_type
,
221 const char* content
) {
223 DCHECK_EQ(base::MessageLoop::current(), created_on_loop_
);
225 base::AutoLock
lock(fetch_state_lock_
);
226 DCHECK(!fetch_state_
.request_completed
);
228 DCHECK(content_type_
.empty()) << "Bridge payload already set.";
229 DCHECK_GE(content_length
, 0) << "Content length < 0";
231 content_type_
= content_type
;
232 if (!content
|| (content_length
== 0)) {
233 DCHECK_EQ(content_length
, 0);
234 request_content_
= " "; // TODO(timsteele): URLFetcher requires non-empty
235 // content for POSTs whereas CURL does not, for now
236 // we hack this to support the sync backend.
238 request_content_
.assign(content
, content_length
);
242 bool HttpBridge::MakeSynchronousPost(int* error_code
, int* response_code
) {
244 DCHECK_EQ(base::MessageLoop::current(), created_on_loop_
);
246 base::AutoLock
lock(fetch_state_lock_
);
247 DCHECK(!fetch_state_
.request_completed
);
249 DCHECK(url_for_request_
.is_valid()) << "Invalid URL for request";
250 DCHECK(!content_type_
.empty()) << "Payload not set";
253 if (!network_task_runner_
->PostTask(
255 base::Bind(&HttpBridge::CallMakeAsynchronousPost
, this))) {
256 // This usually happens when we're in a unit test.
257 LOG(WARNING
) << "Could not post CallMakeAsynchronousPost task";
261 // Block until network request completes or is aborted. See
262 // OnURLFetchComplete and Abort.
263 http_post_completed_
.Wait();
265 base::AutoLock
lock(fetch_state_lock_
);
266 DCHECK(fetch_state_
.request_completed
|| fetch_state_
.aborted
);
267 *error_code
= fetch_state_
.error_code
;
268 *response_code
= fetch_state_
.http_response_code
;
269 return fetch_state_
.request_succeeded
;
272 void HttpBridge::MakeAsynchronousPost() {
273 DCHECK(network_task_runner_
->BelongsToCurrentThread());
274 base::AutoLock
lock(fetch_state_lock_
);
275 DCHECK(!fetch_state_
.request_completed
);
276 if (fetch_state_
.aborted
)
279 DCHECK(context_getter_for_request_
.get());
280 fetch_state_
.url_poster
= net::URLFetcher::Create(
281 url_for_request_
, net::URLFetcher::POST
, this);
282 fetch_state_
.url_poster
->SetRequestContext(context_getter_for_request_
.get());
283 fetch_state_
.url_poster
->SetUploadData(content_type_
, request_content_
);
284 fetch_state_
.url_poster
->SetExtraRequestHeaders(extra_headers_
);
285 fetch_state_
.url_poster
->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES
);
286 fetch_state_
.start_time
= base::Time::Now();
287 fetch_state_
.url_poster
->Start();
290 int HttpBridge::GetResponseContentLength() const {
291 DCHECK_EQ(base::MessageLoop::current(), created_on_loop_
);
292 base::AutoLock
lock(fetch_state_lock_
);
293 DCHECK(fetch_state_
.request_completed
);
294 return fetch_state_
.response_content
.size();
297 const char* HttpBridge::GetResponseContent() const {
298 DCHECK_EQ(base::MessageLoop::current(), created_on_loop_
);
299 base::AutoLock
lock(fetch_state_lock_
);
300 DCHECK(fetch_state_
.request_completed
);
301 return fetch_state_
.response_content
.data();
304 const std::string
HttpBridge::GetResponseHeaderValue(
305 const std::string
& name
) const {
307 DCHECK_EQ(base::MessageLoop::current(), created_on_loop_
);
308 base::AutoLock
lock(fetch_state_lock_
);
309 DCHECK(fetch_state_
.request_completed
);
312 fetch_state_
.response_headers
->EnumerateHeader(NULL
, name
, &value
);
316 void HttpBridge::Abort() {
317 base::AutoLock
lock(fetch_state_lock_
);
319 // Release |request_context_getter_| as soon as possible so that it is
320 // destroyed in the right order on its network task runner.
321 context_getter_for_request_
= NULL
;
323 DCHECK(!fetch_state_
.aborted
);
324 if (fetch_state_
.aborted
|| fetch_state_
.request_completed
)
327 fetch_state_
.aborted
= true;
328 if (!network_task_runner_
->PostTask(
330 base::Bind(&HttpBridge::DestroyURLFetcherOnIOThread
, this,
331 fetch_state_
.url_poster
))) {
333 NOTREACHED() << "Could not post task to delete URLFetcher";
336 fetch_state_
.url_poster
= NULL
;
337 fetch_state_
.error_code
= net::ERR_ABORTED
;
338 http_post_completed_
.Signal();
341 void HttpBridge::DestroyURLFetcherOnIOThread(net::URLFetcher
* fetcher
) {
342 DCHECK(network_task_runner_
->BelongsToCurrentThread());
346 void HttpBridge::OnURLFetchComplete(const net::URLFetcher
* source
) {
347 DCHECK(network_task_runner_
->BelongsToCurrentThread());
348 base::AutoLock
lock(fetch_state_lock_
);
349 if (fetch_state_
.aborted
)
352 fetch_state_
.end_time
= base::Time::Now();
353 fetch_state_
.request_completed
= true;
354 fetch_state_
.request_succeeded
=
355 (net::URLRequestStatus::SUCCESS
== source
->GetStatus().status());
356 fetch_state_
.http_response_code
= source
->GetResponseCode();
357 fetch_state_
.error_code
= source
->GetStatus().error();
359 // Use a real (non-debug) log to facilitate troubleshooting in the wild.
360 VLOG(2) << "HttpBridge::OnURLFetchComplete for: "
361 << fetch_state_
.url_poster
->GetURL().spec();
362 VLOG(1) << "HttpBridge received response code: "
363 << fetch_state_
.http_response_code
;
365 source
->GetResponseAsString(&fetch_state_
.response_content
);
366 fetch_state_
.response_headers
= source
->GetResponseHeaders();
369 // End of the line for url_poster_. It lives only on the IO loop.
370 // We defer deletion because we're inside a callback from a component of the
371 // URLFetcher, so it seems most natural / "polite" to let the stack unwind.
372 base::MessageLoop::current()->DeleteSoon(FROM_HERE
, fetch_state_
.url_poster
);
373 fetch_state_
.url_poster
= NULL
;
375 // Wake the blocked syncer thread in MakeSynchronousPost.
376 // WARNING: DONT DO ANYTHING AFTER THIS CALL! |this| may be deleted!
377 http_post_completed_
.Signal();
380 net::URLRequestContextGetter
* HttpBridge::GetRequestContextGetterForTest()
382 base::AutoLock
lock(fetch_state_lock_
);
383 return context_getter_for_request_
.get();
386 void HttpBridge::UpdateNetworkTime() {
387 std::string sane_time_str
;
388 if (!fetch_state_
.request_succeeded
|| fetch_state_
.start_time
.is_null() ||
389 fetch_state_
.end_time
< fetch_state_
.start_time
||
390 !fetch_state_
.response_headers
->EnumerateHeader(NULL
, "Sane-Time-Millis",
395 int64 sane_time_ms
= 0;
396 if (base::StringToInt64(sane_time_str
, &sane_time_ms
)) {
397 network_time_update_callback_
.Run(
398 base::Time::FromJsTime(sane_time_ms
),
399 base::TimeDelta::FromMilliseconds(1),
400 fetch_state_
.end_time
- fetch_state_
.start_time
);
404 } // namespace syncer