1 // -*- mode: cpp; mode: fold -*-
3 // $Id: apt-get.cc,v 1.156 2004/08/28 01:05:16 mdz Exp $
4 /* ######################################################################
6 apt-get - Cover for dpkg
8 This is an allout cover for dpkg implementing a safer front end. It is
9 based largely on libapt-pkg.
11 The syntax is different,
12 apt-get [opt] command [things]
14 update - Resyncronize the package files from their sources
15 upgrade - Smart-Download the newest versions of all packages
16 dselect-upgrade - Follows dselect's changes to the Status: field
17 and installes new and removes old packages
18 dist-upgrade - Powerfull upgrader designed to handle the issues with
20 install - Download and install a given package (by name, not by .deb)
21 check - Update the package cache and check for broken packages
22 clean - Erase the .debs downloaded to /var/cache/apt/archives and
25 ##################################################################### */
27 // Include Files /*{{{*/
30 #include <apt-pkg/aptconfiguration.h>
31 #include <apt-pkg/error.h>
32 #include <apt-pkg/cmndline.h>
33 #include <apt-pkg/init.h>
34 #include <apt-pkg/depcache.h>
35 #include <apt-pkg/sourcelist.h>
36 #include <apt-pkg/algorithms.h>
37 #include <apt-pkg/acquire-item.h>
38 #include <apt-pkg/strutl.h>
39 #include <apt-pkg/fileutl.h>
40 #include <apt-pkg/clean.h>
41 #include <apt-pkg/srcrecords.h>
42 #include <apt-pkg/version.h>
43 #include <apt-pkg/cachefile.h>
44 #include <apt-pkg/cacheset.h>
45 #include <apt-pkg/sptr.h>
46 #include <apt-pkg/md5.h>
47 #include <apt-pkg/versionmatch.h>
48 #include <apt-pkg/progress.h>
49 #include <apt-pkg/pkgsystem.h>
50 #include <apt-pkg/pkgrecords.h>
51 #include <apt-pkg/indexfile.h>
54 #include <apt-private/private-install.h>
55 #include <apt-private/private-upgrade.h>
56 #include <apt-private/private-output.h>
57 #include <apt-private/private-cacheset.h>
58 #include <apt-private/private-update.h>
59 #include <apt-private/private-cmndline.h>
60 #include <apt-private/private-moo.h>
62 #include <apt-private/acqprogress.h>
69 #include <sys/ioctl.h>
71 #include <sys/statfs.h>
72 #include <sys/statvfs.h>
81 #include <apt-private/private-output.h>
82 #include <apt-private/private-main.h>
92 // TryToInstallBuildDep - Try to install a single package /*{{{*/
93 // ---------------------------------------------------------------------
94 /* This used to be inlined in DoInstall, but with the advent of regex package
95 name matching it was split out.. */
96 bool TryToInstallBuildDep(pkgCache::PkgIterator Pkg
,pkgCacheFile
&Cache
,
97 pkgProblemResolver
&Fix
,bool Remove
,bool BrokenFix
,
98 bool AllowFail
= true)
100 if (Cache
[Pkg
].CandidateVer
== 0 && Pkg
->ProvidesList
!= 0)
102 CacheSetHelperAPTGet
helper(c1out
);
103 helper
.showErrors(false);
104 pkgCache::VerIterator Ver
= helper
.canNotFindNewestVer(Cache
, Pkg
);
105 if (Ver
.end() == false)
106 Pkg
= Ver
.ParentPkg();
107 else if (helper
.showVirtualPackageErrors(Cache
) == false)
111 if (_config
->FindB("Debug::BuildDeps",false) == true)
114 cout
<< " Trying to remove " << Pkg
<< endl
;
116 cout
<< " Trying to install " << Pkg
<< endl
;
121 TryToRemove
RemoveAction(Cache
, &Fix
);
122 RemoveAction(Pkg
.VersionList());
123 } else if (Cache
[Pkg
].CandidateVer
!= 0) {
124 TryToInstall
InstallAction(Cache
, &Fix
, BrokenFix
);
125 InstallAction(Cache
[Pkg
].CandidateVerIter(Cache
));
126 InstallAction
.doAutoInstall();
133 // FindSrc - Find a source record /*{{{*/
134 // ---------------------------------------------------------------------
136 pkgSrcRecords::Parser
*FindSrc(const char *Name
,pkgRecords
&Recs
,
137 pkgSrcRecords
&SrcRecs
,string
&Src
,
141 string DefRel
= _config
->Find("APT::Default-Release");
142 string TmpSrc
= Name
;
144 // extract the version/release from the pkgname
145 const size_t found
= TmpSrc
.find_last_of("/=");
146 if (found
!= string::npos
) {
147 if (TmpSrc
[found
] == '/')
148 DefRel
= TmpSrc
.substr(found
+1);
150 VerTag
= TmpSrc
.substr(found
+1);
151 TmpSrc
= TmpSrc
.substr(0,found
);
154 /* Lookup the version of the package we would install if we were to
155 install a version and determine the source package name, then look
156 in the archive for a source package of the same name. */
157 bool MatchSrcOnly
= _config
->FindB("APT::Get::Only-Source");
158 const pkgCache::PkgIterator Pkg
= Cache
.FindPkg(TmpSrc
);
159 if (MatchSrcOnly
== false && Pkg
.end() == false)
161 if(VerTag
.empty() == false || DefRel
.empty() == false)
164 // we have a default release, try to locate the pkg. we do it like
165 // this because GetCandidateVer() will not "downgrade", that means
166 // "apt-get source -t stable apt" won't work on a unstable system
167 for (pkgCache::VerIterator Ver
= Pkg
.VersionList();; ++Ver
)
169 // try first only exact matches, later fuzzy matches
170 if (Ver
.end() == true)
175 Ver
= Pkg
.VersionList();
176 // exit right away from the Pkg.VersionList() loop if we
177 // don't have any versions
178 if (Ver
.end() == true)
181 // We match against a concrete version (or a part of this version)
182 if (VerTag
.empty() == false &&
183 (fuzzy
== true || Cache
.VS().CmpVersion(VerTag
, Ver
.VerStr()) != 0) && // exact match
184 (fuzzy
== false || strncmp(VerTag
.c_str(), Ver
.VerStr(), VerTag
.size()) != 0)) // fuzzy match
187 for (pkgCache::VerFileIterator VF
= Ver
.FileList();
188 VF
.end() == false; ++VF
)
190 /* If this is the status file, and the current version is not the
191 version in the status file (ie it is not installed, or somesuch)
192 then it is not a candidate for installation, ever. This weeds
193 out bogus entries that may be due to config-file states, or
195 if ((VF
.File()->Flags
& pkgCache::Flag::NotSource
) ==
196 pkgCache::Flag::NotSource
&& Pkg
.CurrentVer() != Ver
)
199 // or we match against a release
200 if(VerTag
.empty() == false ||
201 (VF
.File().Archive() != 0 && VF
.File().Archive() == DefRel
) ||
202 (VF
.File().Codename() != 0 && VF
.File().Codename() == DefRel
))
204 pkgRecords::Parser
&Parse
= Recs
.Lookup(VF
);
205 Src
= Parse
.SourcePkg();
206 // no SourcePkg name, so it is the "binary" name
207 if (Src
.empty() == true)
209 // the Version we have is possibly fuzzy or includes binUploads,
210 // so we use the Version of the SourcePkg (empty if same as package)
211 VerTag
= Parse
.SourceVer();
212 if (VerTag
.empty() == true)
213 VerTag
= Ver
.VerStr();
217 if (Src
.empty() == false)
220 if (Src
.empty() == true)
222 // Sources files have no codename information
223 if (VerTag
.empty() == true && DefRel
.empty() == false)
225 _error
->Error(_("Ignore unavailable target release '%s' of package '%s'"), DefRel
.c_str(), TmpSrc
.c_str());
230 if (Src
.empty() == true)
232 // if we don't have found a fitting package yet so we will
233 // choose a good candidate and proceed with that.
234 // Maybe we will find a source later on with the right VerTag
235 pkgCache::VerIterator Ver
= Cache
.GetCandidateVer(Pkg
);
236 if (Ver
.end() == false)
238 pkgRecords::Parser
&Parse
= Recs
.Lookup(Ver
.FileList());
239 Src
= Parse
.SourcePkg();
240 if (VerTag
.empty() == true)
241 VerTag
= Parse
.SourceVer();
246 if (Src
.empty() == true)
250 /* if we have a source pkg name, make sure to only search
251 for srcpkg names, otherwise apt gets confused if there
252 is a binary package "pkg1" and a source package "pkg1"
253 with the same name but that comes from different packages */
257 ioprintf(c1out
, _("Picking '%s' as source package instead of '%s'\n"), Src
.c_str(), TmpSrc
.c_str());
262 pkgSrcRecords::Parser
*Last
= 0;
263 unsigned long Offset
= 0;
266 /* Iterate over all of the hits, which includes the resulting
267 binary packages in the search */
268 pkgSrcRecords::Parser
*Parse
;
272 while ((Parse
= SrcRecs
.Find(Src
.c_str(), MatchSrcOnly
)) != 0)
274 const string Ver
= Parse
->Version();
276 // Ignore all versions which doesn't fit
277 if (VerTag
.empty() == false &&
278 Cache
.VS().CmpVersion(VerTag
, Ver
) != 0) // exact match
281 // Newer version or an exact match? Save the hit
282 if (Last
== 0 || Cache
.VS().CmpVersion(Version
,Ver
) < 0) {
284 Offset
= Parse
->Offset();
288 // was the version check above an exact match? If so, we don't need to look further
289 if (VerTag
.empty() == false && VerTag
.size() == Ver
.size())
292 if (Last
!= 0 || VerTag
.empty() == true)
294 //if (VerTag.empty() == false && Last == 0)
295 _error
->Error(_("Ignore unavailable version '%s' of package '%s'"), VerTag
.c_str(), TmpSrc
.c_str());
299 if (Last
== 0 || Last
->Jump(Offset
) == false)
305 /* mark packages as automatically/manually installed. {{{*/
306 bool DoMarkAuto(CommandLine
&CmdL
)
309 int AutoMarkChanged
= 0;
310 OpTextProgress progress
;
312 if (Cache
.Open() == false)
315 if (strcasecmp(CmdL
.FileList
[0],"markauto") == 0)
317 else if (strcasecmp(CmdL
.FileList
[0],"unmarkauto") == 0)
320 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
323 // Locate the package
324 pkgCache::PkgIterator Pkg
= Cache
->FindPkg(S
);
325 if (Pkg
.end() == true) {
326 return _error
->Error(_("Couldn't find package %s"),S
);
331 ioprintf(c1out
,_("%s set to manually installed.\n"), Pkg
.Name());
333 ioprintf(c1out
,_("%s set to automatically installed.\n"),
336 Cache
->MarkAuto(Pkg
,Action
);
341 _error
->Notice(_("This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' instead."));
343 if (AutoMarkChanged
&& ! _config
->FindB("APT::Get::Simulate",false))
344 return Cache
->writeStateFile(NULL
);
348 // DoDistUpgrade - Automatic smart upgrader /*{{{*/
349 // ---------------------------------------------------------------------
350 /* Intelligent upgrader that will install and remove packages at will */
351 bool DoDistUpgrade(CommandLine
&CmdL
)
353 if (CmdL
.FileSize() != 1)
354 return _error
->Error(_("The dist-upgrade command takes no arguments"));
357 if (Cache
.OpenForInstall() == false || Cache
.CheckDeps() == false)
360 c0out
<< _("Calculating upgrade... ") << flush
;
361 if (pkgDistUpgrade(*Cache
) == false)
363 c0out
<< _("Failed") << endl
;
364 ShowBroken(c1out
,Cache
,false);
368 c0out
<< _("Done") << endl
;
370 return InstallPackages(Cache
,true);
373 // DoDSelectUpgrade - Do an upgrade by following dselects selections /*{{{*/
374 // ---------------------------------------------------------------------
375 /* Follows dselect's selections */
376 bool DoDSelectUpgrade(CommandLine
&CmdL
)
379 if (Cache
.OpenForInstall() == false || Cache
.CheckDeps() == false)
382 pkgDepCache::ActionGroup
group(Cache
);
384 // Install everything with the install flag set
385 pkgCache::PkgIterator I
= Cache
->PkgBegin();
386 for (;I
.end() != true; ++I
)
388 /* Install the package only if it is a new install, the autoupgrader
389 will deal with the rest */
390 if (I
->SelectedState
== pkgCache::State::Install
)
391 Cache
->MarkInstall(I
,false);
394 /* Now install their deps too, if we do this above then order of
395 the status file is significant for | groups */
396 for (I
= Cache
->PkgBegin();I
.end() != true; ++I
)
398 /* Install the package only if it is a new install, the autoupgrader
399 will deal with the rest */
400 if (I
->SelectedState
== pkgCache::State::Install
)
401 Cache
->MarkInstall(I
,true);
404 // Apply erasures now, they override everything else.
405 for (I
= Cache
->PkgBegin();I
.end() != true; ++I
)
408 if (I
->SelectedState
== pkgCache::State::DeInstall
||
409 I
->SelectedState
== pkgCache::State::Purge
)
410 Cache
->MarkDelete(I
,I
->SelectedState
== pkgCache::State::Purge
);
413 /* Resolve any problems that dselect created, allupgrade cannot handle
414 such things. We do so quite agressively too.. */
415 if (Cache
->BrokenCount() != 0)
417 pkgProblemResolver
Fix(Cache
);
419 // Hold back held packages.
420 if (_config
->FindB("APT::Ignore-Hold",false) == false)
422 for (pkgCache::PkgIterator I
= Cache
->PkgBegin(); I
.end() == false; ++I
)
424 if (I
->SelectedState
== pkgCache::State::Hold
)
432 if (Fix
.Resolve() == false)
434 ShowBroken(c1out
,Cache
,false);
435 return _error
->Error(_("Internal error, problem resolver broke stuff"));
439 // Now upgrade everything
440 if (pkgAllUpgrade(Cache
) == false)
442 ShowBroken(c1out
,Cache
,false);
443 return _error
->Error(_("Internal error, problem resolver broke stuff"));
446 return InstallPackages(Cache
,false);
449 // DoClean - Remove download archives /*{{{*/
450 // ---------------------------------------------------------------------
452 bool DoClean(CommandLine
&CmdL
)
454 std::string
const archivedir
= _config
->FindDir("Dir::Cache::archives");
455 std::string
const pkgcache
= _config
->FindFile("Dir::cache::pkgcache");
456 std::string
const srcpkgcache
= _config
->FindFile("Dir::cache::srcpkgcache");
458 if (_config
->FindB("APT::Get::Simulate") == true)
460 cout
<< "Del " << archivedir
<< "* " << archivedir
<< "partial/*"<< endl
461 << "Del " << pkgcache
<< " " << srcpkgcache
<< endl
;
465 // Lock the archive directory
467 if (_config
->FindB("Debug::NoLocking",false) == false)
469 int lock_fd
= GetLock(archivedir
+ "lock");
471 return _error
->Error(_("Unable to lock the download directory"));
476 Fetcher
.Clean(archivedir
);
477 Fetcher
.Clean(archivedir
+ "partial/");
479 pkgCacheFile::RemoveCaches();
484 // DoAutoClean - Smartly remove downloaded archives /*{{{*/
485 // ---------------------------------------------------------------------
486 /* This is similar to clean but it only purges things that cannot be
487 downloaded, that is old versions of cached packages. */
488 class LogCleaner
: public pkgArchiveCleaner
491 virtual void Erase(const char *File
,string Pkg
,string Ver
,struct stat
&St
)
493 c1out
<< "Del " << Pkg
<< " " << Ver
<< " [" << SizeToStr(St
.st_size
) << "B]" << endl
;
495 if (_config
->FindB("APT::Get::Simulate") == false)
500 bool DoAutoClean(CommandLine
&CmdL
)
502 // Lock the archive directory
504 if (_config
->FindB("Debug::NoLocking",false) == false)
506 int lock_fd
= GetLock(_config
->FindDir("Dir::Cache::Archives") + "lock");
508 return _error
->Error(_("Unable to lock the download directory"));
513 if (Cache
.Open() == false)
518 return Cleaner
.Go(_config
->FindDir("Dir::Cache::archives"),*Cache
) &&
519 Cleaner
.Go(_config
->FindDir("Dir::Cache::archives") + "partial/",*Cache
);
522 // DoDownload - download a binary /*{{{*/
523 // ---------------------------------------------------------------------
524 bool DoDownload(CommandLine
&CmdL
)
527 if (Cache
.ReadOnlyOpen() == false)
530 APT::CacheSetHelper
helper(c0out
);
531 APT::VersionList verset
= APT::VersionList::FromCommandLine(Cache
,
532 CmdL
.FileList
+ 1, APT::VersionList::CANDIDATE
, helper
);
534 if (verset
.empty() == true)
538 AcqTextStatus
Stat(ScreenWidth
, _config
->FindI("quiet",0));
539 if (_config
->FindB("APT::Get::Print-URIs") == false)
540 Fetcher
.Setup(&Stat
);
542 pkgRecords
Recs(Cache
);
543 pkgSourceList
*SrcList
= Cache
.GetSourceList();
546 for (APT::VersionList::const_iterator Ver
= verset
.begin();
551 // get the right version
552 pkgCache::PkgIterator Pkg
= Ver
.ParentPkg();
553 pkgRecords::Parser
&rec
=Recs
.Lookup(Ver
.FileList());
554 pkgCache::VerFileIterator Vf
= Ver
.FileList();
555 if (Vf
.end() == true)
557 _error
->Error("Can not find VerFile for %s in version %s", Pkg
.FullName().c_str(), Ver
.VerStr());
561 pkgCache::PkgFileIterator F
= Vf
.File();
563 if(SrcList
->FindIndex(F
, index
) == false)
565 _error
->Error(_("Can't find a source to download version '%s' of '%s'"), Ver
.VerStr(), Pkg
.FullName().c_str());
569 string uri
= index
->ArchiveURI(rec
.FileName());
570 strprintf(descr
, _("Downloading %s %s"), Pkg
.Name(), Ver
.VerStr());
571 // get the most appropriate hash
573 if (rec
.SHA512Hash() != "")
574 hash
= HashString("sha512", rec
.SHA512Hash());
575 else if (rec
.SHA256Hash() != "")
576 hash
= HashString("sha256", rec
.SHA256Hash());
577 else if (rec
.SHA1Hash() != "")
578 hash
= HashString("sha1", rec
.SHA1Hash());
579 else if (rec
.MD5Hash() != "")
580 hash
= HashString("md5", rec
.MD5Hash());
582 new pkgAcqFile(&Fetcher
, uri
, hash
.toStr(), (*Ver
)->Size
, descr
, Pkg
.Name(), ".");
587 // Just print out the uris and exit if the --print-uris flag was used
588 if (_config
->FindB("APT::Get::Print-URIs") == true)
590 pkgAcquire::UriIterator I
= Fetcher
.UriBegin();
591 for (; I
!= Fetcher
.UriEnd(); ++I
)
592 cout
<< '\'' << I
->URI
<< "' " << flNotDir(I
->Owner
->DestFile
) << ' ' <<
593 I
->Owner
->FileSize
<< ' ' << I
->Owner
->HashSum() << endl
;
597 return (Fetcher
.Run() == pkgAcquire::Continue
);
600 // DoCheck - Perform the check operation /*{{{*/
601 // ---------------------------------------------------------------------
602 /* Opening automatically checks the system, this command is mostly used
604 bool DoCheck(CommandLine
&CmdL
)
613 // DoSource - Fetch a source archive /*{{{*/
614 // ---------------------------------------------------------------------
615 /* Fetch souce packages */
623 bool DoSource(CommandLine
&CmdL
)
626 if (Cache
.Open(false) == false)
629 if (CmdL
.FileSize() <= 1)
630 return _error
->Error(_("Must specify at least one package to fetch source for"));
632 // Read the source list
633 if (Cache
.BuildSourceList() == false)
635 pkgSourceList
*List
= Cache
.GetSourceList();
637 // Create the text record parsers
638 pkgRecords
Recs(Cache
);
639 pkgSrcRecords
SrcRecs(*List
);
640 if (_error
->PendingError() == true)
643 // Create the download object
644 AcqTextStatus
Stat(ScreenWidth
,_config
->FindI("quiet",0));
646 Fetcher
.SetLog(&Stat
);
648 DscFile
*Dsc
= new DscFile
[CmdL
.FileSize()];
650 // insert all downloaded uris into this set to avoid downloading them
654 // Diff only mode only fetches .diff files
655 bool const diffOnly
= _config
->FindB("APT::Get::Diff-Only", false);
656 // Tar only mode only fetches .tar files
657 bool const tarOnly
= _config
->FindB("APT::Get::Tar-Only", false);
658 // Dsc only mode only fetches .dsc files
659 bool const dscOnly
= _config
->FindB("APT::Get::Dsc-Only", false);
661 // Load the requestd sources into the fetcher
663 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++, J
++)
666 pkgSrcRecords::Parser
*Last
= FindSrc(*I
,Recs
,SrcRecs
,Src
,*Cache
);
670 return _error
->Error(_("Unable to find a source package for %s"),Src
.c_str());
673 string srec
= Last
->AsStr();
674 string::size_type pos
= srec
.find("\nVcs-");
675 while (pos
!= string::npos
)
677 pos
+= strlen("\nVcs-");
678 string vcs
= srec
.substr(pos
,srec
.find(":",pos
)-pos
);
681 pos
= srec
.find("\nVcs-", pos
);
684 pos
+= vcs
.length()+2;
685 string::size_type epos
= srec
.find("\n", pos
);
686 string uri
= srec
.substr(pos
,epos
-pos
).c_str();
687 ioprintf(c1out
, _("NOTICE: '%s' packaging is maintained in "
688 "the '%s' version control system at:\n"
690 Src
.c_str(), vcs
.c_str(), uri
.c_str());
692 ioprintf(c1out
,_("Please use:\n"
694 "to retrieve the latest (possibly unreleased) "
695 "updates to the package.\n"),
701 vector
<pkgSrcRecords::File
> Lst
;
702 if (Last
->Files(Lst
) == false) {
707 // Load them into the fetcher
708 for (vector
<pkgSrcRecords::File
>::const_iterator I
= Lst
.begin();
711 // Try to guess what sort of file it is we are getting.
712 if (I
->Type
== "dsc")
714 Dsc
[J
].Package
= Last
->Package();
715 Dsc
[J
].Version
= Last
->Version();
716 Dsc
[J
].Dsc
= flNotDir(I
->Path
);
719 // Handle the only options so that multiple can be used at once
720 if (diffOnly
== true || tarOnly
== true || dscOnly
== true)
722 if ((diffOnly
== true && I
->Type
== "diff") ||
723 (tarOnly
== true && I
->Type
== "tar") ||
724 (dscOnly
== true && I
->Type
== "dsc"))
725 ; // Fine, we want this file downloaded
730 // don't download the same uri twice (should this be moved to
731 // the fetcher interface itself?)
732 if(queued
.find(Last
->Index().ArchiveURI(I
->Path
)) != queued
.end())
734 queued
.insert(Last
->Index().ArchiveURI(I
->Path
));
736 // check if we have a file with that md5 sum already localy
737 if(!I
->MD5Hash
.empty() && FileExists(flNotDir(I
->Path
)))
739 FileFd
Fd(flNotDir(I
->Path
), FileFd::ReadOnly
);
741 sum
.AddFD(Fd
.Fd(), Fd
.Size());
743 if((string
)sum
.Result() == I
->MD5Hash
)
745 ioprintf(c1out
,_("Skipping already downloaded file '%s'\n"),
746 flNotDir(I
->Path
).c_str());
751 new pkgAcqFile(&Fetcher
,Last
->Index().ArchiveURI(I
->Path
),
753 Last
->Index().SourceInfo(*Last
,*I
),Src
);
757 // Display statistics
758 unsigned long long FetchBytes
= Fetcher
.FetchNeeded();
759 unsigned long long FetchPBytes
= Fetcher
.PartialPresent();
760 unsigned long long DebBytes
= Fetcher
.TotalNeeded();
762 // Check for enough free space
764 string OutputDir
= ".";
765 if (statvfs(OutputDir
.c_str(),&Buf
) != 0) {
767 if (errno
== EOVERFLOW
)
768 return _error
->WarningE("statvfs",_("Couldn't determine free space in %s"),
771 return _error
->Errno("statvfs",_("Couldn't determine free space in %s"),
773 } else if (unsigned(Buf
.f_bfree
) < (FetchBytes
- FetchPBytes
)/Buf
.f_bsize
)
776 if (statfs(OutputDir
.c_str(),&Stat
) != 0
777 #if HAVE_STRUCT_STATFS_F_TYPE
778 || unsigned(Stat
.f_type
) != RAMFS_MAGIC
782 return _error
->Error(_("You don't have enough free space in %s"),
788 if (DebBytes
!= FetchBytes
)
789 //TRANSLATOR: The required space between number and unit is already included
790 // in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
791 ioprintf(c1out
,_("Need to get %sB/%sB of source archives.\n"),
792 SizeToStr(FetchBytes
).c_str(),SizeToStr(DebBytes
).c_str());
794 //TRANSLATOR: The required space between number and unit is already included
795 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
796 ioprintf(c1out
,_("Need to get %sB of source archives.\n"),
797 SizeToStr(DebBytes
).c_str());
799 if (_config
->FindB("APT::Get::Simulate",false) == true)
801 for (unsigned I
= 0; I
!= J
; I
++)
802 ioprintf(cout
,_("Fetch source %s\n"),Dsc
[I
].Package
.c_str());
807 // Just print out the uris an exit if the --print-uris flag was used
808 if (_config
->FindB("APT::Get::Print-URIs") == true)
810 pkgAcquire::UriIterator I
= Fetcher
.UriBegin();
811 for (; I
!= Fetcher
.UriEnd(); ++I
)
812 cout
<< '\'' << I
->URI
<< "' " << flNotDir(I
->Owner
->DestFile
) << ' ' <<
813 I
->Owner
->FileSize
<< ' ' << I
->Owner
->HashSum() << endl
;
819 if (Fetcher
.Run() == pkgAcquire::Failed
)
825 // Print error messages
827 for (pkgAcquire::ItemIterator I
= Fetcher
.ItemsBegin(); I
!= Fetcher
.ItemsEnd(); ++I
)
829 if ((*I
)->Status
== pkgAcquire::Item::StatDone
&&
830 (*I
)->Complete
== true)
833 fprintf(stderr
,_("Failed to fetch %s %s\n"),(*I
)->DescURI().c_str(),
834 (*I
)->ErrorText
.c_str());
840 return _error
->Error(_("Failed to fetch some archives."));
843 if (_config
->FindB("APT::Get::Download-only",false) == true)
845 c1out
<< _("Download complete and in download only mode") << endl
;
850 // Unpack the sources
851 pid_t Process
= ExecFork();
855 bool const fixBroken
= _config
->FindB("APT::Get::Fix-Broken", false);
856 for (unsigned I
= 0; I
!= J
; ++I
)
858 string Dir
= Dsc
[I
].Package
+ '-' + Cache
->VS().UpstreamVersion(Dsc
[I
].Version
.c_str());
860 // Diff only mode only fetches .diff files
861 if (_config
->FindB("APT::Get::Diff-Only",false) == true ||
862 _config
->FindB("APT::Get::Tar-Only",false) == true ||
863 Dsc
[I
].Dsc
.empty() == true)
866 // See if the package is already unpacked
868 if (fixBroken
== false && stat(Dir
.c_str(),&Stat
) == 0 &&
869 S_ISDIR(Stat
.st_mode
) != 0)
871 ioprintf(c0out
,_("Skipping unpack of already unpacked source in %s\n"),
878 snprintf(S
,sizeof(S
),"%s -x %s",
879 _config
->Find("Dir::Bin::dpkg-source","dpkg-source").c_str(),
883 fprintf(stderr
,_("Unpack command '%s' failed.\n"),S
);
884 fprintf(stderr
,_("Check if the 'dpkg-dev' package is installed.\n"));
889 // Try to compile it with dpkg-buildpackage
890 if (_config
->FindB("APT::Get::Compile",false) == true)
892 string buildopts
= _config
->Find("APT::Get::Host-Architecture");
893 if (buildopts
.empty() == false)
894 buildopts
= "-a" + buildopts
+ " ";
895 buildopts
.append(_config
->Find("DPkg::Build-Options","-b -uc"));
897 // Call dpkg-buildpackage
899 snprintf(S
,sizeof(S
),"cd %s && %s %s",
901 _config
->Find("Dir::Bin::dpkg-buildpackage","dpkg-buildpackage").c_str(),
906 fprintf(stderr
,_("Build command '%s' failed.\n"),S
);
916 // Wait for the subprocess
918 while (waitpid(Process
,&Status
,0) != Process
)
922 return _error
->Errno("waitpid","Couldn't wait for subprocess");
925 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
926 return _error
->Error(_("Child process failed"));
931 // DoBuildDep - Install/removes packages to satisfy build dependencies /*{{{*/
932 // ---------------------------------------------------------------------
933 /* This function will look at the build depends list of the given source
934 package and install the necessary packages to make it true, or fail. */
935 bool DoBuildDep(CommandLine
&CmdL
)
939 _config
->Set("APT::Install-Recommends", false);
941 if (Cache
.Open(true) == false)
944 if (CmdL
.FileSize() <= 1)
945 return _error
->Error(_("Must specify at least one package to check builddeps for"));
947 // Read the source list
948 if (Cache
.BuildSourceList() == false)
950 pkgSourceList
*List
= Cache
.GetSourceList();
952 // Create the text record parsers
953 pkgRecords
Recs(Cache
);
954 pkgSrcRecords
SrcRecs(*List
);
955 if (_error
->PendingError() == true)
958 // Create the download object
959 AcqTextStatus
Stat(ScreenWidth
,_config
->FindI("quiet",0));
961 if (Fetcher
.Setup(&Stat
) == false)
965 string hostArch
= _config
->Find("APT::Get::Host-Architecture");
966 if (hostArch
.empty() == false)
968 std::vector
<std::string
> archs
= APT::Configuration::getArchitectures();
969 if (std::find(archs
.begin(), archs
.end(), hostArch
) == archs
.end())
970 return _error
->Error(_("No architecture information available for %s. See apt.conf(5) APT::Architectures for setup"), hostArch
.c_str());
971 StripMultiArch
= false;
974 StripMultiArch
= true;
977 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++, J
++)
980 pkgSrcRecords::Parser
*Last
= FindSrc(*I
,Recs
,SrcRecs
,Src
,*Cache
);
982 return _error
->Error(_("Unable to find a source package for %s"),Src
.c_str());
984 // Process the build-dependencies
985 vector
<pkgSrcRecords::Parser::BuildDepRec
> BuildDeps
;
986 // FIXME: Can't specify architecture to use for [wildcard] matching, so switch default arch temporary
987 if (hostArch
.empty() == false)
989 std::string nativeArch
= _config
->Find("APT::Architecture");
990 _config
->Set("APT::Architecture", hostArch
);
991 bool Success
= Last
->BuildDepends(BuildDeps
, _config
->FindB("APT::Get::Arch-Only", false), StripMultiArch
);
992 _config
->Set("APT::Architecture", nativeArch
);
993 if (Success
== false)
994 return _error
->Error(_("Unable to get build-dependency information for %s"),Src
.c_str());
996 else if (Last
->BuildDepends(BuildDeps
, _config
->FindB("APT::Get::Arch-Only", false), StripMultiArch
) == false)
997 return _error
->Error(_("Unable to get build-dependency information for %s"),Src
.c_str());
999 // Also ensure that build-essential packages are present
1000 Configuration::Item
const *Opts
= _config
->Tree("APT::Build-Essential");
1003 for (; Opts
; Opts
= Opts
->Next
)
1005 if (Opts
->Value
.empty() == true)
1008 pkgSrcRecords::Parser::BuildDepRec rec
;
1009 rec
.Package
= Opts
->Value
;
1010 rec
.Type
= pkgSrcRecords::Parser::BuildDependIndep
;
1012 BuildDeps
.push_back(rec
);
1015 if (BuildDeps
.empty() == true)
1017 ioprintf(c1out
,_("%s has no build depends.\n"),Src
.c_str());
1021 // Install the requested packages
1022 vector
<pkgSrcRecords::Parser::BuildDepRec
>::iterator D
;
1023 pkgProblemResolver
Fix(Cache
);
1024 bool skipAlternatives
= false; // skip remaining alternatives in an or group
1025 for (D
= BuildDeps
.begin(); D
!= BuildDeps
.end(); ++D
)
1027 bool hasAlternatives
= (((*D
).Op
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
);
1029 if (skipAlternatives
== true)
1032 * if there are alternatives, we've already picked one, so skip
1035 * TODO: this means that if there's a build-dep on A|B and B is
1036 * installed, we'll still try to install A; more importantly,
1037 * if A is currently broken, we cannot go back and try B. To fix
1038 * this would require we do a Resolve cycle for each package we
1039 * add to the install list. Ugh
1041 if (!hasAlternatives
)
1042 skipAlternatives
= false; // end of or group
1046 if ((*D
).Type
== pkgSrcRecords::Parser::BuildConflict
||
1047 (*D
).Type
== pkgSrcRecords::Parser::BuildConflictIndep
)
1049 pkgCache::GrpIterator Grp
= Cache
->FindGrp((*D
).Package
);
1050 // Build-conflicts on unknown packages are silently ignored
1051 if (Grp
.end() == true)
1054 for (pkgCache::PkgIterator Pkg
= Grp
.PackageList(); Pkg
.end() == false; Pkg
= Grp
.NextPkg(Pkg
))
1056 pkgCache::VerIterator IV
= (*Cache
)[Pkg
].InstVerIter(*Cache
);
1058 * Remove if we have an installed version that satisfies the
1061 if (IV
.end() == false &&
1062 Cache
->VS().CheckDep(IV
.VerStr(),(*D
).Op
,(*D
).Version
.c_str()) == true)
1063 TryToInstallBuildDep(Pkg
,Cache
,Fix
,true,false);
1066 else // BuildDep || BuildDepIndep
1068 if (_config
->FindB("Debug::BuildDeps",false) == true)
1069 cout
<< "Looking for " << (*D
).Package
<< "...\n";
1071 pkgCache::PkgIterator Pkg
;
1074 if (StripMultiArch
== false && D
->Type
!= pkgSrcRecords::Parser::BuildDependIndep
)
1076 size_t const colon
= D
->Package
.find(":");
1077 if (colon
!= string::npos
)
1079 if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0 || strcmp(D
->Package
.c_str() + colon
, ":native") == 0)
1080 Pkg
= Cache
->FindPkg(D
->Package
.substr(0,colon
));
1082 Pkg
= Cache
->FindPkg(D
->Package
);
1085 Pkg
= Cache
->FindPkg(D
->Package
, hostArch
);
1087 // a bad version either is invalid or doesn't satify dependency
1088 #define BADVER(Ver) (Ver.end() == true || \
1089 (D->Version.empty() == false && \
1090 Cache->VS().CheckDep(Ver.VerStr(),D->Op,D->Version.c_str()) == false))
1092 APT::VersionList verlist
;
1093 if (Pkg
.end() == false)
1095 pkgCache::VerIterator Ver
= (*Cache
)[Pkg
].InstVerIter(*Cache
);
1096 if (BADVER(Ver
) == false)
1097 verlist
.insert(Ver
);
1098 Ver
= (*Cache
)[Pkg
].CandidateVerIter(*Cache
);
1099 if (BADVER(Ver
) == false)
1100 verlist
.insert(Ver
);
1102 if (verlist
.empty() == true)
1104 pkgCache::PkgIterator BuildPkg
= Cache
->FindPkg(D
->Package
, "native");
1105 if (BuildPkg
.end() == false && Pkg
!= BuildPkg
)
1107 pkgCache::VerIterator Ver
= (*Cache
)[BuildPkg
].InstVerIter(*Cache
);
1108 if (BADVER(Ver
) == false)
1109 verlist
.insert(Ver
);
1110 Ver
= (*Cache
)[BuildPkg
].CandidateVerIter(*Cache
);
1111 if (BADVER(Ver
) == false)
1112 verlist
.insert(Ver
);
1118 // We need to decide if host or build arch, so find a version we can look at
1119 APT::VersionList::const_iterator Ver
= verlist
.begin();
1120 for (; Ver
!= verlist
.end(); ++Ver
)
1123 if (Ver
->MultiArch
== pkgCache::Version::None
|| Ver
->MultiArch
== pkgCache::Version::All
)
1125 if (colon
== string::npos
)
1126 Pkg
= Ver
.ParentPkg().Group().FindPkg(hostArch
);
1127 else if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0)
1128 forbidden
= "Multi-Arch: none";
1129 else if (strcmp(D
->Package
.c_str() + colon
, ":native") == 0)
1130 Pkg
= Ver
.ParentPkg().Group().FindPkg("native");
1132 else if (Ver
->MultiArch
== pkgCache::Version::Same
)
1134 if (colon
== string::npos
)
1135 Pkg
= Ver
.ParentPkg().Group().FindPkg(hostArch
);
1136 else if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0)
1137 forbidden
= "Multi-Arch: same";
1138 else if (strcmp(D
->Package
.c_str() + colon
, ":native") == 0)
1139 Pkg
= Ver
.ParentPkg().Group().FindPkg("native");
1141 else if ((Ver
->MultiArch
& pkgCache::Version::Foreign
) == pkgCache::Version::Foreign
)
1143 if (colon
== string::npos
)
1144 Pkg
= Ver
.ParentPkg().Group().FindPkg("native");
1145 else if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0 ||
1146 strcmp(D
->Package
.c_str() + colon
, ":native") == 0)
1147 forbidden
= "Multi-Arch: foreign";
1149 else if ((Ver
->MultiArch
& pkgCache::Version::Allowed
) == pkgCache::Version::Allowed
)
1151 if (colon
== string::npos
)
1152 Pkg
= Ver
.ParentPkg().Group().FindPkg(hostArch
);
1153 else if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0)
1155 // prefer any installed over preferred non-installed architectures
1156 pkgCache::GrpIterator Grp
= Ver
.ParentPkg().Group();
1157 // we don't check for version here as we are better of with upgrading than remove and install
1158 for (Pkg
= Grp
.PackageList(); Pkg
.end() == false; Pkg
= Grp
.NextPkg(Pkg
))
1159 if (Pkg
.CurrentVer().end() == false)
1161 if (Pkg
.end() == true)
1162 Pkg
= Grp
.FindPreferredPkg(true);
1164 else if (strcmp(D
->Package
.c_str() + colon
, ":native") == 0)
1165 Pkg
= Ver
.ParentPkg().Group().FindPkg("native");
1168 if (forbidden
.empty() == false)
1170 if (_config
->FindB("Debug::BuildDeps",false) == true)
1171 cout
<< D
->Package
.substr(colon
, string::npos
) << " is not allowed from " << forbidden
<< " package " << (*D
).Package
<< " (" << Ver
.VerStr() << ")" << endl
;
1175 //we found a good version
1178 if (Ver
== verlist
.end())
1180 if (_config
->FindB("Debug::BuildDeps",false) == true)
1181 cout
<< " No multiarch info as we have no satisfying installed nor candidate for " << D
->Package
<< " on build or host arch" << endl
;
1183 if (forbidden
.empty() == false)
1185 if (hasAlternatives
)
1187 return _error
->Error(_("%s dependency for %s can't be satisfied "
1188 "because %s is not allowed on '%s' packages"),
1189 Last
->BuildDepType(D
->Type
), Src
.c_str(),
1190 D
->Package
.c_str(), forbidden
.c_str());
1195 Pkg
= Cache
->FindPkg(D
->Package
);
1197 if (Pkg
.end() == true || (Pkg
->VersionList
== 0 && Pkg
->ProvidesList
== 0))
1199 if (_config
->FindB("Debug::BuildDeps",false) == true)
1200 cout
<< " (not found)" << (*D
).Package
<< endl
;
1202 if (hasAlternatives
)
1205 return _error
->Error(_("%s dependency for %s cannot be satisfied "
1206 "because the package %s cannot be found"),
1207 Last
->BuildDepType((*D
).Type
),Src
.c_str(),
1208 (*D
).Package
.c_str());
1211 pkgCache::VerIterator IV
= (*Cache
)[Pkg
].InstVerIter(*Cache
);
1212 if (IV
.end() == false)
1214 if (_config
->FindB("Debug::BuildDeps",false) == true)
1215 cout
<< " Is installed\n";
1217 if (D
->Version
.empty() == true ||
1218 Cache
->VS().CheckDep(IV
.VerStr(),(*D
).Op
,(*D
).Version
.c_str()) == true)
1220 skipAlternatives
= hasAlternatives
;
1224 if (_config
->FindB("Debug::BuildDeps",false) == true)
1225 cout
<< " ...but the installed version doesn't meet the version requirement\n";
1227 if (((*D
).Op
& pkgCache::Dep::LessEq
) == pkgCache::Dep::LessEq
)
1228 return _error
->Error(_("Failed to satisfy %s dependency for %s: Installed package %s is too new"),
1229 Last
->BuildDepType((*D
).Type
), Src
.c_str(), Pkg
.FullName(true).c_str());
1232 // Only consider virtual packages if there is no versioned dependency
1233 if ((*D
).Version
.empty() == true)
1236 * If this is a virtual package, we need to check the list of
1237 * packages that provide it and see if any of those are
1240 pkgCache::PrvIterator Prv
= Pkg
.ProvidesList();
1241 for (; Prv
.end() != true; ++Prv
)
1243 if (_config
->FindB("Debug::BuildDeps",false) == true)
1244 cout
<< " Checking provider " << Prv
.OwnerPkg().FullName() << endl
;
1246 if ((*Cache
)[Prv
.OwnerPkg()].InstVerIter(*Cache
).end() == false)
1250 if (Prv
.end() == false)
1252 if (_config
->FindB("Debug::BuildDeps",false) == true)
1253 cout
<< " Is provided by installed package " << Prv
.OwnerPkg().FullName() << endl
;
1254 skipAlternatives
= hasAlternatives
;
1258 else // versioned dependency
1260 pkgCache::VerIterator CV
= (*Cache
)[Pkg
].CandidateVerIter(*Cache
);
1261 if (CV
.end() == true ||
1262 Cache
->VS().CheckDep(CV
.VerStr(),(*D
).Op
,(*D
).Version
.c_str()) == false)
1264 if (hasAlternatives
)
1266 else if (CV
.end() == false)
1267 return _error
->Error(_("%s dependency for %s cannot be satisfied "
1268 "because candidate version of package %s "
1269 "can't satisfy version requirements"),
1270 Last
->BuildDepType(D
->Type
), Src
.c_str(),
1271 D
->Package
.c_str());
1273 return _error
->Error(_("%s dependency for %s cannot be satisfied "
1274 "because package %s has no candidate version"),
1275 Last
->BuildDepType(D
->Type
), Src
.c_str(),
1276 D
->Package
.c_str());
1280 if (TryToInstallBuildDep(Pkg
,Cache
,Fix
,false,false,false) == true)
1282 // We successfully installed something; skip remaining alternatives
1283 skipAlternatives
= hasAlternatives
;
1284 if(_config
->FindB("APT::Get::Build-Dep-Automatic", false) == true)
1285 Cache
->MarkAuto(Pkg
, true);
1288 else if (hasAlternatives
)
1290 if (_config
->FindB("Debug::BuildDeps",false) == true)
1291 cout
<< " Unsatisfiable, trying alternatives\n";
1296 return _error
->Error(_("Failed to satisfy %s dependency for %s: %s"),
1297 Last
->BuildDepType((*D
).Type
),
1299 (*D
).Package
.c_str());
1304 if (Fix
.Resolve(true) == false)
1307 // Now we check the state of the packages,
1308 if (Cache
->BrokenCount() != 0)
1310 ShowBroken(cout
, Cache
, false);
1311 return _error
->Error(_("Build-dependencies for %s could not be satisfied."),*I
);
1315 if (InstallPackages(Cache
, false, true) == false)
1316 return _error
->Error(_("Failed to process build dependencies"));
1320 // GetChangelogPath - return a path pointing to a changelog file or dir /*{{{*/
1321 // ---------------------------------------------------------------------
1322 /* This returns a "path" string for the changelog url construction.
1323 * Please note that its not complete, it either needs a "/changelog"
1324 * appended (for the packages.debian.org/changelogs site) or a
1325 * ".changelog" (for third party sites that store the changelog in the
1326 * pool/ next to the deb itself)
1327 * Example return: "pool/main/a/apt/apt_0.8.8ubuntu3"
1329 string
GetChangelogPath(CacheFile
&Cache
,
1330 pkgCache::PkgIterator Pkg
,
1331 pkgCache::VerIterator Ver
)
1335 pkgRecords
Recs(Cache
);
1336 pkgRecords::Parser
&rec
=Recs
.Lookup(Ver
.FileList());
1337 string srcpkg
= rec
.SourcePkg().empty() ? Pkg
.Name() : rec
.SourcePkg();
1338 string ver
= Ver
.VerStr();
1339 // if there is a source version it always wins
1340 if (rec
.SourceVer() != "")
1341 ver
= rec
.SourceVer();
1342 path
= flNotFile(rec
.FileName());
1343 path
+= srcpkg
+ "_" + StripEpoch(ver
);
1347 // GuessThirdPartyChangelogUri - return url /*{{{*/
1348 // ---------------------------------------------------------------------
1349 /* Contruct a changelog file path for third party sites that do not use
1350 * packages.debian.org/changelogs
1351 * This simply uses the ArchiveURI() of the source pkg and looks for
1352 * a .changelog file there, Example for "mediabuntu":
1353 * apt-get changelog mplayer-doc:
1354 * http://packages.medibuntu.org/pool/non-free/m/mplayer/mplayer_1.0~rc4~try1.dsfg1-1ubuntu1+medibuntu1.changelog
1356 bool GuessThirdPartyChangelogUri(CacheFile
&Cache
,
1357 pkgCache::PkgIterator Pkg
,
1358 pkgCache::VerIterator Ver
,
1361 // get the binary deb server path
1362 pkgCache::VerFileIterator Vf
= Ver
.FileList();
1363 if (Vf
.end() == true)
1365 pkgCache::PkgFileIterator F
= Vf
.File();
1366 pkgIndexFile
*index
;
1367 pkgSourceList
*SrcList
= Cache
.GetSourceList();
1368 if(SrcList
->FindIndex(F
, index
) == false)
1371 // get archive uri for the binary deb
1372 string path_without_dot_changelog
= GetChangelogPath(Cache
, Pkg
, Ver
);
1373 out_uri
= index
->ArchiveURI(path_without_dot_changelog
+ ".changelog");
1375 // now strip away the filename and add srcpkg_srcver.changelog
1379 // DownloadChangelog - Download the changelog /*{{{*/
1380 // ---------------------------------------------------------------------
1381 bool DownloadChangelog(CacheFile
&CacheFile
, pkgAcquire
&Fetcher
,
1382 pkgCache::VerIterator Ver
, string targetfile
)
1383 /* Download a changelog file for the given package version to
1384 * targetfile. This will first try the server from Apt::Changelogs::Server
1385 * (http://packages.debian.org/changelogs by default) and if that gives
1386 * a 404 tries to get it from the archive directly (see
1387 * GuessThirdPartyChangelogUri for details how)
1393 string changelog_uri
;
1395 // data structures we need
1396 pkgCache::PkgIterator Pkg
= Ver
.ParentPkg();
1398 // make the server root configurable
1399 server
= _config
->Find("Apt::Changelogs::Server",
1400 "http://packages.debian.org/changelogs");
1401 path
= GetChangelogPath(CacheFile
, Pkg
, Ver
);
1402 strprintf(changelog_uri
, "%s/%s/changelog", server
.c_str(), path
.c_str());
1403 if (_config
->FindB("APT::Get::Print-URIs", false) == true)
1405 std::cout
<< '\'' << changelog_uri
<< '\'' << std::endl
;
1409 strprintf(descr
, _("Changelog for %s (%s)"), Pkg
.Name(), changelog_uri
.c_str());
1411 new pkgAcqFile(&Fetcher
, changelog_uri
, "", 0, descr
, Pkg
.Name(), "ignored", targetfile
);
1413 // try downloading it, if that fails, try third-party-changelogs location
1414 // FIXME: Fetcher.Run() is "Continue" even if I get a 404?!?
1416 if (!FileExists(targetfile
))
1418 string third_party_uri
;
1419 if (GuessThirdPartyChangelogUri(CacheFile
, Pkg
, Ver
, third_party_uri
))
1421 strprintf(descr
, _("Changelog for %s (%s)"), Pkg
.Name(), third_party_uri
.c_str());
1422 new pkgAcqFile(&Fetcher
, third_party_uri
, "", 0, descr
, Pkg
.Name(), "ignored", targetfile
);
1427 if (FileExists(targetfile
))
1431 return _error
->Error("changelog download failed");
1434 // DisplayFileInPager - Display File with pager /*{{{*/
1435 void DisplayFileInPager(string filename
)
1437 pid_t Process
= ExecFork();
1440 const char *Args
[3];
1441 Args
[0] = "/usr/bin/sensible-pager";
1442 Args
[1] = filename
.c_str();
1444 execvp(Args
[0],(char **)Args
);
1448 // Wait for the subprocess
1449 ExecWait(Process
, "sensible-pager", false);
1452 // DoChangelog - Get changelog from the command line /*{{{*/
1453 // ---------------------------------------------------------------------
1454 bool DoChangelog(CommandLine
&CmdL
)
1457 if (Cache
.ReadOnlyOpen() == false)
1460 APT::CacheSetHelper
helper(c0out
);
1461 APT::VersionList verset
= APT::VersionList::FromCommandLine(Cache
,
1462 CmdL
.FileList
+ 1, APT::VersionList::CANDIDATE
, helper
);
1463 if (verset
.empty() == true)
1467 if (_config
->FindB("APT::Get::Print-URIs", false) == true)
1469 bool Success
= true;
1470 for (APT::VersionList::const_iterator Ver
= verset
.begin();
1471 Ver
!= verset
.end(); ++Ver
)
1472 Success
&= DownloadChangelog(Cache
, Fetcher
, Ver
, "");
1476 AcqTextStatus
Stat(ScreenWidth
, _config
->FindI("quiet",0));
1477 Fetcher
.Setup(&Stat
);
1479 bool const downOnly
= _config
->FindB("APT::Get::Download-Only", false);
1482 char* tmpdir
= NULL
;
1483 if (downOnly
== false)
1485 const char* const tmpDir
= getenv("TMPDIR");
1486 if (tmpDir
!= NULL
&& *tmpDir
!= '\0')
1487 snprintf(tmpname
, sizeof(tmpname
), "%s/apt-changelog-XXXXXX", tmpDir
);
1489 strncpy(tmpname
, "/tmp/apt-changelog-XXXXXX", sizeof(tmpname
));
1490 tmpdir
= mkdtemp(tmpname
);
1492 return _error
->Errno("mkdtemp", "mkdtemp failed");
1495 for (APT::VersionList::const_iterator Ver
= verset
.begin();
1496 Ver
!= verset
.end();
1499 string changelogfile
;
1500 if (downOnly
== false)
1501 changelogfile
.append(tmpname
).append("changelog");
1503 changelogfile
.append(Ver
.ParentPkg().Name()).append(".changelog");
1504 if (DownloadChangelog(Cache
, Fetcher
, Ver
, changelogfile
) && downOnly
== false)
1506 DisplayFileInPager(changelogfile
);
1507 // cleanup temp file
1508 unlink(changelogfile
.c_str());
1517 // ShowHelp - Show a help screen /*{{{*/
1518 // ---------------------------------------------------------------------
1520 bool ShowHelp(CommandLine
&CmdL
)
1522 ioprintf(cout
,_("%s %s for %s compiled on %s %s\n"),PACKAGE
,PACKAGE_VERSION
,
1523 COMMON_ARCH
,__DATE__
,__TIME__
);
1525 if (_config
->FindB("version") == true)
1527 cout
<< _("Supported modules:") << endl
;
1529 for (unsigned I
= 0; I
!= pkgVersioningSystem::GlobalListLen
; I
++)
1531 pkgVersioningSystem
*VS
= pkgVersioningSystem::GlobalList
[I
];
1532 if (_system
!= 0 && _system
->VS
== VS
)
1536 cout
<< "Ver: " << VS
->Label
<< endl
;
1538 /* Print out all the packaging systems that will work with
1540 for (unsigned J
= 0; J
!= pkgSystem::GlobalListLen
; J
++)
1542 pkgSystem
*Sys
= pkgSystem::GlobalList
[J
];
1547 if (Sys
->VS
->TestCompatibility(*VS
) == true)
1548 cout
<< "Pkg: " << Sys
->Label
<< " (Priority " << Sys
->Score(*_config
) << ")" << endl
;
1552 for (unsigned I
= 0; I
!= pkgSourceList::Type::GlobalListLen
; I
++)
1554 pkgSourceList::Type
*Type
= pkgSourceList::Type::GlobalList
[I
];
1555 cout
<< " S.L: '" << Type
->Name
<< "' " << Type
->Label
<< endl
;
1558 for (unsigned I
= 0; I
!= pkgIndexFile::Type::GlobalListLen
; I
++)
1560 pkgIndexFile::Type
*Type
= pkgIndexFile::Type::GlobalList
[I
];
1561 cout
<< " Idx: " << Type
->Label
<< endl
;
1568 _("Usage: apt-get [options] command\n"
1569 " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
1570 " apt-get [options] source pkg1 [pkg2 ...]\n"
1572 "apt-get is a simple command line interface for downloading and\n"
1573 "installing packages. The most frequently used commands are update\n"
1577 " update - Retrieve new lists of packages\n"
1578 " upgrade - Perform an upgrade\n"
1579 " install - Install new packages (pkg is libc6 not libc6.deb)\n"
1580 " remove - Remove packages\n"
1581 " autoremove - Remove automatically all unused packages\n"
1582 " purge - Remove packages and config files\n"
1583 " source - Download source archives\n"
1584 " build-dep - Configure build-dependencies for source packages\n"
1585 " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
1586 " dselect-upgrade - Follow dselect selections\n"
1587 " clean - Erase downloaded archive files\n"
1588 " autoclean - Erase old downloaded archive files\n"
1589 " check - Verify that there are no broken dependencies\n"
1590 " changelog - Download and display the changelog for the given package\n"
1591 " download - Download the binary package into the current directory\n"
1594 " -h This help text.\n"
1595 " -q Loggable output - no progress indicator\n"
1596 " -qq No output except for errors\n"
1597 " -d Download only - do NOT install or unpack archives\n"
1598 " -s No-act. Perform ordering simulation\n"
1599 " -y Assume Yes to all queries and do not prompt\n"
1600 " -f Attempt to correct a system with broken dependencies in place\n"
1601 " -m Attempt to continue if archives are unlocatable\n"
1602 " -u Show a list of upgraded packages as well\n"
1603 " -b Build the source package after fetching it\n"
1604 " -V Show verbose version numbers\n"
1605 " -c=? Read this configuration file\n"
1606 " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
1607 "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
1608 "pages for more information and options.\n"
1609 " This APT has Super Cow Powers.\n");
1613 // SigWinch - Window size change signal handler /*{{{*/
1614 // ---------------------------------------------------------------------
1618 // Riped from GNU ls
1622 if (ioctl(1, TIOCGWINSZ
, &ws
) != -1 && ws
.ws_col
>= 5)
1623 ScreenWidth
= ws
.ws_col
- 1;
1628 bool DoUpgrade(CommandLine
&CmdL
)
1630 if (_config
->FindB("APT::Get::Upgrade-Allow-New", false) == true)
1631 return DoUpgradeWithAllowNewPackages(CmdL
);
1633 return DoUpgradeNoNewPackages(CmdL
);
1636 int main(int argc
,const char *argv
[]) /*{{{*/
1638 CommandLine::Dispatch Cmds
[] = {{"update",&DoUpdate
},
1639 {"upgrade",&DoUpgrade
},
1640 {"install",&DoInstall
},
1641 {"remove",&DoInstall
},
1642 {"purge",&DoInstall
},
1643 {"autoremove",&DoInstall
},
1644 {"markauto",&DoMarkAuto
},
1645 {"unmarkauto",&DoMarkAuto
},
1646 {"dist-upgrade",&DoDistUpgrade
},
1647 {"dselect-upgrade",&DoDSelectUpgrade
},
1648 {"build-dep",&DoBuildDep
},
1650 {"autoclean",&DoAutoClean
},
1652 {"source",&DoSource
},
1653 {"download",&DoDownload
},
1654 {"changelog",&DoChangelog
},
1659 std::vector
<CommandLine::Args
> Args
= getCommandArgs("apt-get", CommandLine::GetCommand(Cmds
, argc
, argv
));
1661 // Set up gettext support
1662 setlocale(LC_ALL
,"");
1663 textdomain(PACKAGE
);
1665 // Parse the command line and initialize the package library
1666 CommandLine
CmdL(Args
.data(),_config
);
1667 if (pkgInitConfig(*_config
) == false ||
1668 CmdL
.Parse(argc
,argv
) == false ||
1669 pkgInitSystem(*_config
,_system
) == false)
1671 if (_config
->FindB("version") == true)
1674 _error
->DumpErrors();
1678 // See if the help should be shown
1679 if (_config
->FindB("help") == true ||
1680 _config
->FindB("version") == true ||
1681 CmdL
.FileSize() == 0)
1687 // see if we are in simulate mode
1688 CheckSimulateMode(CmdL
);
1690 // Deal with stdout not being a tty
1691 if (!isatty(STDOUT_FILENO
) && _config
->FindI("quiet", -1) == -1)
1692 _config
->Set("quiet","1");
1694 // Setup the output streams
1697 // Setup the signals
1698 signal(SIGPIPE
,SIG_IGN
);
1699 signal(SIGWINCH
,SigWinch
);
1702 // Match the operation
1703 CmdL
.DispatchArg(Cmds
);
1705 // Print any errors or warnings found during parsing
1706 bool const Errors
= _error
->PendingError();
1707 if (_config
->FindI("quiet",0) > 0)
1708 _error
->DumpErrors();
1710 _error
->DumpErrors(GlobalError::DEBUG
);
1711 return Errors
== true ? 100 : 0;