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>
50 #include "rfc2553emu.h"
56 string
HttpMethod::FailFile
;
57 int HttpMethod::FailFd
= -1;
58 time_t HttpMethod::FailTime
= 0;
59 unsigned long PipelineDepth
= 10;
60 unsigned long TimeOut
= 120;
61 bool AllowRedirect
= false;
65 unsigned long CircleBuf::BwReadLimit
=0;
66 unsigned long CircleBuf::BwTickReadData
=0;
67 struct timeval
CircleBuf::BwReadTick
={0,0};
68 const unsigned int CircleBuf::BW_HZ
=10;
70 // CircleBuf::CircleBuf - Circular input buffer /*{{{*/
71 // ---------------------------------------------------------------------
73 CircleBuf::CircleBuf(unsigned long Size
) : Size(Size
), Hash(0)
75 Buf
= new unsigned char[Size
];
78 CircleBuf::BwReadLimit
= _config
->FindI("Acquire::http::Dl-Limit",0)*1024;
81 // CircleBuf::Reset - Reset to the default state /*{{{*/
82 // ---------------------------------------------------------------------
84 void CircleBuf::Reset()
89 MaxGet
= (unsigned int)-1;
98 // CircleBuf::Read - Read from a FD into the circular buffer /*{{{*/
99 // ---------------------------------------------------------------------
100 /* This fills up the buffer with as much data as is in the FD, assuming it
102 bool CircleBuf::Read(int Fd
)
104 unsigned long BwReadMax
;
108 // Woops, buffer is full
109 if (InP
- OutP
== Size
)
112 // what's left to read in this tick
113 BwReadMax
= CircleBuf::BwReadLimit
/BW_HZ
;
115 if(CircleBuf::BwReadLimit
) {
117 gettimeofday(&now
,0);
119 unsigned long d
= (now
.tv_sec
-CircleBuf::BwReadTick
.tv_sec
)*1000000 +
120 now
.tv_usec
-CircleBuf::BwReadTick
.tv_usec
;
121 if(d
> 1000000/BW_HZ
) {
122 CircleBuf::BwReadTick
= now
;
123 CircleBuf::BwTickReadData
= 0;
126 if(CircleBuf::BwTickReadData
>= BwReadMax
) {
127 usleep(1000000/BW_HZ
);
132 // Write the buffer segment
134 if(CircleBuf::BwReadLimit
) {
135 Res
= read(Fd
,Buf
+ (InP%Size
),
136 BwReadMax
> LeftRead() ? LeftRead() : BwReadMax
);
138 Res
= read(Fd
,Buf
+ (InP%Size
),LeftRead());
140 if(Res
> 0 && BwReadLimit
> 0)
141 CircleBuf::BwTickReadData
+= Res
;
153 gettimeofday(&Start
,0);
158 // CircleBuf::Read - Put the string into the buffer /*{{{*/
159 // ---------------------------------------------------------------------
160 /* This will hold the string in and fill the buffer with it as it empties */
161 bool CircleBuf::Read(string Data
)
168 // CircleBuf::FillOut - Fill the buffer from the output queue /*{{{*/
169 // ---------------------------------------------------------------------
171 void CircleBuf::FillOut()
173 if (OutQueue
.empty() == true)
177 // Woops, buffer is full
178 if (InP
- OutP
== Size
)
181 // Write the buffer segment
182 unsigned long Sz
= LeftRead();
183 if (OutQueue
.length() - StrPos
< Sz
)
184 Sz
= OutQueue
.length() - StrPos
;
185 memcpy(Buf
+ (InP%Size
),OutQueue
.c_str() + StrPos
,Sz
);
190 if (OutQueue
.length() == StrPos
)
199 // CircleBuf::Write - Write from the buffer into a FD /*{{{*/
200 // ---------------------------------------------------------------------
201 /* This empties the buffer into the FD. */
202 bool CircleBuf::Write(int Fd
)
208 // Woops, buffer is empty
215 // Write the buffer segment
217 Res
= write(Fd
,Buf
+ (OutP%Size
),LeftWrite());
230 Hash
->Add(Buf
+ (OutP%Size
),Res
);
236 // CircleBuf::WriteTillEl - Write from the buffer to a string /*{{{*/
237 // ---------------------------------------------------------------------
238 /* This copies till the first empty line */
239 bool CircleBuf::WriteTillEl(string
&Data
,bool Single
)
241 // We cheat and assume it is unneeded to have more than one buffer load
242 for (unsigned long I
= OutP
; I
< InP
; I
++)
244 if (Buf
[I%Size
] != '\n')
250 if (I
< InP
&& Buf
[I%Size
] == '\r')
252 if (I
>= InP
|| Buf
[I%Size
] != '\n')
260 unsigned long Sz
= LeftWrite();
265 Data
+= string((char *)(Buf
+ (OutP%Size
)),Sz
);
273 // CircleBuf::Stats - Print out stats information /*{{{*/
274 // ---------------------------------------------------------------------
276 void CircleBuf::Stats()
282 gettimeofday(&Stop
,0);
283 /* float Diff = Stop.tv_sec - Start.tv_sec +
284 (float)(Stop.tv_usec - Start.tv_usec)/1000000;
285 clog << "Got " << InP << " in " << Diff << " at " << InP/Diff << endl;*/
289 // ServerState::ServerState - Constructor /*{{{*/
290 // ---------------------------------------------------------------------
292 ServerState::ServerState(URI Srv
,HttpMethod
*Owner
) : Owner(Owner
),
293 In(64*1024), Out(4*1024),
299 // ServerState::Open - Open a connection to the server /*{{{*/
300 // ---------------------------------------------------------------------
301 /* This opens a connection to the server. */
302 bool ServerState::Open()
304 // Use the already open connection if possible.
313 // Determine the proxy setting
314 if (getenv("http_proxy") == 0)
316 string DefProxy
= _config
->Find("Acquire::http::Proxy");
317 string SpecificProxy
= _config
->Find("Acquire::http::Proxy::" + ServerName
.Host
);
318 if (SpecificProxy
.empty() == false)
320 if (SpecificProxy
== "DIRECT")
323 Proxy
= SpecificProxy
;
329 Proxy
= getenv("http_proxy");
331 // Parse no_proxy, a , separated list of domains
332 if (getenv("no_proxy") != 0)
334 if (CheckDomainList(ServerName
.Host
,getenv("no_proxy")) == true)
338 // Determine what host and port to use based on the proxy settings
341 if (Proxy
.empty() == true || Proxy
.Host
.empty() == true)
343 if (ServerName
.Port
!= 0)
344 Port
= ServerName
.Port
;
345 Host
= ServerName
.Host
;
354 // Connect to the remote server
355 if (Connect(Host
,Port
,"http",80,ServerFd
,TimeOut
,Owner
) == false)
361 // ServerState::Close - Close a connection to the server /*{{{*/
362 // ---------------------------------------------------------------------
364 bool ServerState::Close()
371 // ServerState::RunHeaders - Get the headers before the data /*{{{*/
372 // ---------------------------------------------------------------------
373 /* Returns 0 if things are OK, 1 if an IO error occurred and 2 if a header
374 parse error occurred */
375 int ServerState::RunHeaders()
379 Owner
->Status(_("Waiting for headers"));
393 if (In
.WriteTillEl(Data
) == false)
399 for (string::const_iterator I
= Data
.begin(); I
< Data
.end(); I
++)
401 string::const_iterator J
= I
;
402 for (; J
!= Data
.end() && *J
!= '\n' && *J
!= '\r';J
++);
403 if (HeaderLine(string(I
,J
)) == false)
408 // 100 Continue is a Nop...
412 // Tidy up the connection persistance state.
413 if (Encoding
== Closes
&& HaveContent
== true)
418 while (Owner
->Go(false,this) == true);
423 // ServerState::RunData - Transfer the data from the socket /*{{{*/
424 // ---------------------------------------------------------------------
426 bool ServerState::RunData()
430 // Chunked transfer encoding is fun..
431 if (Encoding
== Chunked
)
435 // Grab the block size
441 if (In
.WriteTillEl(Data
,true) == true)
444 while ((Last
= Owner
->Go(false,this)) == true);
449 // See if we are done
450 unsigned long Len
= strtol(Data
.c_str(),0,16);
455 // We have to remove the entity trailer
459 if (In
.WriteTillEl(Data
,true) == true && Data
.length() <= 2)
462 while ((Last
= Owner
->Go(false,this)) == true);
465 return !_error
->PendingError();
468 // Transfer the block
470 while (Owner
->Go(true,this) == true)
471 if (In
.IsLimit() == true)
475 if (In
.IsLimit() == false)
478 // The server sends an extra new line before the next block specifier..
483 if (In
.WriteTillEl(Data
,true) == true)
486 while ((Last
= Owner
->Go(false,this)) == true);
493 /* Closes encoding is used when the server did not specify a size, the
494 loss of the connection means we are done */
495 if (Encoding
== Closes
)
498 In
.Limit(Size
- StartPos
);
500 // Just transfer the whole block.
503 if (In
.IsLimit() == false)
507 return !_error
->PendingError();
509 while (Owner
->Go(true,this) == true);
512 return Owner
->Flush(this) && !_error
->PendingError();
515 // ServerState::HeaderLine - Process a header line /*{{{*/
516 // ---------------------------------------------------------------------
518 bool ServerState::HeaderLine(string Line
)
520 if (Line
.empty() == true)
523 // The http server might be trying to do something evil.
524 if (Line
.length() >= MAXLEN
)
525 return _error
->Error(_("Got a single header line over %u chars"),MAXLEN
);
527 string::size_type Pos
= Line
.find(' ');
528 if (Pos
== string::npos
|| Pos
+1 > Line
.length())
530 // Blah, some servers use "connection:closes", evil.
531 Pos
= Line
.find(':');
532 if (Pos
== string::npos
|| Pos
+ 2 > Line
.length())
533 return _error
->Error(_("Bad header line"));
537 // Parse off any trailing spaces between the : and the next word.
538 string::size_type Pos2
= Pos
;
539 while (Pos2
< Line
.length() && isspace(Line
[Pos2
]) != 0)
542 string Tag
= string(Line
,0,Pos
);
543 string Val
= string(Line
,Pos2
);
545 if (stringcasecmp(Tag
.c_str(),Tag
.c_str()+4,"HTTP") == 0)
547 // Evil servers return no version
550 if (sscanf(Line
.c_str(),"HTTP/%u.%u %u %[^\n]",&Major
,&Minor
,
552 return _error
->Error(_("The HTTP server sent an invalid reply header"));
558 if (sscanf(Line
.c_str(),"HTTP %u %[^\n]",&Result
,Code
) != 2)
559 return _error
->Error(_("The HTTP server sent an invalid reply header"));
562 /* Check the HTTP response header to get the default persistance
568 if (Major
== 1 && Minor
<= 0)
577 if (stringcasecmp(Tag
,"Content-Length:") == 0)
579 if (Encoding
== Closes
)
583 // The length is already set from the Content-Range header
587 if (sscanf(Val
.c_str(),"%lu",&Size
) != 1)
588 return _error
->Error(_("The HTTP server sent an invalid Content-Length header"));
592 if (stringcasecmp(Tag
,"Content-Type:") == 0)
598 if (stringcasecmp(Tag
,"Content-Range:") == 0)
602 if (sscanf(Val
.c_str(),"bytes %lu-%*u/%lu",&StartPos
,&Size
) != 2)
603 return _error
->Error(_("The HTTP server sent an invalid Content-Range header"));
604 if ((unsigned)StartPos
> Size
)
605 return _error
->Error(_("This HTTP server has broken range support"));
609 if (stringcasecmp(Tag
,"Transfer-Encoding:") == 0)
612 if (stringcasecmp(Val
,"chunked") == 0)
617 if (stringcasecmp(Tag
,"Connection:") == 0)
619 if (stringcasecmp(Val
,"close") == 0)
621 if (stringcasecmp(Val
,"keep-alive") == 0)
626 if (stringcasecmp(Tag
,"Last-Modified:") == 0)
628 if (StrToTime(Val
,Date
) == false)
629 return _error
->Error(_("Unknown date format"));
633 if (stringcasecmp(Tag
,"Location:") == 0)
643 // HttpMethod::SendReq - Send the HTTP request /*{{{*/
644 // ---------------------------------------------------------------------
645 /* This places the http request in the outbound buffer */
646 void HttpMethod::SendReq(FetchItem
*Itm
,CircleBuf
&Out
)
650 // The HTTP server expects a hostname with a trailing :port
652 string ProperHost
= Uri
.Host
;
655 sprintf(Buf
,":%u",Uri
.Port
);
660 if (Itm
->Uri
.length() >= sizeof(Buf
))
663 /* Build the request. We include a keep-alive header only for non-proxy
664 requests. This is to tweak old http/1.0 servers that do support keep-alive
665 but not HTTP/1.1 automatic keep-alive. Doing this with a proxy server
666 will glitch HTTP/1.0 proxies because they do not filter it out and
667 pass it on, HTTP/1.1 says the connection should default to keep alive
668 and we expect the proxy to do this */
669 if (Proxy
.empty() == true || Proxy
.Host
.empty())
670 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\nConnection: keep-alive\r\n",
671 QuoteString(Uri
.Path
,"~").c_str(),ProperHost
.c_str());
674 /* Generate a cache control header if necessary. We place a max
675 cache age on index files, optionally set a no-cache directive
676 and a no-store directive for archives. */
677 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\n",
678 Itm
->Uri
.c_str(),ProperHost
.c_str());
679 // only generate a cache control header if we actually want to
681 if (_config
->FindB("Acquire::http::No-Cache",false) == false)
683 if (Itm
->IndexFile
== true)
684 sprintf(Buf
+strlen(Buf
),"Cache-Control: max-age=%u\r\n",
685 _config
->FindI("Acquire::http::Max-Age",0));
688 if (_config
->FindB("Acquire::http::No-Store",false) == true)
689 strcat(Buf
,"Cache-Control: no-store\r\n");
693 // generate a no-cache header if needed
694 if (_config
->FindB("Acquire::http::No-Cache",false) == true)
695 strcat(Buf
,"Cache-Control: no-cache\r\nPragma: no-cache\r\n");
700 // Check for a partial file
702 if (stat(Itm
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
704 // In this case we send an if-range query with a range header
705 sprintf(Buf
,"Range: bytes=%li-\r\nIf-Range: %s\r\n",(long)SBuf
.st_size
- 1,
706 TimeRFC1123(SBuf
.st_mtime
).c_str());
711 if (Itm
->LastModified
!= 0)
713 sprintf(Buf
,"If-Modified-Since: %s\r\n",TimeRFC1123(Itm
->LastModified
).c_str());
718 if (Proxy
.User
.empty() == false || Proxy
.Password
.empty() == false)
719 Req
+= string("Proxy-Authorization: Basic ") +
720 Base64Encode(Proxy
.User
+ ":" + Proxy
.Password
) + "\r\n";
722 if (Uri
.User
.empty() == false || Uri
.Password
.empty() == false)
723 Req
+= string("Authorization: Basic ") +
724 Base64Encode(Uri
.User
+ ":" + Uri
.Password
) + "\r\n";
726 Req
+= "User-Agent: Debian APT-HTTP/1.3 ("VERSION
")\r\n\r\n";
734 // HttpMethod::Go - Run a single loop /*{{{*/
735 // ---------------------------------------------------------------------
736 /* This runs the select loop over the server FDs, Output file FDs and
738 bool HttpMethod::Go(bool ToFile
,ServerState
*Srv
)
740 // Server has closed the connection
741 if (Srv
->ServerFd
== -1 && (Srv
->In
.WriteSpace() == false ||
749 /* Add the server. We only send more requests if the connection will
751 if (Srv
->Out
.WriteSpace() == true && Srv
->ServerFd
!= -1
752 && Srv
->Persistent
== true)
753 FD_SET(Srv
->ServerFd
,&wfds
);
754 if (Srv
->In
.ReadSpace() == true && Srv
->ServerFd
!= -1)
755 FD_SET(Srv
->ServerFd
,&rfds
);
762 if (Srv
->In
.WriteSpace() == true && ToFile
== true && FileFD
!= -1)
763 FD_SET(FileFD
,&wfds
);
766 FD_SET(STDIN_FILENO
,&rfds
);
768 // Figure out the max fd
770 if (MaxFd
< Srv
->ServerFd
)
771 MaxFd
= Srv
->ServerFd
;
778 if ((Res
= select(MaxFd
+1,&rfds
,&wfds
,0,&tv
)) < 0)
782 return _error
->Errno("select",_("Select failed"));
787 _error
->Error(_("Connection timed out"));
788 return ServerDie(Srv
);
792 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&rfds
))
795 if (Srv
->In
.Read(Srv
->ServerFd
) == false)
796 return ServerDie(Srv
);
799 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&wfds
))
802 if (Srv
->Out
.Write(Srv
->ServerFd
) == false)
803 return ServerDie(Srv
);
806 // Send data to the file
807 if (FileFD
!= -1 && FD_ISSET(FileFD
,&wfds
))
809 if (Srv
->In
.Write(FileFD
) == false)
810 return _error
->Errno("write",_("Error writing to output file"));
813 // Handle commands from APT
814 if (FD_ISSET(STDIN_FILENO
,&rfds
))
823 // HttpMethod::Flush - Dump the buffer into the file /*{{{*/
824 // ---------------------------------------------------------------------
825 /* This takes the current input buffer from the Server FD and writes it
827 bool HttpMethod::Flush(ServerState
*Srv
)
831 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
833 if (File
->Name() != "/dev/null")
834 SetNonBlock(File
->Fd(),false);
835 if (Srv
->In
.WriteSpace() == false)
838 while (Srv
->In
.WriteSpace() == true)
840 if (Srv
->In
.Write(File
->Fd()) == false)
841 return _error
->Errno("write",_("Error writing to file"));
842 if (Srv
->In
.IsLimit() == true)
846 if (Srv
->In
.IsLimit() == true || Srv
->Encoding
== ServerState::Closes
)
852 // HttpMethod::ServerDie - The server has closed the connection. /*{{{*/
853 // ---------------------------------------------------------------------
855 bool HttpMethod::ServerDie(ServerState
*Srv
)
857 unsigned int LErrno
= errno
;
859 // Dump the buffer to the file
860 if (Srv
->State
== ServerState::Data
)
862 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
864 if (File
->Name() != "/dev/null")
865 SetNonBlock(File
->Fd(),false);
866 while (Srv
->In
.WriteSpace() == true)
868 if (Srv
->In
.Write(File
->Fd()) == false)
869 return _error
->Errno("write",_("Error writing to the file"));
872 if (Srv
->In
.IsLimit() == true)
877 // See if this is because the server finished the data stream
878 if (Srv
->In
.IsLimit() == false && Srv
->State
!= ServerState::Header
&&
879 Srv
->Encoding
!= ServerState::Closes
)
883 return _error
->Error(_("Error reading from server. Remote end closed connection"));
885 return _error
->Errno("read",_("Error reading from server"));
891 // Nothing left in the buffer
892 if (Srv
->In
.WriteSpace() == false)
895 // We may have got multiple responses back in one packet..
903 // HttpMethod::DealWithHeaders - Handle the retrieved header data /*{{{*/
904 // ---------------------------------------------------------------------
905 /* We look at the header data we got back from the server and decide what
909 3 - Unrecoverable error
910 4 - Error with error content page
911 5 - Unrecoverable non-server error (close the connection)
912 6 - Try again with a new or changed URI
914 int HttpMethod::DealWithHeaders(FetchResult
&Res
,ServerState
*Srv
)
917 if (Srv
->Result
== 304)
919 unlink(Queue
->DestFile
.c_str());
921 Res
.LastModified
= Queue
->LastModified
;
927 * Note that it is only OK for us to treat all redirection the same
928 * because we *always* use GET, not other HTTP methods. There are
929 * three redirection codes for which it is not appropriate that we
930 * redirect. Pass on those codes so the error handling kicks in.
933 && (Srv
->Result
> 300 && Srv
->Result
< 400)
934 && (Srv
->Result
!= 300 // Multiple Choices
935 && Srv
->Result
!= 304 // Not Modified
936 && Srv
->Result
!= 306)) // (Not part of HTTP/1.1, reserved)
938 if (!Srv
->Location
.empty())
940 NextURI
= Srv
->Location
;
943 /* else pass through for error message */
946 /* We have a reply we dont handle. This should indicate a perm server
948 if (Srv
->Result
< 200 || Srv
->Result
>= 300)
950 _error
->Error("%u %s",Srv
->Result
,Srv
->Code
);
951 if (Srv
->HaveContent
== true)
956 // This is some sort of 2xx 'data follows' reply
957 Res
.LastModified
= Srv
->Date
;
958 Res
.Size
= Srv
->Size
;
962 File
= new FileFd(Queue
->DestFile
,FileFd::WriteAny
);
963 if (_error
->PendingError() == true)
966 FailFile
= Queue
->DestFile
;
967 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
969 FailTime
= Srv
->Date
;
971 // Set the expected size
972 if (Srv
->StartPos
>= 0)
974 Res
.ResumePoint
= Srv
->StartPos
;
975 if (ftruncate(File
->Fd(),Srv
->StartPos
) < 0)
976 _error
->Errno("ftruncate", _("Failed to truncate file"));
979 // Set the start point
980 lseek(File
->Fd(),0,SEEK_END
);
983 Srv
->In
.Hash
= new Hashes
;
985 // Fill the Hash if the file is non-empty (resume)
986 if (Srv
->StartPos
> 0)
988 lseek(File
->Fd(),0,SEEK_SET
);
989 if (Srv
->In
.Hash
->AddFD(File
->Fd(),Srv
->StartPos
) == false)
991 _error
->Errno("read",_("Problem hashing file"));
994 lseek(File
->Fd(),0,SEEK_END
);
997 SetNonBlock(File
->Fd(),true);
1001 // HttpMethod::SigTerm - Handle a fatal signal /*{{{*/
1002 // ---------------------------------------------------------------------
1003 /* This closes and timestamps the open file. This is neccessary to get
1004 resume behavoir on user abort */
1005 void HttpMethod::SigTerm(int)
1012 struct utimbuf UBuf
;
1013 UBuf
.actime
= FailTime
;
1014 UBuf
.modtime
= FailTime
;
1015 utime(FailFile
.c_str(),&UBuf
);
1020 // HttpMethod::Fetch - Fetch an item /*{{{*/
1021 // ---------------------------------------------------------------------
1022 /* This adds an item to the pipeline. We keep the pipeline at a fixed
1024 bool HttpMethod::Fetch(FetchItem
*)
1029 // Queue the requests
1031 for (FetchItem
*I
= Queue
; I
!= 0 && Depth
< (signed)PipelineDepth
;
1032 I
= I
->Next
, Depth
++)
1034 // If pipelining is disabled, we only queue 1 request
1035 if (Server
->Pipeline
== false && Depth
>= 0)
1038 // Make sure we stick with the same server
1039 if (Server
->Comp(I
->Uri
) == false)
1043 QueueBack
= I
->Next
;
1044 SendReq(I
,Server
->Out
);
1052 // HttpMethod::Configuration - Handle a configuration message /*{{{*/
1053 // ---------------------------------------------------------------------
1054 /* We stash the desired pipeline depth */
1055 bool HttpMethod::Configuration(string Message
)
1057 if (pkgAcqMethod::Configuration(Message
) == false)
1060 AllowRedirect
= _config
->FindB("Acquire::http::AllowRedirect",true);
1061 TimeOut
= _config
->FindI("Acquire::http::Timeout",TimeOut
);
1062 PipelineDepth
= _config
->FindI("Acquire::http::Pipeline-Depth",
1064 Debug
= _config
->FindB("Debug::Acquire::http",false);
1069 // HttpMethod::Loop - Main loop /*{{{*/
1070 // ---------------------------------------------------------------------
1072 int HttpMethod::Loop()
1074 typedef vector
<string
> StringVector
;
1075 typedef vector
<string
>::iterator StringVectorIterator
;
1076 map
<string
, StringVector
> Redirected
;
1078 signal(SIGTERM
,SigTerm
);
1079 signal(SIGINT
,SigTerm
);
1083 int FailCounter
= 0;
1086 // We have no commands, wait for some to arrive
1089 if (WaitFd(STDIN_FILENO
) == false)
1093 /* Run messages, we can accept 0 (no message) if we didn't
1094 do a WaitFd above.. Otherwise the FD is closed. */
1095 int Result
= Run(true);
1096 if (Result
!= -1 && (Result
!= 0 || Queue
== 0))
1102 // Connect to the server
1103 if (Server
== 0 || Server
->Comp(Queue
->Uri
) == false)
1106 Server
= new ServerState(Queue
->Uri
,this);
1108 /* If the server has explicitly said this is the last connection
1109 then we pre-emptively shut down the pipeline and tear down
1110 the connection. This will speed up HTTP/1.0 servers a tad
1111 since we don't have to wait for the close sequence to
1113 if (Server
->Persistent
== false)
1116 // Reset the pipeline
1117 if (Server
->ServerFd
== -1)
1120 // Connnect to the host
1121 if (Server
->Open() == false)
1129 // Fill the pipeline.
1132 // Fetch the next URL header data from the server.
1133 switch (Server
->RunHeaders())
1138 // The header data is bad
1141 _error
->Error(_("Bad header data"));
1147 // The server closed a connection during the header get..
1154 Server
->Pipeline
= false;
1156 if (FailCounter
>= 2)
1158 Fail(_("Connection failed"),true);
1167 // Decide what to do.
1169 Res
.Filename
= Queue
->DestFile
;
1170 switch (DealWithHeaders(Res
,Server
))
1172 // Ok, the file is Open
1178 bool Result
= Server
->RunData();
1180 /* If the server is sending back sizeless responses then fill in
1183 Res
.Size
= File
->Size();
1185 // Close the file, destroy the FD object and timestamp it
1191 struct utimbuf UBuf
;
1193 UBuf
.actime
= Server
->Date
;
1194 UBuf
.modtime
= Server
->Date
;
1195 utime(Queue
->DestFile
.c_str(),&UBuf
);
1197 // Send status to APT
1200 Res
.TakeHashes(*Server
->In
.Hash
);
1205 if (Server
->ServerFd
== -1)
1211 if (FailCounter
>= 2)
1213 Fail(_("Connection failed"),true);
1232 // Hard server error, not found or something
1239 // Hard internal error, kill the connection and fail
1251 // We need to flush the data, the header is like a 404 w/ error text
1256 // Send to content to dev/null
1257 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1264 // Try again with a new URL
1267 // Clear rest of response if there is content
1268 if (Server
->HaveContent
)
1270 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1276 /* Detect redirect loops. No more redirects are allowed
1277 after the same URI is seen twice in a queue item. */
1278 StringVector
&R
= Redirected
[Queue
->DestFile
];
1279 bool StopRedirects
= false;
1281 R
.push_back(Queue
->Uri
);
1282 else if (R
[0] == "STOP" || R
.size() > 10)
1283 StopRedirects
= true;
1286 for (StringVectorIterator I
= R
.begin(); I
!= R
.end(); I
++)
1287 if (Queue
->Uri
== *I
)
1293 R
.push_back(Queue
->Uri
);
1296 if (StopRedirects
== false)
1305 Fail(_("Internal error"));
1318 setlocale(LC_ALL
, "");
1319 // ignore SIGPIPE, this can happen on write() if the socket
1320 // closes the connection (this is dealt with via ServerDie())
1321 signal(SIGPIPE
, SIG_IGN
);