1//
2// Copyright (C) 2009 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8//      http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17#ifndef UPDATE_ENGINE_COMMON_LIBCURL_HTTP_FETCHER_H_
18#define UPDATE_ENGINE_COMMON_LIBCURL_HTTP_FETCHER_H_
19
20#include <map>
21#include <memory>
22#include <string>
23#include <utility>
24
25#include <curl/curl.h>
26
27#include <base/logging.h>
28#include <base/macros.h>
29#include <brillo/message_loops/message_loop.h>
30
31#include "update_engine/common/certificate_checker.h"
32#include "update_engine/common/hardware_interface.h"
33#include "update_engine/common/http_fetcher.h"
34
35// This is a concrete implementation of HttpFetcher that uses libcurl to do the
36// http work.
37
38namespace chromeos_update_engine {
39
40class LibcurlHttpFetcher : public HttpFetcher {
41 public:
42  LibcurlHttpFetcher(ProxyResolver* proxy_resolver,
43                     HardwareInterface* hardware);
44
45  // Cleans up all internal state. Does not notify delegate
46  ~LibcurlHttpFetcher() override;
47
48  void SetOffset(off_t offset) override { bytes_downloaded_ = offset; }
49
50  void SetLength(size_t length) override { download_length_ = length; }
51  void UnsetLength() override { SetLength(0); }
52
53  // Begins the transfer if it hasn't already begun.
54  void BeginTransfer(const std::string& url) override;
55
56  // If the transfer is in progress, aborts the transfer early. The transfer
57  // cannot be resumed.
58  void TerminateTransfer() override;
59
60  // Pass the headers to libcurl.
61  void SetHeader(const std::string& header_name,
62                 const std::string& header_value) override;
63
64  // Suspend the transfer by calling curl_easy_pause(CURLPAUSE_ALL).
65  void Pause() override;
66
67  // Resume the transfer by calling curl_easy_pause(CURLPAUSE_CONT).
68  void Unpause() override;
69
70  // Libcurl sometimes asks to be called back after some time while
71  // leaving that time unspecified. In that case, we pick a reasonable
72  // default of one second, but it can be overridden here. This is
73  // primarily useful for testing.
74  // From http://curl.haxx.se/libcurl/c/curl_multi_timeout.html:
75  //     if libcurl returns a -1 timeout here, it just means that libcurl
76  //     currently has no stored timeout value. You must not wait too long
77  //     (more than a few seconds perhaps) before you call
78  //     curl_multi_perform() again.
79  void set_idle_seconds(int seconds) override { idle_seconds_ = seconds; }
80
81  // Sets the retry timeout. Useful for testing.
82  void set_retry_seconds(int seconds) override { retry_seconds_ = seconds; }
83
84  void set_no_network_max_retries(int retries) {
85    no_network_max_retries_ = retries;
86  }
87
88  void set_server_to_check(ServerToCheck server_to_check) {
89    server_to_check_ = server_to_check;
90  }
91
92  size_t GetBytesDownloaded() override {
93    return static_cast<size_t>(bytes_downloaded_);
94  }
95
96  void set_low_speed_limit(int low_speed_bps, int low_speed_sec) override {
97    low_speed_limit_bps_ = low_speed_bps;
98    low_speed_time_seconds_ = low_speed_sec;
99  }
100
101  void set_connect_timeout(int connect_timeout_seconds) override {
102    connect_timeout_seconds_ = connect_timeout_seconds;
103  }
104
105  void set_max_retry_count(int max_retry_count) override {
106    max_retry_count_ = max_retry_count;
107  }
108
109 private:
110  // Callback for when proxy resolution has completed. This begins the
111  // transfer.
112  void ProxiesResolved();
113
114  // Asks libcurl for the http response code and stores it in the object.
115  void GetHttpResponseCode();
116
117  // Checks whether stored HTTP response is within the success range.
118  inline bool IsHttpResponseSuccess() {
119    return (http_response_code_ >= 200 && http_response_code_ < 300);
120  }
121
122  // Checks whether stored HTTP response is within the error range. This
123  // includes both errors with the request (4xx) and server errors (5xx).
124  inline bool IsHttpResponseError() {
125    return (http_response_code_ >= 400 && http_response_code_ < 600);
126  }
127
128  // Resumes a transfer where it left off. This will use the
129  // HTTP Range: header to make a new connection from where the last
130  // left off.
131  virtual void ResumeTransfer(const std::string& url);
132
133  void TimeoutCallback();
134  void RetryTimeoutCallback();
135
136  // Calls into curl_multi_perform to let libcurl do its work. Returns after
137  // curl_multi_perform is finished, which may actually be after more than
138  // one call to curl_multi_perform. This method will set up the message
139  // loop with sources for future work that libcurl will do, if any, or complete
140  // the transfer and finish the action if no work left to do.
141  // This method will not block.
142  void CurlPerformOnce();
143
144  // Sets up message loop sources as needed by libcurl. This is generally
145  // the file descriptor of the socket and a timer in case nothing happens
146  // on the fds.
147  void SetupMessageLoopSources();
148
149  // Callback called by libcurl when new data has arrived on the transfer
150  size_t LibcurlWrite(void *ptr, size_t size, size_t nmemb);
151  static size_t StaticLibcurlWrite(void *ptr, size_t size,
152                                   size_t nmemb, void *stream) {
153    return reinterpret_cast<LibcurlHttpFetcher*>(stream)->
154        LibcurlWrite(ptr, size, nmemb);
155  }
156
157  // Cleans up the following if they are non-null:
158  // curl(m) handles, fd_task_maps_, timeout_id_.
159  void CleanUp();
160
161  // Force terminate the transfer. This will invoke the delegate's (if any)
162  // TransferTerminated callback so, after returning, this fetcher instance may
163  // be destroyed.
164  void ForceTransferTermination();
165
166  // Sets the curl options for HTTP URL.
167  void SetCurlOptionsForHttp();
168
169  // Sets the curl options for HTTPS URL.
170  void SetCurlOptionsForHttps();
171
172  // Sets the curl options for file URI.
173  void SetCurlOptionsForFile();
174
175  // Convert a proxy URL into a curl proxy type, if applicable. Returns true iff
176  // conversion was successful, false otherwise (in which case nothing is
177  // written to |out_type|).
178  bool GetProxyType(const std::string& proxy, curl_proxytype* out_type);
179
180  // Hardware interface used to query dev-mode and official build settings.
181  HardwareInterface* hardware_;
182
183  // Handles for the libcurl library
184  CURLM* curl_multi_handle_{nullptr};
185  CURL* curl_handle_{nullptr};
186  struct curl_slist* curl_http_headers_{nullptr};
187
188  // The extra headers that will be sent on each request.
189  std::map<std::string, std::string> extra_headers_;
190
191  // Lists of all read(0)/write(1) file descriptors that we're waiting on from
192  // the message loop. libcurl may open/close descriptors and switch their
193  // directions so maintain two separate lists so that watch conditions can be
194  // set appropriately.
195  std::map<int, brillo::MessageLoop::TaskId> fd_task_maps_[2];
196
197  // The TaskId of the timer we're waiting on. kTaskIdNull if we are not waiting
198  // on it.
199  brillo::MessageLoop::TaskId timeout_id_{brillo::MessageLoop::kTaskIdNull};
200
201  bool transfer_in_progress_{false};
202  bool transfer_paused_{false};
203
204  // Whether it should ignore transfer failures for the purpose of retrying the
205  // connection.
206  bool ignore_failure_{false};
207
208  // Whether we should restart the transfer once Unpause() is called. This can
209  // be caused because either the connection dropped while pause or the proxy
210  // was resolved and we never started the transfer in the first place.
211  bool restart_transfer_on_unpause_{false};
212
213  // The transfer size. -1 if not known.
214  off_t transfer_size_{0};
215
216  // How many bytes have been downloaded and sent to the delegate.
217  off_t bytes_downloaded_{0};
218
219  // The remaining maximum number of bytes to download. Zero represents an
220  // unspecified length.
221  size_t download_length_{0};
222
223  // If we resumed an earlier transfer, data offset that we used for the
224  // new connection.  0 otherwise.
225  // In this class, resume refers to resuming a dropped HTTP connection,
226  // not to resuming an interrupted download.
227  off_t resume_offset_{0};
228
229  // Number of resumes performed so far and the max allowed.
230  int retry_count_{0};
231  int max_retry_count_{kDownloadMaxRetryCount};
232
233  // Seconds to wait before retrying a resume.
234  int retry_seconds_{20};
235
236  // Number of resumes due to no network (e.g., HTTP response code 0).
237  int no_network_retry_count_{0};
238  int no_network_max_retries_{0};
239
240  // Seconds to wait before asking libcurl to "perform".
241  int idle_seconds_{1};
242
243  // If true, we are currently performing a write callback on the delegate.
244  bool in_write_callback_{false};
245
246  // If true, we have returned at least one byte in the write callback
247  // to the delegate.
248  bool sent_byte_{false};
249
250  // We can't clean everything up while we're in a write callback, so
251  // if we get a terminate request, queue it until we can handle it.
252  bool terminate_requested_{false};
253
254  // The ServerToCheck used when checking this connection's certificate. If no
255  // certificate check needs to be performed, this should be set to
256  // ServerToCheck::kNone.
257  ServerToCheck server_to_check_{ServerToCheck::kNone};
258
259  int low_speed_limit_bps_{kDownloadLowSpeedLimitBps};
260  int low_speed_time_seconds_{kDownloadLowSpeedTimeSeconds};
261  int connect_timeout_seconds_{kDownloadConnectTimeoutSeconds};
262  int num_max_retries_;
263
264  DISALLOW_COPY_AND_ASSIGN(LibcurlHttpFetcher);
265};
266
267}  // namespace chromeos_update_engine
268
269#endif  // UPDATE_ENGINE_COMMON_LIBCURL_HTTP_FETCHER_H_
270