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 ServerState::RunHeadersResult
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)
410 return RUN_HEADERS_PARSE_ERROR
;
414 // 100 Continue is a Nop...
418 // Tidy up the connection persistance state.
419 if (Encoding
== Closes
&& HaveContent
== true)
422 return RUN_HEADERS_OK
;
424 while (Owner
->Go(false,this) == true);
426 return RUN_HEADERS_IO_ERROR
;
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 int const elements
= sscanf(Line
.c_str(),"HTTP/%u.%u %u%[^\n]",&Major
,&Minor
,&Result
,Code
);
561 clog
<< "HTTP server doesn't give Reason-Phrase for " << Result
<< std::endl
;
563 else if (elements
!= 4)
564 return _error
->Error(_("The HTTP server sent an invalid reply header"));
570 if (sscanf(Line
.c_str(),"HTTP %u%[^\n]",&Result
,Code
) != 2)
571 return _error
->Error(_("The HTTP server sent an invalid reply header"));
574 /* Check the HTTP response header to get the default persistance
580 if (Major
== 1 && Minor
<= 0)
589 if (stringcasecmp(Tag
,"Content-Length:") == 0)
591 if (Encoding
== Closes
)
595 // The length is already set from the Content-Range header
599 if (sscanf(Val
.c_str(),"%lu",&Size
) != 1)
600 return _error
->Error(_("The HTTP server sent an invalid Content-Length header"));
604 if (stringcasecmp(Tag
,"Content-Type:") == 0)
610 if (stringcasecmp(Tag
,"Content-Range:") == 0)
614 if (sscanf(Val
.c_str(),"bytes %lu-%*u/%lu",&StartPos
,&Size
) != 2)
615 return _error
->Error(_("The HTTP server sent an invalid Content-Range header"));
616 if ((unsigned)StartPos
> Size
)
617 return _error
->Error(_("This HTTP server has broken range support"));
621 if (stringcasecmp(Tag
,"Transfer-Encoding:") == 0)
624 if (stringcasecmp(Val
,"chunked") == 0)
629 if (stringcasecmp(Tag
,"Connection:") == 0)
631 if (stringcasecmp(Val
,"close") == 0)
633 if (stringcasecmp(Val
,"keep-alive") == 0)
638 if (stringcasecmp(Tag
,"Last-Modified:") == 0)
640 if (RFC1123StrToTime(Val
.c_str(), Date
) == false)
641 return _error
->Error(_("Unknown date format"));
645 if (stringcasecmp(Tag
,"Location:") == 0)
655 // HttpMethod::SendReq - Send the HTTP request /*{{{*/
656 // ---------------------------------------------------------------------
657 /* This places the http request in the outbound buffer */
658 void HttpMethod::SendReq(FetchItem
*Itm
,CircleBuf
&Out
)
662 // The HTTP server expects a hostname with a trailing :port
664 string ProperHost
= Uri
.Host
;
667 sprintf(Buf
,":%u",Uri
.Port
);
672 if (Itm
->Uri
.length() >= sizeof(Buf
))
675 /* Build the request. We include a keep-alive header only for non-proxy
676 requests. This is to tweak old http/1.0 servers that do support keep-alive
677 but not HTTP/1.1 automatic keep-alive. Doing this with a proxy server
678 will glitch HTTP/1.0 proxies because they do not filter it out and
679 pass it on, HTTP/1.1 says the connection should default to keep alive
680 and we expect the proxy to do this */
681 if (Proxy
.empty() == true || Proxy
.Host
.empty())
682 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\nConnection: keep-alive\r\n",
683 QuoteString(Uri
.Path
,"~").c_str(),ProperHost
.c_str());
686 /* Generate a cache control header if necessary. We place a max
687 cache age on index files, optionally set a no-cache directive
688 and a no-store directive for archives. */
689 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\n",
690 Itm
->Uri
.c_str(),ProperHost
.c_str());
692 // generate a cache control header (if needed)
693 if (_config
->FindB("Acquire::http::No-Cache",false) == true)
695 strcat(Buf
,"Cache-Control: no-cache\r\nPragma: no-cache\r\n");
699 if (Itm
->IndexFile
== true)
701 sprintf(Buf
+strlen(Buf
),"Cache-Control: max-age=%u\r\n",
702 _config
->FindI("Acquire::http::Max-Age",0));
706 if (_config
->FindB("Acquire::http::No-Store",false) == true)
707 strcat(Buf
,"Cache-Control: no-store\r\n");
714 // Check for a partial file
716 if (stat(Itm
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
718 // In this case we send an if-range query with a range header
719 sprintf(Buf
,"Range: bytes=%li-\r\nIf-Range: %s\r\n",(long)SBuf
.st_size
- 1,
720 TimeRFC1123(SBuf
.st_mtime
).c_str());
725 if (Itm
->LastModified
!= 0)
727 sprintf(Buf
,"If-Modified-Since: %s\r\n",TimeRFC1123(Itm
->LastModified
).c_str());
732 if (Proxy
.User
.empty() == false || Proxy
.Password
.empty() == false)
733 Req
+= string("Proxy-Authorization: Basic ") +
734 Base64Encode(Proxy
.User
+ ":" + Proxy
.Password
) + "\r\n";
736 maybe_add_auth (Uri
, _config
->FindFile("Dir::Etc::netrc"));
737 if (Uri
.User
.empty() == false || Uri
.Password
.empty() == false)
739 Req
+= string("Authorization: Basic ") +
740 Base64Encode(Uri
.User
+ ":" + Uri
.Password
) + "\r\n";
742 Req
+= "User-Agent: " + _config
->Find("Acquire::http::User-Agent",
743 "Debian APT-HTTP/1.3 ("VERSION
")") + "\r\n\r\n";
751 // HttpMethod::Go - Run a single loop /*{{{*/
752 // ---------------------------------------------------------------------
753 /* This runs the select loop over the server FDs, Output file FDs and
755 bool HttpMethod::Go(bool ToFile
,ServerState
*Srv
)
757 // Server has closed the connection
758 if (Srv
->ServerFd
== -1 && (Srv
->In
.WriteSpace() == false ||
766 /* Add the server. We only send more requests if the connection will
768 if (Srv
->Out
.WriteSpace() == true && Srv
->ServerFd
!= -1
769 && Srv
->Persistent
== true)
770 FD_SET(Srv
->ServerFd
,&wfds
);
771 if (Srv
->In
.ReadSpace() == true && Srv
->ServerFd
!= -1)
772 FD_SET(Srv
->ServerFd
,&rfds
);
779 if (Srv
->In
.WriteSpace() == true && ToFile
== true && FileFD
!= -1)
780 FD_SET(FileFD
,&wfds
);
783 FD_SET(STDIN_FILENO
,&rfds
);
785 // Figure out the max fd
787 if (MaxFd
< Srv
->ServerFd
)
788 MaxFd
= Srv
->ServerFd
;
795 if ((Res
= select(MaxFd
+1,&rfds
,&wfds
,0,&tv
)) < 0)
799 return _error
->Errno("select",_("Select failed"));
804 _error
->Error(_("Connection timed out"));
805 return ServerDie(Srv
);
809 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&rfds
))
812 if (Srv
->In
.Read(Srv
->ServerFd
) == false)
813 return ServerDie(Srv
);
816 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&wfds
))
819 if (Srv
->Out
.Write(Srv
->ServerFd
) == false)
820 return ServerDie(Srv
);
823 // Send data to the file
824 if (FileFD
!= -1 && FD_ISSET(FileFD
,&wfds
))
826 if (Srv
->In
.Write(FileFD
) == false)
827 return _error
->Errno("write",_("Error writing to output file"));
830 // Handle commands from APT
831 if (FD_ISSET(STDIN_FILENO
,&rfds
))
840 // HttpMethod::Flush - Dump the buffer into the file /*{{{*/
841 // ---------------------------------------------------------------------
842 /* This takes the current input buffer from the Server FD and writes it
844 bool HttpMethod::Flush(ServerState
*Srv
)
848 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
850 if (File
->Name() != "/dev/null")
851 SetNonBlock(File
->Fd(),false);
852 if (Srv
->In
.WriteSpace() == false)
855 while (Srv
->In
.WriteSpace() == true)
857 if (Srv
->In
.Write(File
->Fd()) == false)
858 return _error
->Errno("write",_("Error writing to file"));
859 if (Srv
->In
.IsLimit() == true)
863 if (Srv
->In
.IsLimit() == true || Srv
->Encoding
== ServerState::Closes
)
869 // HttpMethod::ServerDie - The server has closed the connection. /*{{{*/
870 // ---------------------------------------------------------------------
872 bool HttpMethod::ServerDie(ServerState
*Srv
)
874 unsigned int LErrno
= errno
;
876 // Dump the buffer to the file
877 if (Srv
->State
== ServerState::Data
)
879 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
881 if (File
->Name() != "/dev/null")
882 SetNonBlock(File
->Fd(),false);
883 while (Srv
->In
.WriteSpace() == true)
885 if (Srv
->In
.Write(File
->Fd()) == false)
886 return _error
->Errno("write",_("Error writing to the file"));
889 if (Srv
->In
.IsLimit() == true)
894 // See if this is because the server finished the data stream
895 if (Srv
->In
.IsLimit() == false && Srv
->State
!= ServerState::Header
&&
896 Srv
->Encoding
!= ServerState::Closes
)
900 return _error
->Error(_("Error reading from server. Remote end closed connection"));
902 return _error
->Errno("read",_("Error reading from server"));
908 // Nothing left in the buffer
909 if (Srv
->In
.WriteSpace() == false)
912 // We may have got multiple responses back in one packet..
920 // HttpMethod::DealWithHeaders - Handle the retrieved header data /*{{{*/
921 // ---------------------------------------------------------------------
922 /* We look at the header data we got back from the server and decide what
923 to do. Returns DealWithHeadersResult (see http.h for details).
925 HttpMethod::DealWithHeadersResult
926 HttpMethod::DealWithHeaders(FetchResult
&Res
,ServerState
*Srv
)
929 if (Srv
->Result
== 304)
931 unlink(Queue
->DestFile
.c_str());
933 Res
.LastModified
= Queue
->LastModified
;
939 * Note that it is only OK for us to treat all redirection the same
940 * because we *always* use GET, not other HTTP methods. There are
941 * three redirection codes for which it is not appropriate that we
942 * redirect. Pass on those codes so the error handling kicks in.
945 && (Srv
->Result
> 300 && Srv
->Result
< 400)
946 && (Srv
->Result
!= 300 // Multiple Choices
947 && Srv
->Result
!= 304 // Not Modified
948 && Srv
->Result
!= 306)) // (Not part of HTTP/1.1, reserved)
950 if (!Srv
->Location
.empty())
952 NextURI
= Srv
->Location
;
953 return TRY_AGAIN_OR_REDIRECT
;
955 /* else pass through for error message */
958 /* We have a reply we dont handle. This should indicate a perm server
960 if (Srv
->Result
< 200 || Srv
->Result
>= 300)
963 snprintf(err
,sizeof(err
)-1,"HttpError%i",Srv
->Result
);
965 _error
->Error("%u %s",Srv
->Result
,Srv
->Code
);
966 if (Srv
->HaveContent
== true)
967 return ERROR_WITH_CONTENT_PAGE
;
968 return ERROR_UNRECOVERABLE
;
971 // This is some sort of 2xx 'data follows' reply
972 Res
.LastModified
= Srv
->Date
;
973 Res
.Size
= Srv
->Size
;
977 File
= new FileFd(Queue
->DestFile
,FileFd::WriteAny
);
978 if (_error
->PendingError() == true)
979 return ERROR_NOT_FROM_SERVER
;
981 FailFile
= Queue
->DestFile
;
982 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
984 FailTime
= Srv
->Date
;
986 // Set the expected size
987 if (Srv
->StartPos
>= 0)
989 Res
.ResumePoint
= Srv
->StartPos
;
990 if (ftruncate(File
->Fd(),Srv
->StartPos
) < 0)
991 _error
->Errno("ftruncate", _("Failed to truncate file"));
994 // Set the start point
995 lseek(File
->Fd(),0,SEEK_END
);
998 Srv
->In
.Hash
= new Hashes
;
1000 // Fill the Hash if the file is non-empty (resume)
1001 if (Srv
->StartPos
> 0)
1003 lseek(File
->Fd(),0,SEEK_SET
);
1004 if (Srv
->In
.Hash
->AddFD(File
->Fd(),Srv
->StartPos
) == false)
1006 _error
->Errno("read",_("Problem hashing file"));
1007 return ERROR_NOT_FROM_SERVER
;
1009 lseek(File
->Fd(),0,SEEK_END
);
1012 SetNonBlock(File
->Fd(),true);
1013 return FILE_IS_OPEN
;
1016 // HttpMethod::SigTerm - Handle a fatal signal /*{{{*/
1017 // ---------------------------------------------------------------------
1018 /* This closes and timestamps the open file. This is neccessary to get
1019 resume behavoir on user abort */
1020 void HttpMethod::SigTerm(int)
1027 struct utimbuf UBuf
;
1028 UBuf
.actime
= FailTime
;
1029 UBuf
.modtime
= FailTime
;
1030 utime(FailFile
.c_str(),&UBuf
);
1035 // HttpMethod::Fetch - Fetch an item /*{{{*/
1036 // ---------------------------------------------------------------------
1037 /* This adds an item to the pipeline. We keep the pipeline at a fixed
1039 bool HttpMethod::Fetch(FetchItem
*)
1044 // Queue the requests
1046 for (FetchItem
*I
= Queue
; I
!= 0 && Depth
< (signed)PipelineDepth
;
1047 I
= I
->Next
, Depth
++)
1049 // If pipelining is disabled, we only queue 1 request
1050 if (Server
->Pipeline
== false && Depth
>= 0)
1053 // Make sure we stick with the same server
1054 if (Server
->Comp(I
->Uri
) == false)
1058 QueueBack
= I
->Next
;
1059 SendReq(I
,Server
->Out
);
1067 // HttpMethod::Configuration - Handle a configuration message /*{{{*/
1068 // ---------------------------------------------------------------------
1069 /* We stash the desired pipeline depth */
1070 bool HttpMethod::Configuration(string Message
)
1072 if (pkgAcqMethod::Configuration(Message
) == false)
1075 AllowRedirect
= _config
->FindB("Acquire::http::AllowRedirect",true);
1076 TimeOut
= _config
->FindI("Acquire::http::Timeout",TimeOut
);
1077 PipelineDepth
= _config
->FindI("Acquire::http::Pipeline-Depth",
1079 Debug
= _config
->FindB("Debug::Acquire::http",false);
1080 AutoDetectProxyCmd
= _config
->Find("Acquire::http::ProxyAutoDetect");
1082 // Get the proxy to use
1088 // HttpMethod::Loop - Main loop /*{{{*/
1089 // ---------------------------------------------------------------------
1091 int HttpMethod::Loop()
1093 typedef vector
<string
> StringVector
;
1094 typedef vector
<string
>::iterator StringVectorIterator
;
1095 map
<string
, StringVector
> Redirected
;
1097 signal(SIGTERM
,SigTerm
);
1098 signal(SIGINT
,SigTerm
);
1102 int FailCounter
= 0;
1105 // We have no commands, wait for some to arrive
1108 if (WaitFd(STDIN_FILENO
) == false)
1112 /* Run messages, we can accept 0 (no message) if we didn't
1113 do a WaitFd above.. Otherwise the FD is closed. */
1114 int Result
= Run(true);
1115 if (Result
!= -1 && (Result
!= 0 || Queue
== 0))
1121 // Connect to the server
1122 if (Server
== 0 || Server
->Comp(Queue
->Uri
) == false)
1125 Server
= new ServerState(Queue
->Uri
,this);
1127 /* If the server has explicitly said this is the last connection
1128 then we pre-emptively shut down the pipeline and tear down
1129 the connection. This will speed up HTTP/1.0 servers a tad
1130 since we don't have to wait for the close sequence to
1132 if (Server
->Persistent
== false)
1135 // Reset the pipeline
1136 if (Server
->ServerFd
== -1)
1139 // Connnect to the host
1140 if (Server
->Open() == false)
1148 // Fill the pipeline.
1151 // Fetch the next URL header data from the server.
1152 switch (Server
->RunHeaders())
1154 case ServerState::RUN_HEADERS_OK
:
1157 // The header data is bad
1158 case ServerState::RUN_HEADERS_PARSE_ERROR
:
1160 _error
->Error(_("Bad header data"));
1166 // The server closed a connection during the header get..
1168 case ServerState::RUN_HEADERS_IO_ERROR
:
1173 Server
->Pipeline
= false;
1175 if (FailCounter
>= 2)
1177 Fail(_("Connection failed"),true);
1186 // Decide what to do.
1188 Res
.Filename
= Queue
->DestFile
;
1189 switch (DealWithHeaders(Res
,Server
))
1191 // Ok, the file is Open
1197 bool Result
= Server
->RunData();
1199 /* If the server is sending back sizeless responses then fill in
1202 Res
.Size
= File
->Size();
1204 // Close the file, destroy the FD object and timestamp it
1210 struct utimbuf UBuf
;
1212 UBuf
.actime
= Server
->Date
;
1213 UBuf
.modtime
= Server
->Date
;
1214 utime(Queue
->DestFile
.c_str(),&UBuf
);
1216 // Send status to APT
1219 Res
.TakeHashes(*Server
->In
.Hash
);
1224 if (Server
->ServerFd
== -1)
1230 if (FailCounter
>= 2)
1232 Fail(_("Connection failed"),true);
1251 // Hard server error, not found or something
1252 case ERROR_UNRECOVERABLE
:
1258 // Hard internal error, kill the connection and fail
1259 case ERROR_NOT_FROM_SERVER
:
1270 // We need to flush the data, the header is like a 404 w/ error text
1271 case ERROR_WITH_CONTENT_PAGE
:
1275 // Send to content to dev/null
1276 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1283 // Try again with a new URL
1284 case TRY_AGAIN_OR_REDIRECT
:
1286 // Clear rest of response if there is content
1287 if (Server
->HaveContent
)
1289 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1295 /* Detect redirect loops. No more redirects are allowed
1296 after the same URI is seen twice in a queue item. */
1297 StringVector
&R
= Redirected
[Queue
->DestFile
];
1298 bool StopRedirects
= false;
1300 R
.push_back(Queue
->Uri
);
1301 else if (R
[0] == "STOP" || R
.size() > 10)
1302 StopRedirects
= true;
1305 for (StringVectorIterator I
= R
.begin(); I
!= R
.end(); I
++)
1306 if (Queue
->Uri
== *I
)
1312 R
.push_back(Queue
->Uri
);
1315 if (StopRedirects
== false)
1324 Fail(_("Internal error"));
1334 // HttpMethod::AutoDetectProxy - auto detect proxy /*{{{*/
1335 // ---------------------------------------------------------------------
1337 bool HttpMethod::AutoDetectProxy()
1339 if (AutoDetectProxyCmd
.empty())
1343 clog
<< "Using auto proxy detect command: " << AutoDetectProxyCmd
<< endl
;
1345 int Pipes
[2] = {-1,-1};
1346 if (pipe(Pipes
) != 0)
1347 return _error
->Errno("pipe", "Failed to create Pipe");
1349 pid_t Process
= ExecFork();
1352 dup2(Pipes
[1],STDOUT_FILENO
);
1353 SetCloseExec(STDOUT_FILENO
,false);
1355 const char *Args
[2];
1356 Args
[0] = AutoDetectProxyCmd
.c_str();
1358 execv(Args
[0],(char **)Args
);
1359 cerr
<< "Failed to exec method " << Args
[0] << endl
;
1363 int InFd
= Pipes
[0];
1364 if (read(InFd
, buf
, sizeof(buf
)) < 0)
1365 return _error
->Errno("read", "Failed to read");
1366 ExecWait(Process
, "ProxyAutoDetect");
1369 clog
<< "auto detect command returned: '" << buf
<< "'" << endl
;
1371 if (strstr(buf
, "http://") == buf
)
1372 _config
->Set("Acquire::http::proxy", _strstrip(buf
));