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 aquire method for APT.
10 ##################################################################### */
12 // Include Files /*{{{*/
13 #include <apt-pkg/fileutl.h>
14 #include <apt-pkg/acquire-method.h>
15 #include <apt-pkg/error.h>
16 #include <apt-pkg/hashes.h>
37 HttpsMethod::write_data(void *buffer
, size_t size
, size_t nmemb
, void *userp
)
39 HttpsMethod
*me
= (HttpsMethod
*)userp
;
41 if(me
->File
->Write(buffer
, size
*nmemb
) != true)
48 HttpsMethod::progress_callback(void *clientp
, double dltotal
, double dlnow
,
49 double ultotal
, double ulnow
)
51 HttpsMethod
*me
= (HttpsMethod
*)clientp
;
52 if(dltotal
> 0 && me
->Res
.Size
== 0) {
53 me
->Res
.Size
= (unsigned long)dltotal
;
54 me
->URIStart(me
->Res
);
59 void HttpsMethod::SetupProxy()
61 URI ServerName
= Queue
->Uri
;
63 // Determine the proxy setting
64 if (getenv("http_proxy") == 0)
66 string DefProxy
= _config
->Find("Acquire::http::Proxy");
67 string SpecificProxy
= _config
->Find("Acquire::http::Proxy::" + ServerName
.Host
);
68 if (SpecificProxy
.empty() == false)
70 if (SpecificProxy
== "DIRECT")
73 Proxy
= SpecificProxy
;
79 // Parse no_proxy, a , separated list of domains
80 if (getenv("no_proxy") != 0)
82 if (CheckDomainList(ServerName
.Host
,getenv("no_proxy")) == true)
86 // Determine what host and port to use based on the proxy settings
88 if (Proxy
.empty() == true || Proxy
.Host
.empty() == true)
94 curl_easy_setopt(curl
, CURLOPT_PROXYPORT
, Proxy
.Port
);
95 curl_easy_setopt(curl
, CURLOPT_PROXY
, Proxy
.Host
.c_str());
100 // HttpsMethod::Fetch - Fetch an item /*{{{*/
101 // ---------------------------------------------------------------------
102 /* This adds an item to the pipeline. We keep the pipeline at a fixed
104 bool HttpsMethod::Fetch(FetchItem
*Itm
)
108 struct curl_slist
*headers
=NULL
;
109 char curl_errorstr
[CURL_ERROR_SIZE
];
110 long curl_responsecode
;
114 // - http::Pipeline-Depth
115 // - error checking/reporting
116 // - more debug options? (CURLOPT_DEBUGFUNCTION?)
118 curl_easy_reset(curl
);
122 curl_easy_setopt(curl
, CURLOPT_URL
, Itm
->Uri
.c_str());
123 curl_easy_setopt(curl
, CURLOPT_WRITEFUNCTION
, write_data
);
124 curl_easy_setopt(curl
, CURLOPT_WRITEDATA
, this);
125 curl_easy_setopt(curl
, CURLOPT_PROGRESSFUNCTION
, progress_callback
);
126 curl_easy_setopt(curl
, CURLOPT_PROGRESSDATA
, this);
127 curl_easy_setopt(curl
, CURLOPT_NOPROGRESS
, false);
128 curl_easy_setopt(curl
, CURLOPT_FAILONERROR
, true);
129 curl_easy_setopt(curl
, CURLOPT_FILETIME
, true);
131 // FIXME: https: offer various options of verification
132 bool peer_verify
= _config
->FindB("Acquire::https::Verify-Peer", false);
133 curl_easy_setopt(curl
, CURLOPT_SSL_VERIFYPEER
, peer_verify
);
136 string pem
= _config
->Find("Acquire::https::SslCert","");
138 curl_easy_setopt(curl
, CURLOPT_SSLCERT
, pem
.c_str());
141 string certdir
= _config
->Find("Acquire::https::CaPath","");
143 curl_easy_setopt(curl
, CURLOPT_CAPATH
, certdir
.c_str());
146 int verify
= _config
->FindI("Acquire::https::Verify-Host",2);
147 curl_easy_setopt(curl
, CURLOPT_SSL_VERIFYHOST
, verify
);
150 if(_config
->FindB("Acquire::http::No-Cache",false) == false)
153 if (_config
->FindB("Acquire::http::No-Store",false) == true)
154 headers
= curl_slist_append(headers
,"Cache-Control: no-store");
155 ioprintf(ss
, "Cache-Control: max-age=%u", _config
->FindI("Acquire::http::Max-Age",0));
156 headers
= curl_slist_append(headers
, ss
.str().c_str());
158 // cache disabled by user
159 headers
= curl_slist_append(headers
, "Cache-Control: no-cache");
160 headers
= curl_slist_append(headers
, "Pragma: no-cache");
162 curl_easy_setopt(curl
, CURLOPT_HTTPHEADER
, headers
);
165 if(Itm
->LastModified
> 0)
167 curl_easy_setopt(curl
, CURLOPT_TIMECONDITION
, CURL_TIMECOND_IFMODSINCE
);
168 curl_easy_setopt(curl
, CURLOPT_TIMEVALUE
, Itm
->LastModified
);
172 int dlLimit
= _config
->FindI("Acquire::http::Dl-Limit",0)*1024;
174 curl_easy_setopt(curl
, CURLOPT_MAX_RECV_SPEED_LARGE
, dlLimit
);
177 curl_easy_setopt(curl
, CURLOPT_USERAGENT
,"Debian APT-CURL/1.0 ("VERSION
")");
180 if(_config
->FindB("Debug::Acquire::https", false))
181 curl_easy_setopt(curl
, CURLOPT_VERBOSE
, true);
184 curl_easy_setopt(curl
, CURLOPT_ERRORBUFFER
, curl_errorstr
);
186 // In this case we send an if-range query with a range header
187 if (stat(Itm
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
190 sprintf(Buf
,"Range: bytes=%li-\r\nIf-Range: %s\r\n",
191 (long)SBuf
.st_size
- 1,
192 TimeRFC1123(SBuf
.st_mtime
).c_str());
193 headers
= curl_slist_append(headers
, Buf
);
196 // go for it - if the file exists, append on it
197 File
= new FileFd(Itm
->DestFile
, FileFd::WriteAny
);
198 File
->Seek(File
->Size());
201 Res
.Filename
= Itm
->DestFile
;
204 CURLcode success
= curl_easy_perform(curl
);
205 curl_easy_getinfo(curl
, CURLINFO_RESPONSE_CODE
, &curl_responsecode
);
208 curl_easy_getinfo(curl
, CURLINFO_FILETIME
, &curl_servdate
);
213 unlink(File
->Name().c_str());
214 _error
->Error(curl_errorstr
);
221 Res
.Size
= File
->Size();
225 if (curl_servdate
!= -1) {
226 UBuf
.actime
= curl_servdate
;
227 UBuf
.modtime
= curl_servdate
;
228 utime(File
->Name().c_str(),&UBuf
);
231 // check the downloaded result
233 if (stat(File
->Name().c_str(),&Buf
) == 0)
235 Res
.Size
= Buf
.st_size
;
236 Res
.Filename
= File
->Name();
237 Res
.LastModified
= Buf
.st_mtime
;
239 if (curl_responsecode
== 304)
242 Res
.LastModified
= Itm
->LastModified
;
248 FileFd
Fd(Res
.Filename
, FileFd::ReadOnly
);
249 Hash
.AddFD(Fd
.Fd(), Fd
.Size());
250 Res
.TakeHashes(Hash
);
258 curl_slist_free_all(headers
);
265 setlocale(LC_ALL
, "");
268 curl_global_init(CURL_GLOBAL_SSL
) ;