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/error.h>
33 #include <apt-pkg/hashes.h>
34 #include <apt-pkg/netrc.h>
52 #include "rfc2553emu.h"
59 string
HttpMethod::FailFile
;
60 int HttpMethod::FailFd
= -1;
61 time_t HttpMethod::FailTime
= 0;
62 unsigned long PipelineDepth
= 10;
63 unsigned long TimeOut
= 120;
64 bool AllowRedirect
= false;
68 unsigned long long CircleBuf::BwReadLimit
=0;
69 unsigned long long CircleBuf::BwTickReadData
=0;
70 struct timeval
CircleBuf::BwReadTick
={0,0};
71 const unsigned int CircleBuf::BW_HZ
=10;
73 // CircleBuf::CircleBuf - Circular input buffer /*{{{*/
74 // ---------------------------------------------------------------------
76 CircleBuf::CircleBuf(unsigned long long Size
) : Size(Size
), Hash(0)
78 Buf
= new unsigned char[Size
];
81 CircleBuf::BwReadLimit
= _config
->FindI("Acquire::http::Dl-Limit",0)*1024;
84 // CircleBuf::Reset - Reset to the default state /*{{{*/
85 // ---------------------------------------------------------------------
87 void CircleBuf::Reset()
92 MaxGet
= (unsigned long long)-1;
101 // CircleBuf::Read - Read from a FD into the circular buffer /*{{{*/
102 // ---------------------------------------------------------------------
103 /* This fills up the buffer with as much data as is in the FD, assuming it
105 bool CircleBuf::Read(int Fd
)
107 unsigned long long BwReadMax
;
111 // Woops, buffer is full
112 if (InP
- OutP
== Size
)
115 // what's left to read in this tick
116 BwReadMax
= CircleBuf::BwReadLimit
/BW_HZ
;
118 if(CircleBuf::BwReadLimit
) {
120 gettimeofday(&now
,0);
122 unsigned long long d
= (now
.tv_sec
-CircleBuf::BwReadTick
.tv_sec
)*1000000 +
123 now
.tv_usec
-CircleBuf::BwReadTick
.tv_usec
;
124 if(d
> 1000000/BW_HZ
) {
125 CircleBuf::BwReadTick
= now
;
126 CircleBuf::BwTickReadData
= 0;
129 if(CircleBuf::BwTickReadData
>= BwReadMax
) {
130 usleep(1000000/BW_HZ
);
135 // Write the buffer segment
137 if(CircleBuf::BwReadLimit
) {
138 Res
= read(Fd
,Buf
+ (InP%Size
),
139 BwReadMax
> LeftRead() ? LeftRead() : BwReadMax
);
141 Res
= read(Fd
,Buf
+ (InP%Size
),LeftRead());
143 if(Res
> 0 && BwReadLimit
> 0)
144 CircleBuf::BwTickReadData
+= Res
;
156 gettimeofday(&Start
,0);
161 // CircleBuf::Read - Put the string into the buffer /*{{{*/
162 // ---------------------------------------------------------------------
163 /* This will hold the string in and fill the buffer with it as it empties */
164 bool CircleBuf::Read(string Data
)
171 // CircleBuf::FillOut - Fill the buffer from the output queue /*{{{*/
172 // ---------------------------------------------------------------------
174 void CircleBuf::FillOut()
176 if (OutQueue
.empty() == true)
180 // Woops, buffer is full
181 if (InP
- OutP
== Size
)
184 // Write the buffer segment
185 unsigned long long Sz
= LeftRead();
186 if (OutQueue
.length() - StrPos
< Sz
)
187 Sz
= OutQueue
.length() - StrPos
;
188 memcpy(Buf
+ (InP%Size
),OutQueue
.c_str() + StrPos
,Sz
);
193 if (OutQueue
.length() == StrPos
)
202 // CircleBuf::Write - Write from the buffer into a FD /*{{{*/
203 // ---------------------------------------------------------------------
204 /* This empties the buffer into the FD. */
205 bool CircleBuf::Write(int Fd
)
211 // Woops, buffer is empty
218 // Write the buffer segment
220 Res
= write(Fd
,Buf
+ (OutP%Size
),LeftWrite());
233 Hash
->Add(Buf
+ (OutP%Size
),Res
);
239 // CircleBuf::WriteTillEl - Write from the buffer to a string /*{{{*/
240 // ---------------------------------------------------------------------
241 /* This copies till the first empty line */
242 bool CircleBuf::WriteTillEl(string
&Data
,bool Single
)
244 // We cheat and assume it is unneeded to have more than one buffer load
245 for (unsigned long long I
= OutP
; I
< InP
; I
++)
247 if (Buf
[I%Size
] != '\n')
253 if (I
< InP
&& Buf
[I%Size
] == '\r')
255 if (I
>= InP
|| Buf
[I%Size
] != '\n')
263 unsigned long long Sz
= LeftWrite();
268 Data
+= string((char *)(Buf
+ (OutP%Size
)),Sz
);
276 // CircleBuf::Stats - Print out stats information /*{{{*/
277 // ---------------------------------------------------------------------
279 void CircleBuf::Stats()
285 gettimeofday(&Stop
,0);
286 /* float Diff = Stop.tv_sec - Start.tv_sec +
287 (float)(Stop.tv_usec - Start.tv_usec)/1000000;
288 clog << "Got " << InP << " in " << Diff << " at " << InP/Diff << endl;*/
292 // ServerState::ServerState - Constructor /*{{{*/
293 // ---------------------------------------------------------------------
295 ServerState::ServerState(URI Srv
,HttpMethod
*Owner
) : Owner(Owner
),
296 In(64*1024), Out(4*1024),
302 // ServerState::Open - Open a connection to the server /*{{{*/
303 // ---------------------------------------------------------------------
304 /* This opens a connection to the server. */
305 bool ServerState::Open()
307 // Use the already open connection if possible.
316 // Determine the proxy setting
317 string SpecificProxy
= _config
->Find("Acquire::http::Proxy::" + ServerName
.Host
);
318 if (!SpecificProxy
.empty())
320 if (SpecificProxy
== "DIRECT")
323 Proxy
= SpecificProxy
;
327 string DefProxy
= _config
->Find("Acquire::http::Proxy");
328 if (!DefProxy
.empty())
334 char* result
= getenv("http_proxy");
335 Proxy
= result
? result
: "";
339 // Parse no_proxy, a , separated list of domains
340 if (getenv("no_proxy") != 0)
342 if (CheckDomainList(ServerName
.Host
,getenv("no_proxy")) == true)
346 // Determine what host and port to use based on the proxy settings
349 if (Proxy
.empty() == true || Proxy
.Host
.empty() == true)
351 if (ServerName
.Port
!= 0)
352 Port
= ServerName
.Port
;
353 Host
= ServerName
.Host
;
362 // Connect to the remote server
363 if (Connect(Host
,Port
,"http",80,ServerFd
,TimeOut
,Owner
) == false)
369 // ServerState::Close - Close a connection to the server /*{{{*/
370 // ---------------------------------------------------------------------
372 bool ServerState::Close()
379 // ServerState::RunHeaders - Get the headers before the data /*{{{*/
380 // ---------------------------------------------------------------------
381 /* Returns 0 if things are OK, 1 if an IO error occurred and 2 if a header
382 parse error occurred */
383 ServerState::RunHeadersResult
ServerState::RunHeaders()
387 Owner
->Status(_("Waiting for headers"));
401 if (In
.WriteTillEl(Data
) == false)
407 for (string::const_iterator I
= Data
.begin(); I
< Data
.end(); ++I
)
409 string::const_iterator J
= I
;
410 for (; J
!= Data
.end() && *J
!= '\n' && *J
!= '\r'; ++J
);
411 if (HeaderLine(string(I
,J
)) == false)
412 return RUN_HEADERS_PARSE_ERROR
;
416 // 100 Continue is a Nop...
420 // Tidy up the connection persistance state.
421 if (Encoding
== Closes
&& HaveContent
== true)
424 return RUN_HEADERS_OK
;
426 while (Owner
->Go(false,this) == true);
428 return RUN_HEADERS_IO_ERROR
;
431 // ServerState::RunData - Transfer the data from the socket /*{{{*/
432 // ---------------------------------------------------------------------
434 bool ServerState::RunData()
438 // Chunked transfer encoding is fun..
439 if (Encoding
== Chunked
)
443 // Grab the block size
449 if (In
.WriteTillEl(Data
,true) == true)
452 while ((Last
= Owner
->Go(false,this)) == true);
457 // See if we are done
458 unsigned long long Len
= strtoull(Data
.c_str(),0,16);
463 // We have to remove the entity trailer
467 if (In
.WriteTillEl(Data
,true) == true && Data
.length() <= 2)
470 while ((Last
= Owner
->Go(false,this)) == true);
473 return !_error
->PendingError();
476 // Transfer the block
478 while (Owner
->Go(true,this) == true)
479 if (In
.IsLimit() == true)
483 if (In
.IsLimit() == false)
486 // The server sends an extra new line before the next block specifier..
491 if (In
.WriteTillEl(Data
,true) == true)
494 while ((Last
= Owner
->Go(false,this)) == true);
501 /* Closes encoding is used when the server did not specify a size, the
502 loss of the connection means we are done */
503 if (Encoding
== Closes
)
506 In
.Limit(Size
- StartPos
);
508 // Just transfer the whole block.
511 if (In
.IsLimit() == false)
515 return !_error
->PendingError();
517 while (Owner
->Go(true,this) == true);
520 return Owner
->Flush(this) && !_error
->PendingError();
523 // ServerState::HeaderLine - Process a header line /*{{{*/
524 // ---------------------------------------------------------------------
526 bool ServerState::HeaderLine(string Line
)
528 if (Line
.empty() == true)
531 // The http server might be trying to do something evil.
532 if (Line
.length() >= MAXLEN
)
533 return _error
->Error(_("Got a single header line over %u chars"),MAXLEN
);
535 string::size_type Pos
= Line
.find(' ');
536 if (Pos
== string::npos
|| Pos
+1 > Line
.length())
538 // Blah, some servers use "connection:closes", evil.
539 Pos
= Line
.find(':');
540 if (Pos
== string::npos
|| Pos
+ 2 > Line
.length())
541 return _error
->Error(_("Bad header line"));
545 // Parse off any trailing spaces between the : and the next word.
546 string::size_type Pos2
= Pos
;
547 while (Pos2
< Line
.length() && isspace(Line
[Pos2
]) != 0)
550 string Tag
= string(Line
,0,Pos
);
551 string Val
= string(Line
,Pos2
);
553 if (stringcasecmp(Tag
.c_str(),Tag
.c_str()+4,"HTTP") == 0)
555 // Evil servers return no version
558 int const elements
= sscanf(Line
.c_str(),"HTTP/%u.%u %u%[^\n]",&Major
,&Minor
,&Result
,Code
);
563 clog
<< "HTTP server doesn't give Reason-Phrase for " << Result
<< std::endl
;
565 else if (elements
!= 4)
566 return _error
->Error(_("The HTTP server sent an invalid reply header"));
572 if (sscanf(Line
.c_str(),"HTTP %u%[^\n]",&Result
,Code
) != 2)
573 return _error
->Error(_("The HTTP server sent an invalid reply header"));
576 /* Check the HTTP response header to get the default persistance
582 if (Major
== 1 && Minor
<= 0)
591 if (stringcasecmp(Tag
,"Content-Length:") == 0)
593 if (Encoding
== Closes
)
597 // The length is already set from the Content-Range header
601 if (sscanf(Val
.c_str(),"%llu",&Size
) != 1)
602 return _error
->Error(_("The HTTP server sent an invalid Content-Length header"));
606 if (stringcasecmp(Tag
,"Content-Type:") == 0)
612 if (stringcasecmp(Tag
,"Content-Range:") == 0)
616 if (sscanf(Val
.c_str(),"bytes %llu-%*u/%llu",&StartPos
,&Size
) != 2)
617 return _error
->Error(_("The HTTP server sent an invalid Content-Range header"));
618 if ((unsigned long long)StartPos
> Size
)
619 return _error
->Error(_("This HTTP server has broken range support"));
623 if (stringcasecmp(Tag
,"Transfer-Encoding:") == 0)
626 if (stringcasecmp(Val
,"chunked") == 0)
631 if (stringcasecmp(Tag
,"Connection:") == 0)
633 if (stringcasecmp(Val
,"close") == 0)
635 if (stringcasecmp(Val
,"keep-alive") == 0)
640 if (stringcasecmp(Tag
,"Last-Modified:") == 0)
642 if (RFC1123StrToTime(Val
.c_str(), Date
) == false)
643 return _error
->Error(_("Unknown date format"));
647 if (stringcasecmp(Tag
,"Location:") == 0)
657 // HttpMethod::SendReq - Send the HTTP request /*{{{*/
658 // ---------------------------------------------------------------------
659 /* This places the http request in the outbound buffer */
660 void HttpMethod::SendReq(FetchItem
*Itm
,CircleBuf
&Out
)
664 // The HTTP server expects a hostname with a trailing :port
666 string ProperHost
= Uri
.Host
;
669 sprintf(Buf
,":%u",Uri
.Port
);
674 if (Itm
->Uri
.length() >= sizeof(Buf
))
677 /* Build the request. We include a keep-alive header only for non-proxy
678 requests. This is to tweak old http/1.0 servers that do support keep-alive
679 but not HTTP/1.1 automatic keep-alive. Doing this with a proxy server
680 will glitch HTTP/1.0 proxies because they do not filter it out and
681 pass it on, HTTP/1.1 says the connection should default to keep alive
682 and we expect the proxy to do this */
683 if (Proxy
.empty() == true || Proxy
.Host
.empty())
684 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\nConnection: keep-alive\r\n",
685 QuoteString(Uri
.Path
,"~").c_str(),ProperHost
.c_str());
688 /* Generate a cache control header if necessary. We place a max
689 cache age on index files, optionally set a no-cache directive
690 and a no-store directive for archives. */
691 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\n",
692 Itm
->Uri
.c_str(),ProperHost
.c_str());
694 // generate a cache control header (if needed)
695 if (_config
->FindB("Acquire::http::No-Cache",false) == true)
697 strcat(Buf
,"Cache-Control: no-cache\r\nPragma: no-cache\r\n");
701 if (Itm
->IndexFile
== true)
703 sprintf(Buf
+strlen(Buf
),"Cache-Control: max-age=%u\r\n",
704 _config
->FindI("Acquire::http::Max-Age",0));
708 if (_config
->FindB("Acquire::http::No-Store",false) == true)
709 strcat(Buf
,"Cache-Control: no-store\r\n");
716 // Check for a partial file
718 if (stat(Itm
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
720 // In this case we send an if-range query with a range header
721 sprintf(Buf
,"Range: bytes=%lli-\r\nIf-Range: %s\r\n",(long long)SBuf
.st_size
- 1,
722 TimeRFC1123(SBuf
.st_mtime
).c_str());
727 if (Itm
->LastModified
!= 0)
729 sprintf(Buf
,"If-Modified-Since: %s\r\n",TimeRFC1123(Itm
->LastModified
).c_str());
734 if (Proxy
.User
.empty() == false || Proxy
.Password
.empty() == false)
735 Req
+= string("Proxy-Authorization: Basic ") +
736 Base64Encode(Proxy
.User
+ ":" + Proxy
.Password
) + "\r\n";
738 maybe_add_auth (Uri
, _config
->FindFile("Dir::Etc::netrc"));
739 if (Uri
.User
.empty() == false || Uri
.Password
.empty() == false)
741 Req
+= string("Authorization: Basic ") +
742 Base64Encode(Uri
.User
+ ":" + Uri
.Password
) + "\r\n";
744 Req
+= "User-Agent: " + _config
->Find("Acquire::http::User-Agent",
745 "Debian APT-HTTP/1.3 ("VERSION
")") + "\r\n\r\n";
753 // HttpMethod::Go - Run a single loop /*{{{*/
754 // ---------------------------------------------------------------------
755 /* This runs the select loop over the server FDs, Output file FDs and
757 bool HttpMethod::Go(bool ToFile
,ServerState
*Srv
)
759 // Server has closed the connection
760 if (Srv
->ServerFd
== -1 && (Srv
->In
.WriteSpace() == false ||
768 /* Add the server. We only send more requests if the connection will
770 if (Srv
->Out
.WriteSpace() == true && Srv
->ServerFd
!= -1
771 && Srv
->Persistent
== true)
772 FD_SET(Srv
->ServerFd
,&wfds
);
773 if (Srv
->In
.ReadSpace() == true && Srv
->ServerFd
!= -1)
774 FD_SET(Srv
->ServerFd
,&rfds
);
781 if (Srv
->In
.WriteSpace() == true && ToFile
== true && FileFD
!= -1)
782 FD_SET(FileFD
,&wfds
);
785 if (_config
->FindB("Acquire::http::DependOnSTDIN", true) == true)
786 FD_SET(STDIN_FILENO
,&rfds
);
788 // Figure out the max fd
790 if (MaxFd
< Srv
->ServerFd
)
791 MaxFd
= Srv
->ServerFd
;
798 if ((Res
= select(MaxFd
+1,&rfds
,&wfds
,0,&tv
)) < 0)
802 return _error
->Errno("select",_("Select failed"));
807 _error
->Error(_("Connection timed out"));
808 return ServerDie(Srv
);
812 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&rfds
))
815 if (Srv
->In
.Read(Srv
->ServerFd
) == false)
816 return ServerDie(Srv
);
819 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&wfds
))
822 if (Srv
->Out
.Write(Srv
->ServerFd
) == false)
823 return ServerDie(Srv
);
826 // Send data to the file
827 if (FileFD
!= -1 && FD_ISSET(FileFD
,&wfds
))
829 if (Srv
->In
.Write(FileFD
) == false)
830 return _error
->Errno("write",_("Error writing to output file"));
833 // Handle commands from APT
834 if (FD_ISSET(STDIN_FILENO
,&rfds
))
843 // HttpMethod::Flush - Dump the buffer into the file /*{{{*/
844 // ---------------------------------------------------------------------
845 /* This takes the current input buffer from the Server FD and writes it
847 bool HttpMethod::Flush(ServerState
*Srv
)
851 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
853 if (File
->Name() != "/dev/null")
854 SetNonBlock(File
->Fd(),false);
855 if (Srv
->In
.WriteSpace() == false)
858 while (Srv
->In
.WriteSpace() == true)
860 if (Srv
->In
.Write(File
->Fd()) == false)
861 return _error
->Errno("write",_("Error writing to file"));
862 if (Srv
->In
.IsLimit() == true)
866 if (Srv
->In
.IsLimit() == true || Srv
->Encoding
== ServerState::Closes
)
872 // HttpMethod::ServerDie - The server has closed the connection. /*{{{*/
873 // ---------------------------------------------------------------------
875 bool HttpMethod::ServerDie(ServerState
*Srv
)
877 unsigned int LErrno
= errno
;
879 // Dump the buffer to the file
880 if (Srv
->State
== ServerState::Data
)
882 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
884 if (File
->Name() != "/dev/null")
885 SetNonBlock(File
->Fd(),false);
886 while (Srv
->In
.WriteSpace() == true)
888 if (Srv
->In
.Write(File
->Fd()) == false)
889 return _error
->Errno("write",_("Error writing to the file"));
892 if (Srv
->In
.IsLimit() == true)
897 // See if this is because the server finished the data stream
898 if (Srv
->In
.IsLimit() == false && Srv
->State
!= ServerState::Header
&&
899 Srv
->Encoding
!= ServerState::Closes
)
903 return _error
->Error(_("Error reading from server. Remote end closed connection"));
905 return _error
->Errno("read",_("Error reading from server"));
911 // Nothing left in the buffer
912 if (Srv
->In
.WriteSpace() == false)
915 // We may have got multiple responses back in one packet..
923 // HttpMethod::DealWithHeaders - Handle the retrieved header data /*{{{*/
924 // ---------------------------------------------------------------------
925 /* We look at the header data we got back from the server and decide what
926 to do. Returns DealWithHeadersResult (see http.h for details).
928 HttpMethod::DealWithHeadersResult
929 HttpMethod::DealWithHeaders(FetchResult
&Res
,ServerState
*Srv
)
932 if (Srv
->Result
== 304)
934 unlink(Queue
->DestFile
.c_str());
936 Res
.LastModified
= Queue
->LastModified
;
942 * Note that it is only OK for us to treat all redirection the same
943 * because we *always* use GET, not other HTTP methods. There are
944 * three redirection codes for which it is not appropriate that we
945 * redirect. Pass on those codes so the error handling kicks in.
948 && (Srv
->Result
> 300 && Srv
->Result
< 400)
949 && (Srv
->Result
!= 300 // Multiple Choices
950 && Srv
->Result
!= 304 // Not Modified
951 && Srv
->Result
!= 306)) // (Not part of HTTP/1.1, reserved)
953 if (Srv
->Location
.empty() == true);
954 else if (Srv
->Location
[0] == '/' && Queue
->Uri
.empty() == false)
956 URI Uri
= Queue
->Uri
;
957 if (Uri
.Host
.empty() == false)
960 strprintf(NextURI
, "http://%s:%u", Uri
.Host
.c_str(), Uri
.Port
);
962 NextURI
= "http://" + Uri
.Host
;
966 NextURI
.append(DeQuoteString(Srv
->Location
));
967 return TRY_AGAIN_OR_REDIRECT
;
971 NextURI
= DeQuoteString(Srv
->Location
);
972 return TRY_AGAIN_OR_REDIRECT
;
974 /* else pass through for error message */
977 /* We have a reply we dont handle. This should indicate a perm server
979 if (Srv
->Result
< 200 || Srv
->Result
>= 300)
982 snprintf(err
,sizeof(err
)-1,"HttpError%i",Srv
->Result
);
984 _error
->Error("%u %s",Srv
->Result
,Srv
->Code
);
985 if (Srv
->HaveContent
== true)
986 return ERROR_WITH_CONTENT_PAGE
;
987 return ERROR_UNRECOVERABLE
;
990 // This is some sort of 2xx 'data follows' reply
991 Res
.LastModified
= Srv
->Date
;
992 Res
.Size
= Srv
->Size
;
996 File
= new FileFd(Queue
->DestFile
,FileFd::WriteAny
);
997 if (_error
->PendingError() == true)
998 return ERROR_NOT_FROM_SERVER
;
1000 FailFile
= Queue
->DestFile
;
1001 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
1002 FailFd
= File
->Fd();
1003 FailTime
= Srv
->Date
;
1005 // Set the expected size
1006 if (Srv
->StartPos
>= 0)
1008 Res
.ResumePoint
= Srv
->StartPos
;
1009 if (ftruncate(File
->Fd(),Srv
->StartPos
) < 0)
1010 _error
->Errno("ftruncate", _("Failed to truncate file"));
1013 // Set the start point
1014 lseek(File
->Fd(),0,SEEK_END
);
1016 delete Srv
->In
.Hash
;
1017 Srv
->In
.Hash
= new Hashes
;
1019 // Fill the Hash if the file is non-empty (resume)
1020 if (Srv
->StartPos
> 0)
1022 lseek(File
->Fd(),0,SEEK_SET
);
1023 if (Srv
->In
.Hash
->AddFD(File
->Fd(),Srv
->StartPos
) == false)
1025 _error
->Errno("read",_("Problem hashing file"));
1026 return ERROR_NOT_FROM_SERVER
;
1028 lseek(File
->Fd(),0,SEEK_END
);
1031 SetNonBlock(File
->Fd(),true);
1032 return FILE_IS_OPEN
;
1035 // HttpMethod::SigTerm - Handle a fatal signal /*{{{*/
1036 // ---------------------------------------------------------------------
1037 /* This closes and timestamps the open file. This is neccessary to get
1038 resume behavoir on user abort */
1039 void HttpMethod::SigTerm(int)
1046 struct utimbuf UBuf
;
1047 UBuf
.actime
= FailTime
;
1048 UBuf
.modtime
= FailTime
;
1049 utime(FailFile
.c_str(),&UBuf
);
1054 // HttpMethod::Fetch - Fetch an item /*{{{*/
1055 // ---------------------------------------------------------------------
1056 /* This adds an item to the pipeline. We keep the pipeline at a fixed
1058 bool HttpMethod::Fetch(FetchItem
*)
1063 // Queue the requests
1065 for (FetchItem
*I
= Queue
; I
!= 0 && Depth
< (signed)PipelineDepth
;
1066 I
= I
->Next
, Depth
++)
1068 // If pipelining is disabled, we only queue 1 request
1069 if (Server
->Pipeline
== false && Depth
>= 0)
1072 // Make sure we stick with the same server
1073 if (Server
->Comp(I
->Uri
) == false)
1077 QueueBack
= I
->Next
;
1078 SendReq(I
,Server
->Out
);
1086 // HttpMethod::Configuration - Handle a configuration message /*{{{*/
1087 // ---------------------------------------------------------------------
1088 /* We stash the desired pipeline depth */
1089 bool HttpMethod::Configuration(string Message
)
1091 if (pkgAcqMethod::Configuration(Message
) == false)
1094 AllowRedirect
= _config
->FindB("Acquire::http::AllowRedirect",true);
1095 TimeOut
= _config
->FindI("Acquire::http::Timeout",TimeOut
);
1096 PipelineDepth
= _config
->FindI("Acquire::http::Pipeline-Depth",
1098 Debug
= _config
->FindB("Debug::Acquire::http",false);
1099 AutoDetectProxyCmd
= _config
->Find("Acquire::http::ProxyAutoDetect");
1101 // Get the proxy to use
1107 // HttpMethod::Loop - Main loop /*{{{*/
1108 // ---------------------------------------------------------------------
1110 int HttpMethod::Loop()
1112 typedef vector
<string
> StringVector
;
1113 typedef vector
<string
>::iterator StringVectorIterator
;
1114 map
<string
, StringVector
> Redirected
;
1116 signal(SIGTERM
,SigTerm
);
1117 signal(SIGINT
,SigTerm
);
1121 int FailCounter
= 0;
1124 // We have no commands, wait for some to arrive
1127 if (WaitFd(STDIN_FILENO
) == false)
1131 /* Run messages, we can accept 0 (no message) if we didn't
1132 do a WaitFd above.. Otherwise the FD is closed. */
1133 int Result
= Run(true);
1134 if (Result
!= -1 && (Result
!= 0 || Queue
== 0))
1136 if(FailReason
.empty() == false ||
1137 _config
->FindB("Acquire::http::DependOnSTDIN", true) == true)
1146 // Connect to the server
1147 if (Server
== 0 || Server
->Comp(Queue
->Uri
) == false)
1150 Server
= new ServerState(Queue
->Uri
,this);
1152 /* If the server has explicitly said this is the last connection
1153 then we pre-emptively shut down the pipeline and tear down
1154 the connection. This will speed up HTTP/1.0 servers a tad
1155 since we don't have to wait for the close sequence to
1157 if (Server
->Persistent
== false)
1160 // Reset the pipeline
1161 if (Server
->ServerFd
== -1)
1164 // Connnect to the host
1165 if (Server
->Open() == false)
1173 // Fill the pipeline.
1176 // Fetch the next URL header data from the server.
1177 switch (Server
->RunHeaders())
1179 case ServerState::RUN_HEADERS_OK
:
1182 // The header data is bad
1183 case ServerState::RUN_HEADERS_PARSE_ERROR
:
1185 _error
->Error(_("Bad header data"));
1191 // The server closed a connection during the header get..
1193 case ServerState::RUN_HEADERS_IO_ERROR
:
1198 Server
->Pipeline
= false;
1200 if (FailCounter
>= 2)
1202 Fail(_("Connection failed"),true);
1211 // Decide what to do.
1213 Res
.Filename
= Queue
->DestFile
;
1214 switch (DealWithHeaders(Res
,Server
))
1216 // Ok, the file is Open
1222 bool Result
= Server
->RunData();
1224 /* If the server is sending back sizeless responses then fill in
1227 Res
.Size
= File
->Size();
1229 // Close the file, destroy the FD object and timestamp it
1235 struct utimbuf UBuf
;
1237 UBuf
.actime
= Server
->Date
;
1238 UBuf
.modtime
= Server
->Date
;
1239 utime(Queue
->DestFile
.c_str(),&UBuf
);
1241 // Send status to APT
1244 Res
.TakeHashes(*Server
->In
.Hash
);
1249 if (Server
->ServerFd
== -1)
1255 if (FailCounter
>= 2)
1257 Fail(_("Connection failed"),true);
1276 // Hard server error, not found or something
1277 case ERROR_UNRECOVERABLE
:
1283 // Hard internal error, kill the connection and fail
1284 case ERROR_NOT_FROM_SERVER
:
1295 // We need to flush the data, the header is like a 404 w/ error text
1296 case ERROR_WITH_CONTENT_PAGE
:
1300 // Send to content to dev/null
1301 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1308 // Try again with a new URL
1309 case TRY_AGAIN_OR_REDIRECT
:
1311 // Clear rest of response if there is content
1312 if (Server
->HaveContent
)
1314 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1320 /* Detect redirect loops. No more redirects are allowed
1321 after the same URI is seen twice in a queue item. */
1322 StringVector
&R
= Redirected
[Queue
->DestFile
];
1323 bool StopRedirects
= false;
1325 R
.push_back(Queue
->Uri
);
1326 else if (R
[0] == "STOP" || R
.size() > 10)
1327 StopRedirects
= true;
1330 for (StringVectorIterator I
= R
.begin(); I
!= R
.end(); ++I
)
1331 if (Queue
->Uri
== *I
)
1337 R
.push_back(Queue
->Uri
);
1340 if (StopRedirects
== false)
1349 Fail(_("Internal error"));
1359 // HttpMethod::AutoDetectProxy - auto detect proxy /*{{{*/
1360 // ---------------------------------------------------------------------
1362 bool HttpMethod::AutoDetectProxy()
1364 if (AutoDetectProxyCmd
.empty())
1368 clog
<< "Using auto proxy detect command: " << AutoDetectProxyCmd
<< endl
;
1370 int Pipes
[2] = {-1,-1};
1371 if (pipe(Pipes
) != 0)
1372 return _error
->Errno("pipe", "Failed to create Pipe");
1374 pid_t Process
= ExecFork();
1378 dup2(Pipes
[1],STDOUT_FILENO
);
1379 SetCloseExec(STDOUT_FILENO
,false);
1381 const char *Args
[2];
1382 Args
[0] = AutoDetectProxyCmd
.c_str();
1384 execv(Args
[0],(char **)Args
);
1385 cerr
<< "Failed to exec method " << Args
[0] << endl
;
1389 int InFd
= Pipes
[0];
1391 int res
= read(InFd
, buf
, sizeof(buf
));
1392 ExecWait(Process
, "ProxyAutoDetect", true);
1395 return _error
->Errno("read", "Failed to read");
1397 return _error
->Warning("ProxyAutoDetect returned no data");
1403 clog
<< "auto detect command returned: '" << buf
<< "'" << endl
;
1405 if (strstr(buf
, "http://") == buf
)
1406 _config
->Set("Acquire::http::proxy", _strstrip(buf
));