1 // -*- mode: cpp; mode: fold -*-
3 /* ######################################################################
5 HTTP and HTTPS share a lot of common code and these classes are
6 exactly the dumping ground for this common code
8 ##################################################################### */
10 // Include Files /*{{{*/
13 #include <apt-pkg/acquire-method.h>
14 #include <apt-pkg/configuration.h>
15 #include <apt-pkg/error.h>
16 #include <apt-pkg/fileutl.h>
17 #include <apt-pkg/strutl.h>
39 string
ServerMethod::FailFile
;
40 int ServerMethod::FailFd
= -1;
41 time_t ServerMethod::FailTime
= 0;
43 // ServerState::RunHeaders - Get the headers before the data /*{{{*/
44 // ---------------------------------------------------------------------
45 /* Returns 0 if things are OK, 1 if an IO error occurred and 2 if a header
46 parse error occurred */
47 ServerState::RunHeadersResult
ServerState::RunHeaders(FileFd
* const File
,
48 const std::string
&Uri
)
52 Owner
->Status(_("Waiting for headers"));
66 if (ReadHeaderLines(Data
) == false)
69 if (Owner
->Debug
== true)
70 clog
<< "Answer for: " << Uri
<< endl
<< Data
;
72 for (string::const_iterator I
= Data
.begin(); I
< Data
.end(); ++I
)
74 string::const_iterator J
= I
;
75 for (; J
!= Data
.end() && *J
!= '\n' && *J
!= '\r'; ++J
);
76 if (HeaderLine(string(I
,J
)) == false)
77 return RUN_HEADERS_PARSE_ERROR
;
81 // 100 Continue is a Nop...
85 // Tidy up the connection persistence state.
86 if (Encoding
== Closes
&& HaveContent
== true)
89 return RUN_HEADERS_OK
;
91 while (LoadNextResponse(false, File
) == true);
93 return RUN_HEADERS_IO_ERROR
;
96 // ServerState::HeaderLine - Process a header line /*{{{*/
97 // ---------------------------------------------------------------------
99 bool ServerState::HeaderLine(string Line
)
101 if (Line
.empty() == true)
104 string::size_type Pos
= Line
.find(' ');
105 if (Pos
== string::npos
|| Pos
+1 > Line
.length())
107 // Blah, some servers use "connection:closes", evil.
108 Pos
= Line
.find(':');
109 if (Pos
== string::npos
|| Pos
+ 2 > Line
.length())
110 return _error
->Error(_("Bad header line"));
114 // Parse off any trailing spaces between the : and the next word.
115 string::size_type Pos2
= Pos
;
116 while (Pos2
< Line
.length() && isspace(Line
[Pos2
]) != 0)
119 string Tag
= string(Line
,0,Pos
);
120 string Val
= string(Line
,Pos2
);
122 if (stringcasecmp(Tag
.c_str(),Tag
.c_str()+4,"HTTP") == 0)
124 // Evil servers return no version
127 int const elements
= sscanf(Line
.c_str(),"HTTP/%3u.%3u %3u%359[^\n]",&Major
,&Minor
,&Result
,Code
);
131 if (Owner
->Debug
== true)
132 clog
<< "HTTP server doesn't give Reason-Phrase for " << Result
<< std::endl
;
134 else if (elements
!= 4)
135 return _error
->Error(_("The HTTP server sent an invalid reply header"));
141 if (sscanf(Line
.c_str(),"HTTP %3u%359[^\n]",&Result
,Code
) != 2)
142 return _error
->Error(_("The HTTP server sent an invalid reply header"));
145 /* Check the HTTP response header to get the default persistence
151 if (Major
== 1 && Minor
== 0)
160 if (stringcasecmp(Tag
,"Content-Length:") == 0)
162 if (Encoding
== Closes
)
166 // The length is already set from the Content-Range header
170 Size
= strtoull(Val
.c_str(), NULL
, 10);
171 if (Size
>= std::numeric_limits
<unsigned long long>::max())
172 return _error
->Errno("HeaderLine", _("The HTTP server sent an invalid Content-Length header"));
178 if (stringcasecmp(Tag
,"Content-Type:") == 0)
184 if (stringcasecmp(Tag
,"Content-Range:") == 0)
188 // §14.16 says 'byte-range-resp-spec' should be a '*' in case of 416
189 if (Result
== 416 && sscanf(Val
.c_str(), "bytes */%llu",&Size
) == 1)
191 StartPos
= 1; // ignore Content-Length, it would override Size
194 else if (sscanf(Val
.c_str(),"bytes %llu-%*u/%llu",&StartPos
,&Size
) != 2)
195 return _error
->Error(_("The HTTP server sent an invalid Content-Range header"));
196 if ((unsigned long long)StartPos
> Size
)
197 return _error
->Error(_("This HTTP server has broken range support"));
201 if (stringcasecmp(Tag
,"Transfer-Encoding:") == 0)
204 if (stringcasecmp(Val
,"chunked") == 0)
209 if (stringcasecmp(Tag
,"Connection:") == 0)
211 if (stringcasecmp(Val
,"close") == 0)
213 if (stringcasecmp(Val
,"keep-alive") == 0)
218 if (stringcasecmp(Tag
,"Last-Modified:") == 0)
220 if (RFC1123StrToTime(Val
.c_str(), Date
) == false)
221 return _error
->Error(_("Unknown date format"));
225 if (stringcasecmp(Tag
,"Location:") == 0)
234 // ServerState::ServerState - Constructor /*{{{*/
235 ServerState::ServerState(URI Srv
, ServerMethod
*Owner
) : ServerName(Srv
), TimeOut(120), Owner(Owner
)
241 bool ServerMethod::Configuration(string Message
) /*{{{*/
243 return pkgAcqMethod::Configuration(Message
);
247 // ServerMethod::DealWithHeaders - Handle the retrieved header data /*{{{*/
248 // ---------------------------------------------------------------------
249 /* We look at the header data we got back from the server and decide what
250 to do. Returns DealWithHeadersResult (see http.h for details).
252 ServerMethod::DealWithHeadersResult
253 ServerMethod::DealWithHeaders(FetchResult
&Res
)
256 if (Server
->Result
== 304)
258 unlink(Queue
->DestFile
.c_str());
260 Res
.LastModified
= Queue
->LastModified
;
266 * Note that it is only OK for us to treat all redirection the same
267 * because we *always* use GET, not other HTTP methods. There are
268 * three redirection codes for which it is not appropriate that we
269 * redirect. Pass on those codes so the error handling kicks in.
272 && (Server
->Result
> 300 && Server
->Result
< 400)
273 && (Server
->Result
!= 300 // Multiple Choices
274 && Server
->Result
!= 304 // Not Modified
275 && Server
->Result
!= 306)) // (Not part of HTTP/1.1, reserved)
277 if (Server
->Location
.empty() == true);
278 else if (Server
->Location
[0] == '/' && Queue
->Uri
.empty() == false)
280 URI Uri
= Queue
->Uri
;
281 if (Uri
.Host
.empty() == false)
282 NextURI
= URI::SiteOnly(Uri
);
285 NextURI
.append(DeQuoteString(Server
->Location
));
286 return TRY_AGAIN_OR_REDIRECT
;
290 NextURI
= DeQuoteString(Server
->Location
);
291 URI tmpURI
= NextURI
;
292 URI Uri
= Queue
->Uri
;
293 // same protocol redirects are okay
294 if (tmpURI
.Access
== Uri
.Access
)
295 return TRY_AGAIN_OR_REDIRECT
;
296 // as well as http to https
297 else if (Uri
.Access
== "http" && tmpURI
.Access
== "https")
298 return TRY_AGAIN_OR_REDIRECT
;
300 /* else pass through for error message */
302 // retry after an invalid range response without partial data
303 else if (Server
->Result
== 416)
306 if (stat(Queue
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
308 if ((unsigned long long)SBuf
.st_size
== Server
->Size
)
310 // the file is completely downloaded, but was not moved
311 Server
->StartPos
= Server
->Size
;
312 Server
->Result
= 200;
313 Server
->HaveContent
= false;
315 else if (unlink(Queue
->DestFile
.c_str()) == 0)
317 NextURI
= Queue
->Uri
;
318 return TRY_AGAIN_OR_REDIRECT
;
323 /* We have a reply we dont handle. This should indicate a perm server
325 if (Server
->Result
< 200 || Server
->Result
>= 300)
328 strprintf(err
, "HttpError%u", Server
->Result
);
330 _error
->Error("%u %s", Server
->Result
, Server
->Code
);
331 if (Server
->HaveContent
== true)
332 return ERROR_WITH_CONTENT_PAGE
;
333 return ERROR_UNRECOVERABLE
;
336 // This is some sort of 2xx 'data follows' reply
337 Res
.LastModified
= Server
->Date
;
338 Res
.Size
= Server
->Size
;
342 File
= new FileFd(Queue
->DestFile
,FileFd::WriteAny
);
343 if (_error
->PendingError() == true)
344 return ERROR_NOT_FROM_SERVER
;
346 FailFile
= Queue
->DestFile
;
347 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
349 FailTime
= Server
->Date
;
351 if (Server
->InitHashes(*File
) == false)
353 _error
->Errno("read",_("Problem hashing file"));
354 return ERROR_NOT_FROM_SERVER
;
356 if (Server
->StartPos
> 0)
357 Res
.ResumePoint
= Server
->StartPos
;
359 SetNonBlock(File
->Fd(),true);
363 // ServerMethod::SigTerm - Handle a fatal signal /*{{{*/
364 // ---------------------------------------------------------------------
365 /* This closes and timestamps the open file. This is necessary to get
366 resume behavoir on user abort */
367 void ServerMethod::SigTerm(int)
372 struct timeval times
[2];
373 times
[0].tv_sec
= FailTime
;
374 times
[1].tv_sec
= FailTime
;
375 times
[0].tv_usec
= times
[1].tv_usec
= 0;
376 utimes(FailFile
.c_str(), times
);
382 // ServerMethod::Fetch - Fetch an item /*{{{*/
383 // ---------------------------------------------------------------------
384 /* This adds an item to the pipeline. We keep the pipeline at a fixed
386 bool ServerMethod::Fetch(FetchItem
*)
391 // Queue the requests
393 for (FetchItem
*I
= Queue
; I
!= 0 && Depth
< (signed)PipelineDepth
;
394 I
= I
->Next
, Depth
++)
398 // If pipelining is disabled, we only queue 1 request
399 if (Server
->Pipeline
== false)
401 // if we have no hashes, do at most one such request
402 // as we can't fixup pipeling misbehaviors otherwise
403 else if (I
->ExpectedHashes
.usable() == false)
407 // Make sure we stick with the same server
408 if (Server
->Comp(I
->Uri
) == false)
421 // ServerMethod::Loop - Main loop /*{{{*/
422 int ServerMethod::Loop()
424 typedef vector
<string
> StringVector
;
425 typedef vector
<string
>::iterator StringVectorIterator
;
426 map
<string
, StringVector
> Redirected
;
428 signal(SIGTERM
,SigTerm
);
429 signal(SIGINT
,SigTerm
);
436 // We have no commands, wait for some to arrive
439 if (WaitFd(STDIN_FILENO
) == false)
443 /* Run messages, we can accept 0 (no message) if we didn't
444 do a WaitFd above.. Otherwise the FD is closed. */
445 int Result
= Run(true);
446 if (Result
!= -1 && (Result
!= 0 || Queue
== 0))
448 if(FailReason
.empty() == false ||
449 _config
->FindB("Acquire::http::DependOnSTDIN", true) == true)
458 // Connect to the server
459 if (Server
== 0 || Server
->Comp(Queue
->Uri
) == false)
462 Server
= CreateServerState(Queue
->Uri
);
464 /* If the server has explicitly said this is the last connection
465 then we pre-emptively shut down the pipeline and tear down
466 the connection. This will speed up HTTP/1.0 servers a tad
467 since we don't have to wait for the close sequence to
469 if (Server
->Persistent
== false)
472 // Reset the pipeline
473 if (Server
->IsOpen() == false)
476 // Connnect to the host
477 if (Server
->Open() == false)
485 // Fill the pipeline.
488 // Fetch the next URL header data from the server.
489 switch (Server
->RunHeaders(File
, Queue
->Uri
))
491 case ServerState::RUN_HEADERS_OK
:
494 // The header data is bad
495 case ServerState::RUN_HEADERS_PARSE_ERROR
:
497 _error
->Error(_("Bad header data"));
503 // The server closed a connection during the header get..
505 case ServerState::RUN_HEADERS_IO_ERROR
:
510 Server
->Pipeline
= false;
512 if (FailCounter
>= 2)
514 Fail(_("Connection failed"),true);
523 // Decide what to do.
525 Res
.Filename
= Queue
->DestFile
;
526 switch (DealWithHeaders(Res
))
528 // Ok, the file is Open
535 if (Server
->HaveContent
)
536 Result
= Server
->RunData(File
);
538 /* If the server is sending back sizeless responses then fill in
541 Res
.Size
= File
->Size();
543 // Close the file, destroy the FD object and timestamp it
549 struct timeval times
[2];
550 times
[0].tv_sec
= times
[1].tv_sec
= Server
->Date
;
551 times
[0].tv_usec
= times
[1].tv_usec
= 0;
552 utimes(Queue
->DestFile
.c_str(), times
);
554 // Send status to APT
557 Hashes
* const resultHashes
= Server
->GetHashes();
558 HashStringList
const hashList
= resultHashes
->GetHashStringList();
559 if (PipelineDepth
!= 0 && Queue
->ExpectedHashes
.usable() == true && Queue
->ExpectedHashes
!= hashList
)
561 // we did not get the expected hash… mhhh:
562 // could it be that server/proxy messed up pipelining?
563 FetchItem
* BeforeI
= Queue
;
564 for (FetchItem
*I
= Queue
->Next
; I
!= 0 && I
!= QueueBack
; I
= I
->Next
)
566 if (I
->ExpectedHashes
.usable() == true && I
->ExpectedHashes
== hashList
)
568 // yes, he did! Disable pipelining and rewrite queue
569 if (Server
->Pipeline
== true)
571 // FIXME: fake a warning message as we have no proper way of communicating here
573 strprintf(out
, _("Automatically disabled %s due to incorrect response from server/proxy. (man 5 apt.conf)"), "Acquire::http::PipelineDepth");
574 std::cerr
<< "W: " << out
<< std::endl
;
575 Server
->Pipeline
= false;
576 // we keep the PipelineDepth value so that the rest of the queue can be fixed up as well
578 Rename(Res
.Filename
, I
->DestFile
);
579 Res
.Filename
= I
->DestFile
;
580 BeforeI
->Next
= I
->Next
;
588 Res
.TakeHashes(*resultHashes
);
593 if (Server
->IsOpen() == false)
599 if (FailCounter
>= 2)
601 Fail(_("Connection failed"),true);
620 // Hard server error, not found or something
621 case ERROR_UNRECOVERABLE
:
627 // Hard internal error, kill the connection and fail
628 case ERROR_NOT_FROM_SERVER
:
639 // We need to flush the data, the header is like a 404 w/ error text
640 case ERROR_WITH_CONTENT_PAGE
:
644 // Send to content to dev/null
645 File
= new FileFd("/dev/null",FileFd::WriteExists
);
646 Server
->RunData(File
);
652 // Try again with a new URL
653 case TRY_AGAIN_OR_REDIRECT
:
655 // Clear rest of response if there is content
656 if (Server
->HaveContent
)
658 File
= new FileFd("/dev/null",FileFd::WriteExists
);
659 Server
->RunData(File
);
664 /* Detect redirect loops. No more redirects are allowed
665 after the same URI is seen twice in a queue item. */
666 StringVector
&R
= Redirected
[Queue
->DestFile
];
667 bool StopRedirects
= false;
668 if (R
.empty() == true)
669 R
.push_back(Queue
->Uri
);
670 else if (R
[0] == "STOP" || R
.size() > 10)
671 StopRedirects
= true;
674 for (StringVectorIterator I
= R
.begin(); I
!= R
.end(); ++I
)
675 if (Queue
->Uri
== *I
)
681 R
.push_back(Queue
->Uri
);
684 if (StopRedirects
== false)
693 Fail(_("Internal error"));