]>
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 Acquire Method - This is the HTTP acquire 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/configuration.h>
33 #include <apt-pkg/error.h>
34 #include <apt-pkg/hashes.h>
35 #include <apt-pkg/netrc.h>
36 #include <apt-pkg/strutl.h>
37 #include <apt-pkg/proxy.h>
41 #include <sys/select.h>
59 unsigned long long CircleBuf::BwReadLimit
=0;
60 unsigned long long CircleBuf::BwTickReadData
=0;
61 struct timeval
CircleBuf::BwReadTick
={0,0};
62 const unsigned int CircleBuf::BW_HZ
=10;
64 // CircleBuf::CircleBuf - Circular input buffer /*{{{*/
65 // ---------------------------------------------------------------------
67 CircleBuf::CircleBuf(unsigned long long Size
) : Size(Size
), Hash(0)
69 Buf
= new unsigned char[Size
];
72 CircleBuf::BwReadLimit
= _config
->FindI("Acquire::http::Dl-Limit",0)*1024;
75 // CircleBuf::Reset - Reset to the default state /*{{{*/
76 // ---------------------------------------------------------------------
78 void CircleBuf::Reset()
83 MaxGet
= (unsigned long long)-1;
92 // CircleBuf::Read - Read from a FD into the circular buffer /*{{{*/
93 // ---------------------------------------------------------------------
94 /* This fills up the buffer with as much data as is in the FD, assuming it
96 bool CircleBuf::Read(int Fd
)
100 // Woops, buffer is full
101 if (InP
- OutP
== Size
)
104 // what's left to read in this tick
105 unsigned long long const BwReadMax
= CircleBuf::BwReadLimit
/BW_HZ
;
107 if(CircleBuf::BwReadLimit
) {
109 gettimeofday(&now
,0);
111 unsigned long long d
= (now
.tv_sec
-CircleBuf::BwReadTick
.tv_sec
)*1000000 +
112 now
.tv_usec
-CircleBuf::BwReadTick
.tv_usec
;
113 if(d
> 1000000/BW_HZ
) {
114 CircleBuf::BwReadTick
= now
;
115 CircleBuf::BwTickReadData
= 0;
118 if(CircleBuf::BwTickReadData
>= BwReadMax
) {
119 usleep(1000000/BW_HZ
);
124 // Write the buffer segment
126 if(CircleBuf::BwReadLimit
) {
127 Res
= read(Fd
,Buf
+ (InP%Size
),
128 BwReadMax
> LeftRead() ? LeftRead() : BwReadMax
);
130 Res
= read(Fd
,Buf
+ (InP%Size
),LeftRead());
132 if(Res
> 0 && BwReadLimit
> 0)
133 CircleBuf::BwTickReadData
+= Res
;
145 gettimeofday(&Start
,0);
150 // CircleBuf::Read - Put the string into the buffer /*{{{*/
151 // ---------------------------------------------------------------------
152 /* This will hold the string in and fill the buffer with it as it empties */
153 bool CircleBuf::Read(string Data
)
160 // CircleBuf::FillOut - Fill the buffer from the output queue /*{{{*/
161 // ---------------------------------------------------------------------
163 void CircleBuf::FillOut()
165 if (OutQueue
.empty() == true)
169 // Woops, buffer is full
170 if (InP
- OutP
== Size
)
173 // Write the buffer segment
174 unsigned long long Sz
= LeftRead();
175 if (OutQueue
.length() - StrPos
< Sz
)
176 Sz
= OutQueue
.length() - StrPos
;
177 memcpy(Buf
+ (InP%Size
),OutQueue
.c_str() + StrPos
,Sz
);
182 if (OutQueue
.length() == StrPos
)
191 // CircleBuf::Write - Write from the buffer into a FD /*{{{*/
192 // ---------------------------------------------------------------------
193 /* This empties the buffer into the FD. */
194 bool CircleBuf::Write(int Fd
)
200 // Woops, buffer is empty
207 // Write the buffer segment
209 Res
= write(Fd
,Buf
+ (OutP%Size
),LeftWrite());
222 Hash
->Add(Buf
+ (OutP%Size
),Res
);
228 // CircleBuf::WriteTillEl - Write from the buffer to a string /*{{{*/
229 // ---------------------------------------------------------------------
230 /* This copies till the first empty line */
231 bool CircleBuf::WriteTillEl(string
&Data
,bool Single
)
233 // We cheat and assume it is unneeded to have more than one buffer load
234 for (unsigned long long I
= OutP
; I
< InP
; I
++)
236 if (Buf
[I%Size
] != '\n')
242 if (I
< InP
&& Buf
[I%Size
] == '\r')
244 if (I
>= InP
|| Buf
[I%Size
] != '\n')
252 unsigned long long Sz
= LeftWrite();
257 Data
+= string((char *)(Buf
+ (OutP%Size
)),Sz
);
265 // CircleBuf::Stats - Print out stats information /*{{{*/
266 // ---------------------------------------------------------------------
268 void CircleBuf::Stats()
274 gettimeofday(&Stop
,0);
275 /* float Diff = Stop.tv_sec - Start.tv_sec +
276 (float)(Stop.tv_usec - Start.tv_usec)/1000000;
277 clog << "Got " << InP << " in " << Diff << " at " << InP/Diff << endl;*/
280 CircleBuf::~CircleBuf()
286 // HttpServerState::HttpServerState - Constructor /*{{{*/
287 HttpServerState::HttpServerState(URI Srv
,HttpMethod
*Owner
) : ServerState(Srv
, Owner
), In(64*1024), Out(4*1024)
289 TimeOut
= _config
->FindI("Acquire::http::Timeout",TimeOut
);
293 // HttpServerState::Open - Open a connection to the server /*{{{*/
294 // ---------------------------------------------------------------------
295 /* This opens a connection to the server. */
296 bool HttpServerState::Open()
298 // Use the already open connection if possible.
307 // Determine the proxy setting
308 AutoDetectProxy(ServerName
);
309 string SpecificProxy
= _config
->Find("Acquire::http::Proxy::" + ServerName
.Host
);
310 if (!SpecificProxy
.empty())
312 if (SpecificProxy
== "DIRECT")
315 Proxy
= SpecificProxy
;
319 string DefProxy
= _config
->Find("Acquire::http::Proxy");
320 if (!DefProxy
.empty())
326 char* result
= getenv("http_proxy");
327 Proxy
= result
? result
: "";
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 // HttpServerState::Close - Close a connection to the server /*{{{*/
362 // ---------------------------------------------------------------------
364 bool HttpServerState::Close()
371 // HttpServerState::RunData - Transfer the data from the socket /*{{{*/
372 bool HttpServerState::RunData(FileFd
* const File
)
376 // Chunked transfer encoding is fun..
377 if (Encoding
== Chunked
)
381 // Grab the block size
387 if (In
.WriteTillEl(Data
,true) == true)
390 while ((Last
= Go(false, File
)) == true);
395 // See if we are done
396 unsigned long long Len
= strtoull(Data
.c_str(),0,16);
401 // We have to remove the entity trailer
405 if (In
.WriteTillEl(Data
,true) == true && Data
.length() <= 2)
408 while ((Last
= Go(false, File
)) == true);
411 return !_error
->PendingError();
414 // Transfer the block
416 while (Go(true, File
) == true)
417 if (In
.IsLimit() == true)
421 if (In
.IsLimit() == false)
424 // The server sends an extra new line before the next block specifier..
429 if (In
.WriteTillEl(Data
,true) == true)
432 while ((Last
= Go(false, File
)) == true);
439 /* Closes encoding is used when the server did not specify a size, the
440 loss of the connection means we are done */
441 if (Encoding
== Closes
)
443 else if (JunkSize
!= 0)
446 In
.Limit(Size
- StartPos
);
448 // Just transfer the whole block.
451 if (In
.IsLimit() == false)
455 return !_error
->PendingError();
457 while (Go(true, File
) == true);
460 return Owner
->Flush() && !_error
->PendingError();
463 bool HttpServerState::ReadHeaderLines(std::string
&Data
) /*{{{*/
465 return In
.WriteTillEl(Data
);
468 bool HttpServerState::LoadNextResponse(bool const ToFile
, FileFd
* const File
)/*{{{*/
470 return Go(ToFile
, File
);
473 bool HttpServerState::WriteResponse(const std::string
&Data
) /*{{{*/
475 return Out
.Read(Data
);
478 APT_PURE
bool HttpServerState::IsOpen() /*{{{*/
480 return (ServerFd
!= -1);
483 bool HttpServerState::InitHashes(FileFd
&File
) /*{{{*/
486 In
.Hash
= new Hashes
;
488 // Set the expected size and read file for the hashes
489 File
.Truncate(StartPos
);
490 return In
.Hash
->AddFD(File
, StartPos
);
493 APT_PURE Hashes
* HttpServerState::GetHashes() /*{{{*/
498 // HttpServerState::Die - The server has closed the connection. /*{{{*/
499 bool HttpServerState::Die(FileFd
&File
)
501 unsigned int LErrno
= errno
;
503 // Dump the buffer to the file
504 if (State
== ServerState::Data
)
506 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
508 if (File
.Name() != "/dev/null")
509 SetNonBlock(File
.Fd(),false);
510 while (In
.WriteSpace() == true)
512 if (In
.Write(File
.Fd()) == false)
513 return _error
->Errno("write",_("Error writing to the file"));
516 if (In
.IsLimit() == true)
521 // See if this is because the server finished the data stream
522 if (In
.IsLimit() == false && State
!= HttpServerState::Header
&&
523 Encoding
!= HttpServerState::Closes
)
527 return _error
->Error(_("Error reading from server. Remote end closed connection"));
529 return _error
->Errno("read",_("Error reading from server"));
535 // Nothing left in the buffer
536 if (In
.WriteSpace() == false)
539 // We may have got multiple responses back in one packet..
547 // HttpServerState::Flush - Dump the buffer into the file /*{{{*/
548 // ---------------------------------------------------------------------
549 /* This takes the current input buffer from the Server FD and writes it
551 bool HttpServerState::Flush(FileFd
* const File
)
555 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
557 if (File
->Name() != "/dev/null")
558 SetNonBlock(File
->Fd(),false);
559 if (In
.WriteSpace() == false)
562 while (In
.WriteSpace() == true)
564 if (In
.Write(File
->Fd()) == false)
565 return _error
->Errno("write",_("Error writing to file"));
566 if (In
.IsLimit() == true)
570 if (In
.IsLimit() == true || Encoding
== ServerState::Closes
)
576 // HttpServerState::Go - Run a single loop /*{{{*/
577 // ---------------------------------------------------------------------
578 /* This runs the select loop over the server FDs, Output file FDs and
580 bool HttpServerState::Go(bool ToFile
, FileFd
* const File
)
582 // Server has closed the connection
583 if (ServerFd
== -1 && (In
.WriteSpace() == false ||
591 /* Add the server. We only send more requests if the connection will
593 if (Out
.WriteSpace() == true && ServerFd
!= -1
594 && Persistent
== true)
595 FD_SET(ServerFd
,&wfds
);
596 if (In
.ReadSpace() == true && ServerFd
!= -1)
597 FD_SET(ServerFd
,&rfds
);
604 if (In
.WriteSpace() == true && ToFile
== true && FileFD
!= -1)
605 FD_SET(FileFD
,&wfds
);
608 if (_config
->FindB("Acquire::http::DependOnSTDIN", true) == true)
609 FD_SET(STDIN_FILENO
,&rfds
);
611 // Figure out the max fd
613 if (MaxFd
< ServerFd
)
621 if ((Res
= select(MaxFd
+1,&rfds
,&wfds
,0,&tv
)) < 0)
625 return _error
->Errno("select",_("Select failed"));
630 _error
->Error(_("Connection timed out"));
635 if (ServerFd
!= -1 && FD_ISSET(ServerFd
,&rfds
))
638 if (In
.Read(ServerFd
) == false)
642 if (ServerFd
!= -1 && FD_ISSET(ServerFd
,&wfds
))
645 if (Out
.Write(ServerFd
) == false)
649 // Send data to the file
650 if (FileFD
!= -1 && FD_ISSET(FileFD
,&wfds
))
652 if (In
.Write(FileFD
) == false)
653 return _error
->Errno("write",_("Error writing to output file"));
656 // Handle commands from APT
657 if (FD_ISSET(STDIN_FILENO
,&rfds
))
659 if (Owner
->Run(true) != -1)
667 // HttpMethod::SendReq - Send the HTTP request /*{{{*/
668 // ---------------------------------------------------------------------
669 /* This places the http request in the outbound buffer */
670 void HttpMethod::SendReq(FetchItem
*Itm
)
674 // The HTTP server expects a hostname with a trailing :port
675 std::stringstream Req
;
678 if (Uri
.Host
.find(':') != string::npos
)
679 ProperHost
= '[' + Uri
.Host
+ ']';
681 ProperHost
= Uri
.Host
;
683 /* RFC 2616 ยง5.1.2 requires absolute URIs for requests to proxies,
684 but while its a must for all servers to accept absolute URIs,
685 it is assumed clients will sent an absolute path for non-proxies */
686 std::string requesturi
;
687 if (Server
->Proxy
.empty() == true || Server
->Proxy
.Host
.empty())
688 requesturi
= Uri
.Path
;
690 requesturi
= Itm
->Uri
;
692 // The "+" is encoded as a workaround for a amazon S3 bug
693 // see LP bugs #1003633 and #1086997.
694 requesturi
= QuoteString(requesturi
, "+~ ");
696 /* Build the request. No keep-alive is included as it is the default
697 in 1.1, can cause problems with proxies, and we are an HTTP/1.1
699 C.f. https://tools.ietf.org/wg/httpbis/trac/ticket/158 */
700 Req
<< "GET " << requesturi
<< " HTTP/1.1\r\n";
702 Req
<< "Host: " << ProperHost
<< ":" << Uri
.Port
<< "\r\n";
704 Req
<< "Host: " << ProperHost
<< "\r\n";
706 // generate a cache control header (if needed)
707 if (_config
->FindB("Acquire::http::No-Cache",false) == true)
708 Req
<< "Cache-Control: no-cache\r\n"
709 << "Pragma: no-cache\r\n";
710 else if (Itm
->IndexFile
== true)
711 Req
<< "Cache-Control: max-age=" << _config
->FindI("Acquire::http::Max-Age",0) << "\r\n";
712 else if (_config
->FindB("Acquire::http::No-Store",false) == true)
713 Req
<< "Cache-Control: no-store\r\n";
715 // If we ask for uncompressed files servers might respond with content-
716 // negotiation which lets us end up with compressed files we do not support,
717 // see 657029, 657560 and co, so if we have no extension on the request
718 // ask for text only. As a sidenote: If there is nothing to negotate servers
719 // seem to be nice and ignore it.
720 if (_config
->FindB("Acquire::http::SendAccept", true) == true)
722 size_t const filepos
= Itm
->Uri
.find_last_of('/');
723 string
const file
= Itm
->Uri
.substr(filepos
+ 1);
724 if (flExtension(file
) == file
)
725 Req
<< "Accept: text/*\r\n";
728 // Check for a partial file and send if-queries accordingly
730 if (stat(Itm
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
731 Req
<< "Range: bytes=" << SBuf
.st_size
<< "-\r\n"
732 << "If-Range: " << TimeRFC1123(SBuf
.st_mtime
) << "\r\n";
733 else if (Itm
->LastModified
!= 0)
734 Req
<< "If-Modified-Since: " << TimeRFC1123(Itm
->LastModified
).c_str() << "\r\n";
736 if (Server
->Proxy
.User
.empty() == false || Server
->Proxy
.Password
.empty() == false)
737 Req
<< "Proxy-Authorization: Basic "
738 << Base64Encode(Server
->Proxy
.User
+ ":" + Server
->Proxy
.Password
) << "\r\n";
740 maybe_add_auth (Uri
, _config
->FindFile("Dir::Etc::netrc"));
741 if (Uri
.User
.empty() == false || Uri
.Password
.empty() == false)
742 Req
<< "Authorization: Basic "
743 << Base64Encode(Uri
.User
+ ":" + Uri
.Password
) << "\r\n";
745 Req
<< "User-Agent: " << _config
->Find("Acquire::http::User-Agent",
746 "Debian APT-HTTP/1.3 (" PACKAGE_VERSION
")") << "\r\n";
751 cerr
<< Req
.str() << endl
;
753 Server
->WriteResponse(Req
.str());
756 // HttpMethod::Configuration - Handle a configuration message /*{{{*/
757 // ---------------------------------------------------------------------
758 /* We stash the desired pipeline depth */
759 bool HttpMethod::Configuration(string Message
)
761 if (ServerMethod::Configuration(Message
) == false)
764 AllowRedirect
= _config
->FindB("Acquire::http::AllowRedirect",true);
765 PipelineDepth
= _config
->FindI("Acquire::http::Pipeline-Depth",
767 Debug
= _config
->FindB("Debug::Acquire::http",false);
772 ServerState
* HttpMethod::CreateServerState(URI uri
) /*{{{*/
774 return new HttpServerState(uri
, this);
777 void HttpMethod::RotateDNS() /*{{{*/