1 // -*- mode: cpp; mode: fold -*-
3 // $Id: http.cc,v 1.59 2004/05/08 19:42:35 mdz Exp $
4 /* ######################################################################
6 HTTP Acquire Method - This is the HTTP aquire method for APT.
8 It uses HTTP/1.1 and many of the fancy options there-in, such as
9 pipelining, range, if-range and so on.
11 It is based on a doubly buffered select loop. A groupe of requests are
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
15 the same way and fed into the fd for the file (may be a pipe in future).
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.
25 ##################################################################### */
27 // Include Files /*{{{*/
28 #include <apt-pkg/fileutl.h>
29 #include <apt-pkg/acquire-method.h>
30 #include <apt-pkg/error.h>
31 #include <apt-pkg/hashes.h>
32 #include <apt-pkg/netrc.h>
52 #include "rfc2553emu.h"
57 string
HttpMethod::FailFile
;
58 int HttpMethod::FailFd
= -1;
59 time_t HttpMethod::FailTime
= 0;
60 unsigned long PipelineDepth
= 10;
61 unsigned long TimeOut
= 120;
62 bool AllowRedirect
= false;
66 unsigned long CircleBuf::BwReadLimit
=0;
67 unsigned long CircleBuf::BwTickReadData
=0;
68 struct timeval
CircleBuf::BwReadTick
={0,0};
69 const unsigned int CircleBuf::BW_HZ
=10;
71 // CircleBuf::CircleBuf - Circular input buffer /*{{{*/
72 // ---------------------------------------------------------------------
74 CircleBuf::CircleBuf(unsigned long Size
) : Size(Size
), Hash(0)
76 Buf
= new unsigned char[Size
];
79 CircleBuf::BwReadLimit
= _config
->FindI("Acquire::http::Dl-Limit",0)*1024;
82 // CircleBuf::Reset - Reset to the default state /*{{{*/
83 // ---------------------------------------------------------------------
85 void CircleBuf::Reset()
90 MaxGet
= (unsigned int)-1;
99 // CircleBuf::Read - Read from a FD into the circular buffer /*{{{*/
100 // ---------------------------------------------------------------------
101 /* This fills up the buffer with as much data as is in the FD, assuming it
103 bool CircleBuf::Read(int Fd
)
105 unsigned long BwReadMax
;
109 // Woops, buffer is full
110 if (InP
- OutP
== Size
)
113 // what's left to read in this tick
114 BwReadMax
= CircleBuf::BwReadLimit
/BW_HZ
;
116 if(CircleBuf::BwReadLimit
) {
118 gettimeofday(&now
,0);
120 unsigned long d
= (now
.tv_sec
-CircleBuf::BwReadTick
.tv_sec
)*1000000 +
121 now
.tv_usec
-CircleBuf::BwReadTick
.tv_usec
;
122 if(d
> 1000000/BW_HZ
) {
123 CircleBuf::BwReadTick
= now
;
124 CircleBuf::BwTickReadData
= 0;
127 if(CircleBuf::BwTickReadData
>= BwReadMax
) {
128 usleep(1000000/BW_HZ
);
133 // Write the buffer segment
135 if(CircleBuf::BwReadLimit
) {
136 Res
= read(Fd
,Buf
+ (InP%Size
),
137 BwReadMax
> LeftRead() ? LeftRead() : BwReadMax
);
139 Res
= read(Fd
,Buf
+ (InP%Size
),LeftRead());
141 if(Res
> 0 && BwReadLimit
> 0)
142 CircleBuf::BwTickReadData
+= Res
;
154 gettimeofday(&Start
,0);
159 // CircleBuf::Read - Put the string into the buffer /*{{{*/
160 // ---------------------------------------------------------------------
161 /* This will hold the string in and fill the buffer with it as it empties */
162 bool CircleBuf::Read(string Data
)
169 // CircleBuf::FillOut - Fill the buffer from the output queue /*{{{*/
170 // ---------------------------------------------------------------------
172 void CircleBuf::FillOut()
174 if (OutQueue
.empty() == true)
178 // Woops, buffer is full
179 if (InP
- OutP
== Size
)
182 // Write the buffer segment
183 unsigned long Sz
= LeftRead();
184 if (OutQueue
.length() - StrPos
< Sz
)
185 Sz
= OutQueue
.length() - StrPos
;
186 memcpy(Buf
+ (InP%Size
),OutQueue
.c_str() + StrPos
,Sz
);
191 if (OutQueue
.length() == StrPos
)
200 // CircleBuf::Write - Write from the buffer into a FD /*{{{*/
201 // ---------------------------------------------------------------------
202 /* This empties the buffer into the FD. */
203 bool CircleBuf::Write(int Fd
)
209 // Woops, buffer is empty
216 // Write the buffer segment
218 Res
= write(Fd
,Buf
+ (OutP%Size
),LeftWrite());
231 Hash
->Add(Buf
+ (OutP%Size
),Res
);
237 // CircleBuf::WriteTillEl - Write from the buffer to a string /*{{{*/
238 // ---------------------------------------------------------------------
239 /* This copies till the first empty line */
240 bool CircleBuf::WriteTillEl(string
&Data
,bool Single
)
242 // We cheat and assume it is unneeded to have more than one buffer load
243 for (unsigned long I
= OutP
; I
< InP
; I
++)
245 if (Buf
[I%Size
] != '\n')
251 if (I
< InP
&& Buf
[I%Size
] == '\r')
253 if (I
>= InP
|| Buf
[I%Size
] != '\n')
261 unsigned long Sz
= LeftWrite();
266 Data
+= string((char *)(Buf
+ (OutP%Size
)),Sz
);
274 // CircleBuf::Stats - Print out stats information /*{{{*/
275 // ---------------------------------------------------------------------
277 void CircleBuf::Stats()
283 gettimeofday(&Stop
,0);
284 /* float Diff = Stop.tv_sec - Start.tv_sec +
285 (float)(Stop.tv_usec - Start.tv_usec)/1000000;
286 clog << "Got " << InP << " in " << Diff << " at " << InP/Diff << endl;*/
290 // ServerState::ServerState - Constructor /*{{{*/
291 // ---------------------------------------------------------------------
293 ServerState::ServerState(URI Srv
,HttpMethod
*Owner
) : Owner(Owner
),
294 In(64*1024), Out(4*1024),
300 // ServerState::Open - Open a connection to the server /*{{{*/
301 // ---------------------------------------------------------------------
302 /* This opens a connection to the server. */
303 bool ServerState::Open()
305 // Use the already open connection if possible.
314 // Determine the proxy setting
315 string SpecificProxy
= _config
->Find("Acquire::http::Proxy::" + ServerName
.Host
);
316 if (!SpecificProxy
.empty())
318 if (SpecificProxy
== "DIRECT")
321 Proxy
= SpecificProxy
;
325 string DefProxy
= _config
->Find("Acquire::http::Proxy");
326 if (!DefProxy
.empty())
332 char* result
= getenv("http_proxy");
333 Proxy
= result
? result
: "";
337 // Parse no_proxy, a , separated list of domains
338 if (getenv("no_proxy") != 0)
340 if (CheckDomainList(ServerName
.Host
,getenv("no_proxy")) == true)
344 // Determine what host and port to use based on the proxy settings
347 if (Proxy
.empty() == true || Proxy
.Host
.empty() == true)
349 if (ServerName
.Port
!= 0)
350 Port
= ServerName
.Port
;
351 Host
= ServerName
.Host
;
360 // Connect to the remote server
361 if (Connect(Host
,Port
,"http",80,ServerFd
,TimeOut
,Owner
) == false)
367 // ServerState::Close - Close a connection to the server /*{{{*/
368 // ---------------------------------------------------------------------
370 bool ServerState::Close()
377 // ServerState::RunHeaders - Get the headers before the data /*{{{*/
378 // ---------------------------------------------------------------------
379 /* Returns 0 if things are OK, 1 if an IO error occurred and 2 if a header
380 parse error occurred */
381 int ServerState::RunHeaders()
385 Owner
->Status(_("Waiting for headers"));
399 if (In
.WriteTillEl(Data
) == false)
405 for (string::const_iterator I
= Data
.begin(); I
< Data
.end(); I
++)
407 string::const_iterator J
= I
;
408 for (; J
!= Data
.end() && *J
!= '\n' && *J
!= '\r';J
++);
409 if (HeaderLine(string(I
,J
)) == false)
414 // 100 Continue is a Nop...
418 // Tidy up the connection persistance state.
419 if (Encoding
== Closes
&& HaveContent
== true)
424 while (Owner
->Go(false,this) == true);
429 // ServerState::RunData - Transfer the data from the socket /*{{{*/
430 // ---------------------------------------------------------------------
432 bool ServerState::RunData()
436 // Chunked transfer encoding is fun..
437 if (Encoding
== Chunked
)
441 // Grab the block size
447 if (In
.WriteTillEl(Data
,true) == true)
450 while ((Last
= Owner
->Go(false,this)) == true);
455 // See if we are done
456 unsigned long Len
= strtol(Data
.c_str(),0,16);
461 // We have to remove the entity trailer
465 if (In
.WriteTillEl(Data
,true) == true && Data
.length() <= 2)
468 while ((Last
= Owner
->Go(false,this)) == true);
471 return !_error
->PendingError();
474 // Transfer the block
476 while (Owner
->Go(true,this) == true)
477 if (In
.IsLimit() == true)
481 if (In
.IsLimit() == false)
484 // The server sends an extra new line before the next block specifier..
489 if (In
.WriteTillEl(Data
,true) == true)
492 while ((Last
= Owner
->Go(false,this)) == true);
499 /* Closes encoding is used when the server did not specify a size, the
500 loss of the connection means we are done */
501 if (Encoding
== Closes
)
504 In
.Limit(Size
- StartPos
);
506 // Just transfer the whole block.
509 if (In
.IsLimit() == false)
513 return !_error
->PendingError();
515 while (Owner
->Go(true,this) == true);
518 return Owner
->Flush(this) && !_error
->PendingError();
521 // ServerState::HeaderLine - Process a header line /*{{{*/
522 // ---------------------------------------------------------------------
524 bool ServerState::HeaderLine(string Line
)
526 if (Line
.empty() == true)
529 // The http server might be trying to do something evil.
530 if (Line
.length() >= MAXLEN
)
531 return _error
->Error(_("Got a single header line over %u chars"),MAXLEN
);
533 string::size_type Pos
= Line
.find(' ');
534 if (Pos
== string::npos
|| Pos
+1 > Line
.length())
536 // Blah, some servers use "connection:closes", evil.
537 Pos
= Line
.find(':');
538 if (Pos
== string::npos
|| Pos
+ 2 > Line
.length())
539 return _error
->Error(_("Bad header line"));
543 // Parse off any trailing spaces between the : and the next word.
544 string::size_type Pos2
= Pos
;
545 while (Pos2
< Line
.length() && isspace(Line
[Pos2
]) != 0)
548 string Tag
= string(Line
,0,Pos
);
549 string Val
= string(Line
,Pos2
);
551 if (stringcasecmp(Tag
.c_str(),Tag
.c_str()+4,"HTTP") == 0)
553 // Evil servers return no version
556 if (sscanf(Line
.c_str(),"HTTP/%u.%u %u%[^\n]",&Major
,&Minor
,
558 return _error
->Error(_("The HTTP server sent an invalid reply header"));
564 if (sscanf(Line
.c_str(),"HTTP %u%[^\n]",&Result
,Code
) != 2)
565 return _error
->Error(_("The HTTP server sent an invalid reply header"));
568 /* Check the HTTP response header to get the default persistance
574 if (Major
== 1 && Minor
<= 0)
583 if (stringcasecmp(Tag
,"Content-Length:") == 0)
585 if (Encoding
== Closes
)
589 // The length is already set from the Content-Range header
593 if (sscanf(Val
.c_str(),"%lu",&Size
) != 1)
594 return _error
->Error(_("The HTTP server sent an invalid Content-Length header"));
598 if (stringcasecmp(Tag
,"Content-Type:") == 0)
604 if (stringcasecmp(Tag
,"Content-Range:") == 0)
608 if (sscanf(Val
.c_str(),"bytes %lu-%*u/%lu",&StartPos
,&Size
) != 2)
609 return _error
->Error(_("The HTTP server sent an invalid Content-Range header"));
610 if ((unsigned)StartPos
> Size
)
611 return _error
->Error(_("This HTTP server has broken range support"));
615 if (stringcasecmp(Tag
,"Transfer-Encoding:") == 0)
618 if (stringcasecmp(Val
,"chunked") == 0)
623 if (stringcasecmp(Tag
,"Connection:") == 0)
625 if (stringcasecmp(Val
,"close") == 0)
627 if (stringcasecmp(Val
,"keep-alive") == 0)
632 if (stringcasecmp(Tag
,"Last-Modified:") == 0)
634 if (StrToTime(Val
,Date
) == false)
635 return _error
->Error(_("Unknown date format"));
639 if (stringcasecmp(Tag
,"Location:") == 0)
649 // HttpMethod::SendReq - Send the HTTP request /*{{{*/
650 // ---------------------------------------------------------------------
651 /* This places the http request in the outbound buffer */
652 void HttpMethod::SendReq(FetchItem
*Itm
,CircleBuf
&Out
)
656 // The HTTP server expects a hostname with a trailing :port
658 string ProperHost
= Uri
.Host
;
661 sprintf(Buf
,":%u",Uri
.Port
);
666 if (Itm
->Uri
.length() >= sizeof(Buf
))
669 /* Build the request. We include a keep-alive header only for non-proxy
670 requests. This is to tweak old http/1.0 servers that do support keep-alive
671 but not HTTP/1.1 automatic keep-alive. Doing this with a proxy server
672 will glitch HTTP/1.0 proxies because they do not filter it out and
673 pass it on, HTTP/1.1 says the connection should default to keep alive
674 and we expect the proxy to do this */
675 if (Proxy
.empty() == true || Proxy
.Host
.empty())
676 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\nConnection: keep-alive\r\n",
677 QuoteString(Uri
.Path
,"~").c_str(),ProperHost
.c_str());
680 /* Generate a cache control header if necessary. We place a max
681 cache age on index files, optionally set a no-cache directive
682 and a no-store directive for archives. */
683 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\n",
684 Itm
->Uri
.c_str(),ProperHost
.c_str());
685 // only generate a cache control header if we actually want to
687 if (_config
->FindB("Acquire::http::No-Cache",false) == false)
689 if (Itm
->IndexFile
== true)
690 sprintf(Buf
+strlen(Buf
),"Cache-Control: max-age=%u\r\n",
691 _config
->FindI("Acquire::http::Max-Age",0));
694 if (_config
->FindB("Acquire::http::No-Store",false) == true)
695 strcat(Buf
,"Cache-Control: no-store\r\n");
699 // generate a no-cache header if needed
700 if (_config
->FindB("Acquire::http::No-Cache",false) == true)
701 strcat(Buf
,"Cache-Control: no-cache\r\nPragma: no-cache\r\n");
706 // Check for a partial file
708 if (stat(Itm
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
710 // In this case we send an if-range query with a range header
711 sprintf(Buf
,"Range: bytes=%li-\r\nIf-Range: %s\r\n",(long)SBuf
.st_size
- 1,
712 TimeRFC1123(SBuf
.st_mtime
).c_str());
717 if (Itm
->LastModified
!= 0)
719 sprintf(Buf
,"If-Modified-Since: %s\r\n",TimeRFC1123(Itm
->LastModified
).c_str());
724 if (Proxy
.User
.empty() == false || Proxy
.Password
.empty() == false)
725 Req
+= string("Proxy-Authorization: Basic ") +
726 Base64Encode(Proxy
.User
+ ":" + Proxy
.Password
) + "\r\n";
728 maybe_add_auth (Uri
, _config
->FindFile("Dir::Etc::netrc"));
729 if (Uri
.User
.empty() == false || Uri
.Password
.empty() == false)
731 Req
+= string("Authorization: Basic ") +
732 Base64Encode(Uri
.User
+ ":" + Uri
.Password
) + "\r\n";
734 Req
+= "User-Agent: " + _config
->Find("Acquire::http::User-Agent",
735 "Debian APT-HTTP/1.3 ("VERSION
")") + "\r\n\r\n";
743 // HttpMethod::Go - Run a single loop /*{{{*/
744 // ---------------------------------------------------------------------
745 /* This runs the select loop over the server FDs, Output file FDs and
747 bool HttpMethod::Go(bool ToFile
,ServerState
*Srv
)
749 // Server has closed the connection
750 if (Srv
->ServerFd
== -1 && (Srv
->In
.WriteSpace() == false ||
758 /* Add the server. We only send more requests if the connection will
760 if (Srv
->Out
.WriteSpace() == true && Srv
->ServerFd
!= -1
761 && Srv
->Persistent
== true)
762 FD_SET(Srv
->ServerFd
,&wfds
);
763 if (Srv
->In
.ReadSpace() == true && Srv
->ServerFd
!= -1)
764 FD_SET(Srv
->ServerFd
,&rfds
);
771 if (Srv
->In
.WriteSpace() == true && ToFile
== true && FileFD
!= -1)
772 FD_SET(FileFD
,&wfds
);
775 FD_SET(STDIN_FILENO
,&rfds
);
777 // Figure out the max fd
779 if (MaxFd
< Srv
->ServerFd
)
780 MaxFd
= Srv
->ServerFd
;
787 if ((Res
= select(MaxFd
+1,&rfds
,&wfds
,0,&tv
)) < 0)
791 return _error
->Errno("select",_("Select failed"));
796 _error
->Error(_("Connection timed out"));
797 return ServerDie(Srv
);
801 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&rfds
))
804 if (Srv
->In
.Read(Srv
->ServerFd
) == false)
805 return ServerDie(Srv
);
808 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&wfds
))
811 if (Srv
->Out
.Write(Srv
->ServerFd
) == false)
812 return ServerDie(Srv
);
815 // Send data to the file
816 if (FileFD
!= -1 && FD_ISSET(FileFD
,&wfds
))
818 if (Srv
->In
.Write(FileFD
) == false)
819 return _error
->Errno("write",_("Error writing to output file"));
822 // Handle commands from APT
823 if (FD_ISSET(STDIN_FILENO
,&rfds
))
832 // HttpMethod::Flush - Dump the buffer into the file /*{{{*/
833 // ---------------------------------------------------------------------
834 /* This takes the current input buffer from the Server FD and writes it
836 bool HttpMethod::Flush(ServerState
*Srv
)
840 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
842 if (File
->Name() != "/dev/null")
843 SetNonBlock(File
->Fd(),false);
844 if (Srv
->In
.WriteSpace() == false)
847 while (Srv
->In
.WriteSpace() == true)
849 if (Srv
->In
.Write(File
->Fd()) == false)
850 return _error
->Errno("write",_("Error writing to file"));
851 if (Srv
->In
.IsLimit() == true)
855 if (Srv
->In
.IsLimit() == true || Srv
->Encoding
== ServerState::Closes
)
861 // HttpMethod::ServerDie - The server has closed the connection. /*{{{*/
862 // ---------------------------------------------------------------------
864 bool HttpMethod::ServerDie(ServerState
*Srv
)
866 unsigned int LErrno
= errno
;
868 // Dump the buffer to the file
869 if (Srv
->State
== ServerState::Data
)
871 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
873 if (File
->Name() != "/dev/null")
874 SetNonBlock(File
->Fd(),false);
875 while (Srv
->In
.WriteSpace() == true)
877 if (Srv
->In
.Write(File
->Fd()) == false)
878 return _error
->Errno("write",_("Error writing to the file"));
881 if (Srv
->In
.IsLimit() == true)
886 // See if this is because the server finished the data stream
887 if (Srv
->In
.IsLimit() == false && Srv
->State
!= ServerState::Header
&&
888 Srv
->Encoding
!= ServerState::Closes
)
892 return _error
->Error(_("Error reading from server. Remote end closed connection"));
894 return _error
->Errno("read",_("Error reading from server"));
900 // Nothing left in the buffer
901 if (Srv
->In
.WriteSpace() == false)
904 // We may have got multiple responses back in one packet..
912 // HttpMethod::DealWithHeaders - Handle the retrieved header data /*{{{*/
913 // ---------------------------------------------------------------------
914 /* We look at the header data we got back from the server and decide what
918 3 - Unrecoverable error
919 4 - Error with error content page
920 5 - Unrecoverable non-server error (close the connection)
921 6 - Try again with a new or changed URI
923 int HttpMethod::DealWithHeaders(FetchResult
&Res
,ServerState
*Srv
)
926 if (Srv
->Result
== 304)
928 unlink(Queue
->DestFile
.c_str());
930 Res
.LastModified
= Queue
->LastModified
;
936 * Note that it is only OK for us to treat all redirection the same
937 * because we *always* use GET, not other HTTP methods. There are
938 * three redirection codes for which it is not appropriate that we
939 * redirect. Pass on those codes so the error handling kicks in.
942 && (Srv
->Result
> 300 && Srv
->Result
< 400)
943 && (Srv
->Result
!= 300 // Multiple Choices
944 && Srv
->Result
!= 304 // Not Modified
945 && Srv
->Result
!= 306)) // (Not part of HTTP/1.1, reserved)
947 if (!Srv
->Location
.empty())
949 NextURI
= Srv
->Location
;
952 /* else pass through for error message */
955 /* We have a reply we dont handle. This should indicate a perm server
957 if (Srv
->Result
< 200 || Srv
->Result
>= 300)
959 _error
->Error("%u %s",Srv
->Result
,Srv
->Code
);
960 if (Srv
->HaveContent
== true)
965 // This is some sort of 2xx 'data follows' reply
966 Res
.LastModified
= Srv
->Date
;
967 Res
.Size
= Srv
->Size
;
971 File
= new FileFd(Queue
->DestFile
,FileFd::WriteAny
);
972 if (_error
->PendingError() == true)
975 FailFile
= Queue
->DestFile
;
976 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
978 FailTime
= Srv
->Date
;
980 // Set the expected size
981 if (Srv
->StartPos
>= 0)
983 Res
.ResumePoint
= Srv
->StartPos
;
984 if (ftruncate(File
->Fd(),Srv
->StartPos
) < 0)
985 _error
->Errno("ftruncate", _("Failed to truncate file"));
988 // Set the start point
989 lseek(File
->Fd(),0,SEEK_END
);
992 Srv
->In
.Hash
= new Hashes
;
994 // Fill the Hash if the file is non-empty (resume)
995 if (Srv
->StartPos
> 0)
997 lseek(File
->Fd(),0,SEEK_SET
);
998 if (Srv
->In
.Hash
->AddFD(File
->Fd(),Srv
->StartPos
) == false)
1000 _error
->Errno("read",_("Problem hashing file"));
1003 lseek(File
->Fd(),0,SEEK_END
);
1006 SetNonBlock(File
->Fd(),true);
1010 // HttpMethod::SigTerm - Handle a fatal signal /*{{{*/
1011 // ---------------------------------------------------------------------
1012 /* This closes and timestamps the open file. This is neccessary to get
1013 resume behavoir on user abort */
1014 void HttpMethod::SigTerm(int)
1021 struct utimbuf UBuf
;
1022 UBuf
.actime
= FailTime
;
1023 UBuf
.modtime
= FailTime
;
1024 utime(FailFile
.c_str(),&UBuf
);
1029 // HttpMethod::Fetch - Fetch an item /*{{{*/
1030 // ---------------------------------------------------------------------
1031 /* This adds an item to the pipeline. We keep the pipeline at a fixed
1033 bool HttpMethod::Fetch(FetchItem
*)
1038 // Queue the requests
1040 for (FetchItem
*I
= Queue
; I
!= 0 && Depth
< (signed)PipelineDepth
;
1041 I
= I
->Next
, Depth
++)
1043 // If pipelining is disabled, we only queue 1 request
1044 if (Server
->Pipeline
== false && Depth
>= 0)
1047 // Make sure we stick with the same server
1048 if (Server
->Comp(I
->Uri
) == false)
1052 QueueBack
= I
->Next
;
1053 SendReq(I
,Server
->Out
);
1061 // HttpMethod::Configuration - Handle a configuration message /*{{{*/
1062 // ---------------------------------------------------------------------
1063 /* We stash the desired pipeline depth */
1064 bool HttpMethod::Configuration(string Message
)
1066 if (pkgAcqMethod::Configuration(Message
) == false)
1069 AllowRedirect
= _config
->FindB("Acquire::http::AllowRedirect",true);
1070 TimeOut
= _config
->FindI("Acquire::http::Timeout",TimeOut
);
1071 PipelineDepth
= _config
->FindI("Acquire::http::Pipeline-Depth",
1073 Debug
= _config
->FindB("Debug::Acquire::http",false);
1078 // HttpMethod::Loop - Main loop /*{{{*/
1079 // ---------------------------------------------------------------------
1081 int HttpMethod::Loop()
1083 typedef vector
<string
> StringVector
;
1084 typedef vector
<string
>::iterator StringVectorIterator
;
1085 map
<string
, StringVector
> Redirected
;
1087 signal(SIGTERM
,SigTerm
);
1088 signal(SIGINT
,SigTerm
);
1092 int FailCounter
= 0;
1095 // We have no commands, wait for some to arrive
1098 if (WaitFd(STDIN_FILENO
) == false)
1102 /* Run messages, we can accept 0 (no message) if we didn't
1103 do a WaitFd above.. Otherwise the FD is closed. */
1104 int Result
= Run(true);
1105 if (Result
!= -1 && (Result
!= 0 || Queue
== 0))
1111 // Connect to the server
1112 if (Server
== 0 || Server
->Comp(Queue
->Uri
) == false)
1115 Server
= new ServerState(Queue
->Uri
,this);
1117 /* If the server has explicitly said this is the last connection
1118 then we pre-emptively shut down the pipeline and tear down
1119 the connection. This will speed up HTTP/1.0 servers a tad
1120 since we don't have to wait for the close sequence to
1122 if (Server
->Persistent
== false)
1125 // Reset the pipeline
1126 if (Server
->ServerFd
== -1)
1129 // Connnect to the host
1130 if (Server
->Open() == false)
1138 // Fill the pipeline.
1141 // Fetch the next URL header data from the server.
1142 switch (Server
->RunHeaders())
1147 // The header data is bad
1150 _error
->Error(_("Bad header data"));
1156 // The server closed a connection during the header get..
1163 Server
->Pipeline
= false;
1165 if (FailCounter
>= 2)
1167 Fail(_("Connection failed"),true);
1176 // Decide what to do.
1178 Res
.Filename
= Queue
->DestFile
;
1179 switch (DealWithHeaders(Res
,Server
))
1181 // Ok, the file is Open
1187 bool Result
= Server
->RunData();
1189 /* If the server is sending back sizeless responses then fill in
1192 Res
.Size
= File
->Size();
1194 // Close the file, destroy the FD object and timestamp it
1200 struct utimbuf UBuf
;
1202 UBuf
.actime
= Server
->Date
;
1203 UBuf
.modtime
= Server
->Date
;
1204 utime(Queue
->DestFile
.c_str(),&UBuf
);
1206 // Send status to APT
1209 Res
.TakeHashes(*Server
->In
.Hash
);
1214 if (Server
->ServerFd
== -1)
1220 if (FailCounter
>= 2)
1222 Fail(_("Connection failed"),true);
1241 // Hard server error, not found or something
1248 // Hard internal error, kill the connection and fail
1260 // We need to flush the data, the header is like a 404 w/ error text
1265 // Send to content to dev/null
1266 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1273 // Try again with a new URL
1276 // Clear rest of response if there is content
1277 if (Server
->HaveContent
)
1279 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1285 /* Detect redirect loops. No more redirects are allowed
1286 after the same URI is seen twice in a queue item. */
1287 StringVector
&R
= Redirected
[Queue
->DestFile
];
1288 bool StopRedirects
= false;
1290 R
.push_back(Queue
->Uri
);
1291 else if (R
[0] == "STOP" || R
.size() > 10)
1292 StopRedirects
= true;
1295 for (StringVectorIterator I
= R
.begin(); I
!= R
.end(); I
++)
1296 if (Queue
->Uri
== *I
)
1302 R
.push_back(Queue
->Uri
);
1305 if (StopRedirects
== false)
1314 Fail(_("Internal error"));
1327 setlocale(LC_ALL
, "");
1328 // ignore SIGPIPE, this can happen on write() if the socket
1329 // closes the connection (this is dealt with via ServerDie())
1330 signal(SIGPIPE
, SIG_IGN
);