http.cc 34 KB

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