]>
git.saurik.com Git - apt.git/blob - methods/http.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: http.cc,v 1.59 2004/05/08 19:42:35 mdz Exp $
4 /* ######################################################################
6 HTTP Aquire 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>
48 #include "rfc2553emu.h"
54 string
HttpMethod::FailFile
;
55 int HttpMethod::FailFd
= -1;
56 time_t HttpMethod::FailTime
= 0;
57 unsigned long PipelineDepth
= 10;
58 unsigned long TimeOut
= 120;
62 unsigned long CircleBuf::BwReadLimit
=0;
63 unsigned long CircleBuf::BwTickReadData
=0;
64 struct timeval
CircleBuf::BwReadTick
={0,0};
65 const unsigned int CircleBuf::BW_HZ
=10;
67 // CircleBuf::CircleBuf - Circular input buffer /*{{{*/
68 // ---------------------------------------------------------------------
70 CircleBuf::CircleBuf(unsigned long Size
) : Size(Size
), Hash(0)
72 Buf
= new unsigned char[Size
];
75 CircleBuf::BwReadLimit
= _config
->FindI("Acquire::http::DlLimit",0)*1024;
78 // CircleBuf::Reset - Reset to the default state /*{{{*/
79 // ---------------------------------------------------------------------
81 void CircleBuf::Reset()
86 MaxGet
= (unsigned int)-1;
95 // CircleBuf::Read - Read from a FD into the circular buffer /*{{{*/
96 // ---------------------------------------------------------------------
97 /* This fills up the buffer with as much data as is in the FD, assuming it
99 bool CircleBuf::Read(int Fd
)
101 unsigned long BwReadMax
;
105 // Woops, buffer is full
106 if (InP
- OutP
== Size
)
109 // what's left to read in this tick
110 BwReadMax
= CircleBuf::BwReadLimit
/BW_HZ
;
112 if(CircleBuf::BwReadLimit
) {
114 gettimeofday(&now
,0);
116 unsigned long d
= (now
.tv_sec
-CircleBuf::BwReadTick
.tv_sec
)*1000000 +
117 now
.tv_usec
-CircleBuf::BwReadTick
.tv_usec
;
118 if(d
> 1000000/BW_HZ
) {
119 CircleBuf::BwReadTick
= now
;
120 CircleBuf::BwTickReadData
= 0;
123 if(CircleBuf::BwTickReadData
>= BwReadMax
) {
124 usleep(1000000/BW_HZ
);
129 // Write the buffer segment
131 if(CircleBuf::BwReadLimit
) {
132 Res
= read(Fd
,Buf
+ (InP%Size
),
133 BwReadMax
> LeftRead() ? LeftRead() : BwReadMax
);
135 Res
= read(Fd
,Buf
+ (InP%Size
),LeftRead());
137 if(Res
> 0 && BwReadLimit
> 0)
138 CircleBuf::BwTickReadData
+= Res
;
150 gettimeofday(&Start
,0);
155 // CircleBuf::Read - Put the string into the buffer /*{{{*/
156 // ---------------------------------------------------------------------
157 /* This will hold the string in and fill the buffer with it as it empties */
158 bool CircleBuf::Read(string Data
)
165 // CircleBuf::FillOut - Fill the buffer from the output queue /*{{{*/
166 // ---------------------------------------------------------------------
168 void CircleBuf::FillOut()
170 if (OutQueue
.empty() == true)
174 // Woops, buffer is full
175 if (InP
- OutP
== Size
)
178 // Write the buffer segment
179 unsigned long Sz
= LeftRead();
180 if (OutQueue
.length() - StrPos
< Sz
)
181 Sz
= OutQueue
.length() - StrPos
;
182 memcpy(Buf
+ (InP%Size
),OutQueue
.c_str() + StrPos
,Sz
);
187 if (OutQueue
.length() == StrPos
)
196 // CircleBuf::Write - Write from the buffer into a FD /*{{{*/
197 // ---------------------------------------------------------------------
198 /* This empties the buffer into the FD. */
199 bool CircleBuf::Write(int Fd
)
205 // Woops, buffer is empty
212 // Write the buffer segment
214 Res
= write(Fd
,Buf
+ (OutP%Size
),LeftWrite());
227 Hash
->Add(Buf
+ (OutP%Size
),Res
);
233 // CircleBuf::WriteTillEl - Write from the buffer to a string /*{{{*/
234 // ---------------------------------------------------------------------
235 /* This copies till the first empty line */
236 bool CircleBuf::WriteTillEl(string
&Data
,bool Single
)
238 // We cheat and assume it is unneeded to have more than one buffer load
239 for (unsigned long I
= OutP
; I
< InP
; I
++)
241 if (Buf
[I%Size
] != '\n')
244 if (I
< InP
&& Buf
[I%Size
] == '\r')
249 if (Buf
[I%Size
] != '\n')
252 if (I
< InP
&& Buf
[I%Size
] == '\r')
262 unsigned long Sz
= LeftWrite();
265 if (I
- OutP
< LeftWrite())
267 Data
+= string((char *)(Buf
+ (OutP%Size
)),Sz
);
275 // CircleBuf::Stats - Print out stats information /*{{{*/
276 // ---------------------------------------------------------------------
278 void CircleBuf::Stats()
284 gettimeofday(&Stop
,0);
285 /* float Diff = Stop.tv_sec - Start.tv_sec +
286 (float)(Stop.tv_usec - Start.tv_usec)/1000000;
287 clog << "Got " << InP << " in " << Diff << " at " << InP/Diff << endl;*/
291 // ServerState::ServerState - Constructor /*{{{*/
292 // ---------------------------------------------------------------------
294 ServerState::ServerState(URI Srv
,HttpMethod
*Owner
) : Owner(Owner
),
295 In(64*1024), Out(4*1024),
301 // ServerState::Open - Open a connection to the server /*{{{*/
302 // ---------------------------------------------------------------------
303 /* This opens a connection to the server. */
304 bool ServerState::Open()
306 // Use the already open connection if possible.
315 // Determine the proxy setting
316 if (getenv("http_proxy") == 0)
318 string DefProxy
= _config
->Find("Acquire::http::Proxy");
319 string SpecificProxy
= _config
->Find("Acquire::http::Proxy::" + ServerName
.Host
);
320 if (SpecificProxy
.empty() == false)
322 if (SpecificProxy
== "DIRECT")
325 Proxy
= SpecificProxy
;
331 Proxy
= getenv("http_proxy");
333 // Parse no_proxy, a , separated list of domains
334 if (getenv("no_proxy") != 0)
336 if (CheckDomainList(ServerName
.Host
,getenv("no_proxy")) == true)
340 // Determine what host and port to use based on the proxy settings
343 if (Proxy
.empty() == true || Proxy
.Host
.empty() == true)
345 if (ServerName
.Port
!= 0)
346 Port
= ServerName
.Port
;
347 Host
= ServerName
.Host
;
356 // Connect to the remote server
357 if (Connect(Host
,Port
,"http",80,ServerFd
,TimeOut
,Owner
) == false)
363 // ServerState::Close - Close a connection to the server /*{{{*/
364 // ---------------------------------------------------------------------
366 bool ServerState::Close()
373 // ServerState::RunHeaders - Get the headers before the data /*{{{*/
374 // ---------------------------------------------------------------------
375 /* Returns 0 if things are OK, 1 if an IO error occursed and 2 if a header
376 parse error occured */
377 int ServerState::RunHeaders()
381 Owner
->Status(_("Waiting for headers"));
395 if (In
.WriteTillEl(Data
) == false)
401 for (string::const_iterator I
= Data
.begin(); I
< Data
.end(); I
++)
403 string::const_iterator J
= I
;
404 for (; J
!= Data
.end() && *J
!= '\n' && *J
!= '\r';J
++);
405 if (HeaderLine(string(I
,J
)) == false)
410 // 100 Continue is a Nop...
414 // Tidy up the connection persistance state.
415 if (Encoding
== Closes
&& HaveContent
== true)
420 while (Owner
->Go(false,this) == true);
425 // ServerState::RunData - Transfer the data from the socket /*{{{*/
426 // ---------------------------------------------------------------------
428 bool ServerState::RunData()
432 // Chunked transfer encoding is fun..
433 if (Encoding
== Chunked
)
437 // Grab the block size
443 if (In
.WriteTillEl(Data
,true) == true)
446 while ((Last
= Owner
->Go(false,this)) == true);
451 // See if we are done
452 unsigned long Len
= strtol(Data
.c_str(),0,16);
457 // We have to remove the entity trailer
461 if (In
.WriteTillEl(Data
,true) == true && Data
.length() <= 2)
464 while ((Last
= Owner
->Go(false,this)) == true);
467 return !_error
->PendingError();
470 // Transfer the block
472 while (Owner
->Go(true,this) == true)
473 if (In
.IsLimit() == true)
477 if (In
.IsLimit() == false)
480 // The server sends an extra new line before the next block specifier..
485 if (In
.WriteTillEl(Data
,true) == true)
488 while ((Last
= Owner
->Go(false,this)) == true);
495 /* Closes encoding is used when the server did not specify a size, the
496 loss of the connection means we are done */
497 if (Encoding
== Closes
)
500 In
.Limit(Size
- StartPos
);
502 // Just transfer the whole block.
505 if (In
.IsLimit() == false)
509 return !_error
->PendingError();
511 while (Owner
->Go(true,this) == true);
514 return Owner
->Flush(this) && !_error
->PendingError();
517 // ServerState::HeaderLine - Process a header line /*{{{*/
518 // ---------------------------------------------------------------------
520 bool ServerState::HeaderLine(string Line
)
522 if (Line
.empty() == true)
525 // The http server might be trying to do something evil.
526 if (Line
.length() >= MAXLEN
)
527 return _error
->Error(_("Got a single header line over %u chars"),MAXLEN
);
529 string::size_type Pos
= Line
.find(' ');
530 if (Pos
== string::npos
|| Pos
+1 > Line
.length())
532 // Blah, some servers use "connection:closes", evil.
533 Pos
= Line
.find(':');
534 if (Pos
== string::npos
|| Pos
+ 2 > Line
.length())
535 return _error
->Error(_("Bad header line"));
539 // Parse off any trailing spaces between the : and the next word.
540 string::size_type Pos2
= Pos
;
541 while (Pos2
< Line
.length() && isspace(Line
[Pos2
]) != 0)
544 string Tag
= string(Line
,0,Pos
);
545 string Val
= string(Line
,Pos2
);
547 if (stringcasecmp(Tag
.c_str(),Tag
.c_str()+4,"HTTP") == 0)
549 // Evil servers return no version
552 if (sscanf(Line
.c_str(),"HTTP/%u.%u %u %[^\n]",&Major
,&Minor
,
554 return _error
->Error(_("The HTTP server sent an invalid reply header"));
560 if (sscanf(Line
.c_str(),"HTTP %u %[^\n]",&Result
,Code
) != 2)
561 return _error
->Error(_("The HTTP server sent an invalid reply header"));
564 /* Check the HTTP response header to get the default persistance
570 if (Major
== 1 && Minor
<= 0)
579 if (stringcasecmp(Tag
,"Content-Length:") == 0)
581 if (Encoding
== Closes
)
585 // The length is already set from the Content-Range header
589 if (sscanf(Val
.c_str(),"%lu",&Size
) != 1)
590 return _error
->Error(_("The HTTP server sent an invalid Content-Length header"));
594 if (stringcasecmp(Tag
,"Content-Type:") == 0)
600 if (stringcasecmp(Tag
,"Content-Range:") == 0)
604 if (sscanf(Val
.c_str(),"bytes %lu-%*u/%lu",&StartPos
,&Size
) != 2)
605 return _error
->Error(_("The HTTP server sent an invalid Content-Range header"));
606 if ((unsigned)StartPos
> Size
)
607 return _error
->Error(_("This HTTP server has broken range support"));
611 if (stringcasecmp(Tag
,"Transfer-Encoding:") == 0)
614 if (stringcasecmp(Val
,"chunked") == 0)
619 if (stringcasecmp(Tag
,"Connection:") == 0)
621 if (stringcasecmp(Val
,"close") == 0)
623 if (stringcasecmp(Val
,"keep-alive") == 0)
628 if (stringcasecmp(Tag
,"Last-Modified:") == 0)
630 if (StrToTime(Val
,Date
) == false)
631 return _error
->Error(_("Unknown date format"));
639 // HttpMethod::SendReq - Send the HTTP request /*{{{*/
640 // ---------------------------------------------------------------------
641 /* This places the http request in the outbound buffer */
642 void HttpMethod::SendReq(FetchItem
*Itm
,CircleBuf
&Out
)
646 // The HTTP server expects a hostname with a trailing :port
648 string ProperHost
= Uri
.Host
;
651 sprintf(Buf
,":%u",Uri
.Port
);
656 if (Itm
->Uri
.length() >= sizeof(Buf
))
659 /* Build the request. We include a keep-alive header only for non-proxy
660 requests. This is to tweak old http/1.0 servers that do support keep-alive
661 but not HTTP/1.1 automatic keep-alive. Doing this with a proxy server
662 will glitch HTTP/1.0 proxies because they do not filter it out and
663 pass it on, HTTP/1.1 says the connection should default to keep alive
664 and we expect the proxy to do this */
665 if (Proxy
.empty() == true)
666 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\nConnection: keep-alive\r\n",
667 QuoteString(Uri
.Path
,"~").c_str(),ProperHost
.c_str());
670 /* Generate a cache control header if necessary. We place a max
671 cache age on index files, optionally set a no-cache directive
672 and a no-store directive for archives. */
673 sprintf(Buf
,"GET %s HTTP/1.1\r\nHost: %s\r\n",
674 Itm
->Uri
.c_str(),ProperHost
.c_str());
675 if (_config
->FindB("Acquire::http::No-Cache",false) == true)
676 strcat(Buf
,"Cache-Control: no-cache\r\nPragma: no-cache\r\n");
679 if (Itm
->IndexFile
== true)
680 sprintf(Buf
+strlen(Buf
),"Cache-Control: max-age=%u\r\n",
681 _config
->FindI("Acquire::http::Max-Age",0));
684 if (_config
->FindB("Acquire::http::No-Store",false) == true)
685 strcat(Buf
,"Cache-Control: no-store\r\n");
692 // Check for a partial file
694 if (stat(Itm
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
696 // In this case we send an if-range query with a range header
697 sprintf(Buf
,"Range: bytes=%li-\r\nIf-Range: %s\r\n",(long)SBuf
.st_size
- 1,
698 TimeRFC1123(SBuf
.st_mtime
).c_str());
703 if (Itm
->LastModified
!= 0)
705 sprintf(Buf
,"If-Modified-Since: %s\r\n",TimeRFC1123(Itm
->LastModified
).c_str());
710 if (Proxy
.User
.empty() == false || Proxy
.Password
.empty() == false)
711 Req
+= string("Proxy-Authorization: Basic ") +
712 Base64Encode(Proxy
.User
+ ":" + Proxy
.Password
) + "\r\n";
714 if (Uri
.User
.empty() == false || Uri
.Password
.empty() == false)
715 Req
+= string("Authorization: Basic ") +
716 Base64Encode(Uri
.User
+ ":" + Uri
.Password
) + "\r\n";
718 Req
+= "User-Agent: Debian APT-HTTP/1.3\r\n\r\n";
726 // HttpMethod::Go - Run a single loop /*{{{*/
727 // ---------------------------------------------------------------------
728 /* This runs the select loop over the server FDs, Output file FDs and
730 bool HttpMethod::Go(bool ToFile
,ServerState
*Srv
)
732 // Server has closed the connection
733 if (Srv
->ServerFd
== -1 && (Srv
->In
.WriteSpace() == false ||
741 /* Add the server. We only send more requests if the connection will
743 if (Srv
->Out
.WriteSpace() == true && Srv
->ServerFd
!= -1
744 && Srv
->Persistent
== true)
745 FD_SET(Srv
->ServerFd
,&wfds
);
746 if (Srv
->In
.ReadSpace() == true && Srv
->ServerFd
!= -1)
747 FD_SET(Srv
->ServerFd
,&rfds
);
754 if (Srv
->In
.WriteSpace() == true && ToFile
== true && FileFD
!= -1)
755 FD_SET(FileFD
,&wfds
);
758 FD_SET(STDIN_FILENO
,&rfds
);
760 // Figure out the max fd
762 if (MaxFd
< Srv
->ServerFd
)
763 MaxFd
= Srv
->ServerFd
;
770 if ((Res
= select(MaxFd
+1,&rfds
,&wfds
,0,&tv
)) < 0)
774 return _error
->Errno("select",_("Select failed"));
779 _error
->Error(_("Connection timed out"));
780 return ServerDie(Srv
);
784 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&rfds
))
787 if (Srv
->In
.Read(Srv
->ServerFd
) == false)
788 return ServerDie(Srv
);
791 if (Srv
->ServerFd
!= -1 && FD_ISSET(Srv
->ServerFd
,&wfds
))
794 if (Srv
->Out
.Write(Srv
->ServerFd
) == false)
795 return ServerDie(Srv
);
798 // Send data to the file
799 if (FileFD
!= -1 && FD_ISSET(FileFD
,&wfds
))
801 if (Srv
->In
.Write(FileFD
) == false)
802 return _error
->Errno("write",_("Error writing to output file"));
805 // Handle commands from APT
806 if (FD_ISSET(STDIN_FILENO
,&rfds
))
815 // HttpMethod::Flush - Dump the buffer into the file /*{{{*/
816 // ---------------------------------------------------------------------
817 /* This takes the current input buffer from the Server FD and writes it
819 bool HttpMethod::Flush(ServerState
*Srv
)
823 SetNonBlock(File
->Fd(),false);
824 if (Srv
->In
.WriteSpace() == false)
827 while (Srv
->In
.WriteSpace() == true)
829 if (Srv
->In
.Write(File
->Fd()) == false)
830 return _error
->Errno("write",_("Error writing to file"));
831 if (Srv
->In
.IsLimit() == true)
835 if (Srv
->In
.IsLimit() == true || Srv
->Encoding
== ServerState::Closes
)
841 // HttpMethod::ServerDie - The server has closed the connection. /*{{{*/
842 // ---------------------------------------------------------------------
844 bool HttpMethod::ServerDie(ServerState
*Srv
)
846 unsigned int LErrno
= errno
;
848 // Dump the buffer to the file
849 if (Srv
->State
== ServerState::Data
)
851 SetNonBlock(File
->Fd(),false);
852 while (Srv
->In
.WriteSpace() == true)
854 if (Srv
->In
.Write(File
->Fd()) == false)
855 return _error
->Errno("write",_("Error writing to the file"));
858 if (Srv
->In
.IsLimit() == true)
863 // See if this is because the server finished the data stream
864 if (Srv
->In
.IsLimit() == false && Srv
->State
!= ServerState::Header
&&
865 Srv
->Encoding
!= ServerState::Closes
)
869 return _error
->Error(_("Error reading from server. Remote end closed connection"));
871 return _error
->Errno("read",_("Error reading from server"));
877 // Nothing left in the buffer
878 if (Srv
->In
.WriteSpace() == false)
881 // We may have got multiple responses back in one packet..
889 // HttpMethod::DealWithHeaders - Handle the retrieved header data /*{{{*/
890 // ---------------------------------------------------------------------
891 /* We look at the header data we got back from the server and decide what
895 3 - Unrecoverable error
896 4 - Error with error content page
897 5 - Unrecoverable non-server error (close the connection) */
898 int HttpMethod::DealWithHeaders(FetchResult
&Res
,ServerState
*Srv
)
901 if (Srv
->Result
== 304)
903 unlink(Queue
->DestFile
.c_str());
905 Res
.LastModified
= Queue
->LastModified
;
909 /* We have a reply we dont handle. This should indicate a perm server
911 if (Srv
->Result
< 200 || Srv
->Result
>= 300)
913 _error
->Error("%u %s",Srv
->Result
,Srv
->Code
);
914 if (Srv
->HaveContent
== true)
919 // This is some sort of 2xx 'data follows' reply
920 Res
.LastModified
= Srv
->Date
;
921 Res
.Size
= Srv
->Size
;
925 File
= new FileFd(Queue
->DestFile
,FileFd::WriteAny
);
926 if (_error
->PendingError() == true)
929 FailFile
= Queue
->DestFile
;
930 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
932 FailTime
= Srv
->Date
;
934 // Set the expected size
935 if (Srv
->StartPos
>= 0)
937 Res
.ResumePoint
= Srv
->StartPos
;
938 ftruncate(File
->Fd(),Srv
->StartPos
);
941 // Set the start point
942 lseek(File
->Fd(),0,SEEK_END
);
945 Srv
->In
.Hash
= new Hashes
;
947 // Fill the Hash if the file is non-empty (resume)
948 if (Srv
->StartPos
> 0)
950 lseek(File
->Fd(),0,SEEK_SET
);
951 if (Srv
->In
.Hash
->AddFD(File
->Fd(),Srv
->StartPos
) == false)
953 _error
->Errno("read",_("Problem hashing file"));
956 lseek(File
->Fd(),0,SEEK_END
);
959 SetNonBlock(File
->Fd(),true);
963 // HttpMethod::SigTerm - Handle a fatal signal /*{{{*/
964 // ---------------------------------------------------------------------
965 /* This closes and timestamps the open file. This is neccessary to get
966 resume behavoir on user abort */
967 void HttpMethod::SigTerm(int)
975 UBuf
.actime
= FailTime
;
976 UBuf
.modtime
= FailTime
;
977 utime(FailFile
.c_str(),&UBuf
);
982 // HttpMethod::Fetch - Fetch an item /*{{{*/
983 // ---------------------------------------------------------------------
984 /* This adds an item to the pipeline. We keep the pipeline at a fixed
986 bool HttpMethod::Fetch(FetchItem
*)
991 // Queue the requests
994 for (FetchItem
*I
= Queue
; I
!= 0 && Depth
< (signed)PipelineDepth
;
995 I
= I
->Next
, Depth
++)
997 // If pipelining is disabled, we only queue 1 request
998 if (Server
->Pipeline
== false && Depth
>= 0)
1001 // Make sure we stick with the same server
1002 if (Server
->Comp(I
->Uri
) == false)
1008 QueueBack
= I
->Next
;
1009 SendReq(I
,Server
->Out
);
1017 // HttpMethod::Configuration - Handle a configuration message /*{{{*/
1018 // ---------------------------------------------------------------------
1019 /* We stash the desired pipeline depth */
1020 bool HttpMethod::Configuration(string Message
)
1022 if (pkgAcqMethod::Configuration(Message
) == false)
1025 TimeOut
= _config
->FindI("Acquire::http::Timeout",TimeOut
);
1026 PipelineDepth
= _config
->FindI("Acquire::http::Pipeline-Depth",
1028 Debug
= _config
->FindB("Debug::Acquire::http",false);
1033 // HttpMethod::Loop - Main loop /*{{{*/
1034 // ---------------------------------------------------------------------
1036 int HttpMethod::Loop()
1038 signal(SIGTERM
,SigTerm
);
1039 signal(SIGINT
,SigTerm
);
1043 int FailCounter
= 0;
1046 // We have no commands, wait for some to arrive
1049 if (WaitFd(STDIN_FILENO
) == false)
1053 /* Run messages, we can accept 0 (no message) if we didn't
1054 do a WaitFd above.. Otherwise the FD is closed. */
1055 int Result
= Run(true);
1056 if (Result
!= -1 && (Result
!= 0 || Queue
== 0))
1062 // Connect to the server
1063 if (Server
== 0 || Server
->Comp(Queue
->Uri
) == false)
1066 Server
= new ServerState(Queue
->Uri
,this);
1069 /* If the server has explicitly said this is the last connection
1070 then we pre-emptively shut down the pipeline and tear down
1071 the connection. This will speed up HTTP/1.0 servers a tad
1072 since we don't have to wait for the close sequence to
1074 if (Server
->Persistent
== false)
1077 // Reset the pipeline
1078 if (Server
->ServerFd
== -1)
1081 // Connnect to the host
1082 if (Server
->Open() == false)
1090 // Fill the pipeline.
1093 // Fetch the next URL header data from the server.
1094 switch (Server
->RunHeaders())
1099 // The header data is bad
1102 _error
->Error(_("Bad header data"));
1108 // The server closed a connection during the header get..
1115 Server
->Pipeline
= false;
1117 if (FailCounter
>= 2)
1119 Fail(_("Connection failed"),true);
1128 // Decide what to do.
1130 Res
.Filename
= Queue
->DestFile
;
1131 switch (DealWithHeaders(Res
,Server
))
1133 // Ok, the file is Open
1139 bool Result
= Server
->RunData();
1141 /* If the server is sending back sizeless responses then fill in
1144 Res
.Size
= File
->Size();
1146 // Close the file, destroy the FD object and timestamp it
1152 struct utimbuf UBuf
;
1154 UBuf
.actime
= Server
->Date
;
1155 UBuf
.modtime
= Server
->Date
;
1156 utime(Queue
->DestFile
.c_str(),&UBuf
);
1158 // Send status to APT
1161 Res
.TakeHashes(*Server
->In
.Hash
);
1177 // Hard server error, not found or something
1184 // Hard internal error, kill the connection and fail
1196 // We need to flush the data, the header is like a 404 w/ error text
1201 // Send to content to dev/null
1202 File
= new FileFd("/dev/null",FileFd::WriteExists
);
1210 Fail(_("Internal error"));
1223 setlocale(LC_ALL
, "");