]>
git.saurik.com Git - apt.git/blob - apt-pkg/acquire.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: acquire.cc,v 1.50 2004/03/17 05:17:11 mdz Exp $
4 /* ######################################################################
6 Acquire - File Acquiration
8 The core element for the schedule system is the concept of a named
9 queue. Each queue is unique and each queue has a name derived from the
10 URI. The degree of paralization can be controlled by how the queue
11 name is derived from the URI.
13 ##################################################################### */
15 // Include Files /*{{{*/
18 #include <apt-pkg/acquire.h>
19 #include <apt-pkg/acquire-item.h>
20 #include <apt-pkg/acquire-worker.h>
21 #include <apt-pkg/configuration.h>
22 #include <apt-pkg/error.h>
23 #include <apt-pkg/strutl.h>
24 #include <apt-pkg/fileutl.h>
43 #include <sys/select.h>
52 // Acquire::pkgAcquire - Constructor /*{{{*/
53 // ---------------------------------------------------------------------
54 /* We grab some runtime state from the configuration space */
55 pkgAcquire::pkgAcquire() : LockFD(-1), d(NULL
), Queues(0), Workers(0), Configs(0), Log(NULL
), ToFetch(0),
56 Debug(_config
->FindB("Debug::pkgAcquire",false)),
61 pkgAcquire::pkgAcquire(pkgAcquireStatus
*Progress
) : LockFD(-1), d(NULL
), Queues(0), Workers(0),
62 Configs(0), Log(NULL
), ToFetch(0),
63 Debug(_config
->FindB("Debug::pkgAcquire",false)),
69 void pkgAcquire::Initialize()
71 string
const Mode
= _config
->Find("Acquire::Queue-Mode","host");
72 if (strcasecmp(Mode
.c_str(),"host") == 0)
73 QueueMode
= QueueHost
;
74 if (strcasecmp(Mode
.c_str(),"access") == 0)
75 QueueMode
= QueueAccess
;
77 // chown the auth.conf file as it will be accessed by our methods
78 std::string
const SandboxUser
= _config
->Find("APT::Sandbox::User");
79 if (getuid() == 0 && SandboxUser
.empty() == false) // if we aren't root, we can't chown, so don't try it
81 struct passwd
const * const pw
= getpwnam(SandboxUser
.c_str());
82 struct group
const * const gr
= getgrnam("root");
83 if (pw
!= NULL
&& gr
!= NULL
)
85 std::string
const AuthConf
= _config
->FindFile("Dir::Etc::netrc");
86 if(AuthConf
.empty() == false && RealFileExists(AuthConf
) &&
87 chown(AuthConf
.c_str(), pw
->pw_uid
, gr
->gr_gid
) != 0)
88 _error
->WarningE("SetupAPTPartialDirectory", "chown to %s:root of file %s failed", SandboxUser
.c_str(), AuthConf
.c_str());
93 // Acquire::GetLock - lock directory and prepare for action /*{{{*/
94 static bool SetupAPTPartialDirectory(std::string
const &grand
, std::string
const &parent
)
96 std::string
const partial
= parent
+ "partial";
97 mode_t
const mode
= umask(S_IWGRP
| S_IWOTH
);
98 bool const creation_fail
= (CreateAPTDirectoryIfNeeded(grand
, partial
) == false &&
99 CreateAPTDirectoryIfNeeded(parent
, partial
) == false);
101 if (creation_fail
== true)
104 std::string
const SandboxUser
= _config
->Find("APT::Sandbox::User");
105 if (getuid() == 0 && SandboxUser
.empty() == false) // if we aren't root, we can't chown, so don't try it
107 struct passwd
const * const pw
= getpwnam(SandboxUser
.c_str());
108 struct group
const * const gr
= getgrnam("root");
109 if (pw
!= NULL
&& gr
!= NULL
)
111 // chown the partial dir
112 if(chown(partial
.c_str(), pw
->pw_uid
, gr
->gr_gid
) != 0)
113 _error
->WarningE("SetupAPTPartialDirectory", "chown to %s:root of directory %s failed", SandboxUser
.c_str(), partial
.c_str());
116 if (chmod(partial
.c_str(), 0700) != 0)
117 _error
->WarningE("SetupAPTPartialDirectory", "chmod 0700 of directory %s failed", partial
.c_str());
121 bool pkgAcquire::Setup(pkgAcquireStatus
*Progress
, string
const &Lock
)
126 string
const listDir
= _config
->FindDir("Dir::State::lists");
127 if (SetupAPTPartialDirectory(_config
->FindDir("Dir::State"), listDir
) == false)
128 return _error
->Errno("Acquire", _("List directory %spartial is missing."), listDir
.c_str());
129 string
const archivesDir
= _config
->FindDir("Dir::Cache::Archives");
130 if (SetupAPTPartialDirectory(_config
->FindDir("Dir::Cache"), archivesDir
) == false)
131 return _error
->Errno("Acquire", _("Archives directory %spartial is missing."), archivesDir
.c_str());
134 return GetLock(Lock
);
136 bool pkgAcquire::GetLock(std::string
const &Lock
)
138 if (Lock
.empty() == true)
141 // check for existence and possibly create auxiliary directories
142 string
const listDir
= _config
->FindDir("Dir::State::lists");
143 string
const archivesDir
= _config
->FindDir("Dir::Cache::Archives");
147 if (SetupAPTPartialDirectory(_config
->FindDir("Dir::State"), listDir
) == false)
148 return _error
->Errno("Acquire", _("List directory %spartial is missing."), listDir
.c_str());
150 if (Lock
== archivesDir
)
152 if (SetupAPTPartialDirectory(_config
->FindDir("Dir::Cache"), archivesDir
) == false)
153 return _error
->Errno("Acquire", _("Archives directory %spartial is missing."), archivesDir
.c_str());
156 if (_config
->FindB("Debug::NoLocking", false) == true)
159 // Lock the directory this acquire object will work in
162 LockFD
= ::GetLock(flCombine(Lock
, "lock"));
164 return _error
->Error(_("Unable to lock directory %s"), Lock
.c_str());
169 // Acquire::~pkgAcquire - Destructor /*{{{*/
170 // ---------------------------------------------------------------------
171 /* Free our memory, clean up the queues (destroy the workers) */
172 pkgAcquire::~pkgAcquire()
181 MethodConfig
*Jnk
= Configs
;
182 Configs
= Configs
->Next
;
187 // Acquire::Shutdown - Clean out the acquire object /*{{{*/
188 // ---------------------------------------------------------------------
190 void pkgAcquire::Shutdown()
192 while (Items
.empty() == false)
194 if (Items
[0]->Status
== Item::StatFetching
)
195 Items
[0]->Status
= Item::StatError
;
202 Queues
= Queues
->Next
;
207 // Acquire::Add - Add a new item /*{{{*/
208 // ---------------------------------------------------------------------
209 /* This puts an item on the acquire list. This list is mainly for tracking
211 void pkgAcquire::Add(Item
*Itm
)
213 Items
.push_back(Itm
);
216 // Acquire::Remove - Remove a item /*{{{*/
217 // ---------------------------------------------------------------------
218 /* Remove an item from the acquire list. This is usually not used.. */
219 void pkgAcquire::Remove(Item
*Itm
)
223 for (ItemIterator I
= Items
.begin(); I
!= Items
.end();)
235 // Acquire::Add - Add a worker /*{{{*/
236 // ---------------------------------------------------------------------
237 /* A list of workers is kept so that the select loop can direct their FD
239 void pkgAcquire::Add(Worker
*Work
)
241 Work
->NextAcquire
= Workers
;
245 // Acquire::Remove - Remove a worker /*{{{*/
246 // ---------------------------------------------------------------------
247 /* A worker has died. This can not be done while the select loop is running
248 as it would require that RunFds could handling a changing list state and
250 void pkgAcquire::Remove(Worker
*Work
)
255 Worker
**I
= &Workers
;
259 *I
= (*I
)->NextAcquire
;
261 I
= &(*I
)->NextAcquire
;
265 // Acquire::Enqueue - Queue an URI for fetching /*{{{*/
266 // ---------------------------------------------------------------------
267 /* This is the entry point for an item. An item calls this function when
268 it is constructed which creates a queue (based on the current queue
269 mode) and puts the item in that queue. If the system is running then
270 the queue might be started. */
271 void pkgAcquire::Enqueue(ItemDesc
&Item
)
273 // Determine which queue to put the item in
274 const MethodConfig
*Config
;
275 string Name
= QueueName(Item
.URI
,Config
);
276 if (Name
.empty() == true)
279 // Find the queue structure
281 for (; I
!= 0 && I
->Name
!= Name
; I
= I
->Next
);
284 I
= new Queue(Name
,this);
292 // See if this is a local only URI
293 if (Config
->LocalOnly
== true && Item
.Owner
->Complete
== false)
294 Item
.Owner
->Local
= true;
295 Item
.Owner
->Status
= Item::StatIdle
;
297 // Queue it into the named queue
304 clog
<< "Fetching " << Item
.URI
<< endl
;
305 clog
<< " to " << Item
.Owner
->DestFile
<< endl
;
306 clog
<< " Queue is: " << Name
<< endl
;
310 // Acquire::Dequeue - Remove an item from all queues /*{{{*/
311 // ---------------------------------------------------------------------
312 /* This is called when an item is finished being fetched. It removes it
313 from all the queues */
314 void pkgAcquire::Dequeue(Item
*Itm
)
319 clog
<< "Dequeuing " << Itm
->DestFile
<< endl
;
321 for (; I
!= 0; I
= I
->Next
)
327 clog
<< "Dequeued from " << I
->Name
<< endl
;
335 // Acquire::QueueName - Return the name of the queue for this URI /*{{{*/
336 // ---------------------------------------------------------------------
337 /* The string returned depends on the configuration settings and the
338 method parameters. Given something like http://foo.org/bar it can
339 return http://foo.org or http */
340 string
pkgAcquire::QueueName(string Uri
,MethodConfig
const *&Config
)
344 Config
= GetConfig(U
.Access
);
348 /* Single-Instance methods get exactly one queue per URI. This is
349 also used for the Access queue method */
350 if (Config
->SingleInstance
== true || QueueMode
== QueueAccess
)
353 string AccessSchema
= U
.Access
+ ':',
354 FullQueueName
= AccessSchema
+ U
.Host
;
355 unsigned int Instances
= 0, SchemaLength
= AccessSchema
.length();
358 for (; I
!= 0; I
= I
->Next
) {
359 // if the queue already exists, re-use it
360 if (I
->Name
== FullQueueName
)
361 return FullQueueName
;
363 if (I
->Name
.compare(0, SchemaLength
, AccessSchema
) == 0)
368 clog
<< "Found " << Instances
<< " instances of " << U
.Access
<< endl
;
371 if (Instances
>= (unsigned int)_config
->FindI("Acquire::QueueHost::Limit",10))
374 return FullQueueName
;
377 // Acquire::GetConfig - Fetch the configuration information /*{{{*/
378 // ---------------------------------------------------------------------
379 /* This locates the configuration structure for an access method. If
380 a config structure cannot be found a Worker will be created to
382 pkgAcquire::MethodConfig
*pkgAcquire::GetConfig(string Access
)
384 // Search for an existing config
386 for (Conf
= Configs
; Conf
!= 0; Conf
= Conf
->Next
)
387 if (Conf
->Access
== Access
)
390 // Create the new config class
391 Conf
= new MethodConfig
;
392 Conf
->Access
= Access
;
393 Conf
->Next
= Configs
;
396 // Create the worker to fetch the configuration
398 if (Work
.Start() == false)
401 /* if a method uses DownloadLimit, we switch to SingleInstance mode */
402 if(_config
->FindI("Acquire::"+Access
+"::Dl-Limit",0) > 0)
403 Conf
->SingleInstance
= true;
408 // Acquire::SetFds - Deal with readable FDs /*{{{*/
409 // ---------------------------------------------------------------------
410 /* Collect FDs that have activity monitors into the fd sets */
411 void pkgAcquire::SetFds(int &Fd
,fd_set
*RSet
,fd_set
*WSet
)
413 for (Worker
*I
= Workers
; I
!= 0; I
= I
->NextAcquire
)
415 if (I
->InReady
== true && I
->InFd
>= 0)
419 FD_SET(I
->InFd
,RSet
);
421 if (I
->OutReady
== true && I
->OutFd
>= 0)
425 FD_SET(I
->OutFd
,WSet
);
430 // Acquire::RunFds - Deal with active FDs /*{{{*/
431 // ---------------------------------------------------------------------
432 /* Dispatch active FDs over to the proper workers. It is very important
433 that a worker never be erased while this is running! The queue class
434 should never erase a worker except during shutdown processing. */
435 void pkgAcquire::RunFds(fd_set
*RSet
,fd_set
*WSet
)
437 for (Worker
*I
= Workers
; I
!= 0; I
= I
->NextAcquire
)
439 if (I
->InFd
>= 0 && FD_ISSET(I
->InFd
,RSet
) != 0)
441 if (I
->OutFd
>= 0 && FD_ISSET(I
->OutFd
,WSet
) != 0)
446 // Acquire::Run - Run the fetch sequence /*{{{*/
447 // ---------------------------------------------------------------------
448 /* This runs the queues. It manages a select loop for all of the
449 Worker tasks. The workers interact with the queues and items to
450 manage the actual fetch. */
451 static void CheckDropPrivsMustBeDisabled(pkgAcquire
const &Fetcher
)
456 std::string SandboxUser
= _config
->Find("APT::Sandbox::User");
457 if (SandboxUser
.empty())
460 struct passwd
const * const pw
= getpwnam(SandboxUser
.c_str());
464 gid_t
const old_euid
= geteuid();
465 gid_t
const old_egid
= getegid();
466 if (setegid(pw
->pw_gid
) != 0)
467 _error
->Errno("setegid", "setegid %u failed", pw
->pw_gid
);
468 if (seteuid(pw
->pw_uid
) != 0)
469 _error
->Errno("seteuid", "seteuid %u failed", pw
->pw_uid
);
471 for (pkgAcquire::ItemCIterator I
= Fetcher
.ItemsBegin();
472 I
!= Fetcher
.ItemsEnd(); ++I
)
474 std::string filename
= (*I
)->DestFile
;
475 if (filename
.empty())
478 // no need to drop privileges for a complete file
479 if ((*I
)->Complete
== true)
482 // we check directory instead of file as the file might or might not
483 // exist already as a link or not which complicates everything…
484 std::string dirname
= flNotFile(filename
);
485 if (unlikely(dirname
.empty()))
487 // translate relative to absolute for DirectoryExists
488 // FIXME: What about ../ and ./../ ?
489 if (dirname
.substr(0,2) == "./")
490 dirname
= SafeGetCWD() + dirname
.substr(2);
492 if (DirectoryExists(dirname
))
495 continue; // assume it is created correctly by the acquire system
497 if (faccessat(-1, dirname
.c_str(), R_OK
| W_OK
| X_OK
, AT_EACCESS
| AT_SYMLINK_NOFOLLOW
) != 0)
499 _error
->WarningE("pkgAcquire::Run", _("Can't drop privileges for downloading as file '%s' couldn't be accessed by user '%s'."),
500 filename
.c_str(), SandboxUser
.c_str());
501 _config
->Set("APT::Sandbox::User", "");
506 if (seteuid(old_euid
) != 0)
507 _error
->Errno("seteuid", "seteuid %u failed", old_euid
);
508 if (setegid(old_egid
) != 0)
509 _error
->Errno("setegid", "setegid %u failed", old_egid
);
511 pkgAcquire::RunResult
pkgAcquire::Run(int PulseIntervall
)
513 _error
->PushToStack();
514 CheckDropPrivsMustBeDisabled(*this);
518 for (Queue
*I
= Queues
; I
!= 0; I
= I
->Next
)
524 bool WasCancelled
= false;
526 // Run till all things have been acquired
529 tv
.tv_usec
= PulseIntervall
;
537 SetFds(Highest
,&RFds
,&WFds
);
542 Res
= select(Highest
+1,&RFds
,&WFds
,0,&tv
);
544 while (Res
< 0 && errno
== EINTR
);
548 _error
->Errno("select","Select has failed");
554 // Timeout, notify the log class
555 if (Res
== 0 || (Log
!= 0 && Log
->Update
== true))
557 tv
.tv_usec
= PulseIntervall
;
558 for (Worker
*I
= Workers
; I
!= 0; I
= I
->NextAcquire
)
560 if (Log
!= 0 && Log
->Pulse(this) == false)
571 // Shut down the acquire bits
573 for (Queue
*I
= Queues
; I
!= 0; I
= I
->Next
)
576 // Shut down the items
577 for (ItemIterator I
= Items
.begin(); I
!= Items
.end(); ++I
)
580 bool const newError
= _error
->PendingError();
581 _error
->MergeWithStack();
589 // Acquire::Bump - Called when an item is dequeued /*{{{*/
590 // ---------------------------------------------------------------------
591 /* This routine bumps idle queues in hopes that they will be able to fetch
593 void pkgAcquire::Bump()
595 for (Queue
*I
= Queues
; I
!= 0; I
= I
->Next
)
599 // Acquire::WorkerStep - Step to the next worker /*{{{*/
600 // ---------------------------------------------------------------------
601 /* Not inlined to advoid including acquire-worker.h */
602 pkgAcquire::Worker
*pkgAcquire::WorkerStep(Worker
*I
)
604 return I
->NextAcquire
;
607 // Acquire::Clean - Cleans a directory /*{{{*/
608 // ---------------------------------------------------------------------
609 /* This is a bit simplistic, it looks at every file in the dir and sees
610 if it is part of the download set. */
611 bool pkgAcquire::Clean(string Dir
)
613 // non-existing directories are by definition clean…
614 if (DirectoryExists(Dir
) == false)
618 return _error
->Error(_("Clean of %s is not supported"), Dir
.c_str());
620 DIR *D
= opendir(Dir
.c_str());
622 return _error
->Errno("opendir",_("Unable to read %s"),Dir
.c_str());
624 string StartDir
= SafeGetCWD();
625 if (chdir(Dir
.c_str()) != 0)
628 return _error
->Errno("chdir",_("Unable to change to %s"),Dir
.c_str());
631 for (struct dirent
*Dir
= readdir(D
); Dir
!= 0; Dir
= readdir(D
))
634 if (strcmp(Dir
->d_name
,"lock") == 0 ||
635 strcmp(Dir
->d_name
,"partial") == 0 ||
636 strcmp(Dir
->d_name
,".") == 0 ||
637 strcmp(Dir
->d_name
,"..") == 0)
640 // Look in the get list
641 ItemCIterator I
= Items
.begin();
642 for (; I
!= Items
.end(); ++I
)
643 if (flNotDir((*I
)->DestFile
) == Dir
->d_name
)
646 // Nothing found, nuke it
647 if (I
== Items
.end())
652 if (chdir(StartDir
.c_str()) != 0)
653 return _error
->Errno("chdir",_("Unable to change to %s"),StartDir
.c_str());
657 // Acquire::TotalNeeded - Number of bytes to fetch /*{{{*/
658 // ---------------------------------------------------------------------
659 /* This is the total number of bytes needed */
660 APT_PURE
unsigned long long pkgAcquire::TotalNeeded()
662 return std::accumulate(ItemsBegin(), ItemsEnd(), 0,
663 [](unsigned long long const T
, Item
const * const I
) {
664 return T
+ I
->FileSize
;
668 // Acquire::FetchNeeded - Number of bytes needed to get /*{{{*/
669 // ---------------------------------------------------------------------
670 /* This is the number of bytes that is not local */
671 APT_PURE
unsigned long long pkgAcquire::FetchNeeded()
673 return std::accumulate(ItemsBegin(), ItemsEnd(), 0,
674 [](unsigned long long const T
, Item
const * const I
) {
675 if (I
->Local
== false)
676 return T
+ I
->FileSize
;
682 // Acquire::PartialPresent - Number of partial bytes we already have /*{{{*/
683 // ---------------------------------------------------------------------
684 /* This is the number of bytes that is not local */
685 APT_PURE
unsigned long long pkgAcquire::PartialPresent()
687 return std::accumulate(ItemsBegin(), ItemsEnd(), 0,
688 [](unsigned long long const T
, Item
const * const I
) {
689 if (I
->Local
== false)
690 return T
+ I
->PartialSize
;
696 // Acquire::UriBegin - Start iterator for the uri list /*{{{*/
697 // ---------------------------------------------------------------------
699 pkgAcquire::UriIterator
pkgAcquire::UriBegin()
701 return UriIterator(Queues
);
704 // Acquire::UriEnd - End iterator for the uri list /*{{{*/
705 // ---------------------------------------------------------------------
707 pkgAcquire::UriIterator
pkgAcquire::UriEnd()
709 return UriIterator(0);
712 // Acquire::MethodConfig::MethodConfig - Constructor /*{{{*/
713 // ---------------------------------------------------------------------
715 pkgAcquire::MethodConfig::MethodConfig() : d(NULL
), Next(0), SingleInstance(false),
716 Pipeline(false), SendConfig(false), LocalOnly(false), NeedsCleanup(false),
721 // Queue::Queue - Constructor /*{{{*/
722 // ---------------------------------------------------------------------
724 pkgAcquire::Queue::Queue(string
const &name
,pkgAcquire
* const owner
) : d(NULL
), Next(0),
725 Name(name
), Items(0), Workers(0), Owner(owner
), PipeDepth(0), MaxPipeDepth(1)
729 // Queue::~Queue - Destructor /*{{{*/
730 // ---------------------------------------------------------------------
732 pkgAcquire::Queue::~Queue()
744 // Queue::Enqueue - Queue an item to the queue /*{{{*/
745 // ---------------------------------------------------------------------
747 bool pkgAcquire::Queue::Enqueue(ItemDesc
&Item
)
750 // move to the end of the queue and check for duplicates here
751 HashStringList
const hsl
= Item
.Owner
->GetExpectedHashes();
752 for (; *I
!= 0; I
= &(*I
)->Next
)
753 if (Item
.URI
== (*I
)->URI
|| hsl
== (*I
)->Owner
->GetExpectedHashes())
755 if (_config
->FindB("Debug::pkgAcquire::Worker",false) == true)
756 std::cerr
<< " @ Queue: Action combined for " << Item
.URI
<< " and " << (*I
)->URI
<< std::endl
;
757 (*I
)->Owners
.push_back(Item
.Owner
);
758 Item
.Owner
->Status
= (*I
)->Owner
->Status
;
763 QItem
*Itm
= new QItem
;
768 Item
.Owner
->QueueCounter
++;
769 if (Items
->Next
== 0)
774 // Queue::Dequeue - Remove an item from the queue /*{{{*/
775 // ---------------------------------------------------------------------
776 /* We return true if we hit something */
777 bool pkgAcquire::Queue::Dequeue(Item
*Owner
)
779 if (Owner
->Status
== pkgAcquire::Item::StatFetching
)
780 return _error
->Error("Tried to dequeue a fetching object");
787 if (Owner
== (*I
)->Owner
)
791 Owner
->QueueCounter
--;
802 // Queue::Startup - Start the worker processes /*{{{*/
803 // ---------------------------------------------------------------------
804 /* It is possible for this to be called with a pre-existing set of
806 bool pkgAcquire::Queue::Startup()
811 pkgAcquire::MethodConfig
*Cnf
= Owner
->GetConfig(U
.Access
);
815 Workers
= new Worker(this,Cnf
,Owner
->Log
);
817 if (Workers
->Start() == false)
820 /* When pipelining we commit 10 items. This needs to change when we
821 added other source retry to have cycle maintain a pipeline depth
823 if (Cnf
->Pipeline
== true)
824 MaxPipeDepth
= _config
->FindI("Acquire::Max-Pipeline-Depth",10);
832 // Queue::Shutdown - Shutdown the worker processes /*{{{*/
833 // ---------------------------------------------------------------------
834 /* If final is true then all workers are eliminated, otherwise only workers
835 that do not need cleanup are removed */
836 bool pkgAcquire::Queue::Shutdown(bool Final
)
838 // Delete all of the workers
839 pkgAcquire::Worker
**Cur
= &Workers
;
842 pkgAcquire::Worker
*Jnk
= *Cur
;
843 if (Final
== true || Jnk
->GetConf()->NeedsCleanup
== false)
845 *Cur
= Jnk
->NextQueue
;
850 Cur
= &(*Cur
)->NextQueue
;
856 // Queue::FindItem - Find a URI in the item list /*{{{*/
857 // ---------------------------------------------------------------------
859 pkgAcquire::Queue::QItem
*pkgAcquire::Queue::FindItem(string URI
,pkgAcquire::Worker
*Owner
)
861 for (QItem
*I
= Items
; I
!= 0; I
= I
->Next
)
862 if (I
->URI
== URI
&& I
->Worker
== Owner
)
867 // Queue::ItemDone - Item has been completed /*{{{*/
868 // ---------------------------------------------------------------------
869 /* The worker signals this which causes the item to be removed from the
870 queue. If this is the last queue instance then it is removed from the
872 bool pkgAcquire::Queue::ItemDone(QItem
*Itm
)
875 for (QItem::owner_iterator O
= Itm
->Owners
.begin(); O
!= Itm
->Owners
.end(); ++O
)
877 if ((*O
)->Status
== pkgAcquire::Item::StatFetching
)
878 (*O
)->Status
= pkgAcquire::Item::StatDone
;
881 if (Itm
->Owner
->QueueCounter
<= 1)
882 Owner
->Dequeue(Itm
->Owner
);
892 // Queue::Cycle - Queue new items into the method /*{{{*/
893 // ---------------------------------------------------------------------
894 /* This locates a new idle item and sends it to the worker. If pipelining
895 is enabled then it keeps the pipe full. */
896 bool pkgAcquire::Queue::Cycle()
898 if (Items
== 0 || Workers
== 0)
902 return _error
->Error("Pipedepth failure");
904 // Look for a queable item
906 while (PipeDepth
< (signed)MaxPipeDepth
)
908 for (; I
!= 0; I
= I
->Next
)
909 if (I
->Owner
->Status
== pkgAcquire::Item::StatIdle
)
912 // Nothing to do, queue is idle.
917 for (auto const &O
: I
->Owners
)
918 O
->Status
= pkgAcquire::Item::StatFetching
;
920 if (Workers
->QueueItem(I
) == false)
927 // Queue::Bump - Fetch any pending objects if we are idle /*{{{*/
928 // ---------------------------------------------------------------------
929 /* This is called when an item in multiple queues is dequeued */
930 void pkgAcquire::Queue::Bump()
935 HashStringList
pkgAcquire::Queue::QItem::GetExpectedHashes() const /*{{{*/
937 /* each Item can have multiple owners and each owner might have different
938 hashes, even if that is unlikely in practice and if so at least some
939 owners will later fail. There is one situation through which is not a
940 failure and still needs this handling: Two owners who expect the same
941 file, but one owner only knows the SHA1 while the other only knows SHA256. */
942 HashStringList superhsl
;
943 for (pkgAcquire::Queue::QItem::owner_iterator O
= Owners
.begin(); O
!= Owners
.end(); ++O
)
945 HashStringList
const hsl
= (*O
)->GetExpectedHashes();
946 if (hsl
.usable() == false)
948 if (superhsl
.usable() == false)
952 // we merge both lists - if we find disagreement send no hashes
953 HashStringList::const_iterator hs
= hsl
.begin();
954 for (; hs
!= hsl
.end(); ++hs
)
955 if (superhsl
.push_back(*hs
) == false)
967 APT_PURE
unsigned long long pkgAcquire::Queue::QItem::GetMaximumSize() const /*{{{*/
969 unsigned long long Maximum
= std::numeric_limits
<unsigned long long>::max();
970 for (auto const &O
: Owners
)
972 if (O
->FileSize
== 0)
974 Maximum
= std::min(Maximum
, O
->FileSize
);
976 if (Maximum
== std::numeric_limits
<unsigned long long>::max())
981 void pkgAcquire::Queue::QItem::SyncDestinationFiles() const /*{{{*/
983 /* ensure that the first owner has the best partial file of all and
984 the rest have (potentially dangling) symlinks to it so that
985 everything (like progress reporting) finds it easily */
986 std::string superfile
= Owner
->DestFile
;
988 for (pkgAcquire::Queue::QItem::owner_iterator O
= Owners
.begin(); O
!= Owners
.end(); ++O
)
990 if ((*O
)->DestFile
== superfile
)
993 if (lstat((*O
)->DestFile
.c_str(),&file
) == 0)
995 if ((file
.st_mode
& S_IFREG
) == 0)
996 unlink((*O
)->DestFile
.c_str());
997 else if (supersize
< file
.st_size
)
999 supersize
= file
.st_size
;
1000 unlink(superfile
.c_str());
1001 rename((*O
)->DestFile
.c_str(), superfile
.c_str());
1004 unlink((*O
)->DestFile
.c_str());
1005 if (symlink(superfile
.c_str(), (*O
)->DestFile
.c_str()) != 0)
1007 ; // not a problem per-se and no real alternative
1013 std::string
pkgAcquire::Queue::QItem::Custom600Headers() const /*{{{*/
1015 /* The others are relatively easy to merge, but this one?
1016 Lets not merge and see how far we can run with it…
1017 Likely, nobody will ever notice as all the items will
1018 be of the same class and hence generate the same headers. */
1019 return Owner
->Custom600Headers();
1023 // AcquireStatus::pkgAcquireStatus - Constructor /*{{{*/
1024 // ---------------------------------------------------------------------
1026 pkgAcquireStatus::pkgAcquireStatus() : d(NULL
), Percent(-1), Update(true), MorePulses(false)
1031 // AcquireStatus::Pulse - Called periodically /*{{{*/
1032 // ---------------------------------------------------------------------
1033 /* This computes some internal state variables for the derived classes to
1034 use. It generates the current downloaded bytes and total bytes to download
1035 as well as the current CPS estimate. */
1036 bool pkgAcquireStatus::Pulse(pkgAcquire
*Owner
)
1043 // Compute the total number of bytes to fetch
1044 unsigned int Unknown
= 0;
1045 unsigned int Count
= 0;
1046 bool UnfetchedReleaseFiles
= false;
1047 for (pkgAcquire::ItemCIterator I
= Owner
->ItemsBegin();
1048 I
!= Owner
->ItemsEnd();
1052 if ((*I
)->Status
== pkgAcquire::Item::StatDone
)
1055 // Totally ignore local items
1056 if ((*I
)->Local
== true)
1059 // see if the method tells us to expect more
1060 TotalItems
+= (*I
)->ExpectedAdditionalItems
;
1062 // check if there are unfetched Release files
1063 if ((*I
)->Complete
== false && (*I
)->ExpectedAdditionalItems
> 0)
1064 UnfetchedReleaseFiles
= true;
1066 TotalBytes
+= (*I
)->FileSize
;
1067 if ((*I
)->Complete
== true)
1068 CurrentBytes
+= (*I
)->FileSize
;
1069 if ((*I
)->FileSize
== 0 && (*I
)->Complete
== false)
1073 // Compute the current completion
1074 unsigned long long ResumeSize
= 0;
1075 for (pkgAcquire::Worker
*I
= Owner
->WorkersBegin(); I
!= 0;
1076 I
= Owner
->WorkerStep(I
))
1078 if (I
->CurrentItem
!= 0 && I
->CurrentItem
->Owner
->Complete
== false)
1080 CurrentBytes
+= I
->CurrentSize
;
1081 ResumeSize
+= I
->ResumePoint
;
1083 // Files with unknown size always have 100% completion
1084 if (I
->CurrentItem
->Owner
->FileSize
== 0 &&
1085 I
->CurrentItem
->Owner
->Complete
== false)
1086 TotalBytes
+= I
->CurrentSize
;
1090 // Normalize the figures and account for unknown size downloads
1091 if (TotalBytes
<= 0)
1093 if (Unknown
== Count
)
1094 TotalBytes
= Unknown
;
1096 // Wha?! Is not supposed to happen.
1097 if (CurrentBytes
> TotalBytes
)
1098 CurrentBytes
= TotalBytes
;
1101 if (_config
->FindB("Debug::acquire::progress", false) == true)
1102 std::clog
<< " Bytes: "
1103 << SizeToStr(CurrentBytes
) << " / " << SizeToStr(TotalBytes
)
1107 struct timeval NewTime
;
1108 gettimeofday(&NewTime
,0);
1109 if ((NewTime
.tv_sec
- Time
.tv_sec
== 6 && NewTime
.tv_usec
> Time
.tv_usec
) ||
1110 NewTime
.tv_sec
- Time
.tv_sec
> 6)
1112 double Delta
= NewTime
.tv_sec
- Time
.tv_sec
+
1113 (NewTime
.tv_usec
- Time
.tv_usec
)/1000000.0;
1115 // Compute the CPS value
1119 CurrentCPS
= ((CurrentBytes
- ResumeSize
) - LastBytes
)/Delta
;
1120 LastBytes
= CurrentBytes
- ResumeSize
;
1121 ElapsedTime
= (unsigned long long)Delta
;
1125 double const OldPercent
= Percent
;
1126 // calculate the percentage, if we have too little data assume 1%
1127 if (TotalBytes
> 0 && UnfetchedReleaseFiles
)
1130 // use both files and bytes because bytes can be unreliable
1131 Percent
= (0.8 * (CurrentBytes
/float(TotalBytes
)*100.0) +
1132 0.2 * (CurrentItems
/float(TotalItems
)*100.0));
1133 double const DiffPercent
= Percent
- OldPercent
;
1134 if (DiffPercent
< 0.001 && _config
->FindB("Acquire::Progress::Diffpercent", false) == true)
1137 int fd
= _config
->FindI("APT::Status-Fd",-1);
1140 ostringstream status
;
1143 long i
= CurrentItems
< TotalItems
? CurrentItems
+ 1 : CurrentItems
;
1144 unsigned long long ETA
= 0;
1146 ETA
= (TotalBytes
- CurrentBytes
) / CurrentCPS
;
1148 // only show the ETA if it makes sense
1149 if (ETA
> 0 && ETA
< 172800 /* two days */ )
1150 snprintf(msg
,sizeof(msg
), _("Retrieving file %li of %li (%s remaining)"), i
, TotalItems
, TimeToStr(ETA
).c_str());
1152 snprintf(msg
,sizeof(msg
), _("Retrieving file %li of %li"), i
, TotalItems
);
1154 // build the status str
1155 status
<< "dlstatus:" << i
1156 << ":" << std::setprecision(3) << Percent
1160 std::string
const dlstatus
= status
.str();
1161 FileFd::Write(fd
, dlstatus
.c_str(), dlstatus
.size());
1167 // AcquireStatus::Start - Called when the download is started /*{{{*/
1168 // ---------------------------------------------------------------------
1169 /* We just reset the counters */
1170 void pkgAcquireStatus::Start()
1172 gettimeofday(&Time
,0);
1173 gettimeofday(&StartTime
,0);
1184 // AcquireStatus::Stop - Finished downloading /*{{{*/
1185 // ---------------------------------------------------------------------
1186 /* This accurately computes the elapsed time and the total overall CPS. */
1187 void pkgAcquireStatus::Stop()
1189 // Compute the CPS and elapsed time
1190 struct timeval NewTime
;
1191 gettimeofday(&NewTime
,0);
1193 double Delta
= NewTime
.tv_sec
- StartTime
.tv_sec
+
1194 (NewTime
.tv_usec
- StartTime
.tv_usec
)/1000000.0;
1196 // Compute the CPS value
1200 CurrentCPS
= FetchedBytes
/Delta
;
1201 LastBytes
= CurrentBytes
;
1202 ElapsedTime
= (unsigned long long)Delta
;
1205 // AcquireStatus::Fetched - Called when a byte set has been fetched /*{{{*/
1206 // ---------------------------------------------------------------------
1207 /* This is used to get accurate final transfer rate reporting. */
1208 void pkgAcquireStatus::Fetched(unsigned long long Size
,unsigned long long Resume
)
1210 FetchedBytes
+= Size
- Resume
;
1214 pkgAcquire::UriIterator::UriIterator(pkgAcquire::Queue
*Q
) : d(NULL
), CurQ(Q
), CurItem(0)
1216 while (CurItem
== 0 && CurQ
!= 0)
1218 CurItem
= CurQ
->Items
;
1223 APT_CONST
pkgAcquire::UriIterator::~UriIterator() {}
1224 APT_CONST
pkgAcquire::MethodConfig::~MethodConfig() {}
1225 APT_CONST
pkgAcquireStatus::~pkgAcquireStatus() {}