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
)
51 Owner
->Status(_("Waiting for headers"));
65 if (ReadHeaderLines(Data
) == false)
68 if (Owner
->Debug
== true)
71 for (string::const_iterator I
= Data
.begin(); I
< Data
.end(); ++I
)
73 string::const_iterator J
= I
;
74 for (; J
!= Data
.end() && *J
!= '\n' && *J
!= '\r'; ++J
);
75 if (HeaderLine(string(I
,J
)) == false)
76 return RUN_HEADERS_PARSE_ERROR
;
80 // 100 Continue is a Nop...
84 // Tidy up the connection persistence state.
85 if (Encoding
== Closes
&& HaveContent
== true)
88 return RUN_HEADERS_OK
;
90 while (LoadNextResponse(false, File
) == true);
92 return RUN_HEADERS_IO_ERROR
;
95 // ServerState::HeaderLine - Process a header line /*{{{*/
96 // ---------------------------------------------------------------------
98 bool ServerState::HeaderLine(string Line
)
100 if (Line
.empty() == true)
103 string::size_type Pos
= Line
.find(' ');
104 if (Pos
== string::npos
|| Pos
+1 > Line
.length())
106 // Blah, some servers use "connection:closes", evil.
107 Pos
= Line
.find(':');
108 if (Pos
== string::npos
|| Pos
+ 2 > Line
.length())
109 return _error
->Error(_("Bad header line"));
113 // Parse off any trailing spaces between the : and the next word.
114 string::size_type Pos2
= Pos
;
115 while (Pos2
< Line
.length() && isspace(Line
[Pos2
]) != 0)
118 string Tag
= string(Line
,0,Pos
);
119 string Val
= string(Line
,Pos2
);
121 if (stringcasecmp(Tag
.c_str(),Tag
.c_str()+4,"HTTP") == 0)
123 // Evil servers return no version
126 int const elements
= sscanf(Line
.c_str(),"HTTP/%3u.%3u %3u%359[^\n]",&Major
,&Minor
,&Result
,Code
);
130 if (Owner
->Debug
== true)
131 clog
<< "HTTP server doesn't give Reason-Phrase for " << Result
<< std::endl
;
133 else if (elements
!= 4)
134 return _error
->Error(_("The HTTP server sent an invalid reply header"));
140 if (sscanf(Line
.c_str(),"HTTP %3u%359[^\n]",&Result
,Code
) != 2)
141 return _error
->Error(_("The HTTP server sent an invalid reply header"));
144 /* Check the HTTP response header to get the default persistence
150 if (Major
== 1 && Minor
== 0)
159 if (stringcasecmp(Tag
,"Content-Length:") == 0)
161 if (Encoding
== Closes
)
165 // The length is already set from the Content-Range header
169 Size
= strtoull(Val
.c_str(), NULL
, 10);
170 if (Size
>= std::numeric_limits
<unsigned long long>::max())
171 return _error
->Errno("HeaderLine", _("The HTTP server sent an invalid Content-Length header"));
177 if (stringcasecmp(Tag
,"Content-Type:") == 0)
183 if (stringcasecmp(Tag
,"Content-Range:") == 0)
187 // §14.16 says 'byte-range-resp-spec' should be a '*' in case of 416
188 if (Result
== 416 && sscanf(Val
.c_str(), "bytes */%llu",&Size
) == 1)
190 StartPos
= 1; // ignore Content-Length, it would override Size
193 else if (sscanf(Val
.c_str(),"bytes %llu-%*u/%llu",&StartPos
,&Size
) != 2)
194 return _error
->Error(_("The HTTP server sent an invalid Content-Range header"));
195 if ((unsigned long long)StartPos
> Size
)
196 return _error
->Error(_("This HTTP server has broken range support"));
200 if (stringcasecmp(Tag
,"Transfer-Encoding:") == 0)
203 if (stringcasecmp(Val
,"chunked") == 0)
208 if (stringcasecmp(Tag
,"Connection:") == 0)
210 if (stringcasecmp(Val
,"close") == 0)
212 if (stringcasecmp(Val
,"keep-alive") == 0)
217 if (stringcasecmp(Tag
,"Last-Modified:") == 0)
219 if (RFC1123StrToTime(Val
.c_str(), Date
) == false)
220 return _error
->Error(_("Unknown date format"));
224 if (stringcasecmp(Tag
,"Location:") == 0)
233 // ServerState::ServerState - Constructor /*{{{*/
234 ServerState::ServerState(URI Srv
, ServerMethod
*Owner
) : ServerName(Srv
), TimeOut(120), Owner(Owner
)
240 bool ServerMethod::Configuration(string Message
) /*{{{*/
242 return pkgAcqMethod::Configuration(Message
);
246 // ServerMethod::DealWithHeaders - Handle the retrieved header data /*{{{*/
247 // ---------------------------------------------------------------------
248 /* We look at the header data we got back from the server and decide what
249 to do. Returns DealWithHeadersResult (see http.h for details).
251 ServerMethod::DealWithHeadersResult
252 ServerMethod::DealWithHeaders(FetchResult
&Res
)
255 if (Server
->Result
== 304)
257 unlink(Queue
->DestFile
.c_str());
259 Res
.LastModified
= Queue
->LastModified
;
265 * Note that it is only OK for us to treat all redirection the same
266 * because we *always* use GET, not other HTTP methods. There are
267 * three redirection codes for which it is not appropriate that we
268 * redirect. Pass on those codes so the error handling kicks in.
271 && (Server
->Result
> 300 && Server
->Result
< 400)
272 && (Server
->Result
!= 300 // Multiple Choices
273 && Server
->Result
!= 304 // Not Modified
274 && Server
->Result
!= 306)) // (Not part of HTTP/1.1, reserved)
276 if (Server
->Location
.empty() == true);
277 else if (Server
->Location
[0] == '/' && Queue
->Uri
.empty() == false)
279 URI Uri
= Queue
->Uri
;
280 if (Uri
.Host
.empty() == false)
281 NextURI
= URI::SiteOnly(Uri
);
284 NextURI
.append(DeQuoteString(Server
->Location
));
285 return TRY_AGAIN_OR_REDIRECT
;
289 NextURI
= DeQuoteString(Server
->Location
);
290 URI tmpURI
= NextURI
;
291 URI Uri
= Queue
->Uri
;
292 // same protocol redirects are okay
293 if (tmpURI
.Access
== Uri
.Access
)
294 return TRY_AGAIN_OR_REDIRECT
;
295 // as well as http to https
296 else if (Uri
.Access
== "http" && tmpURI
.Access
== "https")
297 return TRY_AGAIN_OR_REDIRECT
;
299 /* else pass through for error message */
301 // retry after an invalid range response without partial data
302 else if (Server
->Result
== 416)
305 if (stat(Queue
->DestFile
.c_str(),&SBuf
) >= 0 && SBuf
.st_size
> 0)
307 if ((unsigned long long)SBuf
.st_size
== Server
->Size
)
309 // the file is completely downloaded, but was not moved
310 Server
->StartPos
= Server
->Size
;
311 Server
->Result
= 200;
312 Server
->HaveContent
= false;
314 else if (unlink(Queue
->DestFile
.c_str()) == 0)
316 NextURI
= Queue
->Uri
;
317 return TRY_AGAIN_OR_REDIRECT
;
322 /* We have a reply we dont handle. This should indicate a perm server
324 if (Server
->Result
< 200 || Server
->Result
>= 300)
327 snprintf(err
,sizeof(err
)-1,"HttpError%i",Server
->Result
);
329 _error
->Error("%u %s",Server
->Result
,Server
->Code
);
330 if (Server
->HaveContent
== true)
331 return ERROR_WITH_CONTENT_PAGE
;
332 return ERROR_UNRECOVERABLE
;
335 // This is some sort of 2xx 'data follows' reply
336 Res
.LastModified
= Server
->Date
;
337 Res
.Size
= Server
->Size
;
341 File
= new FileFd(Queue
->DestFile
,FileFd::WriteAny
);
342 if (_error
->PendingError() == true)
343 return ERROR_NOT_FROM_SERVER
;
345 FailFile
= Queue
->DestFile
;
346 FailFile
.c_str(); // Make sure we dont do a malloc in the signal handler
348 FailTime
= Server
->Date
;
350 if (Server
->InitHashes(*File
) == false)
352 _error
->Errno("read",_("Problem hashing file"));
353 return ERROR_NOT_FROM_SERVER
;
355 if (Server
->StartPos
> 0)
356 Res
.ResumePoint
= Server
->StartPos
;
358 SetNonBlock(File
->Fd(),true);
362 // ServerMethod::SigTerm - Handle a fatal signal /*{{{*/
363 // ---------------------------------------------------------------------
364 /* This closes and timestamps the open file. This is necessary to get
365 resume behavoir on user abort */
366 void ServerMethod::SigTerm(int)
371 struct timeval times
[2];
372 times
[0].tv_sec
= FailTime
;
373 times
[1].tv_sec
= FailTime
;
374 times
[0].tv_usec
= times
[1].tv_usec
= 0;
375 utimes(FailFile
.c_str(), times
);
381 // ServerMethod::Fetch - Fetch an item /*{{{*/
382 // ---------------------------------------------------------------------
383 /* This adds an item to the pipeline. We keep the pipeline at a fixed
385 bool ServerMethod::Fetch(FetchItem
*)
390 // Queue the requests
392 for (FetchItem
*I
= Queue
; I
!= 0 && Depth
< (signed)PipelineDepth
;
393 I
= I
->Next
, Depth
++)
397 // If pipelining is disabled, we only queue 1 request
398 if (Server
->Pipeline
== false)
400 // if we have no hashes, do at most one such request
401 // as we can't fixup pipeling misbehaviors otherwise
402 else if (I
->ExpectedHashes
.usable() == false)
406 // Make sure we stick with the same server
407 if (Server
->Comp(I
->Uri
) == false)
420 // ServerMethod::Loop - Main loop /*{{{*/
421 int ServerMethod::Loop()
423 typedef vector
<string
> StringVector
;
424 typedef vector
<string
>::iterator StringVectorIterator
;
425 map
<string
, StringVector
> Redirected
;
427 signal(SIGTERM
,SigTerm
);
428 signal(SIGINT
,SigTerm
);
435 // We have no commands, wait for some to arrive
438 if (WaitFd(STDIN_FILENO
) == false)
442 /* Run messages, we can accept 0 (no message) if we didn't
443 do a WaitFd above.. Otherwise the FD is closed. */
444 int Result
= Run(true);
445 if (Result
!= -1 && (Result
!= 0 || Queue
== 0))
447 if(FailReason
.empty() == false ||
448 _config
->FindB("Acquire::http::DependOnSTDIN", true) == true)
457 // Connect to the server
458 if (Server
== 0 || Server
->Comp(Queue
->Uri
) == false)
461 Server
= CreateServerState(Queue
->Uri
);
463 /* If the server has explicitly said this is the last connection
464 then we pre-emptively shut down the pipeline and tear down
465 the connection. This will speed up HTTP/1.0 servers a tad
466 since we don't have to wait for the close sequence to
468 if (Server
->Persistent
== false)
471 // Reset the pipeline
472 if (Server
->IsOpen() == false)
475 // Connnect to the host
476 if (Server
->Open() == false)
484 // Fill the pipeline.
487 // Fetch the next URL header data from the server.
488 switch (Server
->RunHeaders(File
))
490 case ServerState::RUN_HEADERS_OK
:
493 // The header data is bad
494 case ServerState::RUN_HEADERS_PARSE_ERROR
:
496 _error
->Error(_("Bad header data"));
502 // The server closed a connection during the header get..
504 case ServerState::RUN_HEADERS_IO_ERROR
:
509 Server
->Pipeline
= false;
511 if (FailCounter
>= 2)
513 Fail(_("Connection failed"),true);
522 // Decide what to do.
524 Res
.Filename
= Queue
->DestFile
;
525 switch (DealWithHeaders(Res
))
527 // Ok, the file is Open
534 if (Server
->HaveContent
)
535 Result
= Server
->RunData(File
);
537 /* If the server is sending back sizeless responses then fill in
540 Res
.Size
= File
->Size();
542 // Close the file, destroy the FD object and timestamp it
548 struct timeval times
[2];
549 times
[0].tv_sec
= times
[1].tv_sec
= Server
->Date
;
550 times
[0].tv_usec
= times
[1].tv_usec
= 0;
551 utimes(Queue
->DestFile
.c_str(), times
);
553 // Send status to APT
556 Hashes
* const resultHashes
= Server
->GetHashes();
557 HashStringList
const hashList
= resultHashes
->GetHashStringList();
558 if (PipelineDepth
!= 0 && Queue
->ExpectedHashes
.usable() == true && Queue
->ExpectedHashes
!= hashList
)
560 // we did not get the expected hash… mhhh:
561 // could it be that server/proxy messed up pipelining?
562 FetchItem
* BeforeI
= Queue
;
563 for (FetchItem
*I
= Queue
->Next
; I
!= 0 && I
!= QueueBack
; I
= I
->Next
)
565 if (I
->ExpectedHashes
.usable() == true && I
->ExpectedHashes
== hashList
)
567 // yes, he did! Disable pipelining and rewrite queue
568 if (Server
->Pipeline
== true)
570 // FIXME: fake a warning message as we have no proper way of communicating here
572 strprintf(out
, _("Automatically disabled %s due to incorrect response from server/proxy. (man 5 apt.conf)"), "Acquire::http::PipelineDepth");
573 std::cerr
<< "W: " << out
<< std::endl
;
574 Server
->Pipeline
= false;
575 // we keep the PipelineDepth value so that the rest of the queue can be fixed up as well
577 Rename(Res
.Filename
, I
->DestFile
);
578 Res
.Filename
= I
->DestFile
;
579 BeforeI
->Next
= I
->Next
;
587 Res
.TakeHashes(*resultHashes
);
592 if (Server
->IsOpen() == false)
598 if (FailCounter
>= 2)
600 Fail(_("Connection failed"),true);
619 // Hard server error, not found or something
620 case ERROR_UNRECOVERABLE
:
626 // Hard internal error, kill the connection and fail
627 case ERROR_NOT_FROM_SERVER
:
638 // We need to flush the data, the header is like a 404 w/ error text
639 case ERROR_WITH_CONTENT_PAGE
:
643 // Send to content to dev/null
644 File
= new FileFd("/dev/null",FileFd::WriteExists
);
645 Server
->RunData(File
);
651 // Try again with a new URL
652 case TRY_AGAIN_OR_REDIRECT
:
654 // Clear rest of response if there is content
655 if (Server
->HaveContent
)
657 File
= new FileFd("/dev/null",FileFd::WriteExists
);
658 Server
->RunData(File
);
663 /* Detect redirect loops. No more redirects are allowed
664 after the same URI is seen twice in a queue item. */
665 StringVector
&R
= Redirected
[Queue
->DestFile
];
666 bool StopRedirects
= false;
667 if (R
.empty() == true)
668 R
.push_back(Queue
->Uri
);
669 else if (R
[0] == "STOP" || R
.size() > 10)
670 StopRedirects
= true;
673 for (StringVectorIterator I
= R
.begin(); I
!= R
.end(); ++I
)
674 if (Queue
->Uri
== *I
)
680 R
.push_back(Queue
->Uri
);
683 if (StopRedirects
== false)
692 Fail(_("Internal error"));