]> git.saurik.com Git - apt.git/blame - methods/http.cc
Pass ExpectedSize to tthe backend method
[apt.git] / methods / http.cc
CommitLineData
be4401bf
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
2cbcabd8 3// $Id: http.cc,v 1.59 2004/05/08 19:42:35 mdz Exp $
be4401bf
AL
4/* ######################################################################
5
1e3f4083 6 HTTP Acquire Method - This is the HTTP acquire method for APT.
be4401bf
AL
7
8 It uses HTTP/1.1 and many of the fancy options there-in, such as
e836f356
AL
9 pipelining, range, if-range and so on.
10
11 It is based on a doubly buffered select loop. A groupe of requests are
be4401bf
AL
12 fed into a single output buffer that is constantly fed out the
13 socket. This provides ideal pipelining as in many cases all of the
14 requests will fit into a single packet. The input socket is buffered
e836f356 15 the same way and fed into the fd for the file (may be a pipe in future).
be4401bf
AL
16
17 This double buffering provides fairly substantial transfer rates,
18 compared to wget the http method is about 4% faster. Most importantly,
19 when HTTP is compared with FTP as a protocol the speed difference is
20 huge. In tests over the internet from two sites to llug (via ATM) this
21 program got 230k/s sustained http transfer rates. FTP on the other
22 hand topped out at 170k/s. That combined with the time to setup the
23 FTP connection makes HTTP a vastly superior protocol.
24
25 ##################################################################### */
26 /*}}}*/
27// Include Files /*{{{*/
ea542140
DK
28#include <config.h>
29
be4401bf
AL
30#include <apt-pkg/fileutl.h>
31#include <apt-pkg/acquire-method.h>
472ff00e 32#include <apt-pkg/configuration.h>
be4401bf 33#include <apt-pkg/error.h>
63b1700f 34#include <apt-pkg/hashes.h>
592b7800 35#include <apt-pkg/netrc.h>
453b82a3 36#include <apt-pkg/strutl.h>
be4401bf 37
453b82a3
DK
38#include <stddef.h>
39#include <stdlib.h>
40#include <sys/select.h>
41#include <cstring>
be4401bf
AL
42#include <sys/stat.h>
43#include <sys/time.h>
be4401bf
AL
44#include <unistd.h>
45#include <stdio.h>
65a1e968 46#include <errno.h>
42195eb2 47#include <iostream>
b123b0ba 48#include <sstream>
be4401bf 49
59b46c41 50#include "config.h"
0837bd25 51#include "connect.h"
be4401bf 52#include "http.h"
ea542140
DK
53
54#include <apti18n.h>
be4401bf 55 /*}}}*/
42195eb2 56using namespace std;
be4401bf 57
650faab0
DK
58unsigned long long CircleBuf::BwReadLimit=0;
59unsigned long long CircleBuf::BwTickReadData=0;
7c6e2dc7
MV
60struct timeval CircleBuf::BwReadTick={0,0};
61const unsigned int CircleBuf::BW_HZ=10;
d3e8fbb3 62
be4401bf
AL
63// CircleBuf::CircleBuf - Circular input buffer /*{{{*/
64// ---------------------------------------------------------------------
65/* */
dcd5856b
MV
66CircleBuf::CircleBuf(unsigned long long Size)
67 : Size(Size), Hash(0), TotalWriten(0)
be4401bf
AL
68{
69 Buf = new unsigned char[Size];
70 Reset();
7c6e2dc7
MV
71
72 CircleBuf::BwReadLimit = _config->FindI("Acquire::http::Dl-Limit",0)*1024;
be4401bf
AL
73}
74 /*}}}*/
75// CircleBuf::Reset - Reset to the default state /*{{{*/
76// ---------------------------------------------------------------------
77/* */
78void CircleBuf::Reset()
79{
80 InP = 0;
81 OutP = 0;
82 StrPos = 0;
dcd5856b 83 TotalWriten = 0;
650faab0 84 MaxGet = (unsigned long long)-1;
be4401bf 85 OutQueue = string();
63b1700f 86 if (Hash != 0)
be4401bf 87 {
63b1700f
AL
88 delete Hash;
89 Hash = new Hashes;
d3e8fbb3
DK
90 }
91}
be4401bf
AL
92 /*}}}*/
93// CircleBuf::Read - Read from a FD into the circular buffer /*{{{*/
94// ---------------------------------------------------------------------
95/* This fills up the buffer with as much data as is in the FD, assuming it
96 is non-blocking.. */
97bool CircleBuf::Read(int Fd)
98{
99 while (1)
100 {
101 // Woops, buffer is full
102 if (InP - OutP == Size)
103 return true;
7c6e2dc7
MV
104
105 // what's left to read in this tick
9ce3cfc9 106 unsigned long long const BwReadMax = CircleBuf::BwReadLimit/BW_HZ;
7c6e2dc7
MV
107
108 if(CircleBuf::BwReadLimit) {
109 struct timeval now;
110 gettimeofday(&now,0);
111
650faab0 112 unsigned long long d = (now.tv_sec-CircleBuf::BwReadTick.tv_sec)*1000000 +
7c6e2dc7
MV
113 now.tv_usec-CircleBuf::BwReadTick.tv_usec;
114 if(d > 1000000/BW_HZ) {
115 CircleBuf::BwReadTick = now;
116 CircleBuf::BwTickReadData = 0;
117 }
118
119 if(CircleBuf::BwTickReadData >= BwReadMax) {
120 usleep(1000000/BW_HZ);
121 return true;
122 }
123 }
124
be4401bf 125 // Write the buffer segment
650faab0 126 ssize_t Res;
7c6e2dc7
MV
127 if(CircleBuf::BwReadLimit) {
128 Res = read(Fd,Buf + (InP%Size),
129 BwReadMax > LeftRead() ? LeftRead() : BwReadMax);
130 } else
131 Res = read(Fd,Buf + (InP%Size),LeftRead());
be4401bf 132
7c6e2dc7
MV
133 if(Res > 0 && BwReadLimit > 0)
134 CircleBuf::BwTickReadData += Res;
135
be4401bf
AL
136 if (Res == 0)
137 return false;
138 if (Res < 0)
139 {
140 if (errno == EAGAIN)
141 return true;
142 return false;
143 }
144
145 if (InP == 0)
146 gettimeofday(&Start,0);
147 InP += Res;
148 }
149}
150 /*}}}*/
151// CircleBuf::Read - Put the string into the buffer /*{{{*/
152// ---------------------------------------------------------------------
153/* This will hold the string in and fill the buffer with it as it empties */
154bool CircleBuf::Read(string Data)
155{
156 OutQueue += Data;
157 FillOut();
158 return true;
159}
160 /*}}}*/
161// CircleBuf::FillOut - Fill the buffer from the output queue /*{{{*/
162// ---------------------------------------------------------------------
163/* */
164void CircleBuf::FillOut()
165{
166 if (OutQueue.empty() == true)
167 return;
168 while (1)
169 {
170 // Woops, buffer is full
171 if (InP - OutP == Size)
172 return;
173
174 // Write the buffer segment
650faab0 175 unsigned long long Sz = LeftRead();
be4401bf
AL
176 if (OutQueue.length() - StrPos < Sz)
177 Sz = OutQueue.length() - StrPos;
42195eb2 178 memcpy(Buf + (InP%Size),OutQueue.c_str() + StrPos,Sz);
be4401bf
AL
179
180 // Advance
181 StrPos += Sz;
182 InP += Sz;
183 if (OutQueue.length() == StrPos)
184 {
185 StrPos = 0;
186 OutQueue = "";
187 return;
188 }
189 }
190}
191 /*}}}*/
192// CircleBuf::Write - Write from the buffer into a FD /*{{{*/
193// ---------------------------------------------------------------------
194/* This empties the buffer into the FD. */
195bool CircleBuf::Write(int Fd)
196{
197 while (1)
198 {
199 FillOut();
200
201 // Woops, buffer is empty
202 if (OutP == InP)
203 return true;
204
205 if (OutP == MaxGet)
206 return true;
207
208 // Write the buffer segment
650faab0 209 ssize_t Res;
be4401bf
AL
210 Res = write(Fd,Buf + (OutP%Size),LeftWrite());
211
212 if (Res == 0)
213 return false;
214 if (Res < 0)
215 {
216 if (errno == EAGAIN)
217 return true;
218
219 return false;
220 }
dcd5856b
MV
221
222 TotalWriten += Res;
be4401bf 223
63b1700f
AL
224 if (Hash != 0)
225 Hash->Add(Buf + (OutP%Size),Res);
be4401bf
AL
226
227 OutP += Res;
228 }
229}
230 /*}}}*/
231// CircleBuf::WriteTillEl - Write from the buffer to a string /*{{{*/
232// ---------------------------------------------------------------------
233/* This copies till the first empty line */
234bool CircleBuf::WriteTillEl(string &Data,bool Single)
235{
236 // We cheat and assume it is unneeded to have more than one buffer load
650faab0 237 for (unsigned long long I = OutP; I < InP; I++)
be4401bf
AL
238 {
239 if (Buf[I%Size] != '\n')
240 continue;
2cbcabd8 241 ++I;
be4401bf
AL
242
243 if (Single == false)
244 {
2cbcabd8
AL
245 if (I < InP && Buf[I%Size] == '\r')
246 ++I;
927c393f
MV
247 if (I >= InP || Buf[I%Size] != '\n')
248 continue;
249 ++I;
be4401bf
AL
250 }
251
be4401bf
AL
252 Data = "";
253 while (OutP < I)
254 {
650faab0 255 unsigned long long Sz = LeftWrite();
be4401bf
AL
256 if (Sz == 0)
257 return false;
927c393f 258 if (I - OutP < Sz)
be4401bf
AL
259 Sz = I - OutP;
260 Data += string((char *)(Buf + (OutP%Size)),Sz);
261 OutP += Sz;
262 }
263 return true;
264 }
265 return false;
266}
267 /*}}}*/
268// CircleBuf::Stats - Print out stats information /*{{{*/
269// ---------------------------------------------------------------------
270/* */
271void CircleBuf::Stats()
272{
273 if (InP == 0)
274 return;
275
276 struct timeval Stop;
277 gettimeofday(&Stop,0);
278/* float Diff = Stop.tv_sec - Start.tv_sec +
279 (float)(Stop.tv_usec - Start.tv_usec)/1000000;
280 clog << "Got " << InP << " in " << Diff << " at " << InP/Diff << endl;*/
281}
282 /*}}}*/
472ff00e
DK
283CircleBuf::~CircleBuf()
284{
285 delete [] Buf;
286 delete Hash;
287}
be4401bf 288
7330f4df
DK
289// HttpServerState::HttpServerState - Constructor /*{{{*/
290HttpServerState::HttpServerState(URI Srv,HttpMethod *Owner) : ServerState(Srv, Owner), In(64*1024), Out(4*1024)
be4401bf 291{
7330f4df 292 TimeOut = _config->FindI("Acquire::http::Timeout",TimeOut);
be4401bf
AL
293 Reset();
294}
295 /*}}}*/
7330f4df 296// HttpServerState::Open - Open a connection to the server /*{{{*/
be4401bf
AL
297// ---------------------------------------------------------------------
298/* This opens a connection to the server. */
7330f4df 299bool HttpServerState::Open()
be4401bf 300{
92e889c8
AL
301 // Use the already open connection if possible.
302 if (ServerFd != -1)
303 return true;
304
be4401bf 305 Close();
492f957a
AL
306 In.Reset();
307 Out.Reset();
e836f356
AL
308 Persistent = true;
309
492f957a 310 // Determine the proxy setting
788a8f42
EL
311 string SpecificProxy = _config->Find("Acquire::http::Proxy::" + ServerName.Host);
312 if (!SpecificProxy.empty())
492f957a 313 {
788a8f42
EL
314 if (SpecificProxy == "DIRECT")
315 Proxy = "";
316 else
317 Proxy = SpecificProxy;
352c2768 318 }
492f957a 319 else
788a8f42
EL
320 {
321 string DefProxy = _config->Find("Acquire::http::Proxy");
322 if (!DefProxy.empty())
323 {
324 Proxy = DefProxy;
325 }
326 else
327 {
328 char* result = getenv("http_proxy");
329 Proxy = result ? result : "";
330 }
331 }
352c2768 332
f8081133 333 // Parse no_proxy, a , separated list of domains
9e2a06ff
AL
334 if (getenv("no_proxy") != 0)
335 {
f8081133
AL
336 if (CheckDomainList(ServerName.Host,getenv("no_proxy")) == true)
337 Proxy = "";
338 }
339
492f957a 340 // Determine what host and port to use based on the proxy settings
934b6582 341 int Port = 0;
492f957a 342 string Host;
dd1fd92b 343 if (Proxy.empty() == true || Proxy.Host.empty() == true)
be4401bf 344 {
92e889c8
AL
345 if (ServerName.Port != 0)
346 Port = ServerName.Port;
be4401bf
AL
347 Host = ServerName.Host;
348 }
349 else
350 {
92e889c8
AL
351 if (Proxy.Port != 0)
352 Port = Proxy.Port;
be4401bf
AL
353 Host = Proxy.Host;
354 }
355
0837bd25 356 // Connect to the remote server
9505213b 357 if (Connect(Host,Port,"http",80,ServerFd,TimeOut,Owner) == false)
0837bd25 358 return false;
3000ccea 359
be4401bf
AL
360 return true;
361}
362 /*}}}*/
7330f4df 363// HttpServerState::Close - Close a connection to the server /*{{{*/
be4401bf
AL
364// ---------------------------------------------------------------------
365/* */
7330f4df 366bool HttpServerState::Close()
be4401bf
AL
367{
368 close(ServerFd);
369 ServerFd = -1;
be4401bf
AL
370 return true;
371}
372 /*}}}*/
7330f4df
DK
373// HttpServerState::RunData - Transfer the data from the socket /*{{{*/
374bool HttpServerState::RunData(FileFd * const File)
be4401bf
AL
375{
376 State = Data;
377
378 // Chunked transfer encoding is fun..
379 if (Encoding == Chunked)
380 {
381 while (1)
382 {
383 // Grab the block size
384 bool Last = true;
385 string Data;
386 In.Limit(-1);
387 do
388 {
389 if (In.WriteTillEl(Data,true) == true)
390 break;
391 }
7330f4df 392 while ((Last = Go(false, File)) == true);
be4401bf
AL
393
394 if (Last == false)
395 return false;
396
397 // See if we are done
650faab0 398 unsigned long long Len = strtoull(Data.c_str(),0,16);
be4401bf
AL
399 if (Len == 0)
400 {
401 In.Limit(-1);
402
403 // We have to remove the entity trailer
404 Last = true;
405 do
406 {
407 if (In.WriteTillEl(Data,true) == true && Data.length() <= 2)
408 break;
409 }
7330f4df 410 while ((Last = Go(false, File)) == true);
be4401bf
AL
411 if (Last == false)
412 return false;
e1b96638 413 return !_error->PendingError();
be4401bf
AL
414 }
415
416 // Transfer the block
417 In.Limit(Len);
7330f4df 418 while (Go(true, File) == true)
be4401bf
AL
419 if (In.IsLimit() == true)
420 break;
421
422 // Error
423 if (In.IsLimit() == false)
424 return false;
425
426 // The server sends an extra new line before the next block specifier..
427 In.Limit(-1);
428 Last = true;
429 do
430 {
431 if (In.WriteTillEl(Data,true) == true)
432 break;
433 }
7330f4df 434 while ((Last = Go(false, File)) == true);
be4401bf
AL
435 if (Last == false)
436 return false;
92e889c8 437 }
be4401bf
AL
438 }
439 else
440 {
441 /* Closes encoding is used when the server did not specify a size, the
442 loss of the connection means we are done */
443 if (Encoding == Closes)
444 In.Limit(-1);
445 else
446 In.Limit(Size - StartPos);
447
448 // Just transfer the whole block.
449 do
450 {
451 if (In.IsLimit() == false)
452 continue;
453
454 In.Limit(-1);
e1b96638 455 return !_error->PendingError();
be4401bf 456 }
7330f4df 457 while (Go(true, File) == true);
be4401bf
AL
458 }
459
7330f4df 460 return Owner->Flush() && !_error->PendingError();
be4401bf
AL
461}
462 /*}}}*/
7330f4df 463bool HttpServerState::ReadHeaderLines(std::string &Data) /*{{{*/
be4401bf 464{
7330f4df
DK
465 return In.WriteTillEl(Data);
466}
467 /*}}}*/
468bool HttpServerState::LoadNextResponse(bool const ToFile, FileFd * const File)/*{{{*/
469{
470 return Go(ToFile, File);
471}
472 /*}}}*/
473bool HttpServerState::WriteResponse(const std::string &Data) /*{{{*/
474{
475 return Out.Read(Data);
476}
477 /*}}}*/
a02db58f 478APT_PURE bool HttpServerState::IsOpen() /*{{{*/
7330f4df
DK
479{
480 return (ServerFd != -1);
481}
482 /*}}}*/
483bool HttpServerState::InitHashes(FileFd &File) /*{{{*/
484{
485 delete In.Hash;
486 In.Hash = new Hashes;
30456e14 487
7330f4df 488 // Set the expected size and read file for the hashes
3de8f956
DK
489 File.Truncate(StartPos);
490 return In.Hash->AddFD(File, StartPos);
7330f4df
DK
491}
492 /*}}}*/
a02db58f 493APT_PURE Hashes * HttpServerState::GetHashes() /*{{{*/
7330f4df
DK
494{
495 return In.Hash;
496}
497 /*}}}*/
498// HttpServerState::Die - The server has closed the connection. /*{{{*/
499bool HttpServerState::Die(FileFd &File)
500{
501 unsigned int LErrno = errno;
be4401bf 502
7330f4df
DK
503 // Dump the buffer to the file
504 if (State == ServerState::Data)
be4401bf 505 {
7330f4df
DK
506 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
507 // can't be set
508 if (File.Name() != "/dev/null")
509 SetNonBlock(File.Fd(),false);
510 while (In.WriteSpace() == true)
be4401bf 511 {
7330f4df
DK
512 if (In.Write(File.Fd()) == false)
513 return _error->Errno("write",_("Error writing to the file"));
e836f356 514
7330f4df
DK
515 // Done
516 if (In.IsLimit() == true)
517 return true;
e836f356 518 }
7330f4df 519 }
b2e465d6 520
7330f4df
DK
521 // See if this is because the server finished the data stream
522 if (In.IsLimit() == false && State != HttpServerState::Header &&
523 Encoding != HttpServerState::Closes)
be4401bf 524 {
7330f4df
DK
525 Close();
526 if (LErrno == 0)
527 return _error->Error(_("Error reading from server. Remote end closed connection"));
528 errno = LErrno;
529 return _error->Errno("read",_("Error reading from server"));
be4401bf 530 }
7330f4df 531 else
92e889c8 532 {
7330f4df
DK
533 In.Limit(-1);
534
535 // Nothing left in the buffer
536 if (In.WriteSpace() == false)
537 return false;
538
539 // We may have got multiple responses back in one packet..
540 Close();
92e889c8
AL
541 return true;
542 }
331e8396 543
7330f4df
DK
544 return false;
545}
546 /*}}}*/
547// HttpServerState::Flush - Dump the buffer into the file /*{{{*/
548// ---------------------------------------------------------------------
549/* This takes the current input buffer from the Server FD and writes it
550 into the file */
551bool HttpServerState::Flush(FileFd * const File)
552{
553 if (File != NULL)
554 {
555 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
556 // can't be set
557 if (File->Name() != "/dev/null")
558 SetNonBlock(File->Fd(),false);
559 if (In.WriteSpace() == false)
560 return true;
561
562 while (In.WriteSpace() == true)
331e8396 563 {
7330f4df
DK
564 if (In.Write(File->Fd()) == false)
565 return _error->Errno("write",_("Error writing to file"));
566 if (In.IsLimit() == true)
567 return true;
331e8396 568 }
7330f4df
DK
569
570 if (In.IsLimit() == true || Encoding == ServerState::Closes)
571 return true;
be4401bf 572 }
7330f4df
DK
573 return false;
574}
575 /*}}}*/
576// HttpServerState::Go - Run a single loop /*{{{*/
577// ---------------------------------------------------------------------
578/* This runs the select loop over the server FDs, Output file FDs and
579 stdin. */
580bool HttpServerState::Go(bool ToFile, FileFd * const File)
581{
582 // Server has closed the connection
583 if (ServerFd == -1 && (In.WriteSpace() == false ||
584 ToFile == false))
585 return false;
586
587 fd_set rfds,wfds;
588 FD_ZERO(&rfds);
589 FD_ZERO(&wfds);
590
591 /* Add the server. We only send more requests if the connection will
592 be persisting */
593 if (Out.WriteSpace() == true && ServerFd != -1
594 && Persistent == true)
595 FD_SET(ServerFd,&wfds);
596 if (In.ReadSpace() == true && ServerFd != -1)
597 FD_SET(ServerFd,&rfds);
be4401bf 598
7330f4df
DK
599 // Add the file
600 int FileFD = -1;
601 if (File != NULL)
602 FileFD = File->Fd();
603
604 if (In.WriteSpace() == true && ToFile == true && FileFD != -1)
605 FD_SET(FileFD,&wfds);
606
607 // Add stdin
608 if (_config->FindB("Acquire::http::DependOnSTDIN", true) == true)
609 FD_SET(STDIN_FILENO,&rfds);
610
611 // Figure out the max fd
612 int MaxFd = FileFD;
613 if (MaxFd < ServerFd)
614 MaxFd = ServerFd;
615
616 // Select
617 struct timeval tv;
618 tv.tv_sec = TimeOut;
619 tv.tv_usec = 0;
620 int Res = 0;
621 if ((Res = select(MaxFd+1,&rfds,&wfds,0,&tv)) < 0)
be4401bf 622 {
7330f4df
DK
623 if (errno == EINTR)
624 return true;
625 return _error->Errno("select",_("Select failed"));
be4401bf 626 }
7330f4df
DK
627
628 if (Res == 0)
e836f356 629 {
7330f4df
DK
630 _error->Error(_("Connection timed out"));
631 return Die(*File);
e836f356
AL
632 }
633
7330f4df
DK
634 // Handle server IO
635 if (ServerFd != -1 && FD_ISSET(ServerFd,&rfds))
be4401bf 636 {
7330f4df
DK
637 errno = 0;
638 if (In.Read(ServerFd) == false)
639 return Die(*File);
640 }
641
642 if (ServerFd != -1 && FD_ISSET(ServerFd,&wfds))
643 {
644 errno = 0;
645 if (Out.Write(ServerFd) == false)
646 return Die(*File);
be4401bf
AL
647 }
648
7330f4df
DK
649 // Send data to the file
650 if (FileFD != -1 && FD_ISSET(FileFD,&wfds))
15d7e515 651 {
7330f4df
DK
652 if (In.Write(FileFD) == false)
653 return _error->Errno("write",_("Error writing to output file"));
15d7e515
MV
654 }
655
dcd5856b
MV
656 if (ExpectedSize > 0 && In.TotalWriten > ExpectedSize)
657 return _error->Error("Writing more data than expected (%llu > %llu)",
658 In.TotalWriten, ExpectedSize);
659
7330f4df
DK
660 // Handle commands from APT
661 if (FD_ISSET(STDIN_FILENO,&rfds))
662 {
663 if (Owner->Run(true) != -1)
664 exit(100);
665 }
666
be4401bf
AL
667 return true;
668}
669 /*}}}*/
670
671// HttpMethod::SendReq - Send the HTTP request /*{{{*/
672// ---------------------------------------------------------------------
673/* This places the http request in the outbound buffer */
7330f4df 674void HttpMethod::SendReq(FetchItem *Itm)
be4401bf
AL
675{
676 URI Uri = Itm->Uri;
c1a22377 677
be4401bf 678 // The HTTP server expects a hostname with a trailing :port
b123b0ba 679 std::stringstream Req;
5b63d2a9
MV
680 string ProperHost;
681
682 if (Uri.Host.find(':') != string::npos)
683 ProperHost = '[' + Uri.Host + ']';
684 else
685 ProperHost = Uri.Host;
f2380a78
DK
686
687 /* RFC 2616 ยง5.1.2 requires absolute URIs for requests to proxies,
688 but while its a must for all servers to accept absolute URIs,
689 it is assumed clients will sent an absolute path for non-proxies */
690 std::string requesturi;
7330f4df 691 if (Server->Proxy.empty() == true || Server->Proxy.Host.empty())
f2380a78
DK
692 requesturi = Uri.Path;
693 else
694 requesturi = Itm->Uri;
695
696 // The "+" is encoded as a workaround for a amazon S3 bug
697 // see LP bugs #1003633 and #1086997.
698 requesturi = QuoteString(requesturi, "+~ ");
699
2b9c9b7f
RG
700 /* Build the request. No keep-alive is included as it is the default
701 in 1.1, can cause problems with proxies, and we are an HTTP/1.1
702 client anyway.
703 C.f. https://tools.ietf.org/wg/httpbis/trac/ticket/158 */
b123b0ba
DK
704 Req << "GET " << requesturi << " HTTP/1.1\r\n";
705 if (Uri.Port != 0)
706 Req << "Host: " << ProperHost << ":" << Uri.Port << "\r\n";
707 else
708 Req << "Host: " << ProperHost << "\r\n";
f2380a78 709
c9cd3b70 710 // generate a cache control header (if needed)
b123b0ba
DK
711 if (_config->FindB("Acquire::http::No-Cache",false) == true)
712 Req << "Cache-Control: no-cache\r\n"
713 << "Pragma: no-cache\r\n";
714 else if (Itm->IndexFile == true)
715 Req << "Cache-Control: max-age=" << _config->FindI("Acquire::http::Max-Age",0) << "\r\n";
716 else if (_config->FindB("Acquire::http::No-Store",false) == true)
717 Req << "Cache-Control: no-store\r\n";
106e6740 718
6f4501f9 719 // If we ask for uncompressed files servers might respond with content-
1e3f4083 720 // negotiation which lets us end up with compressed files we do not support,
6f4501f9
DK
721 // see 657029, 657560 and co, so if we have no extension on the request
722 // ask for text only. As a sidenote: If there is nothing to negotate servers
723 // seem to be nice and ignore it.
724 if (_config->FindB("Acquire::http::SendAccept", true) == true)
725 {
726 size_t const filepos = Itm->Uri.find_last_of('/');
727 string const file = Itm->Uri.substr(filepos + 1);
728 if (flExtension(file) == file)
b123b0ba 729 Req << "Accept: text/*\r\n";
6f4501f9
DK
730 }
731
b123b0ba 732 // Check for a partial file and send if-queries accordingly
be4401bf
AL
733 struct stat SBuf;
734 if (stat(Itm->DestFile.c_str(),&SBuf) >= 0 && SBuf.st_size > 0)
b123b0ba
DK
735 Req << "Range: bytes=" << SBuf.st_size << "-\r\n"
736 << "If-Range: " << TimeRFC1123(SBuf.st_mtime) << "\r\n";
737 else if (Itm->LastModified != 0)
738 Req << "If-Modified-Since: " << TimeRFC1123(Itm->LastModified).c_str() << "\r\n";
be4401bf 739
7330f4df 740 if (Server->Proxy.User.empty() == false || Server->Proxy.Password.empty() == false)
b123b0ba
DK
741 Req << "Proxy-Authorization: Basic "
742 << Base64Encode(Server->Proxy.User + ":" + Server->Proxy.Password) << "\r\n";
be4401bf 743
1de1f703 744 maybe_add_auth (Uri, _config->FindFile("Dir::Etc::netrc"));
b2e465d6 745 if (Uri.User.empty() == false || Uri.Password.empty() == false)
b123b0ba
DK
746 Req << "Authorization: Basic "
747 << Base64Encode(Uri.User + ":" + Uri.Password) << "\r\n";
748
749 Req << "User-Agent: " << _config->Find("Acquire::http::User-Agent",
750 "Debian APT-HTTP/1.3 (" PACKAGE_VERSION ")") << "\r\n";
751
752 Req << "\r\n";
753
c98b1307
AL
754 if (Debug == true)
755 cerr << Req << endl;
c1a22377 756
b123b0ba 757 Server->WriteResponse(Req.str());
be4401bf
AL
758}
759 /*}}}*/
85f72a56
AL
760// HttpMethod::Configuration - Handle a configuration message /*{{{*/
761// ---------------------------------------------------------------------
762/* We stash the desired pipeline depth */
763bool HttpMethod::Configuration(string Message)
764{
7330f4df 765 if (ServerMethod::Configuration(Message) == false)
85f72a56 766 return false;
7330f4df 767
15d7e515 768 AllowRedirect = _config->FindB("Acquire::http::AllowRedirect",true);
30456e14
AL
769 PipelineDepth = _config->FindI("Acquire::http::Pipeline-Depth",
770 PipelineDepth);
c98b1307 771 Debug = _config->FindB("Debug::Acquire::http",false);
bd49b02c
MV
772
773 // Get the proxy to use
774 AutoDetectProxy();
775
85f72a56
AL
776 return true;
777}
778 /*}}}*/
bd49b02c
MV
779// HttpMethod::AutoDetectProxy - auto detect proxy /*{{{*/
780// ---------------------------------------------------------------------
781/* */
782bool HttpMethod::AutoDetectProxy()
783{
c08cf1dc
MV
784 // option is "Acquire::http::Proxy-Auto-Detect" but we allow the old
785 // name without the dash ("-")
786 AutoDetectProxyCmd = _config->Find("Acquire::http::Proxy-Auto-Detect",
787 _config->Find("Acquire::http::ProxyAutoDetect"));
788
bd49b02c
MV
789 if (AutoDetectProxyCmd.empty())
790 return true;
791
792 if (Debug)
793 clog << "Using auto proxy detect command: " << AutoDetectProxyCmd << endl;
794
795 int Pipes[2] = {-1,-1};
796 if (pipe(Pipes) != 0)
797 return _error->Errno("pipe", "Failed to create Pipe");
798
799 pid_t Process = ExecFork();
800 if (Process == 0)
801 {
08ded4d6 802 close(Pipes[0]);
bd49b02c
MV
803 dup2(Pipes[1],STDOUT_FILENO);
804 SetCloseExec(STDOUT_FILENO,false);
08ded4d6 805
bd49b02c
MV
806 const char *Args[2];
807 Args[0] = AutoDetectProxyCmd.c_str();
808 Args[1] = 0;
809 execv(Args[0],(char **)Args);
810 cerr << "Failed to exec method " << Args[0] << endl;
811 _exit(100);
812 }
813 char buf[512];
814 int InFd = Pipes[0];
08ded4d6 815 close(Pipes[1]);
c1042000 816 int res = read(InFd, buf, sizeof(buf)-1);
08ded4d6
MV
817 ExecWait(Process, "ProxyAutoDetect", true);
818
819 if (res < 0)
bd49b02c 820 return _error->Errno("read", "Failed to read");
08ded4d6
MV
821 if (res == 0)
822 return _error->Warning("ProxyAutoDetect returned no data");
823
824 // add trailing \0
825 buf[res] = 0;
826
bd49b02c
MV
827 if (Debug)
828 clog << "auto detect command returned: '" << buf << "'" << endl;
829
830 if (strstr(buf, "http://") == buf)
831 _config->Set("Acquire::http::proxy", _strstrip(buf));
832
833 return true;
834}
835 /*}}}*/
7330f4df
DK
836ServerState * HttpMethod::CreateServerState(URI uri) /*{{{*/
837{
838 return new HttpServerState(uri, this);
839}
840 /*}}}*/
fd46d305
DK
841void HttpMethod::RotateDNS() /*{{{*/
842{
843 ::RotateDNS();
844}
845 /*}}}*/