1 //-*- mode: cpp; mode: fold -*-
3 // $Id: http.cc,v 1.59 2004/05/08 19:42:35 mdz Exp $
4 /* ######################################################################
6 HTTPS Acquire Method - This is the HTTPS acquire method for APT.
10 ##################################################################### */
12 // Include Files /*{{{*/
15 #include <apt-pkg/fileutl.h>
16 #include <apt-pkg/acquire-method.h>
17 #include <apt-pkg/error.h>
18 #include <apt-pkg/hashes.h>
19 #include <apt-pkg/netrc.h>
20 #include <apt-pkg/configuration.h>
21 #include <apt-pkg/macros.h>
22 #include <apt-pkg/strutl.h>
23 #include <apt-pkg/proxy.h>
41 HttpsMethod::parse_header(void *buffer
, size_t size
, size_t nmemb
, void *userp
)
43 size_t len
= size
* nmemb
;
44 HttpsMethod
*me
= (HttpsMethod
*)userp
;
45 std::string
line((char*) buffer
, len
);
46 for (--len
; len
> 0; --len
)
47 if (isspace(line
[len
]) == 0)
54 if (line
.empty() == true)
56 if (me
->Server
->Result
!= 416 && me
->Server
->StartPos
!= 0)
58 else if (me
->Server
->Result
== 416 && me
->Server
->Size
== me
->File
->FileSize())
60 me
->Server
->Result
= 200;
61 me
->Server
->StartPos
= me
->Server
->Size
;
62 // the actual size is not important for https as curl will deal with it
63 // by itself and e.g. doesn't bother us with transport-encoding…
64 me
->Server
->JunkSize
= std::numeric_limits
<unsigned long long>::max();
67 me
->Server
->StartPos
= 0;
69 me
->File
->Truncate(me
->Server
->StartPos
);
70 me
->File
->Seek(me
->Server
->StartPos
);
72 else if (me
->Server
->HeaderLine(line
) == false)
79 HttpsMethod::write_data(void *buffer
, size_t size
, size_t nmemb
, void *userp
)
81 HttpsMethod
*me
= (HttpsMethod
*)userp
;
82 size_t buffer_size
= size
* nmemb
;
83 // we don't need to count the junk here, just drop anything we get as
84 // we don't always know how long it would be, e.g. in chunked encoding.
85 if (me
->Server
->JunkSize
!= 0)
88 if (me
->Server
->ReceivedData
== false)
90 me
->URIStart(me
->Res
);
91 me
->Server
->ReceivedData
= true;
94 if(me
->File
->Write(buffer
, buffer_size
) != true)
97 if(me
->Queue
->MaximumSize
> 0)
99 unsigned long long const TotalWritten
= me
->File
->Tell();
100 if (TotalWritten
> me
->Queue
->MaximumSize
)
102 me
->SetFailReason("MaximumSizeExceeded");
103 _error
->Error("Writing more data than expected (%llu > %llu)",
104 TotalWritten
, me
->Queue
->MaximumSize
);
113 HttpsMethod::progress_callback(void *clientp
, double dltotal
, double /*dlnow*/,
114 double /*ultotal*/, double /*ulnow*/)
116 HttpsMethod
*me
= (HttpsMethod
*)clientp
;
117 if(dltotal
> 0 && me
->Res
.Size
== 0) {
118 me
->Res
.Size
= (unsigned long long)dltotal
;
123 // HttpsServerState::HttpsServerState - Constructor /*{{{*/
124 HttpsServerState::HttpsServerState(URI Srv
,HttpsMethod
* Owner
) : ServerState(Srv
, Owner
)
126 TimeOut
= _config
->FindI("Acquire::https::Timeout",TimeOut
);
127 ReceivedData
= false;
132 void HttpsMethod::SetupProxy() /*{{{*/
134 URI ServerName
= Queue
->Uri
;
136 // Determine the proxy setting
137 AutoDetectProxy(ServerName
);
139 // Curl should never read proxy settings from the environment, as
140 // we determine which proxy to use. Do this for consistency among
141 // methods and prevent an environment variable overriding a
142 // no-proxy ("DIRECT") setting in apt.conf.
143 curl_easy_setopt(curl
, CURLOPT_PROXY
, "");
145 // Determine the proxy setting - try https first, fallback to http and use env at last
146 string UseProxy
= _config
->Find("Acquire::https::Proxy::" + ServerName
.Host
,
147 _config
->Find("Acquire::http::Proxy::" + ServerName
.Host
).c_str());
149 if (UseProxy
.empty() == true)
150 UseProxy
= _config
->Find("Acquire::https::Proxy", _config
->Find("Acquire::http::Proxy").c_str());
152 // User want to use NO proxy, so nothing to setup
153 if (UseProxy
== "DIRECT")
156 if (UseProxy
.empty() == false)
158 // Parse no_proxy, a comma (,) separated list of domains we don't want to use
159 // a proxy for so we stop right here if it is in the list
160 if (getenv("no_proxy") != 0 && CheckDomainList(ServerName
.Host
,getenv("no_proxy")) == true)
163 const char* result
= getenv("https_proxy");
164 // FIXME: Fall back to http_proxy is to remain compatible with
165 // existing setups and behaviour of apt.conf. This should be
166 // deprecated in the future (including apt.conf). Most other
167 // programs do not fall back to http proxy settings and neither
170 result
= getenv("http_proxy");
171 UseProxy
= result
== NULL
? "" : result
;
174 // Determine what host and port to use based on the proxy settings
175 if (UseProxy
.empty() == false)
179 curl_easy_setopt(curl
, CURLOPT_PROXYPORT
, Proxy
.Port
);
180 curl_easy_setopt(curl
, CURLOPT_PROXY
, Proxy
.Host
.c_str());
181 if (Proxy
.User
.empty() == false || Proxy
.Password
.empty() == false)
183 curl_easy_setopt(curl
, CURLOPT_PROXYUSERNAME
, Proxy
.User
.c_str());
184 curl_easy_setopt(curl
, CURLOPT_PROXYPASSWORD
, Proxy
.Password
.c_str());
188 // HttpsMethod::Fetch - Fetch an item /*{{{*/
189 // ---------------------------------------------------------------------
190 /* This adds an item to the pipeline. We keep the pipeline at a fixed
192 bool HttpsMethod::Fetch(FetchItem
*Itm
)
195 struct curl_slist
*headers
=NULL
;
196 char curl_errorstr
[CURL_ERROR_SIZE
];
198 string remotehost
= Uri
.Host
;
201 // - http::Pipeline-Depth
202 // - error checking/reporting
203 // - more debug options? (CURLOPT_DEBUGFUNCTION?)
205 curl_easy_reset(curl
);
208 maybe_add_auth (Uri
, _config
->FindFile("Dir::Etc::netrc"));
211 curl_easy_setopt(curl
, CURLOPT_URL
, static_cast<string
>(Uri
).c_str());
212 curl_easy_setopt(curl
, CURLOPT_HEADERFUNCTION
, parse_header
);
213 curl_easy_setopt(curl
, CURLOPT_WRITEHEADER
, this);
214 curl_easy_setopt(curl
, CURLOPT_WRITEFUNCTION
, write_data
);
215 curl_easy_setopt(curl
, CURLOPT_WRITEDATA
, this);
216 curl_easy_setopt(curl
, CURLOPT_PROGRESSFUNCTION
, progress_callback
);
217 curl_easy_setopt(curl
, CURLOPT_PROGRESSDATA
, this);
219 curl_easy_setopt(curl
, CURLOPT_NOPROGRESS
, false);
220 curl_easy_setopt(curl
, CURLOPT_FILETIME
, true);
221 // only allow curl to handle https, not the other stuff it supports
222 curl_easy_setopt(curl
, CURLOPT_PROTOCOLS
, CURLPROTO_HTTPS
);
223 curl_easy_setopt(curl
, CURLOPT_REDIR_PROTOCOLS
, CURLPROTO_HTTPS
);
225 // SSL parameters are set by default to the common (non mirror-specific) value
226 // if available (or a default one) and gets overload by mirror-specific ones.
228 // File containing the list of trusted CA.
229 string cainfo
= _config
->Find("Acquire::https::CaInfo","");
230 string knob
= "Acquire::https::"+remotehost
+"::CaInfo";
231 cainfo
= _config
->Find(knob
.c_str(),cainfo
.c_str());
232 if(cainfo
.empty() == false)
233 curl_easy_setopt(curl
, CURLOPT_CAINFO
,cainfo
.c_str());
235 // Check server certificate against previous CA list ...
236 bool peer_verify
= _config
->FindB("Acquire::https::Verify-Peer",true);
237 knob
= "Acquire::https::" + remotehost
+ "::Verify-Peer";
238 peer_verify
= _config
->FindB(knob
.c_str(), peer_verify
);
239 curl_easy_setopt(curl
, CURLOPT_SSL_VERIFYPEER
, peer_verify
);
241 // ... and hostname against cert CN or subjectAltName
242 bool verify
= _config
->FindB("Acquire::https::Verify-Host",true);
243 knob
= "Acquire::https::"+remotehost
+"::Verify-Host";
244 verify
= _config
->FindB(knob
.c_str(),verify
);
245 int const default_verify
= (verify
== true) ? 2 : 0;
246 curl_easy_setopt(curl
, CURLOPT_SSL_VERIFYHOST
, default_verify
);
248 // Also enforce issuer of server certificate using its cert
249 string issuercert
= _config
->Find("Acquire::https::IssuerCert","");
250 knob
= "Acquire::https::"+remotehost
+"::IssuerCert";
251 issuercert
= _config
->Find(knob
.c_str(),issuercert
.c_str());
252 if(issuercert
.empty() == false)
253 curl_easy_setopt(curl
, CURLOPT_ISSUERCERT
,issuercert
.c_str());
255 // For client authentication, certificate file ...
256 string pem
= _config
->Find("Acquire::https::SslCert","");
257 knob
= "Acquire::https::"+remotehost
+"::SslCert";
258 pem
= _config
->Find(knob
.c_str(),pem
.c_str());
259 if(pem
.empty() == false)
260 curl_easy_setopt(curl
, CURLOPT_SSLCERT
, pem
.c_str());
262 // ... and associated key.
263 string key
= _config
->Find("Acquire::https::SslKey","");
264 knob
= "Acquire::https::"+remotehost
+"::SslKey";
265 key
= _config
->Find(knob
.c_str(),key
.c_str());
266 if(key
.empty() == false)
267 curl_easy_setopt(curl
, CURLOPT_SSLKEY
, key
.c_str());
269 // Allow forcing SSL version to SSLv3 or TLSv1 (SSLv2 is not
270 // supported by GnuTLS).
271 long final_version
= CURL_SSLVERSION_DEFAULT
;
272 string sslversion
= _config
->Find("Acquire::https::SslForceVersion","");
273 knob
= "Acquire::https::"+remotehost
+"::SslForceVersion";
274 sslversion
= _config
->Find(knob
.c_str(),sslversion
.c_str());
275 if(sslversion
== "TLSv1")
276 final_version
= CURL_SSLVERSION_TLSv1
;
277 else if(sslversion
== "SSLv3")
278 final_version
= CURL_SSLVERSION_SSLv3
;
279 curl_easy_setopt(curl
, CURLOPT_SSLVERSION
, final_version
);
282 string crlfile
= _config
->Find("Acquire::https::CrlFile","");
283 knob
= "Acquire::https::"+remotehost
+"::CrlFile";
284 crlfile
= _config
->Find(knob
.c_str(),crlfile
.c_str());
285 if(crlfile
.empty() == false)
286 curl_easy_setopt(curl
, CURLOPT_CRLFILE
, crlfile
.c_str());
289 if(_config
->FindB("Acquire::https::No-Cache",
290 _config
->FindB("Acquire::http::No-Cache",false)) == false)
293 if (_config
->FindB("Acquire::https::No-Store",
294 _config
->FindB("Acquire::http::No-Store",false)) == true)
295 headers
= curl_slist_append(headers
,"Cache-Control: no-store");
297 ioprintf(ss
, "Cache-Control: max-age=%u", _config
->FindI("Acquire::https::Max-Age",
298 _config
->FindI("Acquire::http::Max-Age",0)));
299 headers
= curl_slist_append(headers
, ss
.str().c_str());
301 // cache disabled by user
302 headers
= curl_slist_append(headers
, "Cache-Control: no-cache");
303 headers
= curl_slist_append(headers
, "Pragma: no-cache");
305 curl_easy_setopt(curl
, CURLOPT_HTTPHEADER
, headers
);
308 int const dlLimit
= _config
->FindI("Acquire::https::Dl-Limit",
309 _config
->FindI("Acquire::http::Dl-Limit",0))*1024;
311 curl_easy_setopt(curl
, CURLOPT_MAX_RECV_SPEED_LARGE
, dlLimit
);
314 curl_easy_setopt(curl
, CURLOPT_USERAGENT
,
315 _config
->Find("Acquire::https::User-Agent",
316 _config
->Find("Acquire::http::User-Agent",
317 "Debian APT-CURL/1.0 (" PACKAGE_VERSION
")").c_str()).c_str());
320 int const timeout
= _config
->FindI("Acquire::https::Timeout",
321 _config
->FindI("Acquire::http::Timeout",120));
322 curl_easy_setopt(curl
, CURLOPT_CONNECTTIMEOUT
, timeout
);
323 //set really low lowspeed timeout (see #497983)
324 curl_easy_setopt(curl
, CURLOPT_LOW_SPEED_LIMIT
, DL_MIN_SPEED
);
325 curl_easy_setopt(curl
, CURLOPT_LOW_SPEED_TIME
, timeout
);
327 // set redirect options and default to 10 redirects
328 curl_easy_setopt(curl
, CURLOPT_FOLLOWLOCATION
, AllowRedirect
);
329 curl_easy_setopt(curl
, CURLOPT_MAXREDIRS
, 10);
333 curl_easy_setopt(curl
, CURLOPT_VERBOSE
, true);
336 curl_errorstr
[0] = '\0';
337 curl_easy_setopt(curl
, CURLOPT_ERRORBUFFER
, curl_errorstr
);
339 // If we ask for uncompressed files servers might respond with content-
340 // negotiation which lets us end up with compressed files we do not support,
341 // see 657029, 657560 and co, so if we have no extension on the request
342 // ask for text only. As a sidenote: If there is nothing to negotate servers
343 // seem to be nice and ignore it.
344 if (_config
->FindB("Acquire::https::SendAccept", _config
->FindB("Acquire::http::SendAccept", true)) == true)
346 size_t const filepos
= Itm
->Uri
.find_last_of('/');
347 string
const file
= Itm
->Uri
.substr(filepos
+ 1);
348 if (flExtension(file
) == file
)
349 headers
= curl_slist_append(headers
, "Accept: text/*");
352 // if we have the file send an if-range query with a range header
353 if (stat(Itm
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
356 strprintf(Buf
, "Range: bytes=%lli-", (long long) SBuf
.st_size
);
357 headers
= curl_slist_append(headers
, Buf
.c_str());
358 strprintf(Buf
, "If-Range: %s", TimeRFC1123(SBuf
.st_mtime
).c_str());
359 headers
= curl_slist_append(headers
, Buf
.c_str());
361 else if(Itm
->LastModified
> 0)
363 curl_easy_setopt(curl
, CURLOPT_TIMECONDITION
, CURL_TIMECOND_IFMODSINCE
);
364 curl_easy_setopt(curl
, CURLOPT_TIMEVALUE
, Itm
->LastModified
);
367 // go for it - if the file exists, append on it
368 File
= new FileFd(Itm
->DestFile
, FileFd::WriteAny
);
369 Server
= CreateServerState(Itm
->Uri
);
372 Res
.Filename
= Itm
->DestFile
;
375 CURLcode success
= curl_easy_perform(curl
);
377 // If the server returns 200 OK but the If-Modified-Since condition is not
378 // met, CURLINFO_CONDITION_UNMET will be set to 1
379 long curl_condition_unmet
= 0;
380 curl_easy_getinfo(curl
, CURLINFO_CONDITION_UNMET
, &curl_condition_unmet
);
383 curl_slist_free_all(headers
);
388 _error
->Error("%s", curl_errorstr
);
389 unlink(File
->Name().c_str());
393 // server says file not modified
394 if (Server
->Result
== 304 || curl_condition_unmet
== 1)
396 unlink(File
->Name().c_str());
398 Res
.LastModified
= Itm
->LastModified
;
405 if (Server
->Result
!= 200 && // OK
406 Server
->Result
!= 206 && // Partial
407 Server
->Result
!= 416) // invalid Range
410 snprintf(err
, sizeof(err
) - 1, "HttpError%i", Server
->Result
);
412 _error
->Error("%s", err
);
413 // unlink, no need keep 401/404 page content in partial/
414 unlink(File
->Name().c_str());
418 struct stat resultStat
;
419 if (unlikely(stat(File
->Name().c_str(), &resultStat
) != 0))
421 _error
->Errno("stat", "Unable to access file %s", File
->Name().c_str());
424 Res
.Size
= resultStat
.st_size
;
426 // invalid range-request
427 if (Server
->Result
== 416)
429 unlink(File
->Name().c_str());
437 curl_easy_getinfo(curl
, CURLINFO_FILETIME
, &Res
.LastModified
);
438 if (Res
.LastModified
!= -1)
440 struct timeval times
[2];
441 times
[0].tv_sec
= Res
.LastModified
;
442 times
[1].tv_sec
= Res
.LastModified
;
443 times
[0].tv_usec
= times
[1].tv_usec
= 0;
444 utimes(File
->Name().c_str(), times
);
447 Res
.LastModified
= resultStat
.st_mtime
;
451 FileFd
Fd(Res
.Filename
, FileFd::ReadOnly
);
453 Res
.TakeHashes(Hash
);
465 // HttpsMethod::Configuration - Handle a configuration message /*{{{*/
466 bool HttpsMethod::Configuration(string Message
)
468 if (ServerMethod::Configuration(Message
) == false)
471 AllowRedirect
= _config
->FindB("Acquire::https::AllowRedirect",
472 _config
->FindB("Acquire::http::AllowRedirect", true));
473 Debug
= _config
->FindB("Debug::Acquire::https",false);
478 ServerState
* HttpsMethod::CreateServerState(URI uri
) /*{{{*/
480 return new HttpsServerState(uri
, this);
486 setlocale(LC_ALL
, "");
489 curl_global_init(CURL_GLOBAL_SSL
) ;