]> git.saurik.com Git - apt-legacy.git/blob - methods/http.cc
d84ce2874d6c7a3ecede838c1a2665609d1dc96d
[apt-legacy.git] / methods / http.cc
1 extern "C" {
2 #include <mach-o/nlist.h>
3 }
4
5 // -*- mode: cpp; mode: fold -*-
6 // Description /*{{{*/
7 // $Id: http.cc,v 1.59 2004/05/08 19:42:35 mdz Exp $
8 /* ######################################################################
9
10 HTTP Aquire Method - This is the HTTP aquire method for APT.
11
12 It uses HTTP/1.1 and many of the fancy options there-in, such as
13 pipelining, range, if-range and so on.
14
15 It is based on a doubly buffered select loop. A groupe of requests are
16 fed into a single output buffer that is constantly fed out the
17 socket. This provides ideal pipelining as in many cases all of the
18 requests will fit into a single packet. The input socket is buffered
19 the same way and fed into the fd for the file (may be a pipe in future).
20
21 This double buffering provides fairly substantial transfer rates,
22 compared to wget the http method is about 4% faster. Most importantly,
23 when HTTP is compared with FTP as a protocol the speed difference is
24 huge. In tests over the internet from two sites to llug (via ATM) this
25 program got 230k/s sustained http transfer rates. FTP on the other
26 hand topped out at 170k/s. That combined with the time to setup the
27 FTP connection makes HTTP a vastly superior protocol.
28
29 ##################################################################### */
30 /*}}}*/
31 // Include Files /*{{{*/
32 #include <apt-pkg/fileutl.h>
33 #include <apt-pkg/acquire-method.h>
34 #include <apt-pkg/error.h>
35 #include <apt-pkg/hashes.h>
36
37 #include <sys/stat.h>
38 #include <sys/time.h>
39 #include <utime.h>
40 #include <unistd.h>
41 #include <signal.h>
42 #include <stdio.h>
43 #include <errno.h>
44 #include <string.h>
45 #include <iostream>
46 #include <apti18n.h>
47
48 // Internet stuff
49 #include <netdb.h>
50
51 #include "connect.h"
52 #include "rfc2553emu.h"
53 #include "http.h"
54
55 /*}}}*/
56 using namespace std;
57
58 string HttpMethod::FailFile;
59 int HttpMethod::FailFd = -1;
60 time_t HttpMethod::FailTime = 0;
61 unsigned long PipelineDepth = 10;
62 unsigned long TimeOut = 120;
63 bool Debug = false;
64
65 unsigned long CircleBuf::BwReadLimit=0;
66 unsigned long CircleBuf::BwTickReadData=0;
67 struct timeval CircleBuf::BwReadTick={0,0};
68 const unsigned int CircleBuf::BW_HZ=10;
69
70 // CircleBuf::CircleBuf - Circular input buffer /*{{{*/
71 // ---------------------------------------------------------------------
72 /* */
73 CircleBuf::CircleBuf(unsigned long Size) : Size(Size), Hash(0)
74 {
75 Buf = new unsigned char[Size];
76 Reset();
77
78 CircleBuf::BwReadLimit = _config->FindI("Acquire::http::Dl-Limit",0)*1024;
79 }
80 /*}}}*/
81 // CircleBuf::Reset - Reset to the default state /*{{{*/
82 // ---------------------------------------------------------------------
83 /* */
84 void CircleBuf::Reset()
85 {
86 InP = 0;
87 OutP = 0;
88 StrPos = 0;
89 MaxGet = (unsigned int)-1;
90 OutQueue = string();
91 if (Hash != 0)
92 {
93 delete Hash;
94 Hash = new Hashes;
95 }
96 };
97 /*}}}*/
98 // CircleBuf::Read - Read from a FD into the circular buffer /*{{{*/
99 // ---------------------------------------------------------------------
100 /* This fills up the buffer with as much data as is in the FD, assuming it
101 is non-blocking.. */
102 bool CircleBuf::Read(int Fd)
103 {
104 unsigned long BwReadMax;
105
106 while (1)
107 {
108 // Woops, buffer is full
109 if (InP - OutP == Size)
110 return true;
111
112 // what's left to read in this tick
113 BwReadMax = CircleBuf::BwReadLimit/BW_HZ;
114
115 if(CircleBuf::BwReadLimit) {
116 struct timeval now;
117 gettimeofday(&now,0);
118
119 unsigned long d = (now.tv_sec-CircleBuf::BwReadTick.tv_sec)*1000000 +
120 now.tv_usec-CircleBuf::BwReadTick.tv_usec;
121 if(d > 1000000/BW_HZ) {
122 CircleBuf::BwReadTick = now;
123 CircleBuf::BwTickReadData = 0;
124 }
125
126 if(CircleBuf::BwTickReadData >= BwReadMax) {
127 usleep(1000000/BW_HZ);
128 return true;
129 }
130 }
131
132 // Write the buffer segment
133 int Res;
134 if(CircleBuf::BwReadLimit) {
135 Res = read(Fd,Buf + (InP%Size),
136 BwReadMax > LeftRead() ? LeftRead() : BwReadMax);
137 } else
138 Res = read(Fd,Buf + (InP%Size),LeftRead());
139
140 if(Res > 0 && BwReadLimit > 0)
141 CircleBuf::BwTickReadData += Res;
142
143 if (Res == 0)
144 return false;
145 if (Res < 0)
146 {
147 if (errno == EAGAIN)
148 return true;
149 return false;
150 }
151
152 if (InP == 0)
153 gettimeofday(&Start,0);
154 InP += Res;
155 }
156 }
157 /*}}}*/
158 // CircleBuf::Read - Put the string into the buffer /*{{{*/
159 // ---------------------------------------------------------------------
160 /* This will hold the string in and fill the buffer with it as it empties */
161 bool CircleBuf::Read(string Data)
162 {
163 OutQueue += Data;
164 FillOut();
165 return true;
166 }
167 /*}}}*/
168 // CircleBuf::FillOut - Fill the buffer from the output queue /*{{{*/
169 // ---------------------------------------------------------------------
170 /* */
171 void CircleBuf::FillOut()
172 {
173 if (OutQueue.empty() == true)
174 return;
175 while (1)
176 {
177 // Woops, buffer is full
178 if (InP - OutP == Size)
179 return;
180
181 // Write the buffer segment
182 unsigned long Sz = LeftRead();
183 if (OutQueue.length() - StrPos < Sz)
184 Sz = OutQueue.length() - StrPos;
185 memcpy(Buf + (InP%Size),OutQueue.c_str() + StrPos,Sz);
186
187 // Advance
188 StrPos += Sz;
189 InP += Sz;
190 if (OutQueue.length() == StrPos)
191 {
192 StrPos = 0;
193 OutQueue = "";
194 return;
195 }
196 }
197 }
198 /*}}}*/
199 // CircleBuf::Write - Write from the buffer into a FD /*{{{*/
200 // ---------------------------------------------------------------------
201 /* This empties the buffer into the FD. */
202 bool CircleBuf::Write(int Fd)
203 {
204 while (1)
205 {
206 FillOut();
207
208 // Woops, buffer is empty
209 if (OutP == InP)
210 return true;
211
212 if (OutP == MaxGet)
213 return true;
214
215 // Write the buffer segment
216 int Res;
217 Res = write(Fd,Buf + (OutP%Size),LeftWrite());
218
219 if (Res == 0)
220 return false;
221 if (Res < 0)
222 {
223 if (errno == EAGAIN)
224 return true;
225
226 return false;
227 }
228
229 if (Hash != 0)
230 Hash->Add(Buf + (OutP%Size),Res);
231
232 OutP += Res;
233 }
234 }
235 /*}}}*/
236 // CircleBuf::WriteTillEl - Write from the buffer to a string /*{{{*/
237 // ---------------------------------------------------------------------
238 /* This copies till the first empty line */
239 bool CircleBuf::WriteTillEl(string &Data,bool Single)
240 {
241 // We cheat and assume it is unneeded to have more than one buffer load
242 for (unsigned long I = OutP; I < InP; I++)
243 {
244 if (Buf[I%Size] != '\n')
245 continue;
246 ++I;
247
248 if (Single == false)
249 {
250 if (I < InP && Buf[I%Size] == '\r')
251 ++I;
252 if (I >= InP || Buf[I%Size] != '\n')
253 continue;
254 ++I;
255 }
256
257 Data = "";
258 while (OutP < I)
259 {
260 unsigned long Sz = LeftWrite();
261 if (Sz == 0)
262 return false;
263 if (I - OutP < Sz)
264 Sz = I - OutP;
265 Data += string((char *)(Buf + (OutP%Size)),Sz);
266 OutP += Sz;
267 }
268 return true;
269 }
270 return false;
271 }
272 /*}}}*/
273 // CircleBuf::Stats - Print out stats information /*{{{*/
274 // ---------------------------------------------------------------------
275 /* */
276 void CircleBuf::Stats()
277 {
278 if (InP == 0)
279 return;
280
281 struct timeval Stop;
282 gettimeofday(&Stop,0);
283 /* float Diff = Stop.tv_sec - Start.tv_sec +
284 (float)(Stop.tv_usec - Start.tv_usec)/1000000;
285 clog << "Got " << InP << " in " << Diff << " at " << InP/Diff << endl;*/
286 }
287 /*}}}*/
288
289 // ServerState::ServerState - Constructor /*{{{*/
290 // ---------------------------------------------------------------------
291 /* */
292 ServerState::ServerState(URI Srv,HttpMethod *Owner) : Owner(Owner),
293 In(64*1024), Out(4*1024),
294 ServerName(Srv)
295 {
296 Reset();
297 }
298 /*}}}*/
299 // ServerState::Open - Open a connection to the server /*{{{*/
300 // ---------------------------------------------------------------------
301 /* This opens a connection to the server. */
302 bool ServerState::Open()
303 {
304 // Use the already open connection if possible.
305 if (ServerFd != -1)
306 return true;
307
308 Close();
309 In.Reset();
310 Out.Reset();
311 Persistent = true;
312
313 // Determine the proxy setting
314 if (getenv("http_proxy") == 0)
315 {
316 string DefProxy = _config->Find("Acquire::http::Proxy");
317 string SpecificProxy = _config->Find("Acquire::http::Proxy::" + ServerName.Host);
318 if (SpecificProxy.empty() == false)
319 {
320 if (SpecificProxy == "DIRECT")
321 Proxy = "";
322 else
323 Proxy = SpecificProxy;
324 }
325 else
326 Proxy = DefProxy;
327 }
328 else
329 Proxy = getenv("http_proxy");
330
331 // Parse no_proxy, a , separated list of domains
332 if (getenv("no_proxy") != 0)
333 {
334 if (CheckDomainList(ServerName.Host,getenv("no_proxy")) == true)
335 Proxy = "";
336 }
337
338 // Determine what host and port to use based on the proxy settings
339 int Port = 0;
340 string Host;
341 if (Proxy.empty() == true || Proxy.Host.empty() == true)
342 {
343 if (ServerName.Port != 0)
344 Port = ServerName.Port;
345 Host = ServerName.Host;
346 }
347 else
348 {
349 if (Proxy.Port != 0)
350 Port = Proxy.Port;
351 Host = Proxy.Host;
352 }
353
354 // Connect to the remote server
355 if (Connect(Host,Port,"http",80,ServerFd,TimeOut,Owner) == false)
356 return false;
357
358 return true;
359 }
360 /*}}}*/
361 // ServerState::Close - Close a connection to the server /*{{{*/
362 // ---------------------------------------------------------------------
363 /* */
364 bool ServerState::Close()
365 {
366 close(ServerFd);
367 ServerFd = -1;
368 return true;
369 }
370 /*}}}*/
371 // ServerState::RunHeaders - Get the headers before the data /*{{{*/
372 // ---------------------------------------------------------------------
373 /* Returns 0 if things are OK, 1 if an IO error occursed and 2 if a header
374 parse error occured */
375 int ServerState::RunHeaders()
376 {
377 State = Header;
378
379 Owner->Status(_("Waiting for headers"));
380
381 Major = 0;
382 Minor = 0;
383 Result = 0;
384 Size = 0;
385 StartPos = 0;
386 Encoding = Closes;
387 HaveContent = false;
388 time(&Date);
389
390 do
391 {
392 string Data;
393 if (In.WriteTillEl(Data) == false)
394 continue;
395
396 if (Debug == true)
397 clog << Data;
398
399 for (string::const_iterator I = Data.begin(); I < Data.end(); I++)
400 {
401 string::const_iterator J = I;
402 for (; J != Data.end() && *J != '\n' && *J != '\r';J++);
403 if (HeaderLine(string(I,J)) == false)
404 return 2;
405 I = J;
406 }
407
408 // 100 Continue is a Nop...
409 if (Result == 100)
410 continue;
411
412 // Tidy up the connection persistance state.
413 if (Encoding == Closes && HaveContent == true)
414 Persistent = false;
415
416 return 0;
417 }
418 while (Owner->Go(false,this) == true);
419
420 return 1;
421 }
422 /*}}}*/
423 // ServerState::RunData - Transfer the data from the socket /*{{{*/
424 // ---------------------------------------------------------------------
425 /* */
426 bool ServerState::RunData()
427 {
428 State = Data;
429
430 // Chunked transfer encoding is fun..
431 if (Encoding == Chunked)
432 {
433 while (1)
434 {
435 // Grab the block size
436 bool Last = true;
437 string Data;
438 In.Limit(-1);
439 do
440 {
441 if (In.WriteTillEl(Data,true) == true)
442 break;
443 }
444 while ((Last = Owner->Go(false,this)) == true);
445
446 if (Last == false)
447 return false;
448
449 // See if we are done
450 unsigned long Len = strtol(Data.c_str(),0,16);
451 if (Len == 0)
452 {
453 In.Limit(-1);
454
455 // We have to remove the entity trailer
456 Last = true;
457 do
458 {
459 if (In.WriteTillEl(Data,true) == true && Data.length() <= 2)
460 break;
461 }
462 while ((Last = Owner->Go(false,this)) == true);
463 if (Last == false)
464 return false;
465 return !_error->PendingError();
466 }
467
468 // Transfer the block
469 In.Limit(Len);
470 while (Owner->Go(true,this) == true)
471 if (In.IsLimit() == true)
472 break;
473
474 // Error
475 if (In.IsLimit() == false)
476 return false;
477
478 // The server sends an extra new line before the next block specifier..
479 In.Limit(-1);
480 Last = true;
481 do
482 {
483 if (In.WriteTillEl(Data,true) == true)
484 break;
485 }
486 while ((Last = Owner->Go(false,this)) == true);
487 if (Last == false)
488 return false;
489 }
490 }
491 else
492 {
493 /* Closes encoding is used when the server did not specify a size, the
494 loss of the connection means we are done */
495 if (Encoding == Closes)
496 In.Limit(-1);
497 else
498 In.Limit(Size - StartPos);
499
500 // Just transfer the whole block.
501 do
502 {
503 if (In.IsLimit() == false)
504 continue;
505
506 In.Limit(-1);
507 return !_error->PendingError();
508 }
509 while (Owner->Go(true,this) == true);
510 }
511
512 return Owner->Flush(this) && !_error->PendingError();
513 }
514 /*}}}*/
515 // ServerState::HeaderLine - Process a header line /*{{{*/
516 // ---------------------------------------------------------------------
517 /* */
518 bool ServerState::HeaderLine(string Line)
519 {
520 if (Line.empty() == true)
521 return true;
522
523 // The http server might be trying to do something evil.
524 if (Line.length() >= MAXLEN)
525 return _error->Error(_("Got a single header line over %u chars"),MAXLEN);
526
527 string::size_type Pos = Line.find(' ');
528 if (Pos == string::npos || Pos+1 > Line.length())
529 {
530 // Blah, some servers use "connection:closes", evil.
531 Pos = Line.find(':');
532 if (Pos == string::npos || Pos + 2 > Line.length())
533 return _error->Error(_("Bad header line"));
534 Pos++;
535 }
536
537 // Parse off any trailing spaces between the : and the next word.
538 string::size_type Pos2 = Pos;
539 while (Pos2 < Line.length() && isspace(Line[Pos2]) != 0)
540 Pos2++;
541
542 string Tag = string(Line,0,Pos);
543 string Val = string(Line,Pos2);
544
545 if (stringcasecmp(Tag.c_str(),Tag.c_str()+4,"HTTP") == 0)
546 {
547 // Evil servers return no version
548 if (Line[4] == '/')
549 {
550 if (sscanf(Line.c_str(),"HTTP/%u.%u %u %[^\n]",&Major,&Minor,
551 &Result,Code) != 4)
552 return _error->Error(_("The HTTP server sent an invalid reply header"));
553 }
554 else
555 {
556 Major = 0;
557 Minor = 9;
558 if (sscanf(Line.c_str(),"HTTP %u %[^\n]",&Result,Code) != 2)
559 return _error->Error(_("The HTTP server sent an invalid reply header"));
560 }
561
562 /* Check the HTTP response header to get the default persistance
563 state. */
564 if (Major < 1)
565 Persistent = false;
566 else
567 {
568 if (Major == 1 && Minor <= 0)
569 Persistent = false;
570 else
571 Persistent = true;
572 }
573
574 return true;
575 }
576
577 if (stringcasecmp(Tag,"Content-Length:") == 0)
578 {
579 if (Encoding == Closes)
580 Encoding = Stream;
581 HaveContent = true;
582
583 // The length is already set from the Content-Range header
584 if (StartPos != 0)
585 return true;
586
587 if (sscanf(Val.c_str(),"%lu",&Size) != 1)
588 return _error->Error(_("The HTTP server sent an invalid Content-Length header"));
589 return true;
590 }
591
592 if (stringcasecmp(Tag,"Content-Type:") == 0)
593 {
594 HaveContent = true;
595 return true;
596 }
597
598 if (stringcasecmp(Tag,"Content-Range:") == 0)
599 {
600 HaveContent = true;
601
602 if (sscanf(Val.c_str(),"bytes %lu-%*u/%lu",&StartPos,&Size) != 2)
603 return _error->Error(_("The HTTP server sent an invalid Content-Range header"));
604 if ((unsigned)StartPos > Size)
605 return _error->Error(_("This HTTP server has broken range support"));
606 return true;
607 }
608
609 if (stringcasecmp(Tag,"Transfer-Encoding:") == 0)
610 {
611 HaveContent = true;
612 if (stringcasecmp(Val,"chunked") == 0)
613 Encoding = Chunked;
614 return true;
615 }
616
617 if (stringcasecmp(Tag,"Connection:") == 0)
618 {
619 if (stringcasecmp(Val,"close") == 0)
620 Persistent = false;
621 if (stringcasecmp(Val,"keep-alive") == 0)
622 Persistent = true;
623 return true;
624 }
625
626 if (stringcasecmp(Tag,"Last-Modified:") == 0)
627 {
628 if (StrToTime(Val,Date) == false)
629 return _error->Error(_("Unknown date format"));
630 return true;
631 }
632
633 return true;
634 }
635 /*}}}*/
636
637 // HttpMethod::SendReq - Send the HTTP request /*{{{*/
638 // ---------------------------------------------------------------------
639 /* This places the http request in the outbound buffer */
640 void HttpMethod::SendReq(FetchItem *Itm,CircleBuf &Out)
641 {
642 URI Uri = Itm->Uri;
643
644 // The HTTP server expects a hostname with a trailing :port
645 char Buf[1000];
646 string ProperHost = Uri.Host;
647 if (Uri.Port != 0)
648 {
649 sprintf(Buf,":%u",Uri.Port);
650 ProperHost += Buf;
651 }
652
653 // Just in case.
654 if (Itm->Uri.length() >= sizeof(Buf))
655 abort();
656
657 /* Build the request. We include a keep-alive header only for non-proxy
658 requests. This is to tweak old http/1.0 servers that do support keep-alive
659 but not HTTP/1.1 automatic keep-alive. Doing this with a proxy server
660 will glitch HTTP/1.0 proxies because they do not filter it out and
661 pass it on, HTTP/1.1 says the connection should default to keep alive
662 and we expect the proxy to do this */
663 if (Proxy.empty() == true || Proxy.Host.empty())
664 sprintf(Buf,"GET %s HTTP/1.1\r\nHost: %s\r\nConnection: keep-alive\r\n",
665 QuoteString(Uri.Path,"~").c_str(),ProperHost.c_str());
666 else
667 {
668 /* Generate a cache control header if necessary. We place a max
669 cache age on index files, optionally set a no-cache directive
670 and a no-store directive for archives. */
671 sprintf(Buf,"GET %s HTTP/1.1\r\nHost: %s\r\n",
672 Itm->Uri.c_str(),ProperHost.c_str());
673 // only generate a cache control header if we actually want to
674 // use a cache
675 if (_config->FindB("Acquire::http::No-Cache",false) == false)
676 {
677 if (Itm->IndexFile == true)
678 sprintf(Buf+strlen(Buf),"Cache-Control: max-age=%u\r\n",
679 _config->FindI("Acquire::http::Max-Age",0));
680 else
681 {
682 if (_config->FindB("Acquire::http::No-Store",false) == true)
683 strcat(Buf,"Cache-Control: no-store\r\n");
684 }
685 }
686 }
687 // generate a no-cache header if needed
688 if (_config->FindB("Acquire::http::No-Cache",false) == true)
689 strcat(Buf,"Cache-Control: no-cache\r\nPragma: no-cache\r\n");
690
691
692 string Req = Buf;
693
694 // Check for a partial file
695 struct stat SBuf;
696 if (stat(Itm->DestFile.c_str(),&SBuf) >= 0 && SBuf.st_size > 0)
697 {
698 // In this case we send an if-range query with a range header
699 sprintf(Buf,"Range: bytes=%li-\r\nIf-Range: %s\r\n",(long)SBuf.st_size - 1,
700 TimeRFC1123(SBuf.st_mtime).c_str());
701 Req += Buf;
702 }
703 else
704 {
705 if (Itm->LastModified != 0)
706 {
707 sprintf(Buf,"If-Modified-Since: %s\r\n",TimeRFC1123(Itm->LastModified).c_str());
708 Req += Buf;
709 }
710 }
711
712 if (Proxy.User.empty() == false || Proxy.Password.empty() == false)
713 Req += string("Proxy-Authorization: Basic ") +
714 Base64Encode(Proxy.User + ":" + Proxy.Password) + "\r\n";
715
716 if (Uri.User.empty() == false || Uri.Password.empty() == false)
717 Req += string("Authorization: Basic ") +
718 Base64Encode(Uri.User + ":" + Uri.Password) + "\r\n";
719
720 Req += "User-Agent: Debian APT-HTTP/1.3\r\n\r\n";
721
722 if (Debug == true)
723 cerr << Req << endl;
724
725 Out.Read(Req);
726 }
727 /*}}}*/
728 // HttpMethod::Go - Run a single loop /*{{{*/
729 // ---------------------------------------------------------------------
730 /* This runs the select loop over the server FDs, Output file FDs and
731 stdin. */
732 bool HttpMethod::Go(bool ToFile,ServerState *Srv)
733 {
734 // Server has closed the connection
735 if (Srv->ServerFd == -1 && (Srv->In.WriteSpace() == false ||
736 ToFile == false))
737 return false;
738
739 fd_set rfds,wfds;
740 FD_ZERO(&rfds);
741 FD_ZERO(&wfds);
742
743 /* Add the server. We only send more requests if the connection will
744 be persisting */
745 if (Srv->Out.WriteSpace() == true && Srv->ServerFd != -1
746 && Srv->Persistent == true)
747 FD_SET(Srv->ServerFd,&wfds);
748 if (Srv->In.ReadSpace() == true && Srv->ServerFd != -1)
749 FD_SET(Srv->ServerFd,&rfds);
750
751 // Add the file
752 int FileFD = -1;
753 if (File != 0)
754 FileFD = File->Fd();
755
756 if (Srv->In.WriteSpace() == true && ToFile == true && FileFD != -1)
757 FD_SET(FileFD,&wfds);
758
759 // Add stdin
760 FD_SET(STDIN_FILENO,&rfds);
761
762 // Figure out the max fd
763 int MaxFd = FileFD;
764 if (MaxFd < Srv->ServerFd)
765 MaxFd = Srv->ServerFd;
766
767 // Select
768 struct timeval tv;
769 tv.tv_sec = TimeOut;
770 tv.tv_usec = 0;
771 int Res = 0;
772 if ((Res = select(MaxFd+1,&rfds,&wfds,0,&tv)) < 0)
773 {
774 if (errno == EINTR)
775 return true;
776 return _error->Errno("select",_("Select failed"));
777 }
778
779 if (Res == 0)
780 {
781 _error->Error(_("Connection timed out"));
782 return ServerDie(Srv);
783 }
784
785 // Handle server IO
786 if (Srv->ServerFd != -1 && FD_ISSET(Srv->ServerFd,&rfds))
787 {
788 errno = 0;
789 if (Srv->In.Read(Srv->ServerFd) == false)
790 return ServerDie(Srv);
791 }
792
793 if (Srv->ServerFd != -1 && FD_ISSET(Srv->ServerFd,&wfds))
794 {
795 errno = 0;
796 if (Srv->Out.Write(Srv->ServerFd) == false)
797 return ServerDie(Srv);
798 }
799
800 // Send data to the file
801 if (FileFD != -1 && FD_ISSET(FileFD,&wfds))
802 {
803 if (Srv->In.Write(FileFD) == false)
804 return _error->Errno("write",_("Error writing to output file"));
805 }
806
807 // Handle commands from APT
808 if (FD_ISSET(STDIN_FILENO,&rfds))
809 {
810 if (Run(true) != -1)
811 exit(100);
812 }
813
814 return true;
815 }
816 /*}}}*/
817 // HttpMethod::Flush - Dump the buffer into the file /*{{{*/
818 // ---------------------------------------------------------------------
819 /* This takes the current input buffer from the Server FD and writes it
820 into the file */
821 bool HttpMethod::Flush(ServerState *Srv)
822 {
823 if (File != 0)
824 {
825 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
826 // can't be set
827 if (File->Name() != "/dev/null")
828 SetNonBlock(File->Fd(),false);
829 if (Srv->In.WriteSpace() == false)
830 return true;
831
832 while (Srv->In.WriteSpace() == true)
833 {
834 if (Srv->In.Write(File->Fd()) == false)
835 return _error->Errno("write",_("Error writing to file"));
836 if (Srv->In.IsLimit() == true)
837 return true;
838 }
839
840 if (Srv->In.IsLimit() == true || Srv->Encoding == ServerState::Closes)
841 return true;
842 }
843 return false;
844 }
845 /*}}}*/
846 // HttpMethod::ServerDie - The server has closed the connection. /*{{{*/
847 // ---------------------------------------------------------------------
848 /* */
849 bool HttpMethod::ServerDie(ServerState *Srv)
850 {
851 unsigned int LErrno = errno;
852
853 // Dump the buffer to the file
854 if (Srv->State == ServerState::Data)
855 {
856 // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking
857 // can't be set
858 if (File->Name() != "/dev/null")
859 SetNonBlock(File->Fd(),false);
860 while (Srv->In.WriteSpace() == true)
861 {
862 if (Srv->In.Write(File->Fd()) == false)
863 return _error->Errno("write",_("Error writing to the file"));
864
865 // Done
866 if (Srv->In.IsLimit() == true)
867 return true;
868 }
869 }
870
871 // See if this is because the server finished the data stream
872 if (Srv->In.IsLimit() == false && Srv->State != ServerState::Header &&
873 Srv->Encoding != ServerState::Closes)
874 {
875 Srv->Close();
876 if (LErrno == 0)
877 return _error->Error(_("Error reading from server. Remote end closed connection"));
878 errno = LErrno;
879 return _error->Errno("read",_("Error reading from server"));
880 }
881 else
882 {
883 Srv->In.Limit(-1);
884
885 // Nothing left in the buffer
886 if (Srv->In.WriteSpace() == false)
887 return false;
888
889 // We may have got multiple responses back in one packet..
890 Srv->Close();
891 return true;
892 }
893
894 return false;
895 }
896 /*}}}*/
897 // HttpMethod::DealWithHeaders - Handle the retrieved header data /*{{{*/
898 // ---------------------------------------------------------------------
899 /* We look at the header data we got back from the server and decide what
900 to do. Returns
901 0 - File is open,
902 1 - IMS hit
903 3 - Unrecoverable error
904 4 - Error with error content page
905 5 - Unrecoverable non-server error (close the connection) */
906 int HttpMethod::DealWithHeaders(FetchResult &Res,ServerState *Srv)
907 {
908 // Not Modified
909 if (Srv->Result == 304)
910 {
911 unlink(Queue->DestFile.c_str());
912 Res.IMSHit = true;
913 Res.LastModified = Queue->LastModified;
914 return 1;
915 }
916
917 /* We have a reply we dont handle. This should indicate a perm server
918 failure */
919 if (Srv->Result < 200 || Srv->Result >= 300)
920 {
921 _error->Error("%u %s",Srv->Result,Srv->Code);
922 if (Srv->HaveContent == true)
923 return 4;
924 return 3;
925 }
926
927 // This is some sort of 2xx 'data follows' reply
928 Res.LastModified = Srv->Date;
929 Res.Size = Srv->Size;
930
931 // Open the file
932 delete File;
933 File = new FileFd(Queue->DestFile,FileFd::WriteAny);
934 if (_error->PendingError() == true)
935 return 5;
936
937 FailFile = Queue->DestFile;
938 FailFile.c_str(); // Make sure we dont do a malloc in the signal handler
939 FailFd = File->Fd();
940 FailTime = Srv->Date;
941
942 // Set the expected size
943 if (Srv->StartPos >= 0)
944 {
945 Res.ResumePoint = Srv->StartPos;
946 ftruncate(File->Fd(),Srv->StartPos);
947 }
948
949 // Set the start point
950 lseek(File->Fd(),0,SEEK_END);
951
952 delete Srv->In.Hash;
953 Srv->In.Hash = new Hashes;
954
955 // Fill the Hash if the file is non-empty (resume)
956 if (Srv->StartPos > 0)
957 {
958 lseek(File->Fd(),0,SEEK_SET);
959 if (Srv->In.Hash->AddFD(File->Fd(),Srv->StartPos) == false)
960 {
961 _error->Errno("read",_("Problem hashing file"));
962 return 5;
963 }
964 lseek(File->Fd(),0,SEEK_END);
965 }
966
967 SetNonBlock(File->Fd(),true);
968 return 0;
969 }
970 /*}}}*/
971 // HttpMethod::SigTerm - Handle a fatal signal /*{{{*/
972 // ---------------------------------------------------------------------
973 /* This closes and timestamps the open file. This is neccessary to get
974 resume behavoir on user abort */
975 void HttpMethod::SigTerm(int)
976 {
977 if (FailFd == -1)
978 _exit(100);
979 close(FailFd);
980
981 // Timestamp
982 struct utimbuf UBuf;
983 UBuf.actime = FailTime;
984 UBuf.modtime = FailTime;
985 utime(FailFile.c_str(),&UBuf);
986
987 _exit(100);
988 }
989 /*}}}*/
990 // HttpMethod::Fetch - Fetch an item /*{{{*/
991 // ---------------------------------------------------------------------
992 /* This adds an item to the pipeline. We keep the pipeline at a fixed
993 depth. */
994 bool HttpMethod::Fetch(FetchItem *)
995 {
996 if (Server == 0)
997 return true;
998
999 // Queue the requests
1000 int Depth = -1;
1001 bool Tail = false;
1002 for (FetchItem *I = Queue; I != 0 && Depth < (signed)PipelineDepth;
1003 I = I->Next, Depth++)
1004 {
1005 // If pipelining is disabled, we only queue 1 request
1006 if (Server->Pipeline == false && Depth >= 0)
1007 break;
1008
1009 // Make sure we stick with the same server
1010 if (Server->Comp(I->Uri) == false)
1011 break;
1012 if (QueueBack == I)
1013 Tail = true;
1014 if (Tail == true)
1015 {
1016 QueueBack = I->Next;
1017 SendReq(I,Server->Out);
1018 continue;
1019 }
1020 }
1021
1022 return true;
1023 };
1024 /*}}}*/
1025 // HttpMethod::Configuration - Handle a configuration message /*{{{*/
1026 // ---------------------------------------------------------------------
1027 /* We stash the desired pipeline depth */
1028 bool HttpMethod::Configuration(string Message)
1029 {
1030 if (pkgAcqMethod::Configuration(Message) == false)
1031 return false;
1032
1033 TimeOut = _config->FindI("Acquire::http::Timeout",TimeOut);
1034 PipelineDepth = _config->FindI("Acquire::http::Pipeline-Depth",
1035 PipelineDepth);
1036 Debug = _config->FindB("Debug::Acquire::http",false);
1037
1038 return true;
1039 }
1040 /*}}}*/
1041 // HttpMethod::Loop - Main loop /*{{{*/
1042 // ---------------------------------------------------------------------
1043 /* */
1044 int HttpMethod::Loop()
1045 {
1046 signal(SIGTERM,SigTerm);
1047 signal(SIGINT,SigTerm);
1048
1049 Server = 0;
1050
1051 int FailCounter = 0;
1052 while (1)
1053 {
1054 // We have no commands, wait for some to arrive
1055 if (Queue == 0)
1056 {
1057 if (WaitFd(STDIN_FILENO) == false)
1058 return 0;
1059 }
1060
1061 /* Run messages, we can accept 0 (no message) if we didn't
1062 do a WaitFd above.. Otherwise the FD is closed. */
1063 int Result = Run(true);
1064 if (Result != -1 && (Result != 0 || Queue == 0))
1065 return 100;
1066
1067 if (Queue == 0)
1068 continue;
1069
1070 // Connect to the server
1071 if (Server == 0 || Server->Comp(Queue->Uri) == false)
1072 {
1073 delete Server;
1074 Server = new ServerState(Queue->Uri,this);
1075 }
1076
1077 /* If the server has explicitly said this is the last connection
1078 then we pre-emptively shut down the pipeline and tear down
1079 the connection. This will speed up HTTP/1.0 servers a tad
1080 since we don't have to wait for the close sequence to
1081 complete */
1082 if (Server->Persistent == false)
1083 Server->Close();
1084
1085 // Reset the pipeline
1086 if (Server->ServerFd == -1)
1087 QueueBack = Queue;
1088
1089 // Connnect to the host
1090 if (Server->Open() == false)
1091 {
1092 Fail(true);
1093 delete Server;
1094 Server = 0;
1095 continue;
1096 }
1097
1098 // Fill the pipeline.
1099 Fetch(0);
1100
1101 // Fetch the next URL header data from the server.
1102 switch (Server->RunHeaders())
1103 {
1104 case 0:
1105 break;
1106
1107 // The header data is bad
1108 case 2:
1109 {
1110 _error->Error(_("Bad header data"));
1111 Fail(true);
1112 RotateDNS();
1113 continue;
1114 }
1115
1116 // The server closed a connection during the header get..
1117 default:
1118 case 1:
1119 {
1120 FailCounter++;
1121 _error->Discard();
1122 Server->Close();
1123 Server->Pipeline = false;
1124
1125 if (FailCounter >= 2)
1126 {
1127 Fail(_("Connection failed"),true);
1128 FailCounter = 0;
1129 }
1130
1131 RotateDNS();
1132 continue;
1133 }
1134 };
1135
1136 // Decide what to do.
1137 FetchResult Res;
1138 Res.Filename = Queue->DestFile;
1139 switch (DealWithHeaders(Res,Server))
1140 {
1141 // Ok, the file is Open
1142 case 0:
1143 {
1144 URIStart(Res);
1145
1146 // Run the data
1147 bool Result = Server->RunData();
1148
1149 /* If the server is sending back sizeless responses then fill in
1150 the size now */
1151 if (Res.Size == 0)
1152 Res.Size = File->Size();
1153
1154 // Close the file, destroy the FD object and timestamp it
1155 FailFd = -1;
1156 delete File;
1157 File = 0;
1158
1159 // Timestamp
1160 struct utimbuf UBuf;
1161 time(&UBuf.actime);
1162 UBuf.actime = Server->Date;
1163 UBuf.modtime = Server->Date;
1164 utime(Queue->DestFile.c_str(),&UBuf);
1165
1166 // Send status to APT
1167 if (Result == true)
1168 {
1169 Res.TakeHashes(*Server->In.Hash);
1170 URIDone(Res);
1171 }
1172 else
1173 Fail(true);
1174
1175 break;
1176 }
1177
1178 // IMS hit
1179 case 1:
1180 {
1181 URIDone(Res);
1182 break;
1183 }
1184
1185 // Hard server error, not found or something
1186 case 3:
1187 {
1188 Fail();
1189 break;
1190 }
1191
1192 // Hard internal error, kill the connection and fail
1193 case 5:
1194 {
1195 delete File;
1196 File = 0;
1197
1198 Fail();
1199 RotateDNS();
1200 Server->Close();
1201 break;
1202 }
1203
1204 // We need to flush the data, the header is like a 404 w/ error text
1205 case 4:
1206 {
1207 Fail();
1208
1209 // Send to content to dev/null
1210 File = new FileFd("/dev/null",FileFd::WriteExists);
1211 Server->RunData();
1212 delete File;
1213 File = 0;
1214 break;
1215 }
1216
1217 default:
1218 Fail(_("Internal error"));
1219 break;
1220 }
1221
1222 FailCounter = 0;
1223 }
1224
1225 return 0;
1226 }
1227 /*}}}*/
1228
1229 int main()
1230 {
1231 struct nlist nl[2];
1232 memset(nl, 0, sizeof(nl));
1233 nl[0].n_un.n_name = "_useMDNSResponder";
1234 nlist("/usr/lib/libc.dylib", nl);
1235 if (nl[0].n_type != N_UNDF)
1236 *(int *) nl[0].n_value = 0;
1237
1238 setlocale(LC_ALL, "");
1239
1240 HttpMethod Mth;
1241
1242 return Mth.Loop();
1243 }
1244
1245