]> git.saurik.com Git - apt.git/blame - methods/http.cc
improve clean for auto-generated sources.list
[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
ae58a985 6 HTTP Acquire Method - This is the HTTP aquire 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>
be4401bf
AL
36
37#include <sys/stat.h>
38#include <sys/time.h>
be4401bf 39#include <unistd.h>
492f957a 40#include <signal.h>
be4401bf 41#include <stdio.h>
65a1e968 42#include <errno.h>
42195eb2 43#include <string.h>
74865d5d 44#include <climits>
42195eb2 45#include <iostream>
15d7e515 46#include <map>
592b7800 47
be4401bf 48// Internet stuff
0837bd25 49#include <netdb.h>
be4401bf 50
59b46c41 51#include "config.h"
0837bd25 52#include "connect.h"
934b6582 53#include "rfc2553emu.h"
be4401bf 54#include "http.h"
ea542140
DK
55
56#include <apti18n.h>
be4401bf 57 /*}}}*/
42195eb2 58using namespace std;
be4401bf 59
650faab0
DK
60unsigned long long CircleBuf::BwReadLimit=0;
61unsigned long long CircleBuf::BwTickReadData=0;
7c6e2dc7
MV
62struct timeval CircleBuf::BwReadTick={0,0};
63const unsigned int CircleBuf::BW_HZ=10;
7273e494 64
be4401bf
AL
65// CircleBuf::CircleBuf - Circular input buffer /*{{{*/
66// ---------------------------------------------------------------------
67/* */
650faab0 68CircleBuf::CircleBuf(unsigned long long Size) : Size(Size), Hash(0)
be4401bf
AL
69{
70 Buf = new unsigned char[Size];
71 Reset();
7c6e2dc7
MV
72
73 CircleBuf::BwReadLimit = _config->FindI("Acquire::http::Dl-Limit",0)*1024;
be4401bf
AL
74}
75 /*}}}*/
76// CircleBuf::Reset - Reset to the default state /*{{{*/
77// ---------------------------------------------------------------------
78/* */
79void CircleBuf::Reset()
80{
81 InP = 0;
82 OutP = 0;
83 StrPos = 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;
be4401bf
AL
90 }
91};
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 }
221
63b1700f
AL
222 if (Hash != 0)
223 Hash->Add(Buf + (OutP%Size),Res);
be4401bf
AL
224
225 OutP += Res;
226 }
227}
228 /*}}}*/
229// CircleBuf::WriteTillEl - Write from the buffer to a string /*{{{*/
230// ---------------------------------------------------------------------
231/* This copies till the first empty line */
232bool CircleBuf::WriteTillEl(string &Data,bool Single)
233{
234 // We cheat and assume it is unneeded to have more than one buffer load
650faab0 235 for (unsigned long long I = OutP; I < InP; I++)
be4401bf
AL
236 {
237 if (Buf[I%Size] != '\n')
238 continue;
2cbcabd8 239 ++I;
be4401bf
AL
240
241 if (Single == false)
242 {
2cbcabd8
AL
243 if (I < InP && Buf[I%Size] == '\r')
244 ++I;
927c393f
MV
245 if (I >= InP || Buf[I%Size] != '\n')
246 continue;
247 ++I;
be4401bf
AL
248 }
249
be4401bf
AL
250 Data = "";
251 while (OutP < I)
252 {
650faab0 253 unsigned long long Sz = LeftWrite();
be4401bf
AL
254 if (Sz == 0)
255 return false;
927c393f 256 if (I - OutP < Sz)
be4401bf
AL
257 Sz = I - OutP;
258 Data += string((char *)(Buf + (OutP%Size)),Sz);
259 OutP += Sz;
260 }
261 return true;
262 }
263 return false;
264}
265 /*}}}*/
266// CircleBuf::Stats - Print out stats information /*{{{*/
267// ---------------------------------------------------------------------
268/* */
269void CircleBuf::Stats()
270{
271 if (InP == 0)
272 return;
273
274 struct timeval Stop;
275 gettimeofday(&Stop,0);
276/* float Diff = Stop.tv_sec - Start.tv_sec +
277 (float)(Stop.tv_usec - Start.tv_usec)/1000000;
278 clog << "Got " << InP << " in " << Diff << " at " << InP/Diff << endl;*/
279}
280 /*}}}*/
472ff00e
DK
281CircleBuf::~CircleBuf()
282{
283 delete [] Buf;
284 delete Hash;
285}
be4401bf 286
7330f4df
DK
287// HttpServerState::HttpServerState - Constructor /*{{{*/
288HttpServerState::HttpServerState(URI Srv,HttpMethod *Owner) : ServerState(Srv, Owner), In(64*1024), Out(4*1024)
be4401bf 289{
7330f4df 290 TimeOut = _config->FindI("Acquire::http::Timeout",TimeOut);
be4401bf
AL
291 Reset();
292}
293 /*}}}*/
7330f4df 294// HttpServerState::Open - Open a connection to the server /*{{{*/
be4401bf
AL
295// ---------------------------------------------------------------------
296/* This opens a connection to the server. */
7330f4df 297bool HttpServerState::Open()
be4401bf 298{
92e889c8
AL
299 // Use the already open connection if possible.
300 if (ServerFd != -1)
301 return true;
302
be4401bf 303 Close();
492f957a
AL
304 In.Reset();
305 Out.Reset();
e836f356
AL
306 Persistent = true;
307
492f957a 308 // Determine the proxy setting
788a8f42
EL
309 string SpecificProxy = _config->Find("Acquire::http::Proxy::" + ServerName.Host);
310 if (!SpecificProxy.empty())
492f957a 311 {
788a8f42
EL
312 if (SpecificProxy == "DIRECT")
313 Proxy = "";
314 else
315 Proxy = SpecificProxy;
352c2768 316 }
492f957a 317 else
788a8f42
EL
318 {
319 string DefProxy = _config->Find("Acquire::http::Proxy");
320 if (!DefProxy.empty())
321 {
322 Proxy = DefProxy;
323 }
324 else
325 {
326 char* result = getenv("http_proxy");
327 Proxy = result ? result : "";
328 }
329 }
352c2768 330
f8081133 331 // Parse no_proxy, a , separated list of domains
9e2a06ff
AL
332 if (getenv("no_proxy") != 0)
333 {
f8081133
AL
334 if (CheckDomainList(ServerName.Host,getenv("no_proxy")) == true)
335 Proxy = "";
336 }
337
492f957a 338 // Determine what host and port to use based on the proxy settings
934b6582 339 int Port = 0;
492f957a 340 string Host;
dd1fd92b 341 if (Proxy.empty() == true || Proxy.Host.empty() == true)
be4401bf 342 {
92e889c8
AL
343 if (ServerName.Port != 0)
344 Port = ServerName.Port;
be4401bf
AL
345 Host = ServerName.Host;
346 }
347 else
348 {
92e889c8
AL
349 if (Proxy.Port != 0)
350 Port = Proxy.Port;
be4401bf
AL
351 Host = Proxy.Host;
352 }
353
0837bd25 354 // Connect to the remote server
9505213b 355 if (Connect(Host,Port,"http",80,ServerFd,TimeOut,Owner) == false)
0837bd25 356 return false;
3000ccea 357
be4401bf
AL
358 return true;
359}
360 /*}}}*/
7330f4df 361// HttpServerState::Close - Close a connection to the server /*{{{*/
be4401bf
AL
362// ---------------------------------------------------------------------
363/* */
7330f4df 364bool HttpServerState::Close()
be4401bf
AL
365{
366 close(ServerFd);
367 ServerFd = -1;
be4401bf
AL
368 return true;
369}
370 /*}}}*/
7330f4df
DK
371// HttpServerState::RunData - Transfer the data from the socket /*{{{*/
372bool HttpServerState::RunData(FileFd * const File)
be4401bf
AL
373{
374 State = Data;
375
376 // Chunked transfer encoding is fun..
377 if (Encoding == Chunked)
378 {
379 while (1)
380 {
381 // Grab the block size
382 bool Last = true;
383 string Data;
384 In.Limit(-1);
385 do
386 {
387 if (In.WriteTillEl(Data,true) == true)
388 break;
389 }
7330f4df 390 while ((Last = Go(false, File)) == true);
be4401bf
AL
391
392 if (Last == false)
393 return false;
394
395 // See if we are done
650faab0 396 unsigned long long Len = strtoull(Data.c_str(),0,16);
be4401bf
AL
397 if (Len == 0)
398 {
399 In.Limit(-1);
400
401 // We have to remove the entity trailer
402 Last = true;
403 do
404 {
405 if (In.WriteTillEl(Data,true) == true && Data.length() <= 2)
406 break;
407 }
7330f4df 408 while ((Last = Go(false, File)) == true);
be4401bf
AL
409 if (Last == false)
410 return false;
e1b96638 411 return !_error->PendingError();
be4401bf
AL
412 }
413
414 // Transfer the block
415 In.Limit(Len);
7330f4df 416 while (Go(true, File) == true)
be4401bf
AL
417 if (In.IsLimit() == true)
418 break;
419
420 // Error
421 if (In.IsLimit() == false)
422 return false;
423
424 // The server sends an extra new line before the next block specifier..
425 In.Limit(-1);
426 Last = true;
427 do
428 {
429 if (In.WriteTillEl(Data,true) == true)
430 break;
431 }
7330f4df 432 while ((Last = Go(false, File)) == true);
be4401bf
AL
433 if (Last == false)
434 return false;
92e889c8 435 }
be4401bf
AL
436 }
437 else
438 {
439 /* Closes encoding is used when the server did not specify a size, the
440 loss of the connection means we are done */
441 if (Encoding == Closes)
442 In.Limit(-1);
443 else
444 In.Limit(Size - StartPos);
445
446 // Just transfer the whole block.
447 do
448 {
449 if (In.IsLimit() == false)
450 continue;
451
452 In.Limit(-1);
e1b96638 453 return !_error->PendingError();
be4401bf 454 }
7330f4df 455 while (Go(true, File) == true);
be4401bf
AL
456 }
457
7330f4df 458 return Owner->Flush() && !_error->PendingError();
be4401bf
AL
459}
460 /*}}}*/
7330f4df 461bool HttpServerState::ReadHeaderLines(std::string &Data) /*{{{*/
be4401bf 462{
7330f4df
DK
463 return In.WriteTillEl(Data);
464}
465 /*}}}*/
466bool HttpServerState::LoadNextResponse(bool const ToFile, FileFd * const File)/*{{{*/
467{
468 return Go(ToFile, File);
469}
470 /*}}}*/
471bool HttpServerState::WriteResponse(const std::string &Data) /*{{{*/
472{
473 return Out.Read(Data);
474}
475 /*}}}*/
476bool HttpServerState::IsOpen() /*{{{*/
477{
478 return (ServerFd != -1);
479}
480 /*}}}*/
481bool HttpServerState::InitHashes(FileFd &File) /*{{{*/
482{
483 delete In.Hash;
484 In.Hash = new Hashes;
30456e14 485
7330f4df
DK
486 // Set the expected size and read file for the hashes
487 if (StartPos >= 0)
c901051d 488 {
7330f4df
DK
489 File.Truncate(StartPos);
490
491 return In.Hash->AddFD(File, StartPos);
c901051d 492 }
7330f4df
DK
493 return true;
494}
495 /*}}}*/
496Hashes * HttpServerState::GetHashes() /*{{{*/
497{
498 return In.Hash;
499}
500 /*}}}*/
501// HttpServerState::Die - The server has closed the connection. /*{{{*/
502bool HttpServerState::Die(FileFd &File)
503{
504 unsigned int LErrno = errno;
be4401bf 505
7330f4df
DK
506 // Dump the buffer to the file
507 if (State == ServerState::Data)
be4401bf 508 {
7330f4df
DK
509 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
510 // can't be set
511 if (File.Name() != "/dev/null")
512 SetNonBlock(File.Fd(),false);
513 while (In.WriteSpace() == true)
be4401bf 514 {
7330f4df
DK
515 if (In.Write(File.Fd()) == false)
516 return _error->Errno("write",_("Error writing to the file"));
e836f356 517
7330f4df
DK
518 // Done
519 if (In.IsLimit() == true)
520 return true;
e836f356 521 }
7330f4df 522 }
b2e465d6 523
7330f4df
DK
524 // See if this is because the server finished the data stream
525 if (In.IsLimit() == false && State != HttpServerState::Header &&
526 Encoding != HttpServerState::Closes)
be4401bf 527 {
7330f4df
DK
528 Close();
529 if (LErrno == 0)
530 return _error->Error(_("Error reading from server. Remote end closed connection"));
531 errno = LErrno;
532 return _error->Errno("read",_("Error reading from server"));
be4401bf 533 }
7330f4df 534 else
92e889c8 535 {
7330f4df
DK
536 In.Limit(-1);
537
538 // Nothing left in the buffer
539 if (In.WriteSpace() == false)
540 return false;
541
542 // We may have got multiple responses back in one packet..
543 Close();
92e889c8
AL
544 return true;
545 }
331e8396 546
7330f4df
DK
547 return false;
548}
549 /*}}}*/
550// HttpServerState::Flush - Dump the buffer into the file /*{{{*/
551// ---------------------------------------------------------------------
552/* This takes the current input buffer from the Server FD and writes it
553 into the file */
554bool HttpServerState::Flush(FileFd * const File)
555{
556 if (File != NULL)
557 {
558 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
559 // can't be set
560 if (File->Name() != "/dev/null")
561 SetNonBlock(File->Fd(),false);
562 if (In.WriteSpace() == false)
563 return true;
564
565 while (In.WriteSpace() == true)
331e8396 566 {
7330f4df
DK
567 if (In.Write(File->Fd()) == false)
568 return _error->Errno("write",_("Error writing to file"));
569 if (In.IsLimit() == true)
570 return true;
331e8396 571 }
7330f4df
DK
572
573 if (In.IsLimit() == true || Encoding == ServerState::Closes)
574 return true;
be4401bf 575 }
7330f4df
DK
576 return false;
577}
578 /*}}}*/
579// HttpServerState::Go - Run a single loop /*{{{*/
580// ---------------------------------------------------------------------
581/* This runs the select loop over the server FDs, Output file FDs and
582 stdin. */
583bool HttpServerState::Go(bool ToFile, FileFd * const File)
584{
585 // Server has closed the connection
586 if (ServerFd == -1 && (In.WriteSpace() == false ||
587 ToFile == false))
588 return false;
589
590 fd_set rfds,wfds;
591 FD_ZERO(&rfds);
592 FD_ZERO(&wfds);
593
594 /* Add the server. We only send more requests if the connection will
595 be persisting */
596 if (Out.WriteSpace() == true && ServerFd != -1
597 && Persistent == true)
598 FD_SET(ServerFd,&wfds);
599 if (In.ReadSpace() == true && ServerFd != -1)
600 FD_SET(ServerFd,&rfds);
be4401bf 601
7330f4df
DK
602 // Add the file
603 int FileFD = -1;
604 if (File != NULL)
605 FileFD = File->Fd();
606
607 if (In.WriteSpace() == true && ToFile == true && FileFD != -1)
608 FD_SET(FileFD,&wfds);
609
610 // Add stdin
611 if (_config->FindB("Acquire::http::DependOnSTDIN", true) == true)
612 FD_SET(STDIN_FILENO,&rfds);
613
614 // Figure out the max fd
615 int MaxFd = FileFD;
616 if (MaxFd < ServerFd)
617 MaxFd = ServerFd;
618
619 // Select
620 struct timeval tv;
621 tv.tv_sec = TimeOut;
622 tv.tv_usec = 0;
623 int Res = 0;
624 if ((Res = select(MaxFd+1,&rfds,&wfds,0,&tv)) < 0)
be4401bf 625 {
7330f4df
DK
626 if (errno == EINTR)
627 return true;
628 return _error->Errno("select",_("Select failed"));
be4401bf 629 }
7330f4df
DK
630
631 if (Res == 0)
e836f356 632 {
7330f4df
DK
633 _error->Error(_("Connection timed out"));
634 return Die(*File);
e836f356
AL
635 }
636
7330f4df
DK
637 // Handle server IO
638 if (ServerFd != -1 && FD_ISSET(ServerFd,&rfds))
be4401bf 639 {
7330f4df
DK
640 errno = 0;
641 if (In.Read(ServerFd) == false)
642 return Die(*File);
643 }
644
645 if (ServerFd != -1 && FD_ISSET(ServerFd,&wfds))
646 {
647 errno = 0;
648 if (Out.Write(ServerFd) == false)
649 return Die(*File);
be4401bf
AL
650 }
651
7330f4df
DK
652 // Send data to the file
653 if (FileFD != -1 && FD_ISSET(FileFD,&wfds))
15d7e515 654 {
7330f4df
DK
655 if (In.Write(FileFD) == false)
656 return _error->Errno("write",_("Error writing to output file"));
15d7e515
MV
657 }
658
7330f4df
DK
659 // Handle commands from APT
660 if (FD_ISSET(STDIN_FILENO,&rfds))
661 {
662 if (Owner->Run(true) != -1)
663 exit(100);
664 }
665
be4401bf
AL
666 return true;
667}
668 /*}}}*/
669
670// HttpMethod::SendReq - Send the HTTP request /*{{{*/
671// ---------------------------------------------------------------------
672/* This places the http request in the outbound buffer */
7330f4df 673void HttpMethod::SendReq(FetchItem *Itm)
be4401bf
AL
674{
675 URI Uri = Itm->Uri;
c1a22377 676
be4401bf 677 // The HTTP server expects a hostname with a trailing :port
c1a22377 678 char Buf[1000];
5b63d2a9
MV
679 string ProperHost;
680
681 if (Uri.Host.find(':') != string::npos)
682 ProperHost = '[' + Uri.Host + ']';
683 else
684 ProperHost = Uri.Host;
be4401bf
AL
685 if (Uri.Port != 0)
686 {
687 sprintf(Buf,":%u",Uri.Port);
688 ProperHost += Buf;
689 }
690
c1a22377
AL
691 // Just in case.
692 if (Itm->Uri.length() >= sizeof(Buf))
693 abort();
f2380a78
DK
694
695 /* RFC 2616 ยง5.1.2 requires absolute URIs for requests to proxies,
696 but while its a must for all servers to accept absolute URIs,
697 it is assumed clients will sent an absolute path for non-proxies */
698 std::string requesturi;
7330f4df 699 if (Server->Proxy.empty() == true || Server->Proxy.Host.empty())
f2380a78
DK
700 requesturi = Uri.Path;
701 else
702 requesturi = Itm->Uri;
703
704 // The "+" is encoded as a workaround for a amazon S3 bug
705 // see LP bugs #1003633 and #1086997.
706 requesturi = QuoteString(requesturi, "+~ ");
707
2b9c9b7f
RG
708 /* Build the request. No keep-alive is included as it is the default
709 in 1.1, can cause problems with proxies, and we are an HTTP/1.1
710 client anyway.
711 C.f. https://tools.ietf.org/wg/httpbis/trac/ticket/158 */
2b9c9b7f 712 sprintf(Buf,"GET %s HTTP/1.1\r\nHost: %s\r\n",
f2380a78
DK
713 requesturi.c_str(),ProperHost.c_str());
714
c9cd3b70
MV
715 // generate a cache control header (if needed)
716 if (_config->FindB("Acquire::http::No-Cache",false) == true)
717 {
718 strcat(Buf,"Cache-Control: no-cache\r\nPragma: no-cache\r\n");
719 }
720 else
721 {
722 if (Itm->IndexFile == true)
c1a22377 723 {
c9cd3b70
MV
724 sprintf(Buf+strlen(Buf),"Cache-Control: max-age=%u\r\n",
725 _config->FindI("Acquire::http::Max-Age",0));
726 }
727 else
728 {
729 if (_config->FindB("Acquire::http::No-Store",false) == true)
730 strcat(Buf,"Cache-Control: no-store\r\n");
c1a22377
AL
731 }
732 }
106e6740 733
6f4501f9
DK
734 // If we ask for uncompressed files servers might respond with content-
735 // negotation which lets us end up with compressed files we do not support,
736 // see 657029, 657560 and co, so if we have no extension on the request
737 // ask for text only. As a sidenote: If there is nothing to negotate servers
738 // seem to be nice and ignore it.
739 if (_config->FindB("Acquire::http::SendAccept", true) == true)
740 {
741 size_t const filepos = Itm->Uri.find_last_of('/');
742 string const file = Itm->Uri.substr(filepos + 1);
743 if (flExtension(file) == file)
744 strcat(Buf,"Accept: text/*\r\n");
745 }
746
be4401bf 747 string Req = Buf;
492f957a 748
be4401bf
AL
749 // Check for a partial file
750 struct stat SBuf;
751 if (stat(Itm->DestFile.c_str(),&SBuf) >= 0 && SBuf.st_size > 0)
752 {
753 // In this case we send an if-range query with a range header
78c72d0c 754 sprintf(Buf,"Range: bytes=%lli-\r\nIf-Range: %s\r\n",(long long)SBuf.st_size,
be4401bf
AL
755 TimeRFC1123(SBuf.st_mtime).c_str());
756 Req += Buf;
757 }
758 else
759 {
760 if (Itm->LastModified != 0)
761 {
762 sprintf(Buf,"If-Modified-Since: %s\r\n",TimeRFC1123(Itm->LastModified).c_str());
763 Req += Buf;
764 }
765 }
766
7330f4df 767 if (Server->Proxy.User.empty() == false || Server->Proxy.Password.empty() == false)
8d64c395 768 Req += string("Proxy-Authorization: Basic ") +
7330f4df 769 Base64Encode(Server->Proxy.User + ":" + Server->Proxy.Password) + "\r\n";
be4401bf 770
1de1f703 771 maybe_add_auth (Uri, _config->FindFile("Dir::Etc::netrc"));
b2e465d6 772 if (Uri.User.empty() == false || Uri.Password.empty() == false)
592b7800 773 {
b2e465d6
AL
774 Req += string("Authorization: Basic ") +
775 Base64Encode(Uri.User + ":" + Uri.Password) + "\r\n";
592b7800 776 }
9f542bae 777 Req += "User-Agent: " + _config->Find("Acquire::http::User-Agent",
335e2c82 778 "Debian APT-HTTP/1.3 (" PACKAGE_VERSION ")") + "\r\n\r\n";
c98b1307
AL
779
780 if (Debug == true)
781 cerr << Req << endl;
c1a22377 782
7330f4df 783 Server->WriteResponse(Req);
be4401bf
AL
784}
785 /*}}}*/
85f72a56
AL
786// HttpMethod::Configuration - Handle a configuration message /*{{{*/
787// ---------------------------------------------------------------------
788/* We stash the desired pipeline depth */
789bool HttpMethod::Configuration(string Message)
790{
7330f4df 791 if (ServerMethod::Configuration(Message) == false)
85f72a56 792 return false;
7330f4df 793
15d7e515 794 AllowRedirect = _config->FindB("Acquire::http::AllowRedirect",true);
30456e14
AL
795 PipelineDepth = _config->FindI("Acquire::http::Pipeline-Depth",
796 PipelineDepth);
c98b1307 797 Debug = _config->FindB("Debug::Acquire::http",false);
bd49b02c
MV
798
799 // Get the proxy to use
800 AutoDetectProxy();
801
85f72a56
AL
802 return true;
803}
804 /*}}}*/
bd49b02c
MV
805// HttpMethod::AutoDetectProxy - auto detect proxy /*{{{*/
806// ---------------------------------------------------------------------
807/* */
808bool HttpMethod::AutoDetectProxy()
809{
c08cf1dc
MV
810 // option is "Acquire::http::Proxy-Auto-Detect" but we allow the old
811 // name without the dash ("-")
812 AutoDetectProxyCmd = _config->Find("Acquire::http::Proxy-Auto-Detect",
813 _config->Find("Acquire::http::ProxyAutoDetect"));
814
bd49b02c
MV
815 if (AutoDetectProxyCmd.empty())
816 return true;
817
818 if (Debug)
819 clog << "Using auto proxy detect command: " << AutoDetectProxyCmd << endl;
820
821 int Pipes[2] = {-1,-1};
822 if (pipe(Pipes) != 0)
823 return _error->Errno("pipe", "Failed to create Pipe");
824
825 pid_t Process = ExecFork();
826 if (Process == 0)
827 {
08ded4d6 828 close(Pipes[0]);
bd49b02c
MV
829 dup2(Pipes[1],STDOUT_FILENO);
830 SetCloseExec(STDOUT_FILENO,false);
08ded4d6 831
bd49b02c
MV
832 const char *Args[2];
833 Args[0] = AutoDetectProxyCmd.c_str();
834 Args[1] = 0;
835 execv(Args[0],(char **)Args);
836 cerr << "Failed to exec method " << Args[0] << endl;
837 _exit(100);
838 }
839 char buf[512];
840 int InFd = Pipes[0];
08ded4d6 841 close(Pipes[1]);
c1042000 842 int res = read(InFd, buf, sizeof(buf)-1);
08ded4d6
MV
843 ExecWait(Process, "ProxyAutoDetect", true);
844
845 if (res < 0)
bd49b02c 846 return _error->Errno("read", "Failed to read");
08ded4d6
MV
847 if (res == 0)
848 return _error->Warning("ProxyAutoDetect returned no data");
849
850 // add trailing \0
851 buf[res] = 0;
852
bd49b02c
MV
853 if (Debug)
854 clog << "auto detect command returned: '" << buf << "'" << endl;
855
856 if (strstr(buf, "http://") == buf)
857 _config->Set("Acquire::http::proxy", _strstrip(buf));
858
859 return true;
860}
861 /*}}}*/
7330f4df
DK
862ServerState * HttpMethod::CreateServerState(URI uri) /*{{{*/
863{
864 return new HttpServerState(uri, this);
865}
866 /*}}}*/
fd46d305
DK
867void HttpMethod::RotateDNS() /*{{{*/
868{
869 ::RotateDNS();
870}
871 /*}}}*/