]> git.saurik.com Git - apt.git/blame - methods/http.cc
fix two "(style) Variable 'Res' is assigned a value that is never used"
[apt.git] / methods / http.cc
CommitLineData
be4401bf
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
2cbcabd8 3// $Id: http.cc,v 1.59 2004/05/08 19:42:35 mdz Exp $
be4401bf
AL
4/* ######################################################################
5
ae58a985 6 HTTP Acquire Method - This is the HTTP aquire method for APT.
be4401bf
AL
7
8 It uses HTTP/1.1 and many of the fancy options there-in, such as
e836f356
AL
9 pipelining, range, if-range and so on.
10
11 It is based on a doubly buffered select loop. A groupe of requests are
be4401bf
AL
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
e836f356 15 the same way and fed into the fd for the file (may be a pipe in future).
be4401bf
AL
16
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.
24
25 ##################################################################### */
26 /*}}}*/
27// Include Files /*{{{*/
ea542140
DK
28#include <config.h>
29
be4401bf
AL
30#include <apt-pkg/fileutl.h>
31#include <apt-pkg/acquire-method.h>
472ff00e 32#include <apt-pkg/configuration.h>
be4401bf 33#include <apt-pkg/error.h>
63b1700f 34#include <apt-pkg/hashes.h>
592b7800 35#include <apt-pkg/netrc.h>
be4401bf
AL
36
37#include <sys/stat.h>
38#include <sys/time.h>
39#include <utime.h>
40#include <unistd.h>
492f957a 41#include <signal.h>
be4401bf 42#include <stdio.h>
65a1e968 43#include <errno.h>
42195eb2
AL
44#include <string.h>
45#include <iostream>
15d7e515 46#include <map>
592b7800 47
be4401bf 48// Internet stuff
0837bd25 49#include <netdb.h>
be4401bf 50
59b46c41 51#include "config.h"
0837bd25 52#include "connect.h"
934b6582 53#include "rfc2553emu.h"
be4401bf 54#include "http.h"
ea542140
DK
55
56#include <apti18n.h>
be4401bf 57 /*}}}*/
42195eb2 58using namespace std;
be4401bf 59
492f957a
AL
60string HttpMethod::FailFile;
61int HttpMethod::FailFd = -1;
62time_t HttpMethod::FailTime = 0;
c37030c2 63unsigned long PipelineDepth = 10;
3000ccea 64unsigned long TimeOut = 120;
15d7e515 65bool AllowRedirect = false;
c98b1307 66bool Debug = false;
c37030c2 67URI Proxy;
492f957a 68
650faab0
DK
69unsigned long long CircleBuf::BwReadLimit=0;
70unsigned long long CircleBuf::BwTickReadData=0;
7c6e2dc7
MV
71struct timeval CircleBuf::BwReadTick={0,0};
72const unsigned int CircleBuf::BW_HZ=10;
7273e494 73
be4401bf
AL
74// CircleBuf::CircleBuf - Circular input buffer /*{{{*/
75// ---------------------------------------------------------------------
76/* */
650faab0 77CircleBuf::CircleBuf(unsigned long long Size) : Size(Size), Hash(0)
be4401bf
AL
78{
79 Buf = new unsigned char[Size];
80 Reset();
7c6e2dc7
MV
81
82 CircleBuf::BwReadLimit = _config->FindI("Acquire::http::Dl-Limit",0)*1024;
be4401bf
AL
83}
84 /*}}}*/
85// CircleBuf::Reset - Reset to the default state /*{{{*/
86// ---------------------------------------------------------------------
87/* */
88void CircleBuf::Reset()
89{
90 InP = 0;
91 OutP = 0;
92 StrPos = 0;
650faab0 93 MaxGet = (unsigned long long)-1;
be4401bf 94 OutQueue = string();
63b1700f 95 if (Hash != 0)
be4401bf 96 {
63b1700f
AL
97 delete Hash;
98 Hash = new Hashes;
be4401bf
AL
99 }
100};
101 /*}}}*/
102// CircleBuf::Read - Read from a FD into the circular buffer /*{{{*/
103// ---------------------------------------------------------------------
104/* This fills up the buffer with as much data as is in the FD, assuming it
105 is non-blocking.. */
106bool CircleBuf::Read(int Fd)
107{
650faab0 108 unsigned long long BwReadMax;
7c6e2dc7 109
be4401bf
AL
110 while (1)
111 {
112 // Woops, buffer is full
113 if (InP - OutP == Size)
114 return true;
7c6e2dc7
MV
115
116 // what's left to read in this tick
117 BwReadMax = CircleBuf::BwReadLimit/BW_HZ;
118
119 if(CircleBuf::BwReadLimit) {
120 struct timeval now;
121 gettimeofday(&now,0);
122
650faab0 123 unsigned long long d = (now.tv_sec-CircleBuf::BwReadTick.tv_sec)*1000000 +
7c6e2dc7
MV
124 now.tv_usec-CircleBuf::BwReadTick.tv_usec;
125 if(d > 1000000/BW_HZ) {
126 CircleBuf::BwReadTick = now;
127 CircleBuf::BwTickReadData = 0;
128 }
129
130 if(CircleBuf::BwTickReadData >= BwReadMax) {
131 usleep(1000000/BW_HZ);
132 return true;
133 }
134 }
135
be4401bf 136 // Write the buffer segment
650faab0 137 ssize_t Res;
7c6e2dc7
MV
138 if(CircleBuf::BwReadLimit) {
139 Res = read(Fd,Buf + (InP%Size),
140 BwReadMax > LeftRead() ? LeftRead() : BwReadMax);
141 } else
142 Res = read(Fd,Buf + (InP%Size),LeftRead());
be4401bf 143
7c6e2dc7
MV
144 if(Res > 0 && BwReadLimit > 0)
145 CircleBuf::BwTickReadData += Res;
146
be4401bf
AL
147 if (Res == 0)
148 return false;
149 if (Res < 0)
150 {
151 if (errno == EAGAIN)
152 return true;
153 return false;
154 }
155
156 if (InP == 0)
157 gettimeofday(&Start,0);
158 InP += Res;
159 }
160}
161 /*}}}*/
162// CircleBuf::Read - Put the string into the buffer /*{{{*/
163// ---------------------------------------------------------------------
164/* This will hold the string in and fill the buffer with it as it empties */
165bool CircleBuf::Read(string Data)
166{
167 OutQueue += Data;
168 FillOut();
169 return true;
170}
171 /*}}}*/
172// CircleBuf::FillOut - Fill the buffer from the output queue /*{{{*/
173// ---------------------------------------------------------------------
174/* */
175void CircleBuf::FillOut()
176{
177 if (OutQueue.empty() == true)
178 return;
179 while (1)
180 {
181 // Woops, buffer is full
182 if (InP - OutP == Size)
183 return;
184
185 // Write the buffer segment
650faab0 186 unsigned long long Sz = LeftRead();
be4401bf
AL
187 if (OutQueue.length() - StrPos < Sz)
188 Sz = OutQueue.length() - StrPos;
42195eb2 189 memcpy(Buf + (InP%Size),OutQueue.c_str() + StrPos,Sz);
be4401bf
AL
190
191 // Advance
192 StrPos += Sz;
193 InP += Sz;
194 if (OutQueue.length() == StrPos)
195 {
196 StrPos = 0;
197 OutQueue = "";
198 return;
199 }
200 }
201}
202 /*}}}*/
203// CircleBuf::Write - Write from the buffer into a FD /*{{{*/
204// ---------------------------------------------------------------------
205/* This empties the buffer into the FD. */
206bool CircleBuf::Write(int Fd)
207{
208 while (1)
209 {
210 FillOut();
211
212 // Woops, buffer is empty
213 if (OutP == InP)
214 return true;
215
216 if (OutP == MaxGet)
217 return true;
218
219 // Write the buffer segment
650faab0 220 ssize_t Res;
be4401bf
AL
221 Res = write(Fd,Buf + (OutP%Size),LeftWrite());
222
223 if (Res == 0)
224 return false;
225 if (Res < 0)
226 {
227 if (errno == EAGAIN)
228 return true;
229
230 return false;
231 }
232
63b1700f
AL
233 if (Hash != 0)
234 Hash->Add(Buf + (OutP%Size),Res);
be4401bf
AL
235
236 OutP += Res;
237 }
238}
239 /*}}}*/
240// CircleBuf::WriteTillEl - Write from the buffer to a string /*{{{*/
241// ---------------------------------------------------------------------
242/* This copies till the first empty line */
243bool CircleBuf::WriteTillEl(string &Data,bool Single)
244{
245 // We cheat and assume it is unneeded to have more than one buffer load
650faab0 246 for (unsigned long long I = OutP; I < InP; I++)
be4401bf
AL
247 {
248 if (Buf[I%Size] != '\n')
249 continue;
2cbcabd8 250 ++I;
be4401bf
AL
251
252 if (Single == false)
253 {
2cbcabd8
AL
254 if (I < InP && Buf[I%Size] == '\r')
255 ++I;
927c393f
MV
256 if (I >= InP || Buf[I%Size] != '\n')
257 continue;
258 ++I;
be4401bf
AL
259 }
260
be4401bf
AL
261 Data = "";
262 while (OutP < I)
263 {
650faab0 264 unsigned long long Sz = LeftWrite();
be4401bf
AL
265 if (Sz == 0)
266 return false;
927c393f 267 if (I - OutP < Sz)
be4401bf
AL
268 Sz = I - OutP;
269 Data += string((char *)(Buf + (OutP%Size)),Sz);
270 OutP += Sz;
271 }
272 return true;
273 }
274 return false;
275}
276 /*}}}*/
277// CircleBuf::Stats - Print out stats information /*{{{*/
278// ---------------------------------------------------------------------
279/* */
280void CircleBuf::Stats()
281{
282 if (InP == 0)
283 return;
284
285 struct timeval Stop;
286 gettimeofday(&Stop,0);
287/* float Diff = Stop.tv_sec - Start.tv_sec +
288 (float)(Stop.tv_usec - Start.tv_usec)/1000000;
289 clog << "Got " << InP << " in " << Diff << " at " << InP/Diff << endl;*/
290}
291 /*}}}*/
472ff00e
DK
292CircleBuf::~CircleBuf()
293{
294 delete [] Buf;
295 delete Hash;
296}
be4401bf
AL
297
298// ServerState::ServerState - Constructor /*{{{*/
299// ---------------------------------------------------------------------
300/* */
301ServerState::ServerState(URI Srv,HttpMethod *Owner) : Owner(Owner),
3000ccea 302 In(64*1024), Out(4*1024),
be4401bf
AL
303 ServerName(Srv)
304{
305 Reset();
306}
307 /*}}}*/
308// ServerState::Open - Open a connection to the server /*{{{*/
309// ---------------------------------------------------------------------
310/* This opens a connection to the server. */
be4401bf
AL
311bool ServerState::Open()
312{
92e889c8
AL
313 // Use the already open connection if possible.
314 if (ServerFd != -1)
315 return true;
316
be4401bf 317 Close();
492f957a
AL
318 In.Reset();
319 Out.Reset();
e836f356
AL
320 Persistent = true;
321
492f957a 322 // Determine the proxy setting
788a8f42
EL
323 string SpecificProxy = _config->Find("Acquire::http::Proxy::" + ServerName.Host);
324 if (!SpecificProxy.empty())
492f957a 325 {
788a8f42
EL
326 if (SpecificProxy == "DIRECT")
327 Proxy = "";
328 else
329 Proxy = SpecificProxy;
352c2768 330 }
492f957a 331 else
788a8f42
EL
332 {
333 string DefProxy = _config->Find("Acquire::http::Proxy");
334 if (!DefProxy.empty())
335 {
336 Proxy = DefProxy;
337 }
338 else
339 {
340 char* result = getenv("http_proxy");
341 Proxy = result ? result : "";
342 }
343 }
352c2768 344
f8081133 345 // Parse no_proxy, a , separated list of domains
9e2a06ff
AL
346 if (getenv("no_proxy") != 0)
347 {
f8081133
AL
348 if (CheckDomainList(ServerName.Host,getenv("no_proxy")) == true)
349 Proxy = "";
350 }
351
492f957a 352 // Determine what host and port to use based on the proxy settings
934b6582 353 int Port = 0;
492f957a 354 string Host;
dd1fd92b 355 if (Proxy.empty() == true || Proxy.Host.empty() == true)
be4401bf 356 {
92e889c8
AL
357 if (ServerName.Port != 0)
358 Port = ServerName.Port;
be4401bf
AL
359 Host = ServerName.Host;
360 }
361 else
362 {
92e889c8
AL
363 if (Proxy.Port != 0)
364 Port = Proxy.Port;
be4401bf
AL
365 Host = Proxy.Host;
366 }
367
0837bd25 368 // Connect to the remote server
9505213b 369 if (Connect(Host,Port,"http",80,ServerFd,TimeOut,Owner) == false)
0837bd25 370 return false;
3000ccea 371
be4401bf
AL
372 return true;
373}
374 /*}}}*/
375// ServerState::Close - Close a connection to the server /*{{{*/
376// ---------------------------------------------------------------------
377/* */
378bool ServerState::Close()
379{
380 close(ServerFd);
381 ServerFd = -1;
be4401bf
AL
382 return true;
383}
384 /*}}}*/
385// ServerState::RunHeaders - Get the headers before the data /*{{{*/
386// ---------------------------------------------------------------------
38965a34
MV
387/* Returns 0 if things are OK, 1 if an IO error occurred and 2 if a header
388 parse error occurred */
7273e494 389ServerState::RunHeadersResult ServerState::RunHeaders()
be4401bf
AL
390{
391 State = Header;
392
519c5591 393 Owner->Status(_("Waiting for headers"));
be4401bf
AL
394
395 Major = 0;
396 Minor = 0;
397 Result = 0;
398 Size = 0;
399 StartPos = 0;
92e889c8
AL
400 Encoding = Closes;
401 HaveContent = false;
be4401bf
AL
402 time(&Date);
403
404 do
405 {
406 string Data;
407 if (In.WriteTillEl(Data) == false)
408 continue;
9d95e726
AL
409
410 if (Debug == true)
411 clog << Data;
be4401bf 412
f7f0d6c7 413 for (string::const_iterator I = Data.begin(); I < Data.end(); ++I)
be4401bf
AL
414 {
415 string::const_iterator J = I;
f7f0d6c7 416 for (; J != Data.end() && *J != '\n' && *J != '\r'; ++J);
42195eb2 417 if (HeaderLine(string(I,J)) == false)
7273e494 418 return RUN_HEADERS_PARSE_ERROR;
be4401bf
AL
419 I = J;
420 }
e836f356 421
b2e465d6
AL
422 // 100 Continue is a Nop...
423 if (Result == 100)
424 continue;
425
e836f356
AL
426 // Tidy up the connection persistance state.
427 if (Encoding == Closes && HaveContent == true)
428 Persistent = false;
429
7273e494 430 return RUN_HEADERS_OK;
be4401bf
AL
431 }
432 while (Owner->Go(false,this) == true);
e836f356 433
7273e494 434 return RUN_HEADERS_IO_ERROR;
be4401bf
AL
435}
436 /*}}}*/
437// ServerState::RunData - Transfer the data from the socket /*{{{*/
438// ---------------------------------------------------------------------
439/* */
440bool ServerState::RunData()
441{
442 State = Data;
443
444 // Chunked transfer encoding is fun..
445 if (Encoding == Chunked)
446 {
447 while (1)
448 {
449 // Grab the block size
450 bool Last = true;
451 string Data;
452 In.Limit(-1);
453 do
454 {
455 if (In.WriteTillEl(Data,true) == true)
456 break;
457 }
458 while ((Last = Owner->Go(false,this)) == true);
459
460 if (Last == false)
461 return false;
462
463 // See if we are done
650faab0 464 unsigned long long Len = strtoull(Data.c_str(),0,16);
be4401bf
AL
465 if (Len == 0)
466 {
467 In.Limit(-1);
468
469 // We have to remove the entity trailer
470 Last = true;
471 do
472 {
473 if (In.WriteTillEl(Data,true) == true && Data.length() <= 2)
474 break;
475 }
476 while ((Last = Owner->Go(false,this)) == true);
477 if (Last == false)
478 return false;
e1b96638 479 return !_error->PendingError();
be4401bf
AL
480 }
481
482 // Transfer the block
483 In.Limit(Len);
484 while (Owner->Go(true,this) == true)
485 if (In.IsLimit() == true)
486 break;
487
488 // Error
489 if (In.IsLimit() == false)
490 return false;
491
492 // The server sends an extra new line before the next block specifier..
493 In.Limit(-1);
494 Last = true;
495 do
496 {
497 if (In.WriteTillEl(Data,true) == true)
498 break;
499 }
500 while ((Last = Owner->Go(false,this)) == true);
501 if (Last == false)
502 return false;
92e889c8 503 }
be4401bf
AL
504 }
505 else
506 {
507 /* Closes encoding is used when the server did not specify a size, the
508 loss of the connection means we are done */
509 if (Encoding == Closes)
510 In.Limit(-1);
511 else
512 In.Limit(Size - StartPos);
513
514 // Just transfer the whole block.
515 do
516 {
517 if (In.IsLimit() == false)
518 continue;
519
520 In.Limit(-1);
e1b96638 521 return !_error->PendingError();
be4401bf
AL
522 }
523 while (Owner->Go(true,this) == true);
524 }
525
e1b96638 526 return Owner->Flush(this) && !_error->PendingError();
be4401bf
AL
527}
528 /*}}}*/
529// ServerState::HeaderLine - Process a header line /*{{{*/
530// ---------------------------------------------------------------------
531/* */
532bool ServerState::HeaderLine(string Line)
533{
534 if (Line.empty() == true)
535 return true;
30456e14 536
be4401bf
AL
537 string::size_type Pos = Line.find(' ');
538 if (Pos == string::npos || Pos+1 > Line.length())
c901051d
AL
539 {
540 // Blah, some servers use "connection:closes", evil.
541 Pos = Line.find(':');
542 if (Pos == string::npos || Pos + 2 > Line.length())
dc738e7a 543 return _error->Error(_("Bad header line"));
c901051d
AL
544 Pos++;
545 }
be4401bf 546
c901051d
AL
547 // Parse off any trailing spaces between the : and the next word.
548 string::size_type Pos2 = Pos;
549 while (Pos2 < Line.length() && isspace(Line[Pos2]) != 0)
550 Pos2++;
551
552 string Tag = string(Line,0,Pos);
553 string Val = string(Line,Pos2);
554
42195eb2 555 if (stringcasecmp(Tag.c_str(),Tag.c_str()+4,"HTTP") == 0)
be4401bf
AL
556 {
557 // Evil servers return no version
558 if (Line[4] == '/')
559 {
de2b1358
DK
560 int const elements = sscanf(Line.c_str(),"HTTP/%u.%u %u%[^\n]",&Major,&Minor,&Result,Code);
561 if (elements == 3)
562 {
563 Code[0] = '\0';
564 if (Debug == true)
565 clog << "HTTP server doesn't give Reason-Phrase for " << Result << std::endl;
566 }
567 else if (elements != 4)
db0db9fe 568 return _error->Error(_("The HTTP server sent an invalid reply header"));
be4401bf
AL
569 }
570 else
571 {
572 Major = 0;
573 Minor = 9;
dda7233c 574 if (sscanf(Line.c_str(),"HTTP %u%[^\n]",&Result,Code) != 2)
db0db9fe 575 return _error->Error(_("The HTTP server sent an invalid reply header"));
be4401bf 576 }
e836f356
AL
577
578 /* Check the HTTP response header to get the default persistance
579 state. */
580 if (Major < 1)
581 Persistent = false;
582 else
583 {
584 if (Major == 1 && Minor <= 0)
585 Persistent = false;
586 else
587 Persistent = true;
588 }
b2e465d6 589
be4401bf
AL
590 return true;
591 }
592
92e889c8 593 if (stringcasecmp(Tag,"Content-Length:") == 0)
be4401bf
AL
594 {
595 if (Encoding == Closes)
596 Encoding = Stream;
92e889c8 597 HaveContent = true;
be4401bf
AL
598
599 // The length is already set from the Content-Range header
600 if (StartPos != 0)
601 return true;
602
650faab0 603 if (sscanf(Val.c_str(),"%llu",&Size) != 1)
db0db9fe 604 return _error->Error(_("The HTTP server sent an invalid Content-Length header"));
be4401bf
AL
605 return true;
606 }
607
92e889c8
AL
608 if (stringcasecmp(Tag,"Content-Type:") == 0)
609 {
610 HaveContent = true;
611 return true;
612 }
613
614 if (stringcasecmp(Tag,"Content-Range:") == 0)
be4401bf 615 {
92e889c8
AL
616 HaveContent = true;
617
650faab0 618 if (sscanf(Val.c_str(),"bytes %llu-%*u/%llu",&StartPos,&Size) != 2)
db0db9fe 619 return _error->Error(_("The HTTP server sent an invalid Content-Range header"));
650faab0 620 if ((unsigned long long)StartPos > Size)
db0db9fe 621 return _error->Error(_("This HTTP server has broken range support"));
be4401bf
AL
622 return true;
623 }
624
92e889c8 625 if (stringcasecmp(Tag,"Transfer-Encoding:") == 0)
be4401bf 626 {
92e889c8
AL
627 HaveContent = true;
628 if (stringcasecmp(Val,"chunked") == 0)
e836f356 629 Encoding = Chunked;
be4401bf
AL
630 return true;
631 }
632
e836f356
AL
633 if (stringcasecmp(Tag,"Connection:") == 0)
634 {
635 if (stringcasecmp(Val,"close") == 0)
636 Persistent = false;
637 if (stringcasecmp(Val,"keep-alive") == 0)
638 Persistent = true;
639 return true;
640 }
641
92e889c8 642 if (stringcasecmp(Tag,"Last-Modified:") == 0)
be4401bf 643 {
96cc64a5 644 if (RFC1123StrToTime(Val.c_str(), Date) == false)
dc738e7a 645 return _error->Error(_("Unknown date format"));
be4401bf
AL
646 return true;
647 }
648
15d7e515
MV
649 if (stringcasecmp(Tag,"Location:") == 0)
650 {
651 Location = Val;
652 return true;
653 }
654
be4401bf
AL
655 return true;
656}
657 /*}}}*/
658
659// HttpMethod::SendReq - Send the HTTP request /*{{{*/
660// ---------------------------------------------------------------------
661/* This places the http request in the outbound buffer */
662void HttpMethod::SendReq(FetchItem *Itm,CircleBuf &Out)
663{
664 URI Uri = Itm->Uri;
c1a22377 665
be4401bf 666 // The HTTP server expects a hostname with a trailing :port
c1a22377 667 char Buf[1000];
be4401bf
AL
668 string ProperHost = Uri.Host;
669 if (Uri.Port != 0)
670 {
671 sprintf(Buf,":%u",Uri.Port);
672 ProperHost += Buf;
673 }
674
c1a22377
AL
675 // Just in case.
676 if (Itm->Uri.length() >= sizeof(Buf))
677 abort();
678
492f957a
AL
679 /* Build the request. We include a keep-alive header only for non-proxy
680 requests. This is to tweak old http/1.0 servers that do support keep-alive
681 but not HTTP/1.1 automatic keep-alive. Doing this with a proxy server
682 will glitch HTTP/1.0 proxies because they do not filter it out and
683 pass it on, HTTP/1.1 says the connection should default to keep alive
684 and we expect the proxy to do this */
02b7ddb1 685 if (Proxy.empty() == true || Proxy.Host.empty())
be4401bf 686 sprintf(Buf,"GET %s HTTP/1.1\r\nHost: %s\r\nConnection: keep-alive\r\n",
a4edf53b 687 QuoteString(Uri.Path,"~").c_str(),ProperHost.c_str());
be4401bf 688 else
c1a22377
AL
689 {
690 /* Generate a cache control header if necessary. We place a max
691 cache age on index files, optionally set a no-cache directive
692 and a no-store directive for archives. */
be4401bf
AL
693 sprintf(Buf,"GET %s HTTP/1.1\r\nHost: %s\r\n",
694 Itm->Uri.c_str(),ProperHost.c_str());
c9cd3b70
MV
695 }
696 // generate a cache control header (if needed)
697 if (_config->FindB("Acquire::http::No-Cache",false) == true)
698 {
699 strcat(Buf,"Cache-Control: no-cache\r\nPragma: no-cache\r\n");
700 }
701 else
702 {
703 if (Itm->IndexFile == true)
c1a22377 704 {
c9cd3b70
MV
705 sprintf(Buf+strlen(Buf),"Cache-Control: max-age=%u\r\n",
706 _config->FindI("Acquire::http::Max-Age",0));
707 }
708 else
709 {
710 if (_config->FindB("Acquire::http::No-Store",false) == true)
711 strcat(Buf,"Cache-Control: no-store\r\n");
c1a22377
AL
712 }
713 }
106e6740 714
6f4501f9
DK
715 // If we ask for uncompressed files servers might respond with content-
716 // negotation 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)
721 {
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 strcat(Buf,"Accept: text/*\r\n");
726 }
727
be4401bf 728 string Req = Buf;
492f957a 729
be4401bf
AL
730 // Check for a partial file
731 struct stat SBuf;
732 if (stat(Itm->DestFile.c_str(),&SBuf) >= 0 && SBuf.st_size > 0)
733 {
734 // In this case we send an if-range query with a range header
650faab0 735 sprintf(Buf,"Range: bytes=%lli-\r\nIf-Range: %s\r\n",(long long)SBuf.st_size - 1,
be4401bf
AL
736 TimeRFC1123(SBuf.st_mtime).c_str());
737 Req += Buf;
738 }
739 else
740 {
741 if (Itm->LastModified != 0)
742 {
743 sprintf(Buf,"If-Modified-Since: %s\r\n",TimeRFC1123(Itm->LastModified).c_str());
744 Req += Buf;
745 }
746 }
747
8d64c395
AL
748 if (Proxy.User.empty() == false || Proxy.Password.empty() == false)
749 Req += string("Proxy-Authorization: Basic ") +
750 Base64Encode(Proxy.User + ":" + Proxy.Password) + "\r\n";
be4401bf 751
1de1f703 752 maybe_add_auth (Uri, _config->FindFile("Dir::Etc::netrc"));
b2e465d6 753 if (Uri.User.empty() == false || Uri.Password.empty() == false)
592b7800 754 {
b2e465d6
AL
755 Req += string("Authorization: Basic ") +
756 Base64Encode(Uri.User + ":" + Uri.Password) + "\r\n";
592b7800 757 }
9f542bae
DK
758 Req += "User-Agent: " + _config->Find("Acquire::http::User-Agent",
759 "Debian APT-HTTP/1.3 ("VERSION")") + "\r\n\r\n";
c98b1307
AL
760
761 if (Debug == true)
762 cerr << Req << endl;
c1a22377 763
be4401bf
AL
764 Out.Read(Req);
765}
766 /*}}}*/
767// HttpMethod::Go - Run a single loop /*{{{*/
768// ---------------------------------------------------------------------
769/* This runs the select loop over the server FDs, Output file FDs and
770 stdin. */
771bool HttpMethod::Go(bool ToFile,ServerState *Srv)
772{
773 // Server has closed the connection
8195ae46
AL
774 if (Srv->ServerFd == -1 && (Srv->In.WriteSpace() == false ||
775 ToFile == false))
be4401bf
AL
776 return false;
777
d955fe80 778 fd_set rfds,wfds;
be4401bf
AL
779 FD_ZERO(&rfds);
780 FD_ZERO(&wfds);
be4401bf 781
e836f356
AL
782 /* Add the server. We only send more requests if the connection will
783 be persisting */
784 if (Srv->Out.WriteSpace() == true && Srv->ServerFd != -1
785 && Srv->Persistent == true)
be4401bf 786 FD_SET(Srv->ServerFd,&wfds);
e836f356 787 if (Srv->In.ReadSpace() == true && Srv->ServerFd != -1)
be4401bf
AL
788 FD_SET(Srv->ServerFd,&rfds);
789
790 // Add the file
791 int FileFD = -1;
792 if (File != 0)
793 FileFD = File->Fd();
794
795 if (Srv->In.WriteSpace() == true && ToFile == true && FileFD != -1)
796 FD_SET(FileFD,&wfds);
3b422ab4 797
be4401bf 798 // Add stdin
3b422ab4
DK
799 if (_config->FindB("Acquire::http::DependOnSTDIN", true) == true)
800 FD_SET(STDIN_FILENO,&rfds);
be4401bf 801
be4401bf
AL
802 // Figure out the max fd
803 int MaxFd = FileFD;
804 if (MaxFd < Srv->ServerFd)
805 MaxFd = Srv->ServerFd;
8195ae46 806
be4401bf
AL
807 // Select
808 struct timeval tv;
3000ccea 809 tv.tv_sec = TimeOut;
be4401bf
AL
810 tv.tv_usec = 0;
811 int Res = 0;
d955fe80 812 if ((Res = select(MaxFd+1,&rfds,&wfds,0,&tv)) < 0)
c37b9502
AL
813 {
814 if (errno == EINTR)
815 return true;
dc738e7a 816 return _error->Errno("select",_("Select failed"));
c37b9502 817 }
be4401bf
AL
818
819 if (Res == 0)
820 {
dc738e7a 821 _error->Error(_("Connection timed out"));
be4401bf
AL
822 return ServerDie(Srv);
823 }
824
be4401bf
AL
825 // Handle server IO
826 if (Srv->ServerFd != -1 && FD_ISSET(Srv->ServerFd,&rfds))
827 {
828 errno = 0;
829 if (Srv->In.Read(Srv->ServerFd) == false)
830 return ServerDie(Srv);
831 }
832
833 if (Srv->ServerFd != -1 && FD_ISSET(Srv->ServerFd,&wfds))
834 {
835 errno = 0;
836 if (Srv->Out.Write(Srv->ServerFd) == false)
837 return ServerDie(Srv);
838 }
839
840 // Send data to the file
841 if (FileFD != -1 && FD_ISSET(FileFD,&wfds))
842 {
843 if (Srv->In.Write(FileFD) == false)
dc738e7a 844 return _error->Errno("write",_("Error writing to output file"));
be4401bf
AL
845 }
846
847 // Handle commands from APT
848 if (FD_ISSET(STDIN_FILENO,&rfds))
849 {
6920216d 850 if (Run(true) != -1)
be4401bf
AL
851 exit(100);
852 }
853
854 return true;
855}
856 /*}}}*/
857// HttpMethod::Flush - Dump the buffer into the file /*{{{*/
858// ---------------------------------------------------------------------
859/* This takes the current input buffer from the Server FD and writes it
860 into the file */
861bool HttpMethod::Flush(ServerState *Srv)
862{
863 if (File != 0)
864 {
b57c8bb4
MV
865 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
866 // can't be set
867 if (File->Name() != "/dev/null")
868 SetNonBlock(File->Fd(),false);
be4401bf
AL
869 if (Srv->In.WriteSpace() == false)
870 return true;
871
872 while (Srv->In.WriteSpace() == true)
873 {
874 if (Srv->In.Write(File->Fd()) == false)
dc738e7a 875 return _error->Errno("write",_("Error writing to file"));
92e889c8
AL
876 if (Srv->In.IsLimit() == true)
877 return true;
be4401bf
AL
878 }
879
880 if (Srv->In.IsLimit() == true || Srv->Encoding == ServerState::Closes)
881 return true;
882 }
883 return false;
884}
885 /*}}}*/
886// HttpMethod::ServerDie - The server has closed the connection. /*{{{*/
887// ---------------------------------------------------------------------
888/* */
889bool HttpMethod::ServerDie(ServerState *Srv)
890{
2b154e53
AL
891 unsigned int LErrno = errno;
892
be4401bf
AL
893 // Dump the buffer to the file
894 if (Srv->State == ServerState::Data)
895 {
b57c8bb4
MV
896 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
897 // can't be set
898 if (File->Name() != "/dev/null")
899 SetNonBlock(File->Fd(),false);
be4401bf
AL
900 while (Srv->In.WriteSpace() == true)
901 {
902 if (Srv->In.Write(File->Fd()) == false)
dc738e7a 903 return _error->Errno("write",_("Error writing to the file"));
92e889c8
AL
904
905 // Done
906 if (Srv->In.IsLimit() == true)
907 return true;
be4401bf
AL
908 }
909 }
910
911 // See if this is because the server finished the data stream
912 if (Srv->In.IsLimit() == false && Srv->State != ServerState::Header &&
913 Srv->Encoding != ServerState::Closes)
914 {
3d615484 915 Srv->Close();
2b154e53 916 if (LErrno == 0)
db0db9fe 917 return _error->Error(_("Error reading from server. Remote end closed connection"));
2b154e53 918 errno = LErrno;
dc738e7a 919 return _error->Errno("read",_("Error reading from server"));
be4401bf
AL
920 }
921 else
922 {
923 Srv->In.Limit(-1);
924
925 // Nothing left in the buffer
926 if (Srv->In.WriteSpace() == false)
927 return false;
928
929 // We may have got multiple responses back in one packet..
930 Srv->Close();
931 return true;
932 }
933
934 return false;
935}
936 /*}}}*/
937// HttpMethod::DealWithHeaders - Handle the retrieved header data /*{{{*/
938// ---------------------------------------------------------------------
939/* We look at the header data we got back from the server and decide what
f64684a4 940 to do. Returns DealWithHeadersResult (see http.h for details).
15d7e515 941 */
7273e494
MV
942HttpMethod::DealWithHeadersResult
943HttpMethod::DealWithHeaders(FetchResult &Res,ServerState *Srv)
be4401bf
AL
944{
945 // Not Modified
946 if (Srv->Result == 304)
947 {
948 unlink(Queue->DestFile.c_str());
949 Res.IMSHit = true;
950 Res.LastModified = Queue->LastModified;
7273e494 951 return IMS_HIT;
be4401bf
AL
952 }
953
15d7e515
MV
954 /* Redirect
955 *
956 * Note that it is only OK for us to treat all redirection the same
957 * because we *always* use GET, not other HTTP methods. There are
958 * three redirection codes for which it is not appropriate that we
959 * redirect. Pass on those codes so the error handling kicks in.
960 */
961 if (AllowRedirect
962 && (Srv->Result > 300 && Srv->Result < 400)
963 && (Srv->Result != 300 // Multiple Choices
964 && Srv->Result != 304 // Not Modified
965 && Srv->Result != 306)) // (Not part of HTTP/1.1, reserved)
966 {
4992469e
DK
967 if (Srv->Location.empty() == true);
968 else if (Srv->Location[0] == '/' && Queue->Uri.empty() == false)
969 {
970 URI Uri = Queue->Uri;
971 if (Uri.Host.empty() == false)
972 {
973 if (Uri.Port != 0)
974 strprintf(NextURI, "http://%s:%u", Uri.Host.c_str(), Uri.Port);
975 else
976 NextURI = "http://" + Uri.Host;
977 }
978 else
979 NextURI.clear();
c34ea12a 980 NextURI.append(DeQuoteString(Srv->Location));
4992469e
DK
981 return TRY_AGAIN_OR_REDIRECT;
982 }
983 else
15d7e515 984 {
c34ea12a 985 NextURI = DeQuoteString(Srv->Location);
7273e494 986 return TRY_AGAIN_OR_REDIRECT;
15d7e515
MV
987 }
988 /* else pass through for error message */
989 }
990
be4401bf
AL
991 /* We have a reply we dont handle. This should indicate a perm server
992 failure */
993 if (Srv->Result < 200 || Srv->Result >= 300)
994 {
59271f62
MV
995 char err[255];
996 snprintf(err,sizeof(err)-1,"HttpError%i",Srv->Result);
997 SetFailReason(err);
be4401bf 998 _error->Error("%u %s",Srv->Result,Srv->Code);
92e889c8 999 if (Srv->HaveContent == true)
7273e494
MV
1000 return ERROR_WITH_CONTENT_PAGE;
1001 return ERROR_UNRECOVERABLE;
be4401bf
AL
1002 }
1003
1004 // This is some sort of 2xx 'data follows' reply
1005 Res.LastModified = Srv->Date;
1006 Res.Size = Srv->Size;
1007
1008 // Open the file
1009 delete File;
1010 File = new FileFd(Queue->DestFile,FileFd::WriteAny);
1011 if (_error->PendingError() == true)
7273e494 1012 return ERROR_NOT_FROM_SERVER;
492f957a
AL
1013
1014 FailFile = Queue->DestFile;
30b30ec1 1015 FailFile.c_str(); // Make sure we dont do a malloc in the signal handler
492f957a
AL
1016 FailFd = File->Fd();
1017 FailTime = Srv->Date;
be4401bf 1018
63b1700f
AL
1019 delete Srv->In.Hash;
1020 Srv->In.Hash = new Hashes;
109eb151
DK
1021
1022 // Set the expected size and read file for the hashes
1023 if (Srv->StartPos >= 0)
be4401bf 1024 {
109eb151
DK
1025 Res.ResumePoint = Srv->StartPos;
1026 File->Truncate(Srv->StartPos);
1027
1028 if (Srv->In.Hash->AddFD(*File,Srv->StartPos) == false)
be4401bf 1029 {
dc738e7a 1030 _error->Errno("read",_("Problem hashing file"));
7273e494 1031 return ERROR_NOT_FROM_SERVER;
be4401bf 1032 }
be4401bf
AL
1033 }
1034
1035 SetNonBlock(File->Fd(),true);
7273e494 1036 return FILE_IS_OPEN;
be4401bf
AL
1037}
1038 /*}}}*/
492f957a
AL
1039// HttpMethod::SigTerm - Handle a fatal signal /*{{{*/
1040// ---------------------------------------------------------------------
1041/* This closes and timestamps the open file. This is neccessary to get
1042 resume behavoir on user abort */
1043void HttpMethod::SigTerm(int)
1044{
1045 if (FailFd == -1)
ffe9323a 1046 _exit(100);
492f957a
AL
1047 close(FailFd);
1048
1049 // Timestamp
1050 struct utimbuf UBuf;
492f957a
AL
1051 UBuf.actime = FailTime;
1052 UBuf.modtime = FailTime;
1053 utime(FailFile.c_str(),&UBuf);
1054
ffe9323a 1055 _exit(100);
492f957a
AL
1056}
1057 /*}}}*/
5cb5d8dc
AL
1058// HttpMethod::Fetch - Fetch an item /*{{{*/
1059// ---------------------------------------------------------------------
1060/* This adds an item to the pipeline. We keep the pipeline at a fixed
1061 depth. */
1062bool HttpMethod::Fetch(FetchItem *)
1063{
1064 if (Server == 0)
1065 return true;
3000ccea 1066
5cb5d8dc
AL
1067 // Queue the requests
1068 int Depth = -1;
f93d1355
AL
1069 for (FetchItem *I = Queue; I != 0 && Depth < (signed)PipelineDepth;
1070 I = I->Next, Depth++)
5cb5d8dc 1071 {
f93d1355
AL
1072 // If pipelining is disabled, we only queue 1 request
1073 if (Server->Pipeline == false && Depth >= 0)
1074 break;
1075
5cb5d8dc
AL
1076 // Make sure we stick with the same server
1077 if (Server->Comp(I->Uri) == false)
1078 break;
5cb5d8dc 1079 if (QueueBack == I)
5cb5d8dc 1080 {
5cb5d8dc
AL
1081 QueueBack = I->Next;
1082 SendReq(I,Server->Out);
1083 continue;
f93d1355 1084 }
5cb5d8dc
AL
1085 }
1086
1087 return true;
1088};
1089 /*}}}*/
85f72a56
AL
1090// HttpMethod::Configuration - Handle a configuration message /*{{{*/
1091// ---------------------------------------------------------------------
1092/* We stash the desired pipeline depth */
1093bool HttpMethod::Configuration(string Message)
1094{
1095 if (pkgAcqMethod::Configuration(Message) == false)
1096 return false;
1097
15d7e515 1098 AllowRedirect = _config->FindB("Acquire::http::AllowRedirect",true);
30456e14
AL
1099 TimeOut = _config->FindI("Acquire::http::Timeout",TimeOut);
1100 PipelineDepth = _config->FindI("Acquire::http::Pipeline-Depth",
1101 PipelineDepth);
c98b1307 1102 Debug = _config->FindB("Debug::Acquire::http",false);
bd49b02c
MV
1103 AutoDetectProxyCmd = _config->Find("Acquire::http::ProxyAutoDetect");
1104
1105 // Get the proxy to use
1106 AutoDetectProxy();
1107
85f72a56
AL
1108 return true;
1109}
1110 /*}}}*/
492f957a 1111// HttpMethod::Loop - Main loop /*{{{*/
be4401bf
AL
1112// ---------------------------------------------------------------------
1113/* */
1114int HttpMethod::Loop()
1115{
15d7e515
MV
1116 typedef vector<string> StringVector;
1117 typedef vector<string>::iterator StringVectorIterator;
1118 map<string, StringVector> Redirected;
1119
492f957a
AL
1120 signal(SIGTERM,SigTerm);
1121 signal(SIGINT,SigTerm);
1122
5cb5d8dc 1123 Server = 0;
be4401bf 1124
92e889c8 1125 int FailCounter = 0;
be4401bf 1126 while (1)
2b154e53 1127 {
be4401bf
AL
1128 // We have no commands, wait for some to arrive
1129 if (Queue == 0)
1130 {
1131 if (WaitFd(STDIN_FILENO) == false)
1132 return 0;
1133 }
1134
6920216d
AL
1135 /* Run messages, we can accept 0 (no message) if we didn't
1136 do a WaitFd above.. Otherwise the FD is closed. */
1137 int Result = Run(true);
1138 if (Result != -1 && (Result != 0 || Queue == 0))
3b422ab4
DK
1139 {
1140 if(FailReason.empty() == false ||
1141 _config->FindB("Acquire::http::DependOnSTDIN", true) == true)
1142 return 100;
1143 else
1144 return 0;
1145 }
be4401bf
AL
1146
1147 if (Queue == 0)
1148 continue;
1149
1150 // Connect to the server
1151 if (Server == 0 || Server->Comp(Queue->Uri) == false)
1152 {
1153 delete Server;
1154 Server = new ServerState(Queue->Uri,this);
1155 }
e836f356
AL
1156 /* If the server has explicitly said this is the last connection
1157 then we pre-emptively shut down the pipeline and tear down
1158 the connection. This will speed up HTTP/1.0 servers a tad
1159 since we don't have to wait for the close sequence to
1160 complete */
1161 if (Server->Persistent == false)
1162 Server->Close();
1163
a7fb252c
AL
1164 // Reset the pipeline
1165 if (Server->ServerFd == -1)
1166 QueueBack = Queue;
1167
be4401bf
AL
1168 // Connnect to the host
1169 if (Server->Open() == false)
1170 {
43252d15 1171 Fail(true);
a1459f52
AL
1172 delete Server;
1173 Server = 0;
be4401bf
AL
1174 continue;
1175 }
be4401bf 1176
5cb5d8dc
AL
1177 // Fill the pipeline.
1178 Fetch(0);
1179
92e889c8
AL
1180 // Fetch the next URL header data from the server.
1181 switch (Server->RunHeaders())
be4401bf 1182 {
7273e494 1183 case ServerState::RUN_HEADERS_OK:
92e889c8
AL
1184 break;
1185
1186 // The header data is bad
7273e494 1187 case ServerState::RUN_HEADERS_PARSE_ERROR:
92e889c8 1188 {
db0db9fe 1189 _error->Error(_("Bad header data"));
43252d15 1190 Fail(true);
b2e465d6 1191 RotateDNS();
92e889c8
AL
1192 continue;
1193 }
1194
1195 // The server closed a connection during the header get..
1196 default:
7273e494 1197 case ServerState::RUN_HEADERS_IO_ERROR:
92e889c8
AL
1198 {
1199 FailCounter++;
3d615484 1200 _error->Discard();
92e889c8 1201 Server->Close();
f93d1355
AL
1202 Server->Pipeline = false;
1203
2b154e53
AL
1204 if (FailCounter >= 2)
1205 {
dc738e7a 1206 Fail(_("Connection failed"),true);
2b154e53
AL
1207 FailCounter = 0;
1208 }
1209
b2e465d6 1210 RotateDNS();
92e889c8
AL
1211 continue;
1212 }
1213 };
5cb5d8dc 1214
be4401bf
AL
1215 // Decide what to do.
1216 FetchResult Res;
bfd22fc0 1217 Res.Filename = Queue->DestFile;
be4401bf
AL
1218 switch (DealWithHeaders(Res,Server))
1219 {
1220 // Ok, the file is Open
7273e494 1221 case FILE_IS_OPEN:
be4401bf
AL
1222 {
1223 URIStart(Res);
1224
1225 // Run the data
492f957a
AL
1226 bool Result = Server->RunData();
1227
b2e465d6
AL
1228 /* If the server is sending back sizeless responses then fill in
1229 the size now */
1230 if (Res.Size == 0)
1231 Res.Size = File->Size();
1232
492f957a
AL
1233 // Close the file, destroy the FD object and timestamp it
1234 FailFd = -1;
1235 delete File;
1236 File = 0;
1237
1238 // Timestamp
1239 struct utimbuf UBuf;
1240 time(&UBuf.actime);
1241 UBuf.actime = Server->Date;
1242 UBuf.modtime = Server->Date;
1243 utime(Queue->DestFile.c_str(),&UBuf);
1244
1245 // Send status to APT
1246 if (Result == true)
92e889c8 1247 {
a7c835af 1248 Res.TakeHashes(*Server->In.Hash);
92e889c8
AL
1249 URIDone(Res);
1250 }
492f957a 1251 else
82d0afc2
MV
1252 {
1253 if (Server->ServerFd == -1)
1254 {
1255 FailCounter++;
1256 _error->Discard();
1257 Server->Close();
1258
1259 if (FailCounter >= 2)
9a52beaa 1260 {
82d0afc2
MV
1261 Fail(_("Connection failed"),true);
1262 FailCounter = 0;
9a52beaa 1263 }
82d0afc2
MV
1264
1265 QueueBack = Queue;
1266 }
1267 else
1268 Fail(true);
1269 }
be4401bf
AL
1270 break;
1271 }
1272
1273 // IMS hit
7273e494 1274 case IMS_HIT:
be4401bf
AL
1275 {
1276 URIDone(Res);
1277 break;
1278 }
1279
1280 // Hard server error, not found or something
7273e494 1281 case ERROR_UNRECOVERABLE:
be4401bf
AL
1282 {
1283 Fail();
1284 break;
1285 }
94235cfb
AL
1286
1287 // Hard internal error, kill the connection and fail
7273e494 1288 case ERROR_NOT_FROM_SERVER:
94235cfb 1289 {
a305f593
AL
1290 delete File;
1291 File = 0;
1292
94235cfb 1293 Fail();
b2e465d6 1294 RotateDNS();
94235cfb
AL
1295 Server->Close();
1296 break;
1297 }
92e889c8
AL
1298
1299 // We need to flush the data, the header is like a 404 w/ error text
7273e494 1300 case ERROR_WITH_CONTENT_PAGE:
92e889c8
AL
1301 {
1302 Fail();
1303
1304 // Send to content to dev/null
1305 File = new FileFd("/dev/null",FileFd::WriteExists);
1306 Server->RunData();
1307 delete File;
1308 File = 0;
1309 break;
1310 }
be4401bf 1311
15d7e515 1312 // Try again with a new URL
7273e494 1313 case TRY_AGAIN_OR_REDIRECT:
15d7e515
MV
1314 {
1315 // Clear rest of response if there is content
1316 if (Server->HaveContent)
1317 {
1318 File = new FileFd("/dev/null",FileFd::WriteExists);
1319 Server->RunData();
1320 delete File;
1321 File = 0;
1322 }
1323
1324 /* Detect redirect loops. No more redirects are allowed
1325 after the same URI is seen twice in a queue item. */
1326 StringVector &R = Redirected[Queue->DestFile];
1327 bool StopRedirects = false;
1328 if (R.size() == 0)
1329 R.push_back(Queue->Uri);
1330 else if (R[0] == "STOP" || R.size() > 10)
1331 StopRedirects = true;
1332 else
1333 {
f7f0d6c7 1334 for (StringVectorIterator I = R.begin(); I != R.end(); ++I)
15d7e515
MV
1335 if (Queue->Uri == *I)
1336 {
1337 R[0] = "STOP";
1338 break;
1339 }
1340
1341 R.push_back(Queue->Uri);
1342 }
1343
1344 if (StopRedirects == false)
1345 Redirect(NextURI);
1346 else
1347 Fail();
1348
1349 break;
1350 }
1351
be4401bf 1352 default:
dc738e7a 1353 Fail(_("Internal error"));
be4401bf 1354 break;
92e889c8
AL
1355 }
1356
1357 FailCounter = 0;
be4401bf
AL
1358 }
1359
1360 return 0;
1361}
1362 /*}}}*/
bd49b02c
MV
1363// HttpMethod::AutoDetectProxy - auto detect proxy /*{{{*/
1364// ---------------------------------------------------------------------
1365/* */
1366bool HttpMethod::AutoDetectProxy()
1367{
1368 if (AutoDetectProxyCmd.empty())
1369 return true;
1370
1371 if (Debug)
1372 clog << "Using auto proxy detect command: " << AutoDetectProxyCmd << endl;
1373
1374 int Pipes[2] = {-1,-1};
1375 if (pipe(Pipes) != 0)
1376 return _error->Errno("pipe", "Failed to create Pipe");
1377
1378 pid_t Process = ExecFork();
1379 if (Process == 0)
1380 {
08ded4d6 1381 close(Pipes[0]);
bd49b02c
MV
1382 dup2(Pipes[1],STDOUT_FILENO);
1383 SetCloseExec(STDOUT_FILENO,false);
08ded4d6 1384
bd49b02c
MV
1385 const char *Args[2];
1386 Args[0] = AutoDetectProxyCmd.c_str();
1387 Args[1] = 0;
1388 execv(Args[0],(char **)Args);
1389 cerr << "Failed to exec method " << Args[0] << endl;
1390 _exit(100);
1391 }
1392 char buf[512];
1393 int InFd = Pipes[0];
08ded4d6
MV
1394 close(Pipes[1]);
1395 int res = read(InFd, buf, sizeof(buf));
1396 ExecWait(Process, "ProxyAutoDetect", true);
1397
1398 if (res < 0)
bd49b02c 1399 return _error->Errno("read", "Failed to read");
08ded4d6
MV
1400 if (res == 0)
1401 return _error->Warning("ProxyAutoDetect returned no data");
1402
1403 // add trailing \0
1404 buf[res] = 0;
1405
bd49b02c
MV
1406 if (Debug)
1407 clog << "auto detect command returned: '" << buf << "'" << endl;
1408
1409 if (strstr(buf, "http://") == buf)
1410 _config->Set("Acquire::http::proxy", _strstrip(buf));
1411
1412 return true;
1413}
1414 /*}}}*/
be4401bf 1415
a305f593 1416