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