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 /*{{{*/
30 #include <apt-pkg/fileutl.h>
31 #include <apt-pkg/acquire-method.h>
32 #include <apt-pkg/configuration.h>
33 #include <apt-pkg/error.h>
34 #include <apt-pkg/hashes.h>
35 #include <apt-pkg/netrc.h>
54 #include "rfc2553emu.h"
61 string
HttpMethod::FailFile
;
62 int HttpMethod::FailFd
= -1;
63 time_t HttpMethod::FailTime
= 0;
64 unsigned long PipelineDepth
= 0;
65 unsigned long TimeOut
= 120;
66 bool AllowRedirect
= false;
70 unsigned long long CircleBuf::BwReadLimit
=0;
71 unsigned long long CircleBuf::BwTickReadData
=0;
72 struct timeval
CircleBuf::BwReadTick
={0,0};
73 const unsigned int CircleBuf::BW_HZ
=10;
75 // CircleBuf::CircleBuf - Circular input buffer /*{{{*/
76 // ---------------------------------------------------------------------
78 CircleBuf::CircleBuf(unsigned long long Size
) : Size(Size
), Hash(0)
80 Buf
= new unsigned char[Size
];
83 CircleBuf::BwReadLimit
= _config
->FindI("Acquire::http::Dl-Limit",0)*1024;
86 // CircleBuf::Reset - Reset to the default state /*{{{*/
87 // ---------------------------------------------------------------------
89 void CircleBuf::Reset()
94 MaxGet
= (unsigned long long)-1;
103 // CircleBuf::Read - Read from a FD into the circular buffer /*{{{*/
104 // ---------------------------------------------------------------------
105 /* This fills up the buffer with as much data as is in the FD, assuming it
107 bool CircleBuf::Read(int Fd
)
109 unsigned long long BwReadMax
;
113 // Woops, buffer is full
114 if (InP
- OutP
== Size
)
117 // what's left to read in this tick
118 BwReadMax
= CircleBuf::BwReadLimit
/BW_HZ
;
120 if(CircleBuf::BwReadLimit
) {
122 gettimeofday(&now
,0);
124 unsigned long long d
= (now
.tv_sec
-CircleBuf::BwReadTick
.tv_sec
)*1000000 +
125 now
.tv_usec
-CircleBuf::BwReadTick
.tv_usec
;
126 if(d
> 1000000/BW_HZ
) {
127 CircleBuf::BwReadTick
= now
;
128 CircleBuf::BwTickReadData
= 0;
131 if(CircleBuf::BwTickReadData
>= BwReadMax
) {
132 usleep(1000000/BW_HZ
);
137 // Write the buffer segment
139 if(CircleBuf::BwReadLimit
) {
140 Res
= read(Fd
,Buf
+ (InP%Size
),
141 BwReadMax
> LeftRead() ? LeftRead() : BwReadMax
);
143 Res
= read(Fd
,Buf
+ (InP%Size
),LeftRead());
145 if(Res
> 0 && BwReadLimit
> 0)
146 CircleBuf::BwTickReadData
+= Res
;
158 gettimeofday(&Start
,0);
163 // CircleBuf::Read - Put the string into the buffer /*{{{*/
164 // ---------------------------------------------------------------------
165 /* This will hold the string in and fill the buffer with it as it empties */
166 bool CircleBuf::Read(string Data
)
173 // CircleBuf::FillOut - Fill the buffer from the output queue /*{{{*/
174 // ---------------------------------------------------------------------
176 void CircleBuf::FillOut()
178 if (OutQueue
.empty() == true)
182 // Woops, buffer is full
183 if (InP
- OutP
== Size
)
186 // Write the buffer segment
187 unsigned long long Sz
= LeftRead();
188 if (OutQueue
.length() - StrPos
< Sz
)
189 Sz
= OutQueue
.length() - StrPos
;
190 memcpy(Buf
+ (InP%Size
),OutQueue
.c_str() + StrPos
,Sz
);
195 if (OutQueue
.length() == StrPos
)
204 // CircleBuf::Write - Write from the buffer into a FD /*{{{*/
205 // ---------------------------------------------------------------------
206 /* This empties the buffer into the FD. */
207 bool CircleBuf::Write(int Fd
)
213 // Woops, buffer is empty
220 // Write the buffer segment
222 Res
= write(Fd
,Buf
+ (OutP%Size
),LeftWrite());
235 Hash
->Add(Buf
+ (OutP%Size
),Res
);
241 // CircleBuf::WriteTillEl - Write from the buffer to a string /*{{{*/
242 // ---------------------------------------------------------------------
243 /* This copies till the first empty line */
244 bool CircleBuf::WriteTillEl(string
&Data
,bool Single
)
246 // We cheat and assume it is unneeded to have more than one buffer load
247 for (unsigned long long I
= OutP
; I
< InP
; I
++)
249 if (Buf
[I%Size
] != '\n')
255 if (I
< InP
&& Buf
[I%Size
] == '\r')
257 if (I
>= InP
|| Buf
[I%Size
] != '\n')
265 unsigned long long Sz
= LeftWrite();
270 Data
+= string((char *)(Buf
+ (OutP%Size
)),Sz
);
278 // CircleBuf::Stats - Print out stats information /*{{{*/
279 // ---------------------------------------------------------------------
281 void CircleBuf::Stats()
287 gettimeofday(&Stop
,0);
288 /* float Diff = Stop.tv_sec - Start.tv_sec +
289 (float)(Stop.tv_usec - Start.tv_usec)/1000000;
290 clog << "Got " << InP << " in " << Diff << " at " << InP/Diff << endl;*/
293 CircleBuf::~CircleBuf()
299 // ServerState::ServerState - Constructor /*{{{*/
300 // ---------------------------------------------------------------------
302 ServerState::ServerState(URI Srv
,HttpMethod
*Owner
) : Owner(Owner
),
303 In(64*1024), Out(4*1024),
309 // ServerState::Open - Open a connection to the server /*{{{*/
310 // ---------------------------------------------------------------------
311 /* This opens a connection to the server. */
312 bool ServerState::Open()
314 // Use the already open connection if possible.
323 // Determine the proxy setting
324 string SpecificProxy
= _config
->Find("Acquire::http::Proxy::" + ServerName
.Host
);
325 if (!SpecificProxy
.empty())
327 if (SpecificProxy
== "DIRECT")
330 Proxy
= SpecificProxy
;
334 string DefProxy
= _config
->Find("Acquire::http::Proxy");
335 if (!DefProxy
.empty())
341 char* result
= getenv("http_proxy");
342 Proxy
= result
? result
: "";
346 // Parse no_proxy, a , separated list of domains
347 if (getenv("no_proxy") != 0)
349 if (CheckDomainList(ServerName
.Host
,getenv("no_proxy")) == true)
353 // Determine what host and port to use based on the proxy settings
356 if (Proxy
.empty() == true || Proxy
.Host
.empty() == true)
358 if (ServerName
.Port
!= 0)
359 Port
= ServerName
.Port
;
360 Host
= ServerName
.Host
;
369 // Connect to the remote server
370 if (Connect(Host
,Port
,"http",80,ServerFd
,TimeOut
,Owner
) == false)
376 // ServerState::Close - Close a connection to the server /*{{{*/
377 // ---------------------------------------------------------------------
379 bool ServerState::Close()
386 // ServerState::RunHeaders - Get the headers before the data /*{{{*/
387 // ---------------------------------------------------------------------
388 /* Returns 0 if things are OK, 1 if an IO error occurred and 2 if a header
389 parse error occurred */
390 ServerState::RunHeadersResult
ServerState::RunHeaders()
394 Owner
->Status(_("Waiting for headers"));
408 if (In
.WriteTillEl(Data
) == false)
414 for (string::const_iterator I
= Data
.begin(); I
< Data
.end(); ++I
)
416 string::const_iterator J
= I
;
417 for (; J
!= Data
.end() && *J
!= '\n' && *J
!= '\r'; ++J
);
418 if (HeaderLine(string(I
,J
)) == false)
419 return RUN_HEADERS_PARSE_ERROR
;
423 // 100 Continue is a Nop...
427 // Tidy up the connection persistance state.
428 if (Encoding
== Closes
&& HaveContent
== true)
431 return RUN_HEADERS_OK
;
433 while (Owner
->Go(false,this) == true);
435 return RUN_HEADERS_IO_ERROR
;
438 // ServerState::RunData - Transfer the data from the socket /*{{{*/
439 // ---------------------------------------------------------------------
441 bool ServerState::RunData()
445 // Chunked transfer encoding is fun..
446 if (Encoding
== Chunked
)
450 // Grab the block size
456 if (In
.WriteTillEl(Data
,true) == true)
459 while ((Last
= Owner
->Go(false,this)) == true);
464 // See if we are done
465 unsigned long long Len
= strtoull(Data
.c_str(),0,16);
470 // We have to remove the entity trailer
474 if (In
.WriteTillEl(Data
,true) == true && Data
.length() <= 2)
477 while ((Last
= Owner
->Go(false,this)) == true);
480 return !_error
->PendingError();
483 // Transfer the block
485 while (Owner
->Go(true,this) == true)
486 if (In
.IsLimit() == true)
490 if (In
.IsLimit() == false)
493 // The server sends an extra new line before the next block specifier..
498 if (In
.WriteTillEl(Data
,true) == true)
501 while ((Last
= Owner
->Go(false,this)) == true);
508 /* Closes encoding is used when the server did not specify a size, the
509 loss of the connection means we are done */
510 if (Encoding
== Closes
)
513 In
.Limit(Size
- StartPos
);
515 // Just transfer the whole block.
518 if (In
.IsLimit() == false)
522 return !_error
->PendingError();
524 while (Owner
->Go(true,this) == true);
527 return Owner
->Flush(this) && !_error
->PendingError();
530 // ServerState::HeaderLine - Process a header line /*{{{*/
531 // ---------------------------------------------------------------------
533 bool ServerState::HeaderLine(string Line
)
535 if (Line
.empty() == true)
538 string::size_type Pos
= Line
.find(' ');
539 if (Pos
== string::npos
|| Pos
+1 > Line
.length())
541 // Blah, some servers use "connection:closes", evil.
542 Pos
= Line
.find(':');
543 if (Pos
== string::npos
|| Pos
+ 2 > Line
.length())
544 return _error
->Error(_("Bad header line"));
548 // Parse off any trailing spaces between the : and the next word.
549 string::size_type Pos2
= Pos
;
550 while (Pos2
< Line
.length() && isspace(Line
[Pos2
]) != 0)
553 string Tag
= string(Line
,0,Pos
);
554 string Val
= string(Line
,Pos2
);
556 if (stringcasecmp(Tag
.c_str(),Tag
.c_str()+4,"HTTP") == 0)
558 // Evil servers return no version
561 int const elements
= sscanf(Line
.c_str(),"HTTP/%3u.%3u %3u%359[^\n]",&Major
,&Minor
,&Result
,Code
);
566 clog
<< "HTTP server doesn't give Reason-Phrase for " << Result
<< std::endl
;
568 else if (elements
!= 4)
569 return _error
->Error(_("The HTTP server sent an invalid reply header"));
575 if (sscanf(Line
.c_str(),"HTTP %3u%359[^\n]",&Result
,Code
) != 2)
576 return _error
->Error(_("The HTTP server sent an invalid reply header"));
579 /* Check the HTTP response header to get the default persistance
585 if (Major
== 1 && Minor
== 0)
594 if (stringcasecmp(Tag
,"Content-Length:") == 0)
596 if (Encoding
== Closes
)
600 // The length is already set from the Content-Range header
604 Size
= strtoull(Val
.c_str(), NULL
, 10);
605 if (Size
>= std::numeric_limits
<unsigned long long>::max())
606 return _error
->Errno("HeaderLine", _("The HTTP server sent an invalid Content-Length header"));
612 if (stringcasecmp(Tag
,"Content-Type:") == 0)
618 if (stringcasecmp(Tag
,"Content-Range:") == 0)
622 // §14.16 says 'byte-range-resp-spec' should be a '*' in case of 416
623 if (Result
== 416 && sscanf(Val
.c_str(), "bytes */%llu",&Size
) == 1)
625 StartPos
= 1; // ignore Content-Length, it would override Size
628 else if (sscanf(Val
.c_str(),"bytes %llu-%*u/%llu",&StartPos
,&Size
) != 2)
629 return _error
->Error(_("The HTTP server sent an invalid Content-Range header"));
630 if ((unsigned long long)StartPos
> Size
)
631 return _error
->Error(_("This HTTP server has broken range support"));
635 if (stringcasecmp(Tag
,"Transfer-Encoding:") == 0)
638 if (stringcasecmp(Val
,"chunked") == 0)
643 if (stringcasecmp(Tag
,"Connection:") == 0)
645 if (stringcasecmp(Val
,"close") == 0)
647 if (stringcasecmp(Val
,"keep-alive") == 0)
652 if (stringcasecmp(Tag
,"Last-Modified:") == 0)
654 if (RFC1123StrToTime(Val
.c_str(), Date
) == false)
655 return _error
->Error(_("Unknown date format"));
659 if (stringcasecmp(Tag
,"Location:") == 0)
669 // HttpMethod::SendReq - Send the HTTP request /*{{{*/
670 // ---------------------------------------------------------------------
671 /* This places the http request in the outbound buffer */
672 void HttpMethod::SendReq(FetchItem
*Itm
,CircleBuf
&Out
)
676 // The HTTP server expects a hostname with a trailing :port
680 if (Uri
.Host
.find(':') != string::npos
)
681 ProperHost
= '[' + Uri
.Host
+ ']';
683 ProperHost
= Uri
.Host
;
686 sprintf(Buf
,":%u",Uri
.Port
);
691 if (Itm
->Uri
.length() >= sizeof(Buf
))
694 /* RFC 2616 §5.1.2 requires absolute URIs for requests to proxies,
695 but while its a must for all servers to accept absolute URIs,
696 it is assumed clients will sent an absolute path for non-proxies */
697 std::string requesturi
;
698 if (Proxy
.empty() == true || Proxy
.Host
.empty())
699 requesturi
= Uri
.Path
;
701 requesturi
= Itm
->Uri
;
703 // The "+" is encoded as a workaround for a amazon S3 bug
704 // see LP bugs #1003633 and #1086997.
705 requesturi
= QuoteString(requesturi
, "+~ ");
707 /* Build the request. No keep-alive is included as it is the default
708 in 1.1, can cause problems with proxies, and we are an HTTP/1.1
710 C.f. https://tools.ietf.org/wg/httpbis/trac/ticket/158 */
711 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\n",
712 requesturi
.c_str(),ProperHost
.c_str());
714 // generate a cache control header (if needed)
715 if (_config
->FindB("Acquire::http::No-Cache",false) == true)
717 strcat(Buf
,"Cache-Control: no-cache\r\nPragma: no-cache\r\n");
721 if (Itm
->IndexFile
== true)
723 sprintf(Buf
+strlen(Buf
),"Cache-Control: max-age=%u\r\n",
724 _config
->FindI("Acquire::http::Max-Age",0));
728 if (_config
->FindB("Acquire::http::No-Store",false) == true)
729 strcat(Buf
,"Cache-Control: no-store\r\n");
733 // If we ask for uncompressed files servers might respond with content-
734 // negotation which lets us end up with compressed files we do not support,
735 // see 657029, 657560 and co, so if we have no extension on the request
736 // ask for text only. As a sidenote: If there is nothing to negotate servers
737 // seem to be nice and ignore it.
738 if (_config
->FindB("Acquire::http::SendAccept", true) == true)
740 size_t const filepos
= Itm
->Uri
.find_last_of('/');
741 string
const file
= Itm
->Uri
.substr(filepos
+ 1);
742 if (flExtension(file
) == file
)
743 strcat(Buf
,"Accept: text/*\r\n");
748 // Check for a partial file
750 if (stat(Itm
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
752 // In this case we send an if-range query with a range header
753 sprintf(Buf
,"Range: bytes=%lli-\r\nIf-Range: %s\r\n",(long long)SBuf
.st_size
- 1,
754 TimeRFC1123(SBuf
.st_mtime
).c_str());
759 if (Itm
->LastModified
!= 0)
761 sprintf(Buf
,"If-Modified-Since: %s\r\n",TimeRFC1123(Itm
->LastModified
).c_str());
766 if (Proxy
.User
.empty() == false || Proxy
.Password
.empty() == false)
767 Req
+= string("Proxy-Authorization: Basic ") +
768 Base64Encode(Proxy
.User
+ ":" + Proxy
.Password
) + "\r\n";
770 maybe_add_auth (Uri
, _config
->FindFile("Dir::Etc::netrc"));
771 if (Uri
.User
.empty() == false || Uri
.Password
.empty() == false)
773 Req
+= string("Authorization: Basic ") +
774 Base64Encode(Uri
.User
+ ":" + Uri
.Password
) + "\r\n";
776 Req
+= "User-Agent: " + _config
->Find("Acquire::http::User-Agent",
777 "Debian APT-HTTP/1.3 (" PACKAGE_VERSION
")") + "\r\n\r\n";
785 // HttpMethod::Go - Run a single loop /*{{{*/
786 // ---------------------------------------------------------------------
787 /* This runs the select loop over the server FDs, Output file FDs and
789 bool HttpMethod::Go(bool ToFile
,ServerState
*Srv
)
791 // Server has closed the connection
792 if (Srv
->ServerFd
== -1 && (Srv
->In
.WriteSpace() == false ||
800 /* Add the server. We only send more requests if the connection will
802 if (Srv
->Out
.WriteSpace() == true && Srv
->ServerFd
!= -1
803 && Srv
->Persistent
== true)
804 FD_SET(Srv
->ServerFd
,&wfds
);
805 if (Srv
->In
.ReadSpace() == true && Srv
->ServerFd
!= -1)
806 FD_SET(Srv
->ServerFd
,&rfds
);
813 if (Srv
->In
.WriteSpace() == true && ToFile
== true && FileFD
!= -1)
814 FD_SET(FileFD
,&wfds
);
817 if (_config
->FindB("Acquire::http::DependOnSTDIN", true) == true)
818 FD_SET(STDIN_FILENO
,&rfds
);
820 // Figure out the max fd
822 if (MaxFd
< Srv
->ServerFd
)
823 MaxFd
= Srv
->ServerFd
;
830 if ((Res
= select(MaxFd
+1,&rfds
,&wfds
,0,&tv
)) < 0)
834 return _error
->Errno("select",_("Select failed"));
839 _error
->Error(_("Connection timed out"));
840 return ServerDie(Srv
);
844 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&rfds
))
847 if (Srv
->In
.Read(Srv
->ServerFd
) == false)
848 return ServerDie(Srv
);
851 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&wfds
))
854 if (Srv
->Out
.Write(Srv
->ServerFd
) == false)
855 return ServerDie(Srv
);
858 // Send data to the file
859 if (FileFD
!= -1 && FD_ISSET(FileFD
,&wfds
))
861 if (Srv
->In
.Write(FileFD
) == false)
862 return _error
->Errno("write",_("Error writing to output file"));
865 // Handle commands from APT
866 if (FD_ISSET(STDIN_FILENO
,&rfds
))
875 // HttpMethod::Flush - Dump the buffer into the file /*{{{*/
876 // ---------------------------------------------------------------------
877 /* This takes the current input buffer from the Server FD and writes it
879 bool HttpMethod::Flush(ServerState
*Srv
)
883 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
885 if (File
->Name() != "/dev/null")
886 SetNonBlock(File
->Fd(),false);
887 if (Srv
->In
.WriteSpace() == false)
890 while (Srv
->In
.WriteSpace() == true)
892 if (Srv
->In
.Write(File
->Fd()) == false)
893 return _error
->Errno("write",_("Error writing to file"));
894 if (Srv
->In
.IsLimit() == true)
898 if (Srv
->In
.IsLimit() == true || Srv
->Encoding
== ServerState::Closes
)
904 // HttpMethod::ServerDie - The server has closed the connection. /*{{{*/
905 // ---------------------------------------------------------------------
907 bool HttpMethod::ServerDie(ServerState
*Srv
)
909 unsigned int LErrno
= errno
;
911 // Dump the buffer to the file
912 if (Srv
->State
== ServerState::Data
)
914 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
916 if (File
->Name() != "/dev/null")
917 SetNonBlock(File
->Fd(),false);
918 while (Srv
->In
.WriteSpace() == true)
920 if (Srv
->In
.Write(File
->Fd()) == false)
921 return _error
->Errno("write",_("Error writing to the file"));
924 if (Srv
->In
.IsLimit() == true)
929 // See if this is because the server finished the data stream
930 if (Srv
->In
.IsLimit() == false && Srv
->State
!= ServerState::Header
&&
931 Srv
->Encoding
!= ServerState::Closes
)
935 return _error
->Error(_("Error reading from server. Remote end closed connection"));
937 return _error
->Errno("read",_("Error reading from server"));
943 // Nothing left in the buffer
944 if (Srv
->In
.WriteSpace() == false)
947 // We may have got multiple responses back in one packet..
955 // HttpMethod::DealWithHeaders - Handle the retrieved header data /*{{{*/
956 // ---------------------------------------------------------------------
957 /* We look at the header data we got back from the server and decide what
958 to do. Returns DealWithHeadersResult (see http.h for details).
960 HttpMethod::DealWithHeadersResult
961 HttpMethod::DealWithHeaders(FetchResult
&Res
,ServerState
*Srv
)
964 if (Srv
->Result
== 304)
966 unlink(Queue
->DestFile
.c_str());
968 Res
.LastModified
= Queue
->LastModified
;
974 * Note that it is only OK for us to treat all redirection the same
975 * because we *always* use GET, not other HTTP methods. There are
976 * three redirection codes for which it is not appropriate that we
977 * redirect. Pass on those codes so the error handling kicks in.
980 && (Srv
->Result
> 300 && Srv
->Result
< 400)
981 && (Srv
->Result
!= 300 // Multiple Choices
982 && Srv
->Result
!= 304 // Not Modified
983 && Srv
->Result
!= 306)) // (Not part of HTTP/1.1, reserved)
985 if (Srv
->Location
.empty() == true);
986 else if (Srv
->Location
[0] == '/' && Queue
->Uri
.empty() == false)
988 URI Uri
= Queue
->Uri
;
989 if (Uri
.Host
.empty() == false)
990 NextURI
= URI::SiteOnly(Uri
);
993 NextURI
.append(DeQuoteString(Srv
->Location
));
994 return TRY_AGAIN_OR_REDIRECT
;
998 NextURI
= DeQuoteString(Srv
->Location
);
999 URI tmpURI
= NextURI
;
1000 // Do not allow a redirection to switch protocol
1001 if (tmpURI
.Access
== "http")
1002 return TRY_AGAIN_OR_REDIRECT
;
1004 /* else pass through for error message */
1006 // retry after an invalid range response without partial data
1007 else if (Srv
->Result
== 416 && FileExists(Queue
->DestFile
) == true &&
1008 unlink(Queue
->DestFile
.c_str()) == 0)
1010 NextURI
= Queue
->Uri
;
1011 return TRY_AGAIN_OR_REDIRECT
;
1014 /* We have a reply we dont handle. This should indicate a perm server
1016 if (Srv
->Result
< 200 || Srv
->Result
>= 300)
1019 snprintf(err
,sizeof(err
)-1,"HttpError%i",Srv
->Result
);
1021 _error
->Error("%u %s",Srv
->Result
,Srv
->Code
);
1022 if (Srv
->HaveContent
== true)
1023 return ERROR_WITH_CONTENT_PAGE
;
1024 return ERROR_UNRECOVERABLE
;
1027 // This is some sort of 2xx 'data follows' reply
1028 Res
.LastModified
= Srv
->Date
;
1029 Res
.Size
= Srv
->Size
;
1033 File
= new FileFd(Queue
->DestFile
,FileFd::WriteAny
);
1034 if (_error
->PendingError() == true)
1035 return ERROR_NOT_FROM_SERVER
;
1037 FailFile
= Queue
->DestFile
;
1038 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
1039 FailFd
= File
->Fd();
1040 FailTime
= Srv
->Date
;
1042 delete Srv
->In
.Hash
;
1043 Srv
->In
.Hash
= new Hashes
;
1045 // Set the expected size and read file for the hashes
1046 if (Srv
->StartPos
>= 0)
1048 Res
.ResumePoint
= Srv
->StartPos
;
1049 File
->Truncate(Srv
->StartPos
);
1051 if (Srv
->In
.Hash
->AddFD(*File
,Srv
->StartPos
) == false)
1053 _error
->Errno("read",_("Problem hashing file"));
1054 return ERROR_NOT_FROM_SERVER
;
1058 SetNonBlock(File
->Fd(),true);
1059 return FILE_IS_OPEN
;
1062 // HttpMethod::SigTerm - Handle a fatal signal /*{{{*/
1063 // ---------------------------------------------------------------------
1064 /* This closes and timestamps the open file. This is neccessary to get
1065 resume behavoir on user abort */
1066 void HttpMethod::SigTerm(int)
1073 struct utimbuf UBuf
;
1074 UBuf
.actime
= FailTime
;
1075 UBuf
.modtime
= FailTime
;
1076 utime(FailFile
.c_str(),&UBuf
);
1081 // HttpMethod::Fetch - Fetch an item /*{{{*/
1082 // ---------------------------------------------------------------------
1083 /* This adds an item to the pipeline. We keep the pipeline at a fixed
1085 bool HttpMethod::Fetch(FetchItem
*)
1090 // Queue the requests
1092 for (FetchItem
*I
= Queue
; I
!= 0 && Depth
< (signed)PipelineDepth
;
1093 I
= I
->Next
, Depth
++)
1095 // If pipelining is disabled, we only queue 1 request
1096 if (Server
->Pipeline
== false && Depth
>= 0)
1099 // Make sure we stick with the same server
1100 if (Server
->Comp(I
->Uri
) == false)
1104 QueueBack
= I
->Next
;
1105 SendReq(I
,Server
->Out
);
1113 // HttpMethod::Configuration - Handle a configuration message /*{{{*/
1114 // ---------------------------------------------------------------------
1115 /* We stash the desired pipeline depth */
1116 bool HttpMethod::Configuration(string Message
)
1118 if (pkgAcqMethod::Configuration(Message
) == false)
1121 AllowRedirect
= _config
->FindB("Acquire::http::AllowRedirect",true);
1122 TimeOut
= _config
->FindI("Acquire::http::Timeout",TimeOut
);
1123 PipelineDepth
= _config
->FindI("Acquire::http::Pipeline-Depth",
1125 Debug
= _config
->FindB("Debug::Acquire::http",false);
1126 AutoDetectProxyCmd
= _config
->Find("Acquire::http::ProxyAutoDetect");
1128 // Get the proxy to use
1134 // HttpMethod::Loop - Main loop /*{{{*/
1135 // ---------------------------------------------------------------------
1137 int HttpMethod::Loop()
1139 typedef vector
<string
> StringVector
;
1140 typedef vector
<string
>::iterator StringVectorIterator
;
1141 map
<string
, StringVector
> Redirected
;
1143 signal(SIGTERM
,SigTerm
);
1144 signal(SIGINT
,SigTerm
);
1148 int FailCounter
= 0;
1151 // We have no commands, wait for some to arrive
1154 if (WaitFd(STDIN_FILENO
) == false)
1158 /* Run messages, we can accept 0 (no message) if we didn't
1159 do a WaitFd above.. Otherwise the FD is closed. */
1160 int Result
= Run(true);
1161 if (Result
!= -1 && (Result
!= 0 || Queue
== 0))
1163 if(FailReason
.empty() == false ||
1164 _config
->FindB("Acquire::http::DependOnSTDIN", true) == true)
1173 // Connect to the server
1174 if (Server
== 0 || Server
->Comp(Queue
->Uri
) == false)
1177 Server
= new ServerState(Queue
->Uri
,this);
1179 /* If the server has explicitly said this is the last connection
1180 then we pre-emptively shut down the pipeline and tear down
1181 the connection. This will speed up HTTP/1.0 servers a tad
1182 since we don't have to wait for the close sequence to
1184 if (Server
->Persistent
== false)
1187 // Reset the pipeline
1188 if (Server
->ServerFd
== -1)
1191 // Connnect to the host
1192 if (Server
->Open() == false)
1200 // Fill the pipeline.
1203 // Fetch the next URL header data from the server.
1204 switch (Server
->RunHeaders())
1206 case ServerState::RUN_HEADERS_OK
:
1209 // The header data is bad
1210 case ServerState::RUN_HEADERS_PARSE_ERROR
:
1212 _error
->Error(_("Bad header data"));
1218 // The server closed a connection during the header get..
1220 case ServerState::RUN_HEADERS_IO_ERROR
:
1225 Server
->Pipeline
= false;
1227 if (FailCounter
>= 2)
1229 Fail(_("Connection failed"),true);
1238 // Decide what to do.
1240 Res
.Filename
= Queue
->DestFile
;
1241 switch (DealWithHeaders(Res
,Server
))
1243 // Ok, the file is Open
1249 bool Result
= Server
->RunData();
1251 /* If the server is sending back sizeless responses then fill in
1254 Res
.Size
= File
->Size();
1256 // Close the file, destroy the FD object and timestamp it
1262 struct utimbuf UBuf
;
1264 UBuf
.actime
= Server
->Date
;
1265 UBuf
.modtime
= Server
->Date
;
1266 utime(Queue
->DestFile
.c_str(),&UBuf
);
1268 // Send status to APT
1271 Res
.TakeHashes(*Server
->In
.Hash
);
1276 if (Server
->ServerFd
== -1)
1282 if (FailCounter
>= 2)
1284 Fail(_("Connection failed"),true);
1303 // Hard server error, not found or something
1304 case ERROR_UNRECOVERABLE
:
1310 // Hard internal error, kill the connection and fail
1311 case ERROR_NOT_FROM_SERVER
:
1322 // We need to flush the data, the header is like a 404 w/ error text
1323 case ERROR_WITH_CONTENT_PAGE
:
1327 // Send to content to dev/null
1328 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1335 // Try again with a new URL
1336 case TRY_AGAIN_OR_REDIRECT
:
1338 // Clear rest of response if there is content
1339 if (Server
->HaveContent
)
1341 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1347 /* Detect redirect loops. No more redirects are allowed
1348 after the same URI is seen twice in a queue item. */
1349 StringVector
&R
= Redirected
[Queue
->DestFile
];
1350 bool StopRedirects
= false;
1351 if (R
.empty() == true)
1352 R
.push_back(Queue
->Uri
);
1353 else if (R
[0] == "STOP" || R
.size() > 10)
1354 StopRedirects
= true;
1357 for (StringVectorIterator I
= R
.begin(); I
!= R
.end(); ++I
)
1358 if (Queue
->Uri
== *I
)
1364 R
.push_back(Queue
->Uri
);
1367 if (StopRedirects
== false)
1376 Fail(_("Internal error"));
1386 // HttpMethod::AutoDetectProxy - auto detect proxy /*{{{*/
1387 // ---------------------------------------------------------------------
1389 bool HttpMethod::AutoDetectProxy()
1391 if (AutoDetectProxyCmd
.empty())
1395 clog
<< "Using auto proxy detect command: " << AutoDetectProxyCmd
<< endl
;
1397 int Pipes
[2] = {-1,-1};
1398 if (pipe(Pipes
) != 0)
1399 return _error
->Errno("pipe", "Failed to create Pipe");
1401 pid_t Process
= ExecFork();
1405 dup2(Pipes
[1],STDOUT_FILENO
);
1406 SetCloseExec(STDOUT_FILENO
,false);
1408 const char *Args
[2];
1409 Args
[0] = AutoDetectProxyCmd
.c_str();
1411 execv(Args
[0],(char **)Args
);
1412 cerr
<< "Failed to exec method " << Args
[0] << endl
;
1416 int InFd
= Pipes
[0];
1418 int res
= read(InFd
, buf
, sizeof(buf
)-1);
1419 ExecWait(Process
, "ProxyAutoDetect", true);
1422 return _error
->Errno("read", "Failed to read");
1424 return _error
->Warning("ProxyAutoDetect returned no data");
1430 clog
<< "auto detect command returned: '" << buf
<< "'" << endl
;
1432 if (strstr(buf
, "http://") == buf
)
1433 _config
->Set("Acquire::http::proxy", _strstrip(buf
));