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