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());
686 // generate a cache control header (if needed)
687 if (_config
->FindB("Acquire::http::No-Cache",false) == true)
689 strcat(Buf
,"Cache-Control: no-cache\r\nPragma: no-cache\r\n");
693 if (Itm
->IndexFile
== true)
695 sprintf(Buf
+strlen(Buf
),"Cache-Control: max-age=%u\r\n",
696 _config
->FindI("Acquire::http::Max-Age",0));
700 if (_config
->FindB("Acquire::http::No-Store",false) == true)
701 strcat(Buf
,"Cache-Control: no-store\r\n");
708 // Check for a partial file
710 if (stat(Itm
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
712 // In this case we send an if-range query with a range header
713 sprintf(Buf
,"Range: bytes=%li-\r\nIf-Range: %s\r\n",(long)SBuf
.st_size
- 1,
714 TimeRFC1123(SBuf
.st_mtime
).c_str());
719 if (Itm
->LastModified
!= 0)
721 sprintf(Buf
,"If-Modified-Since: %s\r\n",TimeRFC1123(Itm
->LastModified
).c_str());
726 if (Proxy
.User
.empty() == false || Proxy
.Password
.empty() == false)
727 Req
+= string("Proxy-Authorization: Basic ") +
728 Base64Encode(Proxy
.User
+ ":" + Proxy
.Password
) + "\r\n";
730 maybe_add_auth (Uri
, _config
->FindFile("Dir::Etc::netrc"));
731 if (Uri
.User
.empty() == false || Uri
.Password
.empty() == false)
733 Req
+= string("Authorization: Basic ") +
734 Base64Encode(Uri
.User
+ ":" + Uri
.Password
) + "\r\n";
736 Req
+= "User-Agent: " + _config
->Find("Acquire::http::User-Agent",
737 "Ubuntu APT-HTTP/1.3 ("VERSION
")") + "\r\n\r\n";
745 // HttpMethod::Go - Run a single loop /*{{{*/
746 // ---------------------------------------------------------------------
747 /* This runs the select loop over the server FDs, Output file FDs and
749 bool HttpMethod::Go(bool ToFile
,ServerState
*Srv
)
751 // Server has closed the connection
752 if (Srv
->ServerFd
== -1 && (Srv
->In
.WriteSpace() == false ||
760 /* Add the server. We only send more requests if the connection will
762 if (Srv
->Out
.WriteSpace() == true && Srv
->ServerFd
!= -1
763 && Srv
->Persistent
== true)
764 FD_SET(Srv
->ServerFd
,&wfds
);
765 if (Srv
->In
.ReadSpace() == true && Srv
->ServerFd
!= -1)
766 FD_SET(Srv
->ServerFd
,&rfds
);
773 if (Srv
->In
.WriteSpace() == true && ToFile
== true && FileFD
!= -1)
774 FD_SET(FileFD
,&wfds
);
777 FD_SET(STDIN_FILENO
,&rfds
);
779 // Figure out the max fd
781 if (MaxFd
< Srv
->ServerFd
)
782 MaxFd
= Srv
->ServerFd
;
789 if ((Res
= select(MaxFd
+1,&rfds
,&wfds
,0,&tv
)) < 0)
793 return _error
->Errno("select",_("Select failed"));
798 _error
->Error(_("Connection timed out"));
799 return ServerDie(Srv
);
803 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&rfds
))
806 if (Srv
->In
.Read(Srv
->ServerFd
) == false)
807 return ServerDie(Srv
);
810 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&wfds
))
813 if (Srv
->Out
.Write(Srv
->ServerFd
) == false)
814 return ServerDie(Srv
);
817 // Send data to the file
818 if (FileFD
!= -1 && FD_ISSET(FileFD
,&wfds
))
820 if (Srv
->In
.Write(FileFD
) == false)
821 return _error
->Errno("write",_("Error writing to output file"));
824 // Handle commands from APT
825 if (FD_ISSET(STDIN_FILENO
,&rfds
))
834 // HttpMethod::Flush - Dump the buffer into the file /*{{{*/
835 // ---------------------------------------------------------------------
836 /* This takes the current input buffer from the Server FD and writes it
838 bool HttpMethod::Flush(ServerState
*Srv
)
842 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
844 if (File
->Name() != "/dev/null")
845 SetNonBlock(File
->Fd(),false);
846 if (Srv
->In
.WriteSpace() == false)
849 while (Srv
->In
.WriteSpace() == true)
851 if (Srv
->In
.Write(File
->Fd()) == false)
852 return _error
->Errno("write",_("Error writing to file"));
853 if (Srv
->In
.IsLimit() == true)
857 if (Srv
->In
.IsLimit() == true || Srv
->Encoding
== ServerState::Closes
)
863 // HttpMethod::ServerDie - The server has closed the connection. /*{{{*/
864 // ---------------------------------------------------------------------
866 bool HttpMethod::ServerDie(ServerState
*Srv
)
868 unsigned int LErrno
= errno
;
870 // Dump the buffer to the file
871 if (Srv
->State
== ServerState::Data
)
873 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
875 if (File
->Name() != "/dev/null")
876 SetNonBlock(File
->Fd(),false);
877 while (Srv
->In
.WriteSpace() == true)
879 if (Srv
->In
.Write(File
->Fd()) == false)
880 return _error
->Errno("write",_("Error writing to the file"));
883 if (Srv
->In
.IsLimit() == true)
888 // See if this is because the server finished the data stream
889 if (Srv
->In
.IsLimit() == false && Srv
->State
!= ServerState::Header
&&
890 Srv
->Encoding
!= ServerState::Closes
)
894 return _error
->Error(_("Error reading from server. Remote end closed connection"));
896 return _error
->Errno("read",_("Error reading from server"));
902 // Nothing left in the buffer
903 if (Srv
->In
.WriteSpace() == false)
906 // We may have got multiple responses back in one packet..
914 // HttpMethod::DealWithHeaders - Handle the retrieved header data /*{{{*/
915 // ---------------------------------------------------------------------
916 /* We look at the header data we got back from the server and decide what
920 3 - Unrecoverable error
921 4 - Error with error content page
922 5 - Unrecoverable non-server error (close the connection)
923 6 - Try again with a new or changed URI
925 int HttpMethod::DealWithHeaders(FetchResult
&Res
,ServerState
*Srv
)
928 if (Srv
->Result
== 304)
930 unlink(Queue
->DestFile
.c_str());
932 Res
.LastModified
= Queue
->LastModified
;
938 * Note that it is only OK for us to treat all redirection the same
939 * because we *always* use GET, not other HTTP methods. There are
940 * three redirection codes for which it is not appropriate that we
941 * redirect. Pass on those codes so the error handling kicks in.
944 && (Srv
->Result
> 300 && Srv
->Result
< 400)
945 && (Srv
->Result
!= 300 // Multiple Choices
946 && Srv
->Result
!= 304 // Not Modified
947 && Srv
->Result
!= 306)) // (Not part of HTTP/1.1, reserved)
949 if (!Srv
->Location
.empty())
951 NextURI
= Srv
->Location
;
954 /* else pass through for error message */
957 /* We have a reply we dont handle. This should indicate a perm server
959 if (Srv
->Result
< 200 || Srv
->Result
>= 300)
962 snprintf(err
,sizeof(err
)-1,"HttpError%i",Srv
->Result
);
964 _error
->Error("%u %s",Srv
->Result
,Srv
->Code
);
965 if (Srv
->HaveContent
== true)
970 // This is some sort of 2xx 'data follows' reply
971 Res
.LastModified
= Srv
->Date
;
972 Res
.Size
= Srv
->Size
;
976 File
= new FileFd(Queue
->DestFile
,FileFd::WriteAny
);
977 if (_error
->PendingError() == true)
980 FailFile
= Queue
->DestFile
;
981 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
983 FailTime
= Srv
->Date
;
985 // Set the expected size
986 if (Srv
->StartPos
>= 0)
988 Res
.ResumePoint
= Srv
->StartPos
;
989 if (ftruncate(File
->Fd(),Srv
->StartPos
) < 0)
990 _error
->Errno("ftruncate", _("Failed to truncate file"));
993 // Set the start point
994 lseek(File
->Fd(),0,SEEK_END
);
997 Srv
->In
.Hash
= new Hashes
;
999 // Fill the Hash if the file is non-empty (resume)
1000 if (Srv
->StartPos
> 0)
1002 lseek(File
->Fd(),0,SEEK_SET
);
1003 if (Srv
->In
.Hash
->AddFD(File
->Fd(),Srv
->StartPos
) == false)
1005 _error
->Errno("read",_("Problem hashing file"));
1008 lseek(File
->Fd(),0,SEEK_END
);
1011 SetNonBlock(File
->Fd(),true);
1015 // HttpMethod::SigTerm - Handle a fatal signal /*{{{*/
1016 // ---------------------------------------------------------------------
1017 /* This closes and timestamps the open file. This is neccessary to get
1018 resume behavoir on user abort */
1019 void HttpMethod::SigTerm(int)
1026 struct utimbuf UBuf
;
1027 UBuf
.actime
= FailTime
;
1028 UBuf
.modtime
= FailTime
;
1029 utime(FailFile
.c_str(),&UBuf
);
1034 // HttpMethod::Fetch - Fetch an item /*{{{*/
1035 // ---------------------------------------------------------------------
1036 /* This adds an item to the pipeline. We keep the pipeline at a fixed
1038 bool HttpMethod::Fetch(FetchItem
*)
1043 // Queue the requests
1045 for (FetchItem
*I
= Queue
; I
!= 0 && Depth
< (signed)PipelineDepth
;
1046 I
= I
->Next
, Depth
++)
1048 // If pipelining is disabled, we only queue 1 request
1049 if (Server
->Pipeline
== false && Depth
>= 0)
1052 // Make sure we stick with the same server
1053 if (Server
->Comp(I
->Uri
) == false)
1057 QueueBack
= I
->Next
;
1058 SendReq(I
,Server
->Out
);
1066 // HttpMethod::Configuration - Handle a configuration message /*{{{*/
1067 // ---------------------------------------------------------------------
1068 /* We stash the desired pipeline depth */
1069 bool HttpMethod::Configuration(string Message
)
1071 if (pkgAcqMethod::Configuration(Message
) == false)
1074 AllowRedirect
= _config
->FindB("Acquire::http::AllowRedirect",true);
1075 TimeOut
= _config
->FindI("Acquire::http::Timeout",TimeOut
);
1076 PipelineDepth
= _config
->FindI("Acquire::http::Pipeline-Depth",
1078 Debug
= _config
->FindB("Debug::Acquire::http",false);
1079 AutoDetectProxyCmd
= _config
->Find("Acquire::http::ProxyAutoDetect");
1081 // Get the proxy to use
1087 // HttpMethod::Loop - Main loop /*{{{*/
1088 // ---------------------------------------------------------------------
1090 int HttpMethod::Loop()
1092 typedef vector
<string
> StringVector
;
1093 typedef vector
<string
>::iterator StringVectorIterator
;
1094 map
<string
, StringVector
> Redirected
;
1096 signal(SIGTERM
,SigTerm
);
1097 signal(SIGINT
,SigTerm
);
1101 int FailCounter
= 0;
1104 // We have no commands, wait for some to arrive
1107 if (WaitFd(STDIN_FILENO
) == false)
1111 /* Run messages, we can accept 0 (no message) if we didn't
1112 do a WaitFd above.. Otherwise the FD is closed. */
1113 int Result
= Run(true);
1114 if (Result
!= -1 && (Result
!= 0 || Queue
== 0))
1120 // Connect to the server
1121 if (Server
== 0 || Server
->Comp(Queue
->Uri
) == false)
1124 Server
= new ServerState(Queue
->Uri
,this);
1126 /* If the server has explicitly said this is the last connection
1127 then we pre-emptively shut down the pipeline and tear down
1128 the connection. This will speed up HTTP/1.0 servers a tad
1129 since we don't have to wait for the close sequence to
1131 if (Server
->Persistent
== false)
1134 // Reset the pipeline
1135 if (Server
->ServerFd
== -1)
1138 // Connnect to the host
1139 if (Server
->Open() == false)
1147 // Fill the pipeline.
1150 // Fetch the next URL header data from the server.
1151 switch (Server
->RunHeaders())
1156 // The header data is bad
1159 _error
->Error(_("Bad header data"));
1165 // The server closed a connection during the header get..
1172 Server
->Pipeline
= false;
1174 if (FailCounter
>= 2)
1176 Fail(_("Connection failed"),true);
1185 // Decide what to do.
1187 Res
.Filename
= Queue
->DestFile
;
1188 switch (DealWithHeaders(Res
,Server
))
1190 // Ok, the file is Open
1196 bool Result
= Server
->RunData();
1198 /* If the server is sending back sizeless responses then fill in
1201 Res
.Size
= File
->Size();
1203 // Close the file, destroy the FD object and timestamp it
1209 struct utimbuf UBuf
;
1211 UBuf
.actime
= Server
->Date
;
1212 UBuf
.modtime
= Server
->Date
;
1213 utime(Queue
->DestFile
.c_str(),&UBuf
);
1215 // Send status to APT
1218 Res
.TakeHashes(*Server
->In
.Hash
);
1223 if (Server
->ServerFd
== -1)
1229 if (FailCounter
>= 2)
1231 Fail(_("Connection failed"),true);
1250 // Hard server error, not found or something
1257 // Hard internal error, kill the connection and fail
1269 // We need to flush the data, the header is like a 404 w/ error text
1274 // Send to content to dev/null
1275 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1282 // Try again with a new URL
1285 // Clear rest of response if there is content
1286 if (Server
->HaveContent
)
1288 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1294 /* Detect redirect loops. No more redirects are allowed
1295 after the same URI is seen twice in a queue item. */
1296 StringVector
&R
= Redirected
[Queue
->DestFile
];
1297 bool StopRedirects
= false;
1299 R
.push_back(Queue
->Uri
);
1300 else if (R
[0] == "STOP" || R
.size() > 10)
1301 StopRedirects
= true;
1304 for (StringVectorIterator I
= R
.begin(); I
!= R
.end(); I
++)
1305 if (Queue
->Uri
== *I
)
1311 R
.push_back(Queue
->Uri
);
1314 if (StopRedirects
== false)
1323 Fail(_("Internal error"));
1333 // HttpMethod::AutoDetectProxy - auto detect proxy /*{{{*/
1334 // ---------------------------------------------------------------------
1336 bool HttpMethod::AutoDetectProxy()
1338 if (AutoDetectProxyCmd
.empty())
1342 clog
<< "Using auto proxy detect command: " << AutoDetectProxyCmd
<< endl
;
1344 int Pipes
[2] = {-1,-1};
1345 if (pipe(Pipes
) != 0)
1346 return _error
->Errno("pipe", "Failed to create Pipe");
1348 pid_t Process
= ExecFork();
1351 dup2(Pipes
[1],STDOUT_FILENO
);
1352 SetCloseExec(STDOUT_FILENO
,false);
1354 const char *Args
[2];
1355 Args
[0] = AutoDetectProxyCmd
.c_str();
1357 execv(Args
[0],(char **)Args
);
1358 cerr
<< "Failed to exec method " << Args
[0] << endl
;
1362 int InFd
= Pipes
[0];
1363 if (read(InFd
, buf
, sizeof(buf
)) < 0)
1364 return _error
->Errno("read", "Failed to read");
1365 ExecWait(Process
, "ProxyAutoDetect");
1368 clog
<< "auto detect command returned: '" << buf
<< "'" << endl
;
1370 if (strstr(buf
, "http://") == buf
)
1371 _config
->Set("Acquire::http::proxy", _strstrip(buf
));