blob: 2502b6dda5da0ce9f37717d7bee05b4524cb46fb [file] [log] [blame]
rspangler@google.com49fdf182009-10-10 00:57:34 +00001// Copyright (c) 2009 The Chromium OS 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.
4
rspangler@google.com49fdf182009-10-10 00:57:34 +00005#include "update_engine/libcurl_http_fetcher.h"
Andrew de los Reyesd57d1472010-10-21 13:34:08 -07006
adlr@google.comc98a7ed2009-12-04 18:54:03 +00007#include <algorithm>
Andrew de los Reyesd57d1472010-10-21 13:34:08 -07008#include <string>
9
10#include <base/logging.h>
11
Andrew de los Reyes45168102010-11-22 11:13:50 -080012#include "update_engine/chrome_proxy_resolver.h"
Andrew de los Reyesd57d1472010-10-21 13:34:08 -070013#include "update_engine/dbus_interface.h"
14#include "update_engine/flimflam_proxy.h"
15#include "update_engine/utils.h"
adlr@google.comc98a7ed2009-12-04 18:54:03 +000016
17using std::max;
18using std::make_pair;
Andrew de los Reyesd57d1472010-10-21 13:34:08 -070019using std::string;
rspangler@google.com49fdf182009-10-10 00:57:34 +000020
21// This is a concrete implementation of HttpFetcher that uses libcurl to do the
22// http work.
23
24namespace chromeos_update_engine {
25
Andrew de los Reyes9bbd1872010-07-16 14:52:29 -070026namespace {
27const int kMaxRetriesCount = 20;
Andrew de los Reyes5d0783d2010-11-29 18:14:16 -080028const int kNoNetworkRetrySeconds = 10;
Ken Mixterb2bf1222010-11-18 17:29:38 -080029const char kCACertificatesPath[] = "/usr/share/chromeos-ca-certificates";
Andrew de los Reyesd57d1472010-10-21 13:34:08 -070030} // namespace {}
Andrew de los Reyes9bbd1872010-07-16 14:52:29 -070031
rspangler@google.com49fdf182009-10-10 00:57:34 +000032LibcurlHttpFetcher::~LibcurlHttpFetcher() {
Darin Petkov9ce452b2010-11-17 14:33:28 -080033 LOG_IF(ERROR, transfer_in_progress_)
34 << "Destroying the fetcher while a transfer is in progress.";
rspangler@google.com49fdf182009-10-10 00:57:34 +000035 CleanUp();
36}
37
Andrew de los Reyesd57d1472010-10-21 13:34:08 -070038// On error, returns false.
39bool LibcurlHttpFetcher::ConnectionIsExpensive() const {
40 if (force_connection_type_)
41 return forced_expensive_connection_;
42 NetworkConnectionType type;
43 ConcreteDbusGlib dbus_iface;
44 TEST_AND_RETURN_FALSE(FlimFlamProxy::GetConnectionType(&dbus_iface, &type));
45 LOG(INFO) << "We are connected via "
46 << FlimFlamProxy::StringForConnectionType(type);
47 return FlimFlamProxy::IsExpensiveConnectionType(type);
48}
49
Darin Petkovfc7a0ce2010-10-25 10:38:37 -070050bool LibcurlHttpFetcher::IsOfficialBuild() const {
51 return force_build_type_ ? forced_official_build_ : utils::IsOfficialBuild();
52}
53
adlr@google.comc98a7ed2009-12-04 18:54:03 +000054void LibcurlHttpFetcher::ResumeTransfer(const std::string& url) {
Andrew de los Reyes3270f742010-07-15 22:28:14 -070055 LOG(INFO) << "Starting/Resuming transfer";
rspangler@google.com49fdf182009-10-10 00:57:34 +000056 CHECK(!transfer_in_progress_);
57 url_ = url;
58 curl_multi_handle_ = curl_multi_init();
59 CHECK(curl_multi_handle_);
60
61 curl_handle_ = curl_easy_init();
62 CHECK(curl_handle_);
63
Andrew de los Reyes45168102010-11-22 11:13:50 -080064 CHECK(HasProxy());
65 LOG(INFO) << "Using proxy: " << GetCurrentProxy();
66 if (GetCurrentProxy() == kNoProxy) {
67 CHECK_EQ(curl_easy_setopt(curl_handle_,
68 CURLOPT_PROXY,
69 ""), CURLE_OK);
70 } else {
71 CHECK_EQ(curl_easy_setopt(curl_handle_,
72 CURLOPT_PROXY,
73 GetCurrentProxy().c_str()), CURLE_OK);
74 // Curl seems to require us to set the protocol
75 curl_proxytype type;
76 if (ChromeProxyResolver::GetProxyType(GetCurrentProxy(), &type)) {
77 CHECK_EQ(curl_easy_setopt(curl_handle_,
78 CURLOPT_PROXYTYPE,
79 type), CURLE_OK);
80 }
81 }
82
rspangler@google.com49fdf182009-10-10 00:57:34 +000083 if (post_data_set_) {
adlr@google.comc98a7ed2009-12-04 18:54:03 +000084 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_POST, 1), CURLE_OK);
85 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_POSTFIELDS,
86 &post_data_[0]),
87 CURLE_OK);
88 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_POSTFIELDSIZE,
89 post_data_.size()),
90 CURLE_OK);
rspangler@google.com49fdf182009-10-10 00:57:34 +000091 }
92
adlr@google.comc98a7ed2009-12-04 18:54:03 +000093 if (bytes_downloaded_ > 0) {
94 // Resume from where we left off
95 resume_offset_ = bytes_downloaded_;
96 CHECK_EQ(curl_easy_setopt(curl_handle_,
97 CURLOPT_RESUME_FROM_LARGE,
98 bytes_downloaded_), CURLE_OK);
99 }
100
101 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_WRITEDATA, this), CURLE_OK);
102 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_WRITEFUNCTION,
103 StaticLibcurlWrite), CURLE_OK);
Andrew de los Reyesd57d1472010-10-21 13:34:08 -0700104
105 string url_to_use(url_);
106 if (ConnectionIsExpensive()) {
107 LOG(INFO) << "Not initiating HTTP connection b/c we are on an expensive"
108 << " connection";
109 url_to_use = ""; // Sabotage the URL
110 }
111
Darin Petkovfc7a0ce2010-10-25 10:38:37 -0700112 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_URL, url_to_use.c_str()),
Andrew de los Reyesd57d1472010-10-21 13:34:08 -0700113 CURLE_OK);
Andrew de los Reyes3270f742010-07-15 22:28:14 -0700114
Darin Petkov192ced42010-07-23 16:20:24 -0700115 // If the connection drops under 10 bytes/sec for 3 minutes, reconnect.
Andrew de los Reyes3270f742010-07-15 22:28:14 -0700116 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_LOW_SPEED_LIMIT, 10),
117 CURLE_OK);
Darin Petkov192ced42010-07-23 16:20:24 -0700118 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_LOW_SPEED_TIME, 3 * 60),
Andrew de los Reyes3270f742010-07-15 22:28:14 -0700119 CURLE_OK);
120
Darin Petkov41c2fcf2010-08-25 13:14:48 -0700121 // By default, libcurl doesn't follow redirections. Allow up to
122 // |kMaxRedirects| redirections.
Darin Petkov3a4016a2010-09-28 13:54:17 -0700123 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_FOLLOWLOCATION, 1), CURLE_OK);
Darin Petkov41c2fcf2010-08-25 13:14:48 -0700124 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_MAXREDIRS, kMaxRedirects),
125 CURLE_OK);
126
Darin Petkove237d192010-11-16 10:26:08 -0800127 // Security lock-down in official builds: makes sure that peer certificate
128 // verification is enabled, restricts the set of trusted certificates,
129 // restricts protocols to HTTPS, restricts ciphers to HIGH.
Darin Petkovfc7a0ce2010-10-25 10:38:37 -0700130 if (IsOfficialBuild()) {
Darin Petkove237d192010-11-16 10:26:08 -0800131 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_SSL_VERIFYPEER, 1),
132 CURLE_OK);
133 CHECK_EQ(curl_easy_setopt(curl_handle_,
134 CURLOPT_CAPATH,
135 kCACertificatesPath),
136 CURLE_OK);
Darin Petkovfc7a0ce2010-10-25 10:38:37 -0700137 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_PROTOCOLS, CURLPROTO_HTTPS),
138 CURLE_OK);
139 CHECK_EQ(curl_easy_setopt(curl_handle_,
140 CURLOPT_REDIR_PROTOCOLS,
141 CURLPROTO_HTTPS),
142 CURLE_OK);
Darin Petkove237d192010-11-16 10:26:08 -0800143 CHECK_EQ(curl_easy_setopt(curl_handle_, CURLOPT_SSL_CIPHER_LIST, "HIGH"),
144 CURLE_OK);
Darin Petkovfc7a0ce2010-10-25 10:38:37 -0700145 }
146
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000147 CHECK_EQ(curl_multi_add_handle(curl_multi_handle_, curl_handle_), CURLM_OK);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000148 transfer_in_progress_ = true;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000149}
150
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000151// Begins the transfer, which must not have already been started.
152void LibcurlHttpFetcher::BeginTransfer(const std::string& url) {
153 transfer_size_ = -1;
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000154 resume_offset_ = 0;
Andrew de los Reyes9bbd1872010-07-16 14:52:29 -0700155 retry_count_ = 0;
Darin Petkova0929552010-11-29 14:19:06 -0800156 no_network_retry_count_ = 0;
Darin Petkovcb466212010-08-26 09:40:11 -0700157 http_response_code_ = 0;
Andrew de los Reyes45168102010-11-22 11:13:50 -0800158 ResolveProxiesForUrl(url);
Andrew de los Reyes9bbd1872010-07-16 14:52:29 -0700159 ResumeTransfer(url);
160 CurlPerformOnce();
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000161}
162
Darin Petkov9ce452b2010-11-17 14:33:28 -0800163void LibcurlHttpFetcher::ForceTransferTermination() {
164 CleanUp();
165 if (delegate_) {
166 // Note that after the callback returns this object may be destroyed.
167 delegate_->TransferTerminated(this);
168 }
169}
170
rspangler@google.com49fdf182009-10-10 00:57:34 +0000171void LibcurlHttpFetcher::TerminateTransfer() {
Darin Petkov9ce452b2010-11-17 14:33:28 -0800172 if (in_write_callback_) {
Andrew de los Reyes3fd5d302010-10-07 20:07:18 -0700173 terminate_requested_ = true;
Darin Petkov9ce452b2010-11-17 14:33:28 -0800174 } else {
175 ForceTransferTermination();
176 }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000177}
178
Andrew de los Reyescb319332010-07-19 10:55:01 -0700179void LibcurlHttpFetcher::CurlPerformOnce() {
rspangler@google.com49fdf182009-10-10 00:57:34 +0000180 CHECK(transfer_in_progress_);
181 int running_handles = 0;
182 CURLMcode retcode = CURLM_CALL_MULTI_PERFORM;
183
184 // libcurl may request that we immediately call curl_multi_perform after it
185 // returns, so we do. libcurl promises that curl_multi_perform will not block.
186 while (CURLM_CALL_MULTI_PERFORM == retcode) {
187 retcode = curl_multi_perform(curl_multi_handle_, &running_handles);
Andrew de los Reyes3fd5d302010-10-07 20:07:18 -0700188 if (terminate_requested_) {
Darin Petkov9ce452b2010-11-17 14:33:28 -0800189 ForceTransferTermination();
Andrew de los Reyes3fd5d302010-10-07 20:07:18 -0700190 return;
191 }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000192 }
193 if (0 == running_handles) {
Andrew de los Reyes3fd5d302010-10-07 20:07:18 -0700194 GetHttpResponseCode();
195 if (http_response_code_) {
196 LOG(INFO) << "HTTP response code: " << http_response_code_;
Darin Petkova0929552010-11-29 14:19:06 -0800197 no_network_retry_count_ = 0;
Andrew de los Reyes9bbd1872010-07-16 14:52:29 -0700198 } else {
199 LOG(ERROR) << "Unable to get http response code.";
200 }
Darin Petkov192ced42010-07-23 16:20:24 -0700201
rspangler@google.com49fdf182009-10-10 00:57:34 +0000202 // we're done!
203 CleanUp();
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000204
Darin Petkova0929552010-11-29 14:19:06 -0800205 // TODO(petkov): This temporary code tries to deal with the case where the
206 // update engine performs an update check while the network is not ready
207 // (e.g., right after resume). Longer term, we should check if the network
208 // is online/offline and return an appropriate error code.
209 if (!sent_byte_ &&
210 http_response_code_ == 0 &&
211 no_network_retry_count_ < no_network_max_retries_) {
212 no_network_retry_count_++;
213 g_timeout_add_seconds(kNoNetworkRetrySeconds,
214 &LibcurlHttpFetcher::StaticRetryTimeoutCallback,
215 this);
216 LOG(INFO) << "No HTTP response, retry " << no_network_retry_count_;
217 return;
218 }
219
Andrew de los Reyes45168102010-11-22 11:13:50 -0800220 if (!sent_byte_ &&
221 (http_response_code_ < 200 || http_response_code_ >= 300)) {
222 // The transfer completed w/ error and we didn't get any bytes.
223 // If we have another proxy to try, try that.
224
225 PopProxy(); // Delete the proxy we just gave up on.
226
227 if (HasProxy()) {
228 // We have another proxy. Retry immediately.
229 g_idle_add(&LibcurlHttpFetcher::StaticRetryTimeoutCallback, this);
230 } else {
231 // Out of proxies. Give up.
232 if (delegate_)
233 delegate_->TransferComplete(this, false); // success
234 }
235 return;
236 }
237
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000238 if ((transfer_size_ >= 0) && (bytes_downloaded_ < transfer_size_)) {
Andrew de los Reyes3270f742010-07-15 22:28:14 -0700239 // Need to restart transfer
Andrew de los Reyes9bbd1872010-07-16 14:52:29 -0700240 retry_count_++;
241 LOG(INFO) << "Restarting transfer b/c we finished, had downloaded "
242 << bytes_downloaded_ << " bytes, but transfer_size_ is "
243 << transfer_size_ << ". retry_count: " << retry_count_;
244 if (retry_count_ > kMaxRetriesCount) {
245 if (delegate_)
246 delegate_->TransferComplete(this, false); // success
247 } else {
Darin Petkovb83371f2010-08-17 09:34:49 -0700248 g_timeout_add_seconds(retry_seconds_,
Darin Petkov9b111652010-08-16 11:46:25 -0700249 &LibcurlHttpFetcher::StaticRetryTimeoutCallback,
250 this);
Andrew de los Reyes9bbd1872010-07-16 14:52:29 -0700251 }
Andrew de los Reyescb319332010-07-19 10:55:01 -0700252 return;
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000253 } else {
254 if (delegate_) {
Andrew de los Reyesfb4ad7d2010-07-19 10:43:46 -0700255 // success is when http_response_code is 2xx
Andrew de los Reyes3fd5d302010-10-07 20:07:18 -0700256 bool success = (http_response_code_ >= 200) &&
257 (http_response_code_ < 300);
Andrew de los Reyesfb4ad7d2010-07-19 10:43:46 -0700258 delegate_->TransferComplete(this, success);
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000259 }
260 }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000261 } else {
262 // set up callback
263 SetupMainloopSources();
264 }
265}
266
267size_t LibcurlHttpFetcher::LibcurlWrite(void *ptr, size_t size, size_t nmemb) {
Andrew de los Reyes45168102010-11-22 11:13:50 -0800268 if (size == 0)
269 return 0;
270 sent_byte_ = true;
Andrew de los Reyes3fd5d302010-10-07 20:07:18 -0700271 GetHttpResponseCode();
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000272 {
273 double transfer_size_double;
274 CHECK_EQ(curl_easy_getinfo(curl_handle_,
275 CURLINFO_CONTENT_LENGTH_DOWNLOAD,
276 &transfer_size_double), CURLE_OK);
277 off_t new_transfer_size = static_cast<off_t>(transfer_size_double);
278 if (new_transfer_size > 0) {
279 transfer_size_ = resume_offset_ + new_transfer_size;
280 }
281 }
282 bytes_downloaded_ += size * nmemb;
Andrew de los Reyes3fd5d302010-10-07 20:07:18 -0700283 in_write_callback_ = true;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000284 if (delegate_)
285 delegate_->ReceivedBytes(this, reinterpret_cast<char*>(ptr), size * nmemb);
Andrew de los Reyes3fd5d302010-10-07 20:07:18 -0700286 in_write_callback_ = false;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000287 return size * nmemb;
288}
289
290void LibcurlHttpFetcher::Pause() {
291 CHECK(curl_handle_);
292 CHECK(transfer_in_progress_);
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000293 CHECK_EQ(curl_easy_pause(curl_handle_, CURLPAUSE_ALL), CURLE_OK);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000294}
295
296void LibcurlHttpFetcher::Unpause() {
297 CHECK(curl_handle_);
298 CHECK(transfer_in_progress_);
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000299 CHECK_EQ(curl_easy_pause(curl_handle_, CURLPAUSE_CONT), CURLE_OK);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000300}
301
302// This method sets up callbacks with the glib main loop.
303void LibcurlHttpFetcher::SetupMainloopSources() {
304 fd_set fd_read;
305 fd_set fd_write;
Darin Petkov60e14152010-10-27 16:57:04 -0700306 fd_set fd_exc;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000307
308 FD_ZERO(&fd_read);
309 FD_ZERO(&fd_write);
Darin Petkov60e14152010-10-27 16:57:04 -0700310 FD_ZERO(&fd_exc);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000311
312 int fd_max = 0;
313
314 // Ask libcurl for the set of file descriptors we should track on its
315 // behalf.
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000316 CHECK_EQ(curl_multi_fdset(curl_multi_handle_, &fd_read, &fd_write,
Darin Petkov60e14152010-10-27 16:57:04 -0700317 &fd_exc, &fd_max), CURLM_OK);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000318
319 // We should iterate through all file descriptors up to libcurl's fd_max or
Darin Petkov60e14152010-10-27 16:57:04 -0700320 // the highest one we're tracking, whichever is larger.
321 for (size_t t = 0; t < arraysize(io_channels_); ++t) {
322 if (!io_channels_[t].empty())
323 fd_max = max(fd_max, io_channels_[t].rbegin()->first);
324 }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000325
Darin Petkov60e14152010-10-27 16:57:04 -0700326 // For each fd, if we're not tracking it, track it. If we are tracking it, but
327 // libcurl doesn't care about it anymore, stop tracking it. After this loop,
328 // there should be exactly as many GIOChannel objects in io_channels_[0|1] as
329 // there are read/write fds that we're tracking.
330 for (int fd = 0; fd <= fd_max; ++fd) {
331 // Note that fd_exc is unused in the current version of libcurl so is_exc
332 // should always be false.
333 bool is_exc = FD_ISSET(fd, &fd_exc) != 0;
334 bool must_track[2] = {
335 is_exc || (FD_ISSET(fd, &fd_read) != 0), // track 0 -- read
336 is_exc || (FD_ISSET(fd, &fd_write) != 0) // track 1 -- write
337 };
338
339 for (size_t t = 0; t < arraysize(io_channels_); ++t) {
340 bool tracked = io_channels_[t].find(fd) != io_channels_[t].end();
341
342 if (!must_track[t]) {
343 // If we have an outstanding io_channel, remove it.
344 if (tracked) {
345 g_source_remove(io_channels_[t][fd].second);
346 g_io_channel_unref(io_channels_[t][fd].first);
347 io_channels_[t].erase(io_channels_[t].find(fd));
348 }
349 continue;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000350 }
Darin Petkov60e14152010-10-27 16:57:04 -0700351
352 // If we are already tracking this fd, continue -- nothing to do.
353 if (tracked)
354 continue;
355
356 // Set conditions appropriately -- read for track 0, write for track 1.
357 GIOCondition condition = static_cast<GIOCondition>(
358 ((t == 0) ? (G_IO_IN | G_IO_PRI) : G_IO_OUT) | G_IO_ERR | G_IO_HUP);
359
360 // Track a new fd.
361 GIOChannel* io_channel = g_io_channel_unix_new(fd);
362 guint tag =
363 g_io_add_watch(io_channel, condition, &StaticFDCallback, this);
364
365 io_channels_[t][fd] = make_pair(io_channel, tag);
366 static int io_counter = 0;
367 io_counter++;
368 if (io_counter % 50 == 0) {
369 LOG(INFO) << "io_counter = " << io_counter;
370 }
Andrew de los Reyes3270f742010-07-15 22:28:14 -0700371 }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000372 }
373
Darin Petkovb83371f2010-08-17 09:34:49 -0700374 // Set up a timeout callback for libcurl.
Andrew de los Reyes3270f742010-07-15 22:28:14 -0700375 if (!timeout_source_) {
Darin Petkovb83371f2010-08-17 09:34:49 -0700376 LOG(INFO) << "Setting up timeout source: " << idle_seconds_ << " seconds.";
377 timeout_source_ = g_timeout_source_new_seconds(idle_seconds_);
378 g_source_set_callback(timeout_source_, StaticTimeoutCallback, this, NULL);
Andrew de los Reyes3270f742010-07-15 22:28:14 -0700379 g_source_attach(timeout_source_, NULL);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000380 }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000381}
382
383bool LibcurlHttpFetcher::FDCallback(GIOChannel *source,
384 GIOCondition condition) {
Andrew de los Reyes9bbd1872010-07-16 14:52:29 -0700385 CurlPerformOnce();
Andrew de los Reyes3270f742010-07-15 22:28:14 -0700386 // We handle removing of this source elsewhere, so we always return true.
387 // The docs say, "the function should return FALSE if the event source
388 // should be removed."
389 // http://www.gtk.org/api/2.6/glib/glib-IO-Channels.html#GIOFunc
390 return true;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000391}
392
Andrew de los Reyes9bbd1872010-07-16 14:52:29 -0700393gboolean LibcurlHttpFetcher::RetryTimeoutCallback() {
394 ResumeTransfer(url_);
395 CurlPerformOnce();
396 return FALSE; // Don't have glib auto call this callback again
397}
398
Andrew de los Reyes3270f742010-07-15 22:28:14 -0700399gboolean LibcurlHttpFetcher::TimeoutCallback() {
Andrew de los Reyescb319332010-07-19 10:55:01 -0700400 // We always return true, even if we don't want glib to call us back.
401 // We will remove the event source separately if we don't want to
402 // be called back.
Andrew de los Reyes3270f742010-07-15 22:28:14 -0700403 if (!transfer_in_progress_)
404 return TRUE;
Andrew de los Reyes9bbd1872010-07-16 14:52:29 -0700405 CurlPerformOnce();
Andrew de los Reyes3270f742010-07-15 22:28:14 -0700406 return TRUE;
rspangler@google.com49fdf182009-10-10 00:57:34 +0000407}
408
409void LibcurlHttpFetcher::CleanUp() {
410 if (timeout_source_) {
411 g_source_destroy(timeout_source_);
412 timeout_source_ = NULL;
413 }
414
Darin Petkov60e14152010-10-27 16:57:04 -0700415 for (size_t t = 0; t < arraysize(io_channels_); ++t) {
416 for (IOChannels::iterator it = io_channels_[t].begin();
417 it != io_channels_[t].end(); ++it) {
418 g_source_remove(it->second.second);
419 g_io_channel_unref(it->second.first);
420 }
421 io_channels_[t].clear();
rspangler@google.com49fdf182009-10-10 00:57:34 +0000422 }
rspangler@google.com49fdf182009-10-10 00:57:34 +0000423
424 if (curl_handle_) {
425 if (curl_multi_handle_) {
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000426 CHECK_EQ(curl_multi_remove_handle(curl_multi_handle_, curl_handle_),
427 CURLM_OK);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000428 }
429 curl_easy_cleanup(curl_handle_);
430 curl_handle_ = NULL;
431 }
432 if (curl_multi_handle_) {
adlr@google.comc98a7ed2009-12-04 18:54:03 +0000433 CHECK_EQ(curl_multi_cleanup(curl_multi_handle_), CURLM_OK);
rspangler@google.com49fdf182009-10-10 00:57:34 +0000434 curl_multi_handle_ = NULL;
435 }
436 transfer_in_progress_ = false;
437}
438
Andrew de los Reyes3fd5d302010-10-07 20:07:18 -0700439void LibcurlHttpFetcher::GetHttpResponseCode() {
440 long http_response_code = 0;
441 if (curl_easy_getinfo(curl_handle_,
442 CURLINFO_RESPONSE_CODE,
443 &http_response_code) == CURLE_OK) {
444 http_response_code_ = static_cast<int>(http_response_code);
445 }
446}
447
rspangler@google.com49fdf182009-10-10 00:57:34 +0000448} // namespace chromeos_update_engine