]>
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 | ||
1e3f4083 | 6 | HTTP Acquire Method - This is the HTTP acquire 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> |
453b82a3 | 36 | #include <apt-pkg/strutl.h> |
c6ee61ea | 37 | #include <apt-pkg/proxy.h> |
be4401bf | 38 | |
453b82a3 DK |
39 | #include <stddef.h> |
40 | #include <stdlib.h> | |
41 | #include <sys/select.h> | |
42 | #include <cstring> | |
be4401bf AL |
43 | #include <sys/stat.h> |
44 | #include <sys/time.h> | |
be4401bf AL |
45 | #include <unistd.h> |
46 | #include <stdio.h> | |
65a1e968 | 47 | #include <errno.h> |
42195eb2 | 48 | #include <iostream> |
b123b0ba | 49 | #include <sstream> |
be4401bf | 50 | |
59b46c41 | 51 | #include "config.h" |
0837bd25 | 52 | #include "connect.h" |
be4401bf | 53 | #include "http.h" |
ea542140 DK |
54 | |
55 | #include <apti18n.h> | |
be4401bf | 56 | /*}}}*/ |
42195eb2 | 57 | using namespace std; |
be4401bf | 58 | |
650faab0 DK |
59 | unsigned long long CircleBuf::BwReadLimit=0; |
60 | unsigned long long CircleBuf::BwTickReadData=0; | |
7c6e2dc7 MV |
61 | struct timeval CircleBuf::BwReadTick={0,0}; |
62 | const unsigned int CircleBuf::BW_HZ=10; | |
d3e8fbb3 | 63 | |
be4401bf AL |
64 | // CircleBuf::CircleBuf - Circular input buffer /*{{{*/ |
65 | // --------------------------------------------------------------------- | |
66 | /* */ | |
9224ce3d DK |
67 | CircleBuf::CircleBuf(unsigned long long Size) |
68 | : Size(Size), Hash(NULL), TotalWriten(0) | |
be4401bf AL |
69 | { |
70 | Buf = new unsigned char[Size]; | |
71 | Reset(); | |
7c6e2dc7 MV |
72 | |
73 | CircleBuf::BwReadLimit = _config->FindI("Acquire::http::Dl-Limit",0)*1024; | |
be4401bf AL |
74 | } |
75 | /*}}}*/ | |
76 | // CircleBuf::Reset - Reset to the default state /*{{{*/ | |
77 | // --------------------------------------------------------------------- | |
78 | /* */ | |
79 | void CircleBuf::Reset() | |
80 | { | |
81 | InP = 0; | |
82 | OutP = 0; | |
83 | StrPos = 0; | |
dcd5856b | 84 | TotalWriten = 0; |
650faab0 | 85 | MaxGet = (unsigned long long)-1; |
be4401bf | 86 | OutQueue = string(); |
9224ce3d | 87 | if (Hash != NULL) |
be4401bf | 88 | { |
63b1700f | 89 | delete Hash; |
9224ce3d | 90 | Hash = NULL; |
d3e8fbb3 DK |
91 | } |
92 | } | |
be4401bf AL |
93 | /*}}}*/ |
94 | // CircleBuf::Read - Read from a FD into the circular buffer /*{{{*/ | |
95 | // --------------------------------------------------------------------- | |
96 | /* This fills up the buffer with as much data as is in the FD, assuming it | |
97 | is non-blocking.. */ | |
98 | bool CircleBuf::Read(int Fd) | |
99 | { | |
100 | while (1) | |
101 | { | |
102 | // Woops, buffer is full | |
103 | if (InP - OutP == Size) | |
104 | return true; | |
7c6e2dc7 MV |
105 | |
106 | // what's left to read in this tick | |
9ce3cfc9 | 107 | unsigned long long const BwReadMax = CircleBuf::BwReadLimit/BW_HZ; |
7c6e2dc7 MV |
108 | |
109 | if(CircleBuf::BwReadLimit) { | |
110 | struct timeval now; | |
111 | gettimeofday(&now,0); | |
112 | ||
650faab0 | 113 | unsigned long long d = (now.tv_sec-CircleBuf::BwReadTick.tv_sec)*1000000 + |
7c6e2dc7 MV |
114 | now.tv_usec-CircleBuf::BwReadTick.tv_usec; |
115 | if(d > 1000000/BW_HZ) { | |
116 | CircleBuf::BwReadTick = now; | |
117 | CircleBuf::BwTickReadData = 0; | |
118 | } | |
119 | ||
120 | if(CircleBuf::BwTickReadData >= BwReadMax) { | |
121 | usleep(1000000/BW_HZ); | |
122 | return true; | |
123 | } | |
124 | } | |
125 | ||
be4401bf | 126 | // Write the buffer segment |
650faab0 | 127 | ssize_t Res; |
7c6e2dc7 MV |
128 | if(CircleBuf::BwReadLimit) { |
129 | Res = read(Fd,Buf + (InP%Size), | |
130 | BwReadMax > LeftRead() ? LeftRead() : BwReadMax); | |
131 | } else | |
132 | Res = read(Fd,Buf + (InP%Size),LeftRead()); | |
be4401bf | 133 | |
7c6e2dc7 MV |
134 | if(Res > 0 && BwReadLimit > 0) |
135 | CircleBuf::BwTickReadData += Res; | |
136 | ||
be4401bf AL |
137 | if (Res == 0) |
138 | return false; | |
139 | if (Res < 0) | |
140 | { | |
141 | if (errno == EAGAIN) | |
142 | return true; | |
143 | return false; | |
144 | } | |
145 | ||
146 | if (InP == 0) | |
147 | gettimeofday(&Start,0); | |
148 | InP += Res; | |
149 | } | |
150 | } | |
151 | /*}}}*/ | |
152 | // CircleBuf::Read - Put the string into the buffer /*{{{*/ | |
153 | // --------------------------------------------------------------------- | |
154 | /* This will hold the string in and fill the buffer with it as it empties */ | |
155 | bool CircleBuf::Read(string Data) | |
156 | { | |
157 | OutQueue += Data; | |
158 | FillOut(); | |
159 | return true; | |
160 | } | |
161 | /*}}}*/ | |
162 | // CircleBuf::FillOut - Fill the buffer from the output queue /*{{{*/ | |
163 | // --------------------------------------------------------------------- | |
164 | /* */ | |
165 | void CircleBuf::FillOut() | |
166 | { | |
167 | if (OutQueue.empty() == true) | |
168 | return; | |
169 | while (1) | |
170 | { | |
171 | // Woops, buffer is full | |
172 | if (InP - OutP == Size) | |
173 | return; | |
174 | ||
175 | // Write the buffer segment | |
650faab0 | 176 | unsigned long long Sz = LeftRead(); |
be4401bf AL |
177 | if (OutQueue.length() - StrPos < Sz) |
178 | Sz = OutQueue.length() - StrPos; | |
42195eb2 | 179 | memcpy(Buf + (InP%Size),OutQueue.c_str() + StrPos,Sz); |
be4401bf AL |
180 | |
181 | // Advance | |
182 | StrPos += Sz; | |
183 | InP += Sz; | |
184 | if (OutQueue.length() == StrPos) | |
185 | { | |
186 | StrPos = 0; | |
187 | OutQueue = ""; | |
188 | return; | |
189 | } | |
190 | } | |
191 | } | |
192 | /*}}}*/ | |
193 | // CircleBuf::Write - Write from the buffer into a FD /*{{{*/ | |
194 | // --------------------------------------------------------------------- | |
195 | /* This empties the buffer into the FD. */ | |
196 | bool CircleBuf::Write(int Fd) | |
197 | { | |
198 | while (1) | |
199 | { | |
200 | FillOut(); | |
201 | ||
202 | // Woops, buffer is empty | |
203 | if (OutP == InP) | |
204 | return true; | |
205 | ||
206 | if (OutP == MaxGet) | |
207 | return true; | |
208 | ||
209 | // Write the buffer segment | |
650faab0 | 210 | ssize_t Res; |
be4401bf AL |
211 | Res = write(Fd,Buf + (OutP%Size),LeftWrite()); |
212 | ||
213 | if (Res == 0) | |
214 | return false; | |
215 | if (Res < 0) | |
216 | { | |
217 | if (errno == EAGAIN) | |
218 | return true; | |
219 | ||
220 | return false; | |
221 | } | |
dcd5856b MV |
222 | |
223 | TotalWriten += Res; | |
be4401bf | 224 | |
9224ce3d | 225 | if (Hash != NULL) |
63b1700f | 226 | Hash->Add(Buf + (OutP%Size),Res); |
be4401bf AL |
227 | |
228 | OutP += Res; | |
229 | } | |
230 | } | |
231 | /*}}}*/ | |
232 | // CircleBuf::WriteTillEl - Write from the buffer to a string /*{{{*/ | |
233 | // --------------------------------------------------------------------- | |
234 | /* This copies till the first empty line */ | |
235 | bool CircleBuf::WriteTillEl(string &Data,bool Single) | |
236 | { | |
237 | // We cheat and assume it is unneeded to have more than one buffer load | |
650faab0 | 238 | for (unsigned long long I = OutP; I < InP; I++) |
be4401bf AL |
239 | { |
240 | if (Buf[I%Size] != '\n') | |
241 | continue; | |
2cbcabd8 | 242 | ++I; |
be4401bf AL |
243 | |
244 | if (Single == false) | |
245 | { | |
2cbcabd8 AL |
246 | if (I < InP && Buf[I%Size] == '\r') |
247 | ++I; | |
927c393f MV |
248 | if (I >= InP || Buf[I%Size] != '\n') |
249 | continue; | |
250 | ++I; | |
be4401bf AL |
251 | } |
252 | ||
be4401bf AL |
253 | Data = ""; |
254 | while (OutP < I) | |
255 | { | |
650faab0 | 256 | unsigned long long Sz = LeftWrite(); |
be4401bf AL |
257 | if (Sz == 0) |
258 | return false; | |
927c393f | 259 | if (I - OutP < Sz) |
be4401bf AL |
260 | Sz = I - OutP; |
261 | Data += string((char *)(Buf + (OutP%Size)),Sz); | |
262 | OutP += Sz; | |
263 | } | |
264 | return true; | |
265 | } | |
266 | return false; | |
267 | } | |
268 | /*}}}*/ | |
269 | // CircleBuf::Stats - Print out stats information /*{{{*/ | |
270 | // --------------------------------------------------------------------- | |
271 | /* */ | |
272 | void CircleBuf::Stats() | |
273 | { | |
274 | if (InP == 0) | |
275 | return; | |
276 | ||
277 | struct timeval Stop; | |
278 | gettimeofday(&Stop,0); | |
279 | /* float Diff = Stop.tv_sec - Start.tv_sec + | |
280 | (float)(Stop.tv_usec - Start.tv_usec)/1000000; | |
281 | clog << "Got " << InP << " in " << Diff << " at " << InP/Diff << endl;*/ | |
282 | } | |
283 | /*}}}*/ | |
472ff00e DK |
284 | CircleBuf::~CircleBuf() |
285 | { | |
286 | delete [] Buf; | |
287 | delete Hash; | |
288 | } | |
be4401bf | 289 | |
7330f4df DK |
290 | // HttpServerState::HttpServerState - Constructor /*{{{*/ |
291 | HttpServerState::HttpServerState(URI Srv,HttpMethod *Owner) : ServerState(Srv, Owner), In(64*1024), Out(4*1024) | |
be4401bf | 292 | { |
7330f4df | 293 | TimeOut = _config->FindI("Acquire::http::Timeout",TimeOut); |
be4401bf AL |
294 | Reset(); |
295 | } | |
296 | /*}}}*/ | |
7330f4df | 297 | // HttpServerState::Open - Open a connection to the server /*{{{*/ |
be4401bf AL |
298 | // --------------------------------------------------------------------- |
299 | /* This opens a connection to the server. */ | |
7330f4df | 300 | bool HttpServerState::Open() |
be4401bf | 301 | { |
92e889c8 AL |
302 | // Use the already open connection if possible. |
303 | if (ServerFd != -1) | |
304 | return true; | |
305 | ||
be4401bf | 306 | Close(); |
492f957a AL |
307 | In.Reset(); |
308 | Out.Reset(); | |
e836f356 AL |
309 | Persistent = true; |
310 | ||
492f957a | 311 | // Determine the proxy setting |
c6ee61ea | 312 | AutoDetectProxy(ServerName); |
788a8f42 EL |
313 | string SpecificProxy = _config->Find("Acquire::http::Proxy::" + ServerName.Host); |
314 | if (!SpecificProxy.empty()) | |
492f957a | 315 | { |
788a8f42 EL |
316 | if (SpecificProxy == "DIRECT") |
317 | Proxy = ""; | |
318 | else | |
319 | Proxy = SpecificProxy; | |
352c2768 | 320 | } |
492f957a | 321 | else |
788a8f42 EL |
322 | { |
323 | string DefProxy = _config->Find("Acquire::http::Proxy"); | |
324 | if (!DefProxy.empty()) | |
325 | { | |
326 | Proxy = DefProxy; | |
327 | } | |
328 | else | |
329 | { | |
330 | char* result = getenv("http_proxy"); | |
331 | Proxy = result ? result : ""; | |
332 | } | |
333 | } | |
352c2768 | 334 | |
f8081133 | 335 | // Parse no_proxy, a , separated list of domains |
9e2a06ff AL |
336 | if (getenv("no_proxy") != 0) |
337 | { | |
f8081133 AL |
338 | if (CheckDomainList(ServerName.Host,getenv("no_proxy")) == true) |
339 | Proxy = ""; | |
340 | } | |
341 | ||
492f957a | 342 | // Determine what host and port to use based on the proxy settings |
934b6582 | 343 | int Port = 0; |
492f957a | 344 | string Host; |
dd1fd92b | 345 | if (Proxy.empty() == true || Proxy.Host.empty() == true) |
be4401bf | 346 | { |
92e889c8 AL |
347 | if (ServerName.Port != 0) |
348 | Port = ServerName.Port; | |
be4401bf AL |
349 | Host = ServerName.Host; |
350 | } | |
351 | else | |
352 | { | |
92e889c8 AL |
353 | if (Proxy.Port != 0) |
354 | Port = Proxy.Port; | |
be4401bf AL |
355 | Host = Proxy.Host; |
356 | } | |
357 | ||
0837bd25 | 358 | // Connect to the remote server |
9505213b | 359 | if (Connect(Host,Port,"http",80,ServerFd,TimeOut,Owner) == false) |
0837bd25 | 360 | return false; |
3000ccea | 361 | |
be4401bf AL |
362 | return true; |
363 | } | |
364 | /*}}}*/ | |
7330f4df | 365 | // HttpServerState::Close - Close a connection to the server /*{{{*/ |
be4401bf AL |
366 | // --------------------------------------------------------------------- |
367 | /* */ | |
7330f4df | 368 | bool HttpServerState::Close() |
be4401bf AL |
369 | { |
370 | close(ServerFd); | |
371 | ServerFd = -1; | |
be4401bf AL |
372 | return true; |
373 | } | |
374 | /*}}}*/ | |
7330f4df DK |
375 | // HttpServerState::RunData - Transfer the data from the socket /*{{{*/ |
376 | bool HttpServerState::RunData(FileFd * const File) | |
be4401bf AL |
377 | { |
378 | State = Data; | |
379 | ||
380 | // Chunked transfer encoding is fun.. | |
381 | if (Encoding == Chunked) | |
382 | { | |
383 | while (1) | |
384 | { | |
385 | // Grab the block size | |
386 | bool Last = true; | |
387 | string Data; | |
388 | In.Limit(-1); | |
389 | do | |
390 | { | |
391 | if (In.WriteTillEl(Data,true) == true) | |
392 | break; | |
393 | } | |
7330f4df | 394 | while ((Last = Go(false, File)) == true); |
be4401bf AL |
395 | |
396 | if (Last == false) | |
397 | return false; | |
398 | ||
399 | // See if we are done | |
650faab0 | 400 | unsigned long long Len = strtoull(Data.c_str(),0,16); |
be4401bf AL |
401 | if (Len == 0) |
402 | { | |
403 | In.Limit(-1); | |
404 | ||
405 | // We have to remove the entity trailer | |
406 | Last = true; | |
407 | do | |
408 | { | |
409 | if (In.WriteTillEl(Data,true) == true && Data.length() <= 2) | |
410 | break; | |
411 | } | |
7330f4df | 412 | while ((Last = Go(false, File)) == true); |
be4401bf AL |
413 | if (Last == false) |
414 | return false; | |
e1b96638 | 415 | return !_error->PendingError(); |
be4401bf AL |
416 | } |
417 | ||
418 | // Transfer the block | |
419 | In.Limit(Len); | |
7330f4df | 420 | while (Go(true, File) == true) |
be4401bf AL |
421 | if (In.IsLimit() == true) |
422 | break; | |
423 | ||
424 | // Error | |
425 | if (In.IsLimit() == false) | |
426 | return false; | |
427 | ||
428 | // The server sends an extra new line before the next block specifier.. | |
429 | In.Limit(-1); | |
430 | Last = true; | |
431 | do | |
432 | { | |
433 | if (In.WriteTillEl(Data,true) == true) | |
434 | break; | |
435 | } | |
7330f4df | 436 | while ((Last = Go(false, File)) == true); |
be4401bf AL |
437 | if (Last == false) |
438 | return false; | |
92e889c8 | 439 | } |
be4401bf AL |
440 | } |
441 | else | |
442 | { | |
443 | /* Closes encoding is used when the server did not specify a size, the | |
444 | loss of the connection means we are done */ | |
117038ba | 445 | if (Persistent == false) |
be4401bf | 446 | In.Limit(-1); |
ed793a19 DK |
447 | else if (JunkSize != 0) |
448 | In.Limit(JunkSize); | |
be4401bf | 449 | else |
ceafe8a6 | 450 | In.Limit(DownloadSize); |
be4401bf AL |
451 | |
452 | // Just transfer the whole block. | |
453 | do | |
454 | { | |
455 | if (In.IsLimit() == false) | |
456 | continue; | |
457 | ||
458 | In.Limit(-1); | |
e1b96638 | 459 | return !_error->PendingError(); |
be4401bf | 460 | } |
7330f4df | 461 | while (Go(true, File) == true); |
be4401bf AL |
462 | } |
463 | ||
7330f4df | 464 | return Owner->Flush() && !_error->PendingError(); |
be4401bf AL |
465 | } |
466 | /*}}}*/ | |
7330f4df | 467 | bool HttpServerState::ReadHeaderLines(std::string &Data) /*{{{*/ |
be4401bf | 468 | { |
7330f4df DK |
469 | return In.WriteTillEl(Data); |
470 | } | |
471 | /*}}}*/ | |
472 | bool HttpServerState::LoadNextResponse(bool const ToFile, FileFd * const File)/*{{{*/ | |
473 | { | |
474 | return Go(ToFile, File); | |
475 | } | |
476 | /*}}}*/ | |
477 | bool HttpServerState::WriteResponse(const std::string &Data) /*{{{*/ | |
478 | { | |
479 | return Out.Read(Data); | |
480 | } | |
481 | /*}}}*/ | |
a02db58f | 482 | APT_PURE bool HttpServerState::IsOpen() /*{{{*/ |
7330f4df DK |
483 | { |
484 | return (ServerFd != -1); | |
485 | } | |
486 | /*}}}*/ | |
34faa8f7 | 487 | bool HttpServerState::InitHashes(HashStringList const &ExpectedHashes) /*{{{*/ |
7330f4df DK |
488 | { |
489 | delete In.Hash; | |
9224ce3d | 490 | In.Hash = new Hashes(ExpectedHashes); |
34faa8f7 | 491 | return true; |
7330f4df DK |
492 | } |
493 | /*}}}*/ | |
34faa8f7 | 494 | |
a02db58f | 495 | APT_PURE Hashes * HttpServerState::GetHashes() /*{{{*/ |
7330f4df DK |
496 | { |
497 | return In.Hash; | |
498 | } | |
499 | /*}}}*/ | |
500 | // HttpServerState::Die - The server has closed the connection. /*{{{*/ | |
501 | bool HttpServerState::Die(FileFd &File) | |
502 | { | |
503 | unsigned int LErrno = errno; | |
be4401bf | 504 | |
7330f4df DK |
505 | // Dump the buffer to the file |
506 | if (State == ServerState::Data) | |
be4401bf | 507 | { |
7330f4df DK |
508 | // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking |
509 | // can't be set | |
510 | if (File.Name() != "/dev/null") | |
511 | SetNonBlock(File.Fd(),false); | |
512 | while (In.WriteSpace() == true) | |
be4401bf | 513 | { |
7330f4df DK |
514 | if (In.Write(File.Fd()) == false) |
515 | return _error->Errno("write",_("Error writing to the file")); | |
e836f356 | 516 | |
7330f4df DK |
517 | // Done |
518 | if (In.IsLimit() == true) | |
519 | return true; | |
e836f356 | 520 | } |
7330f4df | 521 | } |
b2e465d6 | 522 | |
7330f4df DK |
523 | // See if this is because the server finished the data stream |
524 | if (In.IsLimit() == false && State != HttpServerState::Header && | |
117038ba | 525 | Persistent == true) |
be4401bf | 526 | { |
7330f4df DK |
527 | Close(); |
528 | if (LErrno == 0) | |
529 | return _error->Error(_("Error reading from server. Remote end closed connection")); | |
530 | errno = LErrno; | |
531 | return _error->Errno("read",_("Error reading from server")); | |
be4401bf | 532 | } |
7330f4df | 533 | else |
92e889c8 | 534 | { |
7330f4df DK |
535 | In.Limit(-1); |
536 | ||
537 | // Nothing left in the buffer | |
538 | if (In.WriteSpace() == false) | |
539 | return false; | |
540 | ||
541 | // We may have got multiple responses back in one packet.. | |
542 | Close(); | |
92e889c8 AL |
543 | return true; |
544 | } | |
331e8396 | 545 | |
7330f4df DK |
546 | return false; |
547 | } | |
548 | /*}}}*/ | |
549 | // HttpServerState::Flush - Dump the buffer into the file /*{{{*/ | |
550 | // --------------------------------------------------------------------- | |
551 | /* This takes the current input buffer from the Server FD and writes it | |
552 | into the file */ | |
553 | bool HttpServerState::Flush(FileFd * const File) | |
554 | { | |
555 | if (File != NULL) | |
556 | { | |
557 | // on GNU/kFreeBSD, apt dies on /dev/null because non-blocking | |
558 | // can't be set | |
559 | if (File->Name() != "/dev/null") | |
560 | SetNonBlock(File->Fd(),false); | |
561 | if (In.WriteSpace() == false) | |
562 | return true; | |
563 | ||
564 | while (In.WriteSpace() == true) | |
331e8396 | 565 | { |
7330f4df DK |
566 | if (In.Write(File->Fd()) == false) |
567 | return _error->Errno("write",_("Error writing to file")); | |
568 | if (In.IsLimit() == true) | |
569 | return true; | |
331e8396 | 570 | } |
7330f4df | 571 | |
117038ba | 572 | if (In.IsLimit() == true || Persistent == false) |
7330f4df | 573 | return true; |
be4401bf | 574 | } |
7330f4df DK |
575 | return false; |
576 | } | |
577 | /*}}}*/ | |
578 | // HttpServerState::Go - Run a single loop /*{{{*/ | |
579 | // --------------------------------------------------------------------- | |
580 | /* This runs the select loop over the server FDs, Output file FDs and | |
581 | stdin. */ | |
582 | bool HttpServerState::Go(bool ToFile, FileFd * const File) | |
583 | { | |
584 | // Server has closed the connection | |
585 | if (ServerFd == -1 && (In.WriteSpace() == false || | |
586 | ToFile == false)) | |
587 | return false; | |
588 | ||
589 | fd_set rfds,wfds; | |
590 | FD_ZERO(&rfds); | |
591 | FD_ZERO(&wfds); | |
592 | ||
593 | /* Add the server. We only send more requests if the connection will | |
594 | be persisting */ | |
595 | if (Out.WriteSpace() == true && ServerFd != -1 | |
596 | && Persistent == true) | |
597 | FD_SET(ServerFd,&wfds); | |
598 | if (In.ReadSpace() == true && ServerFd != -1) | |
599 | FD_SET(ServerFd,&rfds); | |
be4401bf | 600 | |
7330f4df DK |
601 | // Add the file |
602 | int FileFD = -1; | |
603 | if (File != NULL) | |
604 | FileFD = File->Fd(); | |
605 | ||
606 | if (In.WriteSpace() == true && ToFile == true && FileFD != -1) | |
607 | FD_SET(FileFD,&wfds); | |
608 | ||
609 | // Add stdin | |
610 | if (_config->FindB("Acquire::http::DependOnSTDIN", true) == true) | |
611 | FD_SET(STDIN_FILENO,&rfds); | |
612 | ||
613 | // Figure out the max fd | |
614 | int MaxFd = FileFD; | |
615 | if (MaxFd < ServerFd) | |
616 | MaxFd = ServerFd; | |
617 | ||
618 | // Select | |
619 | struct timeval tv; | |
620 | tv.tv_sec = TimeOut; | |
621 | tv.tv_usec = 0; | |
622 | int Res = 0; | |
623 | if ((Res = select(MaxFd+1,&rfds,&wfds,0,&tv)) < 0) | |
be4401bf | 624 | { |
7330f4df DK |
625 | if (errno == EINTR) |
626 | return true; | |
627 | return _error->Errno("select",_("Select failed")); | |
be4401bf | 628 | } |
7330f4df DK |
629 | |
630 | if (Res == 0) | |
e836f356 | 631 | { |
7330f4df DK |
632 | _error->Error(_("Connection timed out")); |
633 | return Die(*File); | |
e836f356 AL |
634 | } |
635 | ||
7330f4df DK |
636 | // Handle server IO |
637 | if (ServerFd != -1 && FD_ISSET(ServerFd,&rfds)) | |
be4401bf | 638 | { |
7330f4df DK |
639 | errno = 0; |
640 | if (In.Read(ServerFd) == false) | |
641 | return Die(*File); | |
642 | } | |
643 | ||
644 | if (ServerFd != -1 && FD_ISSET(ServerFd,&wfds)) | |
645 | { | |
646 | errno = 0; | |
647 | if (Out.Write(ServerFd) == false) | |
648 | return Die(*File); | |
be4401bf AL |
649 | } |
650 | ||
7330f4df DK |
651 | // Send data to the file |
652 | if (FileFD != -1 && FD_ISSET(FileFD,&wfds)) | |
15d7e515 | 653 | { |
7330f4df DK |
654 | if (In.Write(FileFD) == false) |
655 | return _error->Errno("write",_("Error writing to output file")); | |
15d7e515 MV |
656 | } |
657 | ||
c48eea97 | 658 | if (MaximumSize > 0 && File && File->Tell() > MaximumSize) |
a2d40703 | 659 | { |
ee279506 | 660 | Owner->SetFailReason("MaximumSizeExceeded"); |
dcd5856b | 661 | return _error->Error("Writing more data than expected (%llu > %llu)", |
c48eea97 | 662 | File->Tell(), MaximumSize); |
a2d40703 | 663 | } |
dcd5856b | 664 | |
7330f4df DK |
665 | // Handle commands from APT |
666 | if (FD_ISSET(STDIN_FILENO,&rfds)) | |
667 | { | |
668 | if (Owner->Run(true) != -1) | |
669 | exit(100); | |
670 | } | |
671 | ||
be4401bf AL |
672 | return true; |
673 | } | |
674 | /*}}}*/ | |
675 | ||
676 | // HttpMethod::SendReq - Send the HTTP request /*{{{*/ | |
677 | // --------------------------------------------------------------------- | |
678 | /* This places the http request in the outbound buffer */ | |
7330f4df | 679 | void HttpMethod::SendReq(FetchItem *Itm) |
be4401bf AL |
680 | { |
681 | URI Uri = Itm->Uri; | |
c1a22377 | 682 | |
be4401bf | 683 | // The HTTP server expects a hostname with a trailing :port |
b123b0ba | 684 | std::stringstream Req; |
5b63d2a9 MV |
685 | string ProperHost; |
686 | ||
687 | if (Uri.Host.find(':') != string::npos) | |
688 | ProperHost = '[' + Uri.Host + ']'; | |
689 | else | |
690 | ProperHost = Uri.Host; | |
f2380a78 DK |
691 | |
692 | /* RFC 2616 ยง5.1.2 requires absolute URIs for requests to proxies, | |
693 | but while its a must for all servers to accept absolute URIs, | |
694 | it is assumed clients will sent an absolute path for non-proxies */ | |
695 | std::string requesturi; | |
7330f4df | 696 | if (Server->Proxy.empty() == true || Server->Proxy.Host.empty()) |
f2380a78 DK |
697 | requesturi = Uri.Path; |
698 | else | |
699 | requesturi = Itm->Uri; | |
700 | ||
701 | // The "+" is encoded as a workaround for a amazon S3 bug | |
702 | // see LP bugs #1003633 and #1086997. | |
703 | requesturi = QuoteString(requesturi, "+~ "); | |
704 | ||
2b9c9b7f RG |
705 | /* Build the request. No keep-alive is included as it is the default |
706 | in 1.1, can cause problems with proxies, and we are an HTTP/1.1 | |
707 | client anyway. | |
708 | C.f. https://tools.ietf.org/wg/httpbis/trac/ticket/158 */ | |
b123b0ba DK |
709 | Req << "GET " << requesturi << " HTTP/1.1\r\n"; |
710 | if (Uri.Port != 0) | |
711 | Req << "Host: " << ProperHost << ":" << Uri.Port << "\r\n"; | |
712 | else | |
713 | Req << "Host: " << ProperHost << "\r\n"; | |
f2380a78 | 714 | |
c9cd3b70 | 715 | // generate a cache control header (if needed) |
b123b0ba DK |
716 | if (_config->FindB("Acquire::http::No-Cache",false) == true) |
717 | Req << "Cache-Control: no-cache\r\n" | |
718 | << "Pragma: no-cache\r\n"; | |
719 | else if (Itm->IndexFile == true) | |
720 | Req << "Cache-Control: max-age=" << _config->FindI("Acquire::http::Max-Age",0) << "\r\n"; | |
721 | else if (_config->FindB("Acquire::http::No-Store",false) == true) | |
722 | Req << "Cache-Control: no-store\r\n"; | |
106e6740 | 723 | |
6f4501f9 | 724 | // If we ask for uncompressed files servers might respond with content- |
1e3f4083 | 725 | // negotiation which lets us end up with compressed files we do not support, |
6f4501f9 DK |
726 | // see 657029, 657560 and co, so if we have no extension on the request |
727 | // ask for text only. As a sidenote: If there is nothing to negotate servers | |
728 | // seem to be nice and ignore it. | |
729 | if (_config->FindB("Acquire::http::SendAccept", true) == true) | |
730 | { | |
731 | size_t const filepos = Itm->Uri.find_last_of('/'); | |
732 | string const file = Itm->Uri.substr(filepos + 1); | |
733 | if (flExtension(file) == file) | |
b123b0ba | 734 | Req << "Accept: text/*\r\n"; |
6f4501f9 DK |
735 | } |
736 | ||
b123b0ba | 737 | // Check for a partial file and send if-queries accordingly |
be4401bf AL |
738 | struct stat SBuf; |
739 | if (stat(Itm->DestFile.c_str(),&SBuf) >= 0 && SBuf.st_size > 0) | |
b123b0ba DK |
740 | Req << "Range: bytes=" << SBuf.st_size << "-\r\n" |
741 | << "If-Range: " << TimeRFC1123(SBuf.st_mtime) << "\r\n"; | |
742 | else if (Itm->LastModified != 0) | |
743 | Req << "If-Modified-Since: " << TimeRFC1123(Itm->LastModified).c_str() << "\r\n"; | |
be4401bf | 744 | |
7330f4df | 745 | if (Server->Proxy.User.empty() == false || Server->Proxy.Password.empty() == false) |
b123b0ba DK |
746 | Req << "Proxy-Authorization: Basic " |
747 | << Base64Encode(Server->Proxy.User + ":" + Server->Proxy.Password) << "\r\n"; | |
be4401bf | 748 | |
1de1f703 | 749 | maybe_add_auth (Uri, _config->FindFile("Dir::Etc::netrc")); |
b2e465d6 | 750 | if (Uri.User.empty() == false || Uri.Password.empty() == false) |
b123b0ba DK |
751 | Req << "Authorization: Basic " |
752 | << Base64Encode(Uri.User + ":" + Uri.Password) << "\r\n"; | |
753 | ||
754 | Req << "User-Agent: " << _config->Find("Acquire::http::User-Agent", | |
755 | "Debian APT-HTTP/1.3 (" PACKAGE_VERSION ")") << "\r\n"; | |
756 | ||
757 | Req << "\r\n"; | |
758 | ||
c98b1307 | 759 | if (Debug == true) |
7b734b09 | 760 | cerr << Req.str() << endl; |
c1a22377 | 761 | |
b123b0ba | 762 | Server->WriteResponse(Req.str()); |
be4401bf AL |
763 | } |
764 | /*}}}*/ | |
85f72a56 AL |
765 | // HttpMethod::Configuration - Handle a configuration message /*{{{*/ |
766 | // --------------------------------------------------------------------- | |
767 | /* We stash the desired pipeline depth */ | |
768 | bool HttpMethod::Configuration(string Message) | |
769 | { | |
7330f4df | 770 | if (ServerMethod::Configuration(Message) == false) |
85f72a56 | 771 | return false; |
7330f4df | 772 | |
15d7e515 | 773 | AllowRedirect = _config->FindB("Acquire::http::AllowRedirect",true); |
30456e14 AL |
774 | PipelineDepth = _config->FindI("Acquire::http::Pipeline-Depth", |
775 | PipelineDepth); | |
c98b1307 | 776 | Debug = _config->FindB("Debug::Acquire::http",false); |
bd49b02c | 777 | |
bd49b02c MV |
778 | return true; |
779 | } | |
780 | /*}}}*/ | |
830a1b8c | 781 | std::unique_ptr<ServerState> HttpMethod::CreateServerState(URI const &uri)/*{{{*/ |
7330f4df | 782 | { |
830a1b8c | 783 | return std::unique_ptr<ServerState>(new HttpServerState(uri, this)); |
7330f4df DK |
784 | } |
785 | /*}}}*/ | |
fd46d305 DK |
786 | void HttpMethod::RotateDNS() /*{{{*/ |
787 | { | |
788 | ::RotateDNS(); | |
789 | } | |
790 | /*}}}*/ |