merged from lp:~donkult/apt/experimental
[ntk/apt.git] / cmdline / apt-get.cc
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: apt-get.cc,v 1.156 2004/08/28 01:05:16 mdz Exp $
4 /* ######################################################################
5
6 apt-get - Cover for dpkg
7
8 This is an allout cover for dpkg implementing a safer front end. It is
9 based largely on libapt-pkg.
10
11 The syntax is different,
12 apt-get [opt] command [things]
13 Where command is:
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
19 a new distribution.
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
23 the partial dir too
24
25 ##################################################################### */
26 /*}}}*/
27 // Include Files /*{{{*/
28 #include <config.h>
29
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/clean.h>
40 #include <apt-pkg/srcrecords.h>
41 #include <apt-pkg/version.h>
42 #include <apt-pkg/cachefile.h>
43 #include <apt-pkg/cacheset.h>
44 #include <apt-pkg/sptr.h>
45 #include <apt-pkg/md5.h>
46 #include <apt-pkg/versionmatch.h>
47
48 #include "acqprogress.h"
49
50 #include <set>
51 #include <locale.h>
52 #include <langinfo.h>
53 #include <fstream>
54 #include <termios.h>
55 #include <sys/ioctl.h>
56 #include <sys/stat.h>
57 #include <sys/statfs.h>
58 #include <sys/statvfs.h>
59 #include <signal.h>
60 #include <unistd.h>
61 #include <stdio.h>
62 #include <errno.h>
63 #include <regex.h>
64 #include <sys/wait.h>
65 #include <sstream>
66
67 #include <apti18n.h>
68 /*}}}*/
69
70 #define RAMFS_MAGIC 0x858458f6
71
72 using namespace std;
73
74 ostream c0out(0);
75 ostream c1out(0);
76 ostream c2out(0);
77 ofstream devnull("/dev/null");
78 unsigned int ScreenWidth = 80 - 1; /* - 1 for the cursor */
79
80 // class CacheFile - Cover class for some dependency cache functions /*{{{*/
81 // ---------------------------------------------------------------------
82 /* */
83 class CacheFile : public pkgCacheFile
84 {
85 static pkgCache *SortCache;
86 static int NameComp(const void *a,const void *b);
87
88 public:
89 pkgCache::Package **List;
90
91 void Sort();
92 bool CheckDeps(bool AllowBroken = false);
93 bool BuildCaches(bool WithLock = true)
94 {
95 OpTextProgress Prog(*_config);
96 if (pkgCacheFile::BuildCaches(&Prog,WithLock) == false)
97 return false;
98 return true;
99 }
100 bool Open(bool WithLock = true)
101 {
102 OpTextProgress Prog(*_config);
103 if (pkgCacheFile::Open(&Prog,WithLock) == false)
104 return false;
105 Sort();
106
107 return true;
108 };
109 bool OpenForInstall()
110 {
111 if (_config->FindB("APT::Get::Print-URIs") == true)
112 return Open(false);
113 else
114 return Open(true);
115 }
116 CacheFile() : List(0) {};
117 ~CacheFile() {
118 delete[] List;
119 }
120 };
121 /*}}}*/
122
123 // YnPrompt - Yes No Prompt. /*{{{*/
124 // ---------------------------------------------------------------------
125 /* Returns true on a Yes.*/
126 bool YnPrompt(bool Default=true)
127 {
128 if (_config->FindB("APT::Get::Assume-Yes",false) == true)
129 {
130 c1out << _("Y") << endl;
131 return true;
132 }
133 else if (_config->FindB("APT::Get::Assume-No",false) == true)
134 {
135 c1out << _("N") << endl;
136 return false;
137 }
138
139 char response[1024] = "";
140 cin.getline(response, sizeof(response));
141
142 if (!cin)
143 return false;
144
145 if (strlen(response) == 0)
146 return Default;
147
148 regex_t Pattern;
149 int Res;
150
151 Res = regcomp(&Pattern, nl_langinfo(YESEXPR),
152 REG_EXTENDED|REG_ICASE|REG_NOSUB);
153
154 if (Res != 0) {
155 char Error[300];
156 regerror(Res,&Pattern,Error,sizeof(Error));
157 return _error->Error(_("Regex compilation error - %s"),Error);
158 }
159
160 Res = regexec(&Pattern, response, 0, NULL, 0);
161 if (Res == 0)
162 return true;
163 return false;
164 }
165 /*}}}*/
166 // AnalPrompt - Annoying Yes No Prompt. /*{{{*/
167 // ---------------------------------------------------------------------
168 /* Returns true on a Yes.*/
169 bool AnalPrompt(const char *Text)
170 {
171 char Buf[1024];
172 cin.getline(Buf,sizeof(Buf));
173 if (strcmp(Buf,Text) == 0)
174 return true;
175 return false;
176 }
177 /*}}}*/
178 // ShowList - Show a list /*{{{*/
179 // ---------------------------------------------------------------------
180 /* This prints out a string of space separated words with a title and
181 a two space indent line wraped to the current screen width. */
182 bool ShowList(ostream &out,string Title,string List,string VersionsList)
183 {
184 if (List.empty() == true)
185 return true;
186 // trim trailing space
187 int NonSpace = List.find_last_not_of(' ');
188 if (NonSpace != -1)
189 {
190 List = List.erase(NonSpace + 1);
191 if (List.empty() == true)
192 return true;
193 }
194
195 // Acount for the leading space
196 int ScreenWidth = ::ScreenWidth - 3;
197
198 out << Title << endl;
199 string::size_type Start = 0;
200 string::size_type VersionsStart = 0;
201 while (Start < List.size())
202 {
203 if(_config->FindB("APT::Get::Show-Versions",false) == true &&
204 VersionsList.size() > 0) {
205 string::size_type End;
206 string::size_type VersionsEnd;
207
208 End = List.find(' ',Start);
209 VersionsEnd = VersionsList.find('\n', VersionsStart);
210
211 out << " " << string(List,Start,End - Start) << " (" <<
212 string(VersionsList,VersionsStart,VersionsEnd - VersionsStart) <<
213 ")" << endl;
214
215 if (End == string::npos || End < Start)
216 End = Start + ScreenWidth;
217
218 Start = End + 1;
219 VersionsStart = VersionsEnd + 1;
220 } else {
221 string::size_type End;
222
223 if (Start + ScreenWidth >= List.size())
224 End = List.size();
225 else
226 End = List.rfind(' ',Start+ScreenWidth);
227
228 if (End == string::npos || End < Start)
229 End = Start + ScreenWidth;
230 out << " " << string(List,Start,End - Start) << endl;
231 Start = End + 1;
232 }
233 }
234
235 return false;
236 }
237 /*}}}*/
238 // ShowBroken - Debugging aide /*{{{*/
239 // ---------------------------------------------------------------------
240 /* This prints out the names of all the packages that are broken along
241 with the name of each each broken dependency and a quite version
242 description.
243
244 The output looks like:
245 The following packages have unmet dependencies:
246 exim: Depends: libc6 (>= 2.1.94) but 2.1.3-10 is to be installed
247 Depends: libldap2 (>= 2.0.2-2) but it is not going to be installed
248 Depends: libsasl7 but it is not going to be installed
249 */
250 void ShowBroken(ostream &out,CacheFile &Cache,bool Now)
251 {
252 out << _("The following packages have unmet dependencies:") << endl;
253 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
254 {
255 pkgCache::PkgIterator I(Cache,Cache.List[J]);
256
257 if (Now == true)
258 {
259 if (Cache[I].NowBroken() == false)
260 continue;
261 }
262 else
263 {
264 if (Cache[I].InstBroken() == false)
265 continue;
266 }
267
268 // Print out each package and the failed dependencies
269 out << " " << I.FullName(true) << " :";
270 unsigned const Indent = I.FullName(true).size() + 3;
271 bool First = true;
272 pkgCache::VerIterator Ver;
273
274 if (Now == true)
275 Ver = I.CurrentVer();
276 else
277 Ver = Cache[I].InstVerIter(Cache);
278
279 if (Ver.end() == true)
280 {
281 out << endl;
282 continue;
283 }
284
285 for (pkgCache::DepIterator D = Ver.DependsList(); D.end() == false;)
286 {
287 // Compute a single dependency element (glob or)
288 pkgCache::DepIterator Start;
289 pkgCache::DepIterator End;
290 D.GlobOr(Start,End); // advances D
291
292 if (Cache->IsImportantDep(End) == false)
293 continue;
294
295 if (Now == true)
296 {
297 if ((Cache[End] & pkgDepCache::DepGNow) == pkgDepCache::DepGNow)
298 continue;
299 }
300 else
301 {
302 if ((Cache[End] & pkgDepCache::DepGInstall) == pkgDepCache::DepGInstall)
303 continue;
304 }
305
306 bool FirstOr = true;
307 while (1)
308 {
309 if (First == false)
310 for (unsigned J = 0; J != Indent; J++)
311 out << ' ';
312 First = false;
313
314 if (FirstOr == false)
315 {
316 for (unsigned J = 0; J != strlen(End.DepType()) + 3; J++)
317 out << ' ';
318 }
319 else
320 out << ' ' << End.DepType() << ": ";
321 FirstOr = false;
322
323 out << Start.TargetPkg().FullName(true);
324
325 // Show a quick summary of the version requirements
326 if (Start.TargetVer() != 0)
327 out << " (" << Start.CompType() << " " << Start.TargetVer() << ")";
328
329 /* Show a summary of the target package if possible. In the case
330 of virtual packages we show nothing */
331 pkgCache::PkgIterator Targ = Start.TargetPkg();
332 if (Targ->ProvidesList == 0)
333 {
334 out << ' ';
335 pkgCache::VerIterator Ver = Cache[Targ].InstVerIter(Cache);
336 if (Now == true)
337 Ver = Targ.CurrentVer();
338
339 if (Ver.end() == false)
340 {
341 if (Now == true)
342 ioprintf(out,_("but %s is installed"),Ver.VerStr());
343 else
344 ioprintf(out,_("but %s is to be installed"),Ver.VerStr());
345 }
346 else
347 {
348 if (Cache[Targ].CandidateVerIter(Cache).end() == true)
349 {
350 if (Targ->ProvidesList == 0)
351 out << _("but it is not installable");
352 else
353 out << _("but it is a virtual package");
354 }
355 else
356 out << (Now?_("but it is not installed"):_("but it is not going to be installed"));
357 }
358 }
359
360 if (Start != End)
361 out << _(" or");
362 out << endl;
363
364 if (Start == End)
365 break;
366 ++Start;
367 }
368 }
369 }
370 }
371 /*}}}*/
372 // ShowNew - Show packages to newly install /*{{{*/
373 // ---------------------------------------------------------------------
374 /* */
375 void ShowNew(ostream &out,CacheFile &Cache)
376 {
377 /* Print out a list of packages that are going to be installed extra
378 to what the user asked */
379 string List;
380 string VersionsList;
381 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
382 {
383 pkgCache::PkgIterator I(Cache,Cache.List[J]);
384 if (Cache[I].NewInstall() == true) {
385 List += I.FullName(true) + " ";
386 VersionsList += string(Cache[I].CandVersion) + "\n";
387 }
388 }
389
390 ShowList(out,_("The following NEW packages will be installed:"),List,VersionsList);
391 }
392 /*}}}*/
393 // ShowDel - Show packages to delete /*{{{*/
394 // ---------------------------------------------------------------------
395 /* */
396 void ShowDel(ostream &out,CacheFile &Cache)
397 {
398 /* Print out a list of packages that are going to be removed extra
399 to what the user asked */
400 string List;
401 string VersionsList;
402 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
403 {
404 pkgCache::PkgIterator I(Cache,Cache.List[J]);
405 if (Cache[I].Delete() == true)
406 {
407 if ((Cache[I].iFlags & pkgDepCache::Purge) == pkgDepCache::Purge)
408 List += I.FullName(true) + "* ";
409 else
410 List += I.FullName(true) + " ";
411
412 VersionsList += string(Cache[I].CandVersion)+ "\n";
413 }
414 }
415
416 ShowList(out,_("The following packages will be REMOVED:"),List,VersionsList);
417 }
418 /*}}}*/
419 // ShowKept - Show kept packages /*{{{*/
420 // ---------------------------------------------------------------------
421 /* */
422 void ShowKept(ostream &out,CacheFile &Cache)
423 {
424 string List;
425 string VersionsList;
426 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
427 {
428 pkgCache::PkgIterator I(Cache,Cache.List[J]);
429
430 // Not interesting
431 if (Cache[I].Upgrade() == true || Cache[I].Upgradable() == false ||
432 I->CurrentVer == 0 || Cache[I].Delete() == true)
433 continue;
434
435 List += I.FullName(true) + " ";
436 VersionsList += string(Cache[I].CurVersion) + " => " + Cache[I].CandVersion + "\n";
437 }
438 ShowList(out,_("The following packages have been kept back:"),List,VersionsList);
439 }
440 /*}}}*/
441 // ShowUpgraded - Show upgraded packages /*{{{*/
442 // ---------------------------------------------------------------------
443 /* */
444 void ShowUpgraded(ostream &out,CacheFile &Cache)
445 {
446 string List;
447 string VersionsList;
448 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
449 {
450 pkgCache::PkgIterator I(Cache,Cache.List[J]);
451
452 // Not interesting
453 if (Cache[I].Upgrade() == false || Cache[I].NewInstall() == true)
454 continue;
455
456 List += I.FullName(true) + " ";
457 VersionsList += string(Cache[I].CurVersion) + " => " + Cache[I].CandVersion + "\n";
458 }
459 ShowList(out,_("The following packages will be upgraded:"),List,VersionsList);
460 }
461 /*}}}*/
462 // ShowDowngraded - Show downgraded packages /*{{{*/
463 // ---------------------------------------------------------------------
464 /* */
465 bool ShowDowngraded(ostream &out,CacheFile &Cache)
466 {
467 string List;
468 string VersionsList;
469 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
470 {
471 pkgCache::PkgIterator I(Cache,Cache.List[J]);
472
473 // Not interesting
474 if (Cache[I].Downgrade() == false || Cache[I].NewInstall() == true)
475 continue;
476
477 List += I.FullName(true) + " ";
478 VersionsList += string(Cache[I].CurVersion) + " => " + Cache[I].CandVersion + "\n";
479 }
480 return ShowList(out,_("The following packages will be DOWNGRADED:"),List,VersionsList);
481 }
482 /*}}}*/
483 // ShowHold - Show held but changed packages /*{{{*/
484 // ---------------------------------------------------------------------
485 /* */
486 bool ShowHold(ostream &out,CacheFile &Cache)
487 {
488 string List;
489 string VersionsList;
490 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
491 {
492 pkgCache::PkgIterator I(Cache,Cache.List[J]);
493 if (Cache[I].InstallVer != (pkgCache::Version *)I.CurrentVer() &&
494 I->SelectedState == pkgCache::State::Hold) {
495 List += I.FullName(true) + " ";
496 VersionsList += string(Cache[I].CurVersion) + " => " + Cache[I].CandVersion + "\n";
497 }
498 }
499
500 return ShowList(out,_("The following held packages will be changed:"),List,VersionsList);
501 }
502 /*}}}*/
503 // ShowEssential - Show an essential package warning /*{{{*/
504 // ---------------------------------------------------------------------
505 /* This prints out a warning message that is not to be ignored. It shows
506 all essential packages and their dependents that are to be removed.
507 It is insanely risky to remove the dependents of an essential package! */
508 bool ShowEssential(ostream &out,CacheFile &Cache)
509 {
510 string List;
511 string VersionsList;
512 bool *Added = new bool[Cache->Head().PackageCount];
513 for (unsigned int I = 0; I != Cache->Head().PackageCount; I++)
514 Added[I] = false;
515
516 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
517 {
518 pkgCache::PkgIterator I(Cache,Cache.List[J]);
519 if ((I->Flags & pkgCache::Flag::Essential) != pkgCache::Flag::Essential &&
520 (I->Flags & pkgCache::Flag::Important) != pkgCache::Flag::Important)
521 continue;
522
523 // The essential package is being removed
524 if (Cache[I].Delete() == true)
525 {
526 if (Added[I->ID] == false)
527 {
528 Added[I->ID] = true;
529 List += I.FullName(true) + " ";
530 //VersionsList += string(Cache[I].CurVersion) + "\n"; ???
531 }
532 }
533 else
534 continue;
535
536 if (I->CurrentVer == 0)
537 continue;
538
539 // Print out any essential package depenendents that are to be removed
540 for (pkgCache::DepIterator D = I.CurrentVer().DependsList(); D.end() == false; ++D)
541 {
542 // Skip everything but depends
543 if (D->Type != pkgCache::Dep::PreDepends &&
544 D->Type != pkgCache::Dep::Depends)
545 continue;
546
547 pkgCache::PkgIterator P = D.SmartTargetPkg();
548 if (Cache[P].Delete() == true)
549 {
550 if (Added[P->ID] == true)
551 continue;
552 Added[P->ID] = true;
553
554 char S[300];
555 snprintf(S,sizeof(S),_("%s (due to %s) "),P.FullName(true).c_str(),I.FullName(true).c_str());
556 List += S;
557 //VersionsList += "\n"; ???
558 }
559 }
560 }
561
562 delete [] Added;
563 return ShowList(out,_("WARNING: The following essential packages will be removed.\n"
564 "This should NOT be done unless you know exactly what you are doing!"),List,VersionsList);
565 }
566
567 /*}}}*/
568 // Stats - Show some statistics /*{{{*/
569 // ---------------------------------------------------------------------
570 /* */
571 void Stats(ostream &out,pkgDepCache &Dep)
572 {
573 unsigned long Upgrade = 0;
574 unsigned long Downgrade = 0;
575 unsigned long Install = 0;
576 unsigned long ReInstall = 0;
577 for (pkgCache::PkgIterator I = Dep.PkgBegin(); I.end() == false; ++I)
578 {
579 if (Dep[I].NewInstall() == true)
580 Install++;
581 else
582 {
583 if (Dep[I].Upgrade() == true)
584 Upgrade++;
585 else
586 if (Dep[I].Downgrade() == true)
587 Downgrade++;
588 }
589
590 if (Dep[I].Delete() == false && (Dep[I].iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall)
591 ReInstall++;
592 }
593
594 ioprintf(out,_("%lu upgraded, %lu newly installed, "),
595 Upgrade,Install);
596
597 if (ReInstall != 0)
598 ioprintf(out,_("%lu reinstalled, "),ReInstall);
599 if (Downgrade != 0)
600 ioprintf(out,_("%lu downgraded, "),Downgrade);
601
602 ioprintf(out,_("%lu to remove and %lu not upgraded.\n"),
603 Dep.DelCount(),Dep.KeepCount());
604
605 if (Dep.BadCount() != 0)
606 ioprintf(out,_("%lu not fully installed or removed.\n"),
607 Dep.BadCount());
608 }
609 /*}}}*/
610 // CacheSetHelperAPTGet - responsible for message telling from the CacheSets/*{{{*/
611 class CacheSetHelperAPTGet : public APT::CacheSetHelper {
612 /** \brief stream message should be printed to */
613 std::ostream &out;
614 /** \brief were things like Task or RegEx used to select packages? */
615 bool explicitlyNamed;
616
617 APT::PackageSet virtualPkgs;
618
619 public:
620 std::list<std::pair<pkgCache::VerIterator, std::string> > selectedByRelease;
621
622 CacheSetHelperAPTGet(std::ostream &out) : APT::CacheSetHelper(true), out(out) {
623 explicitlyNamed = true;
624 }
625
626 virtual void showTaskSelection(APT::PackageSet const &pkgset, string const &pattern) {
627 for (APT::PackageSet::const_iterator Pkg = pkgset.begin(); Pkg != pkgset.end(); ++Pkg)
628 ioprintf(out, _("Note, selecting '%s' for task '%s'\n"),
629 Pkg.FullName(true).c_str(), pattern.c_str());
630 explicitlyNamed = false;
631 }
632 virtual void showRegExSelection(APT::PackageSet const &pkgset, string const &pattern) {
633 for (APT::PackageSet::const_iterator Pkg = pkgset.begin(); Pkg != pkgset.end(); ++Pkg)
634 ioprintf(out, _("Note, selecting '%s' for regex '%s'\n"),
635 Pkg.FullName(true).c_str(), pattern.c_str());
636 explicitlyNamed = false;
637 }
638 virtual void showSelectedVersion(pkgCache::PkgIterator const &Pkg, pkgCache::VerIterator const Ver,
639 string const &ver, bool const &verIsRel) {
640 if (ver == Ver.VerStr())
641 return;
642 selectedByRelease.push_back(make_pair(Ver, ver));
643 }
644
645 bool showVirtualPackageErrors(pkgCacheFile &Cache) {
646 if (virtualPkgs.empty() == true)
647 return true;
648 for (APT::PackageSet::const_iterator Pkg = virtualPkgs.begin();
649 Pkg != virtualPkgs.end(); ++Pkg) {
650 if (Pkg->ProvidesList != 0) {
651 ioprintf(c1out,_("Package %s is a virtual package provided by:\n"),
652 Pkg.FullName(true).c_str());
653
654 pkgCache::PrvIterator I = Pkg.ProvidesList();
655 unsigned short provider = 0;
656 for (; I.end() == false; ++I) {
657 pkgCache::PkgIterator Pkg = I.OwnerPkg();
658
659 if (Cache[Pkg].CandidateVerIter(Cache) == I.OwnerVer()) {
660 out << " " << Pkg.FullName(true) << " " << I.OwnerVer().VerStr();
661 if (Cache[Pkg].Install() == true && Cache[Pkg].NewInstall() == false)
662 out << _(" [Installed]");
663 out << endl;
664 ++provider;
665 }
666 }
667 // if we found no candidate which provide this package, show non-candidates
668 if (provider == 0)
669 for (I = Pkg.ProvidesList(); I.end() == false; ++I)
670 out << " " << I.OwnerPkg().FullName(true) << " " << I.OwnerVer().VerStr()
671 << _(" [Not candidate version]") << endl;
672 else
673 out << _("You should explicitly select one to install.") << endl;
674 } else {
675 ioprintf(out,
676 _("Package %s is not available, but is referred to by another package.\n"
677 "This may mean that the package is missing, has been obsoleted, or\n"
678 "is only available from another source\n"),Pkg.FullName(true).c_str());
679
680 string List;
681 string VersionsList;
682 SPtrArray<bool> Seen = new bool[Cache.GetPkgCache()->Head().PackageCount];
683 memset(Seen,0,Cache.GetPkgCache()->Head().PackageCount*sizeof(*Seen));
684 for (pkgCache::DepIterator Dep = Pkg.RevDependsList();
685 Dep.end() == false; ++Dep) {
686 if (Dep->Type != pkgCache::Dep::Replaces)
687 continue;
688 if (Seen[Dep.ParentPkg()->ID] == true)
689 continue;
690 Seen[Dep.ParentPkg()->ID] = true;
691 List += Dep.ParentPkg().FullName(true) + " ";
692 //VersionsList += string(Dep.ParentPkg().CurVersion) + "\n"; ???
693 }
694 ShowList(out,_("However the following packages replace it:"),List,VersionsList);
695 }
696 out << std::endl;
697 }
698 return false;
699 }
700
701 virtual pkgCache::VerIterator canNotFindCandidateVer(pkgCacheFile &Cache, pkgCache::PkgIterator const &Pkg) {
702 APT::VersionSet const verset = tryVirtualPackage(Cache, Pkg, APT::VersionSet::CANDIDATE);
703 if (verset.empty() == false)
704 return *(verset.begin());
705 if (ShowError == true) {
706 _error->Error(_("Package '%s' has no installation candidate"),Pkg.FullName(true).c_str());
707 virtualPkgs.insert(Pkg);
708 }
709 return pkgCache::VerIterator(Cache, 0);
710 }
711
712 virtual pkgCache::VerIterator canNotFindNewestVer(pkgCacheFile &Cache, pkgCache::PkgIterator const &Pkg) {
713 APT::VersionSet const verset = tryVirtualPackage(Cache, Pkg, APT::VersionSet::NEWEST);
714 if (verset.empty() == false)
715 return *(verset.begin());
716 if (ShowError == true)
717 ioprintf(out, _("Virtual packages like '%s' can't be removed\n"), Pkg.FullName(true).c_str());
718 return pkgCache::VerIterator(Cache, 0);
719 }
720
721 APT::VersionSet tryVirtualPackage(pkgCacheFile &Cache, pkgCache::PkgIterator const &Pkg,
722 APT::VersionSet::Version const &select) {
723 /* This is a pure virtual package and there is a single available
724 candidate providing it. */
725 if (unlikely(Cache[Pkg].CandidateVer != 0) || Pkg->ProvidesList == 0)
726 return APT::VersionSet();
727
728 pkgCache::PkgIterator Prov;
729 bool found_one = false;
730 for (pkgCache::PrvIterator P = Pkg.ProvidesList(); P; ++P) {
731 pkgCache::VerIterator const PVer = P.OwnerVer();
732 pkgCache::PkgIterator const PPkg = PVer.ParentPkg();
733
734 /* Ignore versions that are not a candidate. */
735 if (Cache[PPkg].CandidateVer != PVer)
736 continue;
737
738 if (found_one == false) {
739 Prov = PPkg;
740 found_one = true;
741 } else if (PPkg != Prov) {
742 found_one = false; // we found at least two
743 break;
744 }
745 }
746
747 if (found_one == true) {
748 ioprintf(out, _("Note, selecting '%s' instead of '%s'\n"),
749 Prov.FullName(true).c_str(), Pkg.FullName(true).c_str());
750 return APT::VersionSet::FromPackage(Cache, Prov, select, *this);
751 }
752 return APT::VersionSet();
753 }
754
755 inline bool allPkgNamedExplicitly() const { return explicitlyNamed; }
756
757 };
758 /*}}}*/
759 // TryToInstall - Mark a package for installation /*{{{*/
760 struct TryToInstall {
761 pkgCacheFile* Cache;
762 pkgProblemResolver* Fix;
763 bool FixBroken;
764 unsigned long AutoMarkChanged;
765 APT::PackageSet doAutoInstallLater;
766
767 TryToInstall(pkgCacheFile &Cache, pkgProblemResolver *PM, bool const &FixBroken) : Cache(&Cache), Fix(PM),
768 FixBroken(FixBroken), AutoMarkChanged(0) {};
769
770 void operator() (pkgCache::VerIterator const &Ver) {
771 pkgCache::PkgIterator Pkg = Ver.ParentPkg();
772
773 Cache->GetDepCache()->SetCandidateVersion(Ver);
774 pkgDepCache::StateCache &State = (*Cache)[Pkg];
775
776 // Handle the no-upgrade case
777 if (_config->FindB("APT::Get::upgrade",true) == false && Pkg->CurrentVer != 0)
778 ioprintf(c1out,_("Skipping %s, it is already installed and upgrade is not set.\n"),
779 Pkg.FullName(true).c_str());
780 // Ignore request for install if package would be new
781 else if (_config->FindB("APT::Get::Only-Upgrade", false) == true && Pkg->CurrentVer == 0)
782 ioprintf(c1out,_("Skipping %s, it is not installed and only upgrades are requested.\n"),
783 Pkg.FullName(true).c_str());
784 else {
785 if (Fix != NULL) {
786 Fix->Clear(Pkg);
787 Fix->Protect(Pkg);
788 }
789 Cache->GetDepCache()->MarkInstall(Pkg,false);
790
791 if (State.Install() == false) {
792 if (_config->FindB("APT::Get::ReInstall",false) == true) {
793 if (Pkg->CurrentVer == 0 || Pkg.CurrentVer().Downloadable() == false)
794 ioprintf(c1out,_("Reinstallation of %s is not possible, it cannot be downloaded.\n"),
795 Pkg.FullName(true).c_str());
796 else
797 Cache->GetDepCache()->SetReInstall(Pkg, true);
798 } else
799 ioprintf(c1out,_("%s is already the newest version.\n"),
800 Pkg.FullName(true).c_str());
801 }
802
803 // Install it with autoinstalling enabled (if we not respect the minial
804 // required deps or the policy)
805 if (FixBroken == false)
806 doAutoInstallLater.insert(Pkg);
807 }
808
809 // see if we need to fix the auto-mark flag
810 // e.g. apt-get install foo
811 // where foo is marked automatic
812 if (State.Install() == false &&
813 (State.Flags & pkgCache::Flag::Auto) &&
814 _config->FindB("APT::Get::ReInstall",false) == false &&
815 _config->FindB("APT::Get::Only-Upgrade",false) == false &&
816 _config->FindB("APT::Get::Download-Only",false) == false)
817 {
818 ioprintf(c1out,_("%s set to manually installed.\n"),
819 Pkg.FullName(true).c_str());
820 Cache->GetDepCache()->MarkAuto(Pkg,false);
821 AutoMarkChanged++;
822 }
823 }
824
825 bool propergateReleaseCandiateSwitching(std::list<std::pair<pkgCache::VerIterator, std::string> > start, std::ostream &out)
826 {
827 for (std::list<std::pair<pkgCache::VerIterator, std::string> >::const_iterator s = start.begin();
828 s != start.end(); ++s)
829 Cache->GetDepCache()->SetCandidateVersion(s->first);
830
831 bool Success = true;
832 std::list<std::pair<pkgCache::VerIterator, pkgCache::VerIterator> > Changed;
833 for (std::list<std::pair<pkgCache::VerIterator, std::string> >::const_iterator s = start.begin();
834 s != start.end(); ++s)
835 {
836 Changed.push_back(std::make_pair(s->first, pkgCache::VerIterator(*Cache)));
837 // We continue here even if it failed to enhance the ShowBroken output
838 Success &= Cache->GetDepCache()->SetCandidateRelease(s->first, s->second, Changed);
839 }
840 for (std::list<std::pair<pkgCache::VerIterator, pkgCache::VerIterator> >::const_iterator c = Changed.begin();
841 c != Changed.end(); ++c)
842 {
843 if (c->second.end() == true)
844 ioprintf(out, _("Selected version '%s' (%s) for '%s'\n"),
845 c->first.VerStr(), c->first.RelStr().c_str(), c->first.ParentPkg().FullName(true).c_str());
846 else if (c->first.ParentPkg()->Group != c->second.ParentPkg()->Group)
847 {
848 pkgCache::VerIterator V = (*Cache)[c->first.ParentPkg()].CandidateVerIter(*Cache);
849 ioprintf(out, _("Selected version '%s' (%s) for '%s' because of '%s'\n"), V.VerStr(),
850 V.RelStr().c_str(), V.ParentPkg().FullName(true).c_str(), c->second.ParentPkg().FullName(true).c_str());
851 }
852 }
853 return Success;
854 }
855
856 void doAutoInstall() {
857 for (APT::PackageSet::const_iterator P = doAutoInstallLater.begin();
858 P != doAutoInstallLater.end(); ++P) {
859 pkgDepCache::StateCache &State = (*Cache)[P];
860 if (State.InstBroken() == false && State.InstPolicyBroken() == false)
861 continue;
862 Cache->GetDepCache()->MarkInstall(P, true);
863 }
864 doAutoInstallLater.clear();
865 }
866 };
867 /*}}}*/
868 // TryToRemove - Mark a package for removal /*{{{*/
869 struct TryToRemove {
870 pkgCacheFile* Cache;
871 pkgProblemResolver* Fix;
872 bool PurgePkgs;
873
874 TryToRemove(pkgCacheFile &Cache, pkgProblemResolver *PM) : Cache(&Cache), Fix(PM),
875 PurgePkgs(_config->FindB("APT::Get::Purge", false)) {};
876
877 void operator() (pkgCache::VerIterator const &Ver)
878 {
879 pkgCache::PkgIterator Pkg = Ver.ParentPkg();
880
881 if (Fix != NULL)
882 {
883 Fix->Clear(Pkg);
884 Fix->Protect(Pkg);
885 Fix->Remove(Pkg);
886 }
887
888 if ((Pkg->CurrentVer == 0 && PurgePkgs == false) ||
889 (PurgePkgs == true && Pkg->CurrentState == pkgCache::State::NotInstalled))
890 {
891 ioprintf(c1out,_("Package %s is not installed, so not removed\n"),Pkg.FullName(true).c_str());
892 // MarkInstall refuses to install packages on hold
893 Pkg->SelectedState = pkgCache::State::Hold;
894 }
895 else
896 Cache->GetDepCache()->MarkDelete(Pkg, PurgePkgs);
897 }
898 };
899 /*}}}*/
900 // CacheFile::NameComp - QSort compare by name /*{{{*/
901 // ---------------------------------------------------------------------
902 /* */
903 pkgCache *CacheFile::SortCache = 0;
904 int CacheFile::NameComp(const void *a,const void *b)
905 {
906 if (*(pkgCache::Package **)a == 0 || *(pkgCache::Package **)b == 0)
907 return *(pkgCache::Package **)a - *(pkgCache::Package **)b;
908
909 const pkgCache::Package &A = **(pkgCache::Package **)a;
910 const pkgCache::Package &B = **(pkgCache::Package **)b;
911
912 return strcmp(SortCache->StrP + A.Name,SortCache->StrP + B.Name);
913 }
914 /*}}}*/
915 // CacheFile::Sort - Sort by name /*{{{*/
916 // ---------------------------------------------------------------------
917 /* */
918 void CacheFile::Sort()
919 {
920 delete [] List;
921 List = new pkgCache::Package *[Cache->Head().PackageCount];
922 memset(List,0,sizeof(*List)*Cache->Head().PackageCount);
923 pkgCache::PkgIterator I = Cache->PkgBegin();
924 for (;I.end() != true; ++I)
925 List[I->ID] = I;
926
927 SortCache = *this;
928 qsort(List,Cache->Head().PackageCount,sizeof(*List),NameComp);
929 }
930 /*}}}*/
931 // CacheFile::CheckDeps - Open the cache file /*{{{*/
932 // ---------------------------------------------------------------------
933 /* This routine generates the caches and then opens the dependency cache
934 and verifies that the system is OK. */
935 bool CacheFile::CheckDeps(bool AllowBroken)
936 {
937 bool FixBroken = _config->FindB("APT::Get::Fix-Broken",false);
938
939 if (_error->PendingError() == true)
940 return false;
941
942 // Check that the system is OK
943 if (DCache->DelCount() != 0 || DCache->InstCount() != 0)
944 return _error->Error("Internal error, non-zero counts");
945
946 // Apply corrections for half-installed packages
947 if (pkgApplyStatus(*DCache) == false)
948 return false;
949
950 if (_config->FindB("APT::Get::Fix-Policy-Broken",false) == true)
951 {
952 FixBroken = true;
953 if ((DCache->PolicyBrokenCount() > 0))
954 {
955 // upgrade all policy-broken packages with ForceImportantDeps=True
956 for (pkgCache::PkgIterator I = Cache->PkgBegin(); !I.end(); ++I)
957 if ((*DCache)[I].NowPolicyBroken() == true)
958 DCache->MarkInstall(I,true,0, false, true);
959 }
960 }
961
962 // Nothing is broken
963 if (DCache->BrokenCount() == 0 || AllowBroken == true)
964 return true;
965
966 // Attempt to fix broken things
967 if (FixBroken == true)
968 {
969 c1out << _("Correcting dependencies...") << flush;
970 if (pkgFixBroken(*DCache) == false || DCache->BrokenCount() != 0)
971 {
972 c1out << _(" failed.") << endl;
973 ShowBroken(c1out,*this,true);
974
975 return _error->Error(_("Unable to correct dependencies"));
976 }
977 if (pkgMinimizeUpgrade(*DCache) == false)
978 return _error->Error(_("Unable to minimize the upgrade set"));
979
980 c1out << _(" Done") << endl;
981 }
982 else
983 {
984 c1out << _("You might want to run 'apt-get -f install' to correct these.") << endl;
985 ShowBroken(c1out,*this,true);
986
987 return _error->Error(_("Unmet dependencies. Try using -f."));
988 }
989
990 return true;
991 }
992 /*}}}*/
993 // CheckAuth - check if each download comes form a trusted source /*{{{*/
994 // ---------------------------------------------------------------------
995 /* */
996 static bool CheckAuth(pkgAcquire& Fetcher)
997 {
998 string UntrustedList;
999 for (pkgAcquire::ItemIterator I = Fetcher.ItemsBegin(); I < Fetcher.ItemsEnd(); ++I)
1000 {
1001 if (!(*I)->IsTrusted())
1002 {
1003 UntrustedList += string((*I)->ShortDesc()) + " ";
1004 }
1005 }
1006
1007 if (UntrustedList == "")
1008 {
1009 return true;
1010 }
1011
1012 ShowList(c2out,_("WARNING: The following packages cannot be authenticated!"),UntrustedList,"");
1013
1014 if (_config->FindB("APT::Get::AllowUnauthenticated",false) == true)
1015 {
1016 c2out << _("Authentication warning overridden.\n");
1017 return true;
1018 }
1019
1020 if (_config->FindI("quiet",0) < 2
1021 && _config->FindB("APT::Get::Assume-Yes",false) == false)
1022 {
1023 c2out << _("Install these packages without verification [y/N]? ") << flush;
1024 if (!YnPrompt(false))
1025 return _error->Error(_("Some packages could not be authenticated"));
1026
1027 return true;
1028 }
1029 else if (_config->FindB("APT::Get::Force-Yes",false) == true)
1030 {
1031 return true;
1032 }
1033
1034 return _error->Error(_("There are problems and -y was used without --force-yes"));
1035 }
1036 /*}}}*/
1037 // InstallPackages - Actually download and install the packages /*{{{*/
1038 // ---------------------------------------------------------------------
1039 /* This displays the informative messages describing what is going to
1040 happen and then calls the download routines */
1041 bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true,
1042 bool Safety = true)
1043 {
1044 if (_config->FindB("APT::Get::Purge",false) == true)
1045 {
1046 pkgCache::PkgIterator I = Cache->PkgBegin();
1047 for (; I.end() == false; ++I)
1048 {
1049 if (I.Purge() == false && Cache[I].Mode == pkgDepCache::ModeDelete)
1050 Cache->MarkDelete(I,true);
1051 }
1052 }
1053
1054 bool Fail = false;
1055 bool Essential = false;
1056
1057 // Show all the various warning indicators
1058 ShowDel(c1out,Cache);
1059 ShowNew(c1out,Cache);
1060 if (ShwKept == true)
1061 ShowKept(c1out,Cache);
1062 Fail |= !ShowHold(c1out,Cache);
1063 if (_config->FindB("APT::Get::Show-Upgraded",true) == true)
1064 ShowUpgraded(c1out,Cache);
1065 Fail |= !ShowDowngraded(c1out,Cache);
1066 if (_config->FindB("APT::Get::Download-Only",false) == false)
1067 Essential = !ShowEssential(c1out,Cache);
1068 Fail |= Essential;
1069 Stats(c1out,Cache);
1070
1071 // Sanity check
1072 if (Cache->BrokenCount() != 0)
1073 {
1074 ShowBroken(c1out,Cache,false);
1075 return _error->Error(_("Internal error, InstallPackages was called with broken packages!"));
1076 }
1077
1078 if (Cache->DelCount() == 0 && Cache->InstCount() == 0 &&
1079 Cache->BadCount() == 0)
1080 return true;
1081
1082 // No remove flag
1083 if (Cache->DelCount() != 0 && _config->FindB("APT::Get::Remove",true) == false)
1084 return _error->Error(_("Packages need to be removed but remove is disabled."));
1085
1086 // Run the simulator ..
1087 if (_config->FindB("APT::Get::Simulate") == true)
1088 {
1089 pkgSimulate PM(Cache);
1090 int status_fd = _config->FindI("APT::Status-Fd",-1);
1091 pkgPackageManager::OrderResult Res = PM.DoInstall(status_fd);
1092 if (Res == pkgPackageManager::Failed)
1093 return false;
1094 if (Res != pkgPackageManager::Completed)
1095 return _error->Error(_("Internal error, Ordering didn't finish"));
1096 return true;
1097 }
1098
1099 // Create the text record parser
1100 pkgRecords Recs(Cache);
1101 if (_error->PendingError() == true)
1102 return false;
1103
1104 // Create the download object
1105 pkgAcquire Fetcher;
1106 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
1107 if (_config->FindB("APT::Get::Print-URIs", false) == true)
1108 {
1109 // force a hashsum for compatibility reasons
1110 _config->CndSet("Acquire::ForceHash", "md5sum");
1111 }
1112 else if (Fetcher.Setup(&Stat, _config->FindDir("Dir::Cache::Archives")) == false)
1113 return false;
1114
1115 // Read the source list
1116 if (Cache.BuildSourceList() == false)
1117 return false;
1118 pkgSourceList *List = Cache.GetSourceList();
1119
1120 // Create the package manager and prepare to download
1121 SPtr<pkgPackageManager> PM= _system->CreatePM(Cache);
1122 if (PM->GetArchives(&Fetcher,List,&Recs) == false ||
1123 _error->PendingError() == true)
1124 return false;
1125
1126 // Display statistics
1127 unsigned long long FetchBytes = Fetcher.FetchNeeded();
1128 unsigned long long FetchPBytes = Fetcher.PartialPresent();
1129 unsigned long long DebBytes = Fetcher.TotalNeeded();
1130 if (DebBytes != Cache->DebSize())
1131 {
1132 c0out << DebBytes << ',' << Cache->DebSize() << endl;
1133 c0out << _("How odd.. The sizes didn't match, email apt@packages.debian.org") << endl;
1134 }
1135
1136 // Number of bytes
1137 if (DebBytes != FetchBytes)
1138 //TRANSLATOR: The required space between number and unit is already included
1139 // in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
1140 ioprintf(c1out,_("Need to get %sB/%sB of archives.\n"),
1141 SizeToStr(FetchBytes).c_str(),SizeToStr(DebBytes).c_str());
1142 else if (DebBytes != 0)
1143 //TRANSLATOR: The required space between number and unit is already included
1144 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
1145 ioprintf(c1out,_("Need to get %sB of archives.\n"),
1146 SizeToStr(DebBytes).c_str());
1147
1148 // Size delta
1149 if (Cache->UsrSize() >= 0)
1150 //TRANSLATOR: The required space between number and unit is already included
1151 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
1152 ioprintf(c1out,_("After this operation, %sB of additional disk space will be used.\n"),
1153 SizeToStr(Cache->UsrSize()).c_str());
1154 else
1155 //TRANSLATOR: The required space between number and unit is already included
1156 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
1157 ioprintf(c1out,_("After this operation, %sB disk space will be freed.\n"),
1158 SizeToStr(-1*Cache->UsrSize()).c_str());
1159
1160 if (_error->PendingError() == true)
1161 return false;
1162
1163 /* Check for enough free space, but only if we are actually going to
1164 download */
1165 if (_config->FindB("APT::Get::Print-URIs") == false &&
1166 _config->FindB("APT::Get::Download",true) == true)
1167 {
1168 struct statvfs Buf;
1169 string OutputDir = _config->FindDir("Dir::Cache::Archives");
1170 if (statvfs(OutputDir.c_str(),&Buf) != 0) {
1171 if (errno == EOVERFLOW)
1172 return _error->WarningE("statvfs",_("Couldn't determine free space in %s"),
1173 OutputDir.c_str());
1174 else
1175 return _error->Errno("statvfs",_("Couldn't determine free space in %s"),
1176 OutputDir.c_str());
1177 } else if (unsigned(Buf.f_bfree) < (FetchBytes - FetchPBytes)/Buf.f_bsize)
1178 {
1179 struct statfs Stat;
1180 if (statfs(OutputDir.c_str(),&Stat) != 0
1181 #if HAVE_STRUCT_STATFS_F_TYPE
1182 || unsigned(Stat.f_type) != RAMFS_MAGIC
1183 #endif
1184 )
1185 return _error->Error(_("You don't have enough free space in %s."),
1186 OutputDir.c_str());
1187 }
1188 }
1189
1190 // Fail safe check
1191 if (_config->FindI("quiet",0) >= 2 ||
1192 _config->FindB("APT::Get::Assume-Yes",false) == true)
1193 {
1194 if (Fail == true && _config->FindB("APT::Get::Force-Yes",false) == false)
1195 return _error->Error(_("There are problems and -y was used without --force-yes"));
1196 }
1197
1198 if (Essential == true && Safety == true)
1199 {
1200 if (_config->FindB("APT::Get::Trivial-Only",false) == true)
1201 return _error->Error(_("Trivial Only specified but this is not a trivial operation."));
1202
1203 const char *Prompt = _("Yes, do as I say!");
1204 ioprintf(c2out,
1205 _("You are about to do something potentially harmful.\n"
1206 "To continue type in the phrase '%s'\n"
1207 " ?] "),Prompt);
1208 c2out << flush;
1209 if (AnalPrompt(Prompt) == false)
1210 {
1211 c2out << _("Abort.") << endl;
1212 exit(1);
1213 }
1214 }
1215 else
1216 {
1217 // Prompt to continue
1218 if (Ask == true || Fail == true)
1219 {
1220 if (_config->FindB("APT::Get::Trivial-Only",false) == true)
1221 return _error->Error(_("Trivial Only specified but this is not a trivial operation."));
1222
1223 if (_config->FindI("quiet",0) < 2 &&
1224 _config->FindB("APT::Get::Assume-Yes",false) == false)
1225 {
1226 c2out << _("Do you want to continue [Y/n]? ") << flush;
1227
1228 if (YnPrompt() == false)
1229 {
1230 c2out << _("Abort.") << endl;
1231 exit(1);
1232 }
1233 }
1234 }
1235 }
1236
1237 // Just print out the uris an exit if the --print-uris flag was used
1238 if (_config->FindB("APT::Get::Print-URIs") == true)
1239 {
1240 pkgAcquire::UriIterator I = Fetcher.UriBegin();
1241 for (; I != Fetcher.UriEnd(); ++I)
1242 cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' <<
1243 I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl;
1244 return true;
1245 }
1246
1247 if (!CheckAuth(Fetcher))
1248 return false;
1249
1250 /* Unlock the dpkg lock if we are not going to be doing an install
1251 after. */
1252 if (_config->FindB("APT::Get::Download-Only",false) == true)
1253 _system->UnLock();
1254
1255 // Run it
1256 while (1)
1257 {
1258 bool Transient = false;
1259 if (_config->FindB("APT::Get::Download",true) == false)
1260 {
1261 for (pkgAcquire::ItemIterator I = Fetcher.ItemsBegin(); I < Fetcher.ItemsEnd();)
1262 {
1263 if ((*I)->Local == true)
1264 {
1265 ++I;
1266 continue;
1267 }
1268
1269 // Close the item and check if it was found in cache
1270 (*I)->Finished();
1271 if ((*I)->Complete == false)
1272 Transient = true;
1273
1274 // Clear it out of the fetch list
1275 delete *I;
1276 I = Fetcher.ItemsBegin();
1277 }
1278 }
1279
1280 if (Fetcher.Run() == pkgAcquire::Failed)
1281 return false;
1282
1283 // Print out errors
1284 bool Failed = false;
1285 for (pkgAcquire::ItemIterator I = Fetcher.ItemsBegin(); I != Fetcher.ItemsEnd(); ++I)
1286 {
1287 if ((*I)->Status == pkgAcquire::Item::StatDone &&
1288 (*I)->Complete == true)
1289 continue;
1290
1291 if ((*I)->Status == pkgAcquire::Item::StatIdle)
1292 {
1293 Transient = true;
1294 // Failed = true;
1295 continue;
1296 }
1297
1298 fprintf(stderr,_("Failed to fetch %s %s\n"),(*I)->DescURI().c_str(),
1299 (*I)->ErrorText.c_str());
1300 Failed = true;
1301 }
1302
1303 /* If we are in no download mode and missing files and there were
1304 'failures' then the user must specify -m. Furthermore, there
1305 is no such thing as a transient error in no-download mode! */
1306 if (Transient == true &&
1307 _config->FindB("APT::Get::Download",true) == false)
1308 {
1309 Transient = false;
1310 Failed = true;
1311 }
1312
1313 if (_config->FindB("APT::Get::Download-Only",false) == true)
1314 {
1315 if (Failed == true && _config->FindB("APT::Get::Fix-Missing",false) == false)
1316 return _error->Error(_("Some files failed to download"));
1317 c1out << _("Download complete and in download only mode") << endl;
1318 return true;
1319 }
1320
1321 if (Failed == true && _config->FindB("APT::Get::Fix-Missing",false) == false)
1322 {
1323 return _error->Error(_("Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?"));
1324 }
1325
1326 if (Transient == true && Failed == true)
1327 return _error->Error(_("--fix-missing and media swapping is not currently supported"));
1328
1329 // Try to deal with missing package files
1330 if (Failed == true && PM->FixMissing() == false)
1331 {
1332 cerr << _("Unable to correct missing packages.") << endl;
1333 return _error->Error(_("Aborting install."));
1334 }
1335
1336 _system->UnLock();
1337 int status_fd = _config->FindI("APT::Status-Fd",-1);
1338 pkgPackageManager::OrderResult Res = PM->DoInstall(status_fd);
1339 if (Res == pkgPackageManager::Failed || _error->PendingError() == true)
1340 return false;
1341 if (Res == pkgPackageManager::Completed)
1342 break;
1343
1344 // Reload the fetcher object and loop again for media swapping
1345 Fetcher.Shutdown();
1346 if (PM->GetArchives(&Fetcher,List,&Recs) == false)
1347 return false;
1348
1349 _system->Lock();
1350 }
1351
1352 std::set<std::string> const disappearedPkgs = PM->GetDisappearedPackages();
1353 if (disappearedPkgs.empty() == true)
1354 return true;
1355
1356 string disappear;
1357 for (std::set<std::string>::const_iterator d = disappearedPkgs.begin();
1358 d != disappearedPkgs.end(); ++d)
1359 disappear.append(*d).append(" ");
1360
1361 ShowList(c1out, P_("The following package disappeared from your system as\n"
1362 "all files have been overwritten by other packages:",
1363 "The following packages disappeared from your system as\n"
1364 "all files have been overwritten by other packages:", disappearedPkgs.size()), disappear, "");
1365 c0out << _("Note: This is done automatic and on purpose by dpkg.") << std::endl;
1366
1367 return true;
1368 }
1369 /*}}}*/
1370 // TryToInstallBuildDep - Try to install a single package /*{{{*/
1371 // ---------------------------------------------------------------------
1372 /* This used to be inlined in DoInstall, but with the advent of regex package
1373 name matching it was split out.. */
1374 bool TryToInstallBuildDep(pkgCache::PkgIterator Pkg,pkgCacheFile &Cache,
1375 pkgProblemResolver &Fix,bool Remove,bool BrokenFix,
1376 bool AllowFail = true)
1377 {
1378 if (Cache[Pkg].CandidateVer == 0 && Pkg->ProvidesList != 0)
1379 {
1380 CacheSetHelperAPTGet helper(c1out);
1381 helper.showErrors(AllowFail == false);
1382 pkgCache::VerIterator Ver = helper.canNotFindNewestVer(Cache, Pkg);
1383 if (Ver.end() == false)
1384 Pkg = Ver.ParentPkg();
1385 else if (helper.showVirtualPackageErrors(Cache) == false)
1386 return AllowFail;
1387 }
1388
1389 if (_config->FindB("Debug::BuildDeps",false) == true)
1390 {
1391 if (Remove == true)
1392 cout << " Trying to remove " << Pkg << endl;
1393 else
1394 cout << " Trying to install " << Pkg << endl;
1395 }
1396
1397 if (Remove == true)
1398 {
1399 TryToRemove RemoveAction(Cache, &Fix);
1400 RemoveAction(Pkg.VersionList());
1401 } else if (Cache[Pkg].CandidateVer != 0) {
1402 TryToInstall InstallAction(Cache, &Fix, BrokenFix);
1403 InstallAction(Cache[Pkg].CandidateVerIter(Cache));
1404 InstallAction.doAutoInstall();
1405 } else
1406 return AllowFail;
1407
1408 return true;
1409 }
1410 /*}}}*/
1411 // FindSrc - Find a source record /*{{{*/
1412 // ---------------------------------------------------------------------
1413 /* */
1414 pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs,
1415 pkgSrcRecords &SrcRecs,string &Src,
1416 pkgDepCache &Cache)
1417 {
1418 string VerTag;
1419 string DefRel = _config->Find("APT::Default-Release");
1420 string TmpSrc = Name;
1421
1422 // extract the version/release from the pkgname
1423 const size_t found = TmpSrc.find_last_of("/=");
1424 if (found != string::npos) {
1425 if (TmpSrc[found] == '/')
1426 DefRel = TmpSrc.substr(found+1);
1427 else
1428 VerTag = TmpSrc.substr(found+1);
1429 TmpSrc = TmpSrc.substr(0,found);
1430 }
1431
1432 /* Lookup the version of the package we would install if we were to
1433 install a version and determine the source package name, then look
1434 in the archive for a source package of the same name. */
1435 bool MatchSrcOnly = _config->FindB("APT::Get::Only-Source");
1436 const pkgCache::PkgIterator Pkg = Cache.FindPkg(TmpSrc);
1437 if (MatchSrcOnly == false && Pkg.end() == false)
1438 {
1439 if(VerTag.empty() == false || DefRel.empty() == false)
1440 {
1441 bool fuzzy = false;
1442 // we have a default release, try to locate the pkg. we do it like
1443 // this because GetCandidateVer() will not "downgrade", that means
1444 // "apt-get source -t stable apt" won't work on a unstable system
1445 for (pkgCache::VerIterator Ver = Pkg.VersionList();; ++Ver)
1446 {
1447 // try first only exact matches, later fuzzy matches
1448 if (Ver.end() == true)
1449 {
1450 if (fuzzy == true)
1451 break;
1452 fuzzy = true;
1453 Ver = Pkg.VersionList();
1454 // exit right away from the Pkg.VersionList() loop if we
1455 // don't have any versions
1456 if (Ver.end() == true)
1457 break;
1458 }
1459 // We match against a concrete version (or a part of this version)
1460 if (VerTag.empty() == false &&
1461 (fuzzy == true || Cache.VS().CmpVersion(VerTag, Ver.VerStr()) != 0) && // exact match
1462 (fuzzy == false || strncmp(VerTag.c_str(), Ver.VerStr(), VerTag.size()) != 0)) // fuzzy match
1463 continue;
1464
1465 for (pkgCache::VerFileIterator VF = Ver.FileList();
1466 VF.end() == false; ++VF)
1467 {
1468 /* If this is the status file, and the current version is not the
1469 version in the status file (ie it is not installed, or somesuch)
1470 then it is not a candidate for installation, ever. This weeds
1471 out bogus entries that may be due to config-file states, or
1472 other. */
1473 if ((VF.File()->Flags & pkgCache::Flag::NotSource) ==
1474 pkgCache::Flag::NotSource && Pkg.CurrentVer() != Ver)
1475 continue;
1476
1477 // or we match against a release
1478 if(VerTag.empty() == false ||
1479 (VF.File().Archive() != 0 && VF.File().Archive() == DefRel) ||
1480 (VF.File().Codename() != 0 && VF.File().Codename() == DefRel))
1481 {
1482 pkgRecords::Parser &Parse = Recs.Lookup(VF);
1483 Src = Parse.SourcePkg();
1484 // no SourcePkg name, so it is the "binary" name
1485 if (Src.empty() == true)
1486 Src = TmpSrc;
1487 // the Version we have is possibly fuzzy or includes binUploads,
1488 // so we use the Version of the SourcePkg (empty if same as package)
1489 VerTag = Parse.SourceVer();
1490 if (VerTag.empty() == true)
1491 VerTag = Ver.VerStr();
1492 break;
1493 }
1494 }
1495 if (Src.empty() == false)
1496 break;
1497 }
1498 if (Src.empty() == true)
1499 {
1500 // Sources files have no codename information
1501 if (VerTag.empty() == true && DefRel.empty() == false)
1502 {
1503 _error->Error(_("Ignore unavailable target release '%s' of package '%s'"), DefRel.c_str(), TmpSrc.c_str());
1504 return 0;
1505 }
1506 }
1507 }
1508 if (Src.empty() == true)
1509 {
1510 // if we don't have found a fitting package yet so we will
1511 // choose a good candidate and proceed with that.
1512 // Maybe we will find a source later on with the right VerTag
1513 pkgCache::VerIterator Ver = Cache.GetCandidateVer(Pkg);
1514 if (Ver.end() == false)
1515 {
1516 pkgRecords::Parser &Parse = Recs.Lookup(Ver.FileList());
1517 Src = Parse.SourcePkg();
1518 if (VerTag.empty() == true)
1519 VerTag = Parse.SourceVer();
1520 }
1521 }
1522 }
1523
1524 if (Src.empty() == true)
1525 Src = TmpSrc;
1526 else
1527 {
1528 /* if we have a source pkg name, make sure to only search
1529 for srcpkg names, otherwise apt gets confused if there
1530 is a binary package "pkg1" and a source package "pkg1"
1531 with the same name but that comes from different packages */
1532 MatchSrcOnly = true;
1533 if (Src != TmpSrc)
1534 {
1535 ioprintf(c1out, _("Picking '%s' as source package instead of '%s'\n"), Src.c_str(), TmpSrc.c_str());
1536 }
1537 }
1538
1539 // The best hit
1540 pkgSrcRecords::Parser *Last = 0;
1541 unsigned long Offset = 0;
1542 string Version;
1543
1544 /* Iterate over all of the hits, which includes the resulting
1545 binary packages in the search */
1546 pkgSrcRecords::Parser *Parse;
1547 while (true)
1548 {
1549 SrcRecs.Restart();
1550 while ((Parse = SrcRecs.Find(Src.c_str(), MatchSrcOnly)) != 0)
1551 {
1552 const string Ver = Parse->Version();
1553
1554 // Ignore all versions which doesn't fit
1555 if (VerTag.empty() == false &&
1556 Cache.VS().CmpVersion(VerTag, Ver) != 0) // exact match
1557 continue;
1558
1559 // Newer version or an exact match? Save the hit
1560 if (Last == 0 || Cache.VS().CmpVersion(Version,Ver) < 0) {
1561 Last = Parse;
1562 Offset = Parse->Offset();
1563 Version = Ver;
1564 }
1565
1566 // was the version check above an exact match? If so, we don't need to look further
1567 if (VerTag.empty() == false && VerTag.size() == Ver.size())
1568 break;
1569 }
1570 if (Last != 0 || VerTag.empty() == true)
1571 break;
1572 //if (VerTag.empty() == false && Last == 0)
1573 _error->Error(_("Ignore unavailable version '%s' of package '%s'"), VerTag.c_str(), TmpSrc.c_str());
1574 return 0;
1575 }
1576
1577 if (Last == 0 || Last->Jump(Offset) == false)
1578 return 0;
1579
1580 return Last;
1581 }
1582 /*}}}*/
1583 // DoUpdate - Update the package lists /*{{{*/
1584 // ---------------------------------------------------------------------
1585 /* */
1586 bool DoUpdate(CommandLine &CmdL)
1587 {
1588 if (CmdL.FileSize() != 1)
1589 return _error->Error(_("The update command takes no arguments"));
1590
1591 CacheFile Cache;
1592
1593 // Get the source list
1594 if (Cache.BuildSourceList() == false)
1595 return false;
1596 pkgSourceList *List = Cache.GetSourceList();
1597
1598 // Create the progress
1599 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
1600
1601 // Just print out the uris an exit if the --print-uris flag was used
1602 if (_config->FindB("APT::Get::Print-URIs") == true)
1603 {
1604 // force a hashsum for compatibility reasons
1605 _config->CndSet("Acquire::ForceHash", "md5sum");
1606
1607 // get a fetcher
1608 pkgAcquire Fetcher;
1609 if (Fetcher.Setup(&Stat) == false)
1610 return false;
1611
1612 // Populate it with the source selection and get all Indexes
1613 // (GetAll=true)
1614 if (List->GetIndexes(&Fetcher,true) == false)
1615 return false;
1616
1617 pkgAcquire::UriIterator I = Fetcher.UriBegin();
1618 for (; I != Fetcher.UriEnd(); ++I)
1619 cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' <<
1620 I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl;
1621 return true;
1622 }
1623
1624 // do the work
1625 if (_config->FindB("APT::Get::Download",true) == true)
1626 ListUpdate(Stat, *List);
1627
1628 // Rebuild the cache.
1629 pkgCacheFile::RemoveCaches();
1630 if (Cache.BuildCaches() == false)
1631 return false;
1632
1633 return true;
1634 }
1635 /*}}}*/
1636 // DoAutomaticRemove - Remove all automatic unused packages /*{{{*/
1637 // ---------------------------------------------------------------------
1638 /* Remove unused automatic packages */
1639 bool DoAutomaticRemove(CacheFile &Cache)
1640 {
1641 bool Debug = _config->FindI("Debug::pkgAutoRemove",false);
1642 bool doAutoRemove = _config->FindB("APT::Get::AutomaticRemove", false);
1643 bool hideAutoRemove = _config->FindB("APT::Get::HideAutoRemove");
1644
1645 pkgDepCache::ActionGroup group(*Cache);
1646 if(Debug)
1647 std::cout << "DoAutomaticRemove()" << std::endl;
1648
1649 if (doAutoRemove == true &&
1650 _config->FindB("APT::Get::Remove",true) == false)
1651 {
1652 c1out << _("We are not supposed to delete stuff, can't start "
1653 "AutoRemover") << std::endl;
1654 return false;
1655 }
1656
1657 bool purgePkgs = _config->FindB("APT::Get::Purge", false);
1658 bool smallList = (hideAutoRemove == false &&
1659 strcasecmp(_config->Find("APT::Get::HideAutoRemove","").c_str(),"small") == 0);
1660
1661 string autoremovelist, autoremoveversions;
1662 unsigned long autoRemoveCount = 0;
1663 APT::PackageSet tooMuch;
1664 // look over the cache to see what can be removed
1665 for (pkgCache::PkgIterator Pkg = Cache->PkgBegin(); ! Pkg.end(); ++Pkg)
1666 {
1667 if (Cache[Pkg].Garbage)
1668 {
1669 if(Pkg.CurrentVer() != 0 || Cache[Pkg].Install())
1670 if(Debug)
1671 std::cout << "We could delete %s" << Pkg.FullName(true).c_str() << std::endl;
1672
1673 if (doAutoRemove)
1674 {
1675 if(Pkg.CurrentVer() != 0 &&
1676 Pkg->CurrentState != pkgCache::State::ConfigFiles)
1677 Cache->MarkDelete(Pkg, purgePkgs);
1678 else
1679 Cache->MarkKeep(Pkg, false, false);
1680 }
1681 else
1682 {
1683 // if the package is a new install and already garbage we don't need to
1684 // install it in the first place, so nuke it instead of show it
1685 if (Cache[Pkg].Install() == true && Pkg.CurrentVer() == 0)
1686 {
1687 Cache->MarkDelete(Pkg, false);
1688 tooMuch.insert(Pkg);
1689 }
1690 // only show stuff in the list that is not yet marked for removal
1691 else if(hideAutoRemove == false && Cache[Pkg].Delete() == false)
1692 {
1693 ++autoRemoveCount;
1694 // we don't need to fill the strings if we don't need them
1695 if (smallList == false)
1696 {
1697 autoremovelist += Pkg.FullName(true) + " ";
1698 autoremoveversions += string(Cache[Pkg].CandVersion) + "\n";
1699 }
1700 }
1701 }
1702 }
1703 }
1704
1705 // we could have removed a new dependency of a garbage package,
1706 // so check if a reverse depends is broken and if so install it again.
1707 if (tooMuch.empty() == false && (Cache->BrokenCount() != 0 || Cache->PolicyBrokenCount() != 0))
1708 {
1709 bool Changed;
1710 do {
1711 Changed = false;
1712 for (APT::PackageSet::const_iterator P = tooMuch.begin();
1713 P != tooMuch.end() && Changed == false; ++P)
1714 {
1715 for (pkgCache::DepIterator R = P.RevDependsList();
1716 R.end() == false; ++R)
1717 {
1718 if (R.IsNegative() == true ||
1719 Cache->IsImportantDep(R) == false)
1720 continue;
1721 pkgCache::PkgIterator N = R.ParentPkg();
1722 if (N.end() == true || (N->CurrentVer == 0 && (*Cache)[N].Install() == false))
1723 continue;
1724 if (Debug == true)
1725 std::clog << "Save " << P << " as another installed garbage package depends on it" << std::endl;
1726 Cache->MarkInstall(P, false);
1727 if(hideAutoRemove == false)
1728 {
1729 ++autoRemoveCount;
1730 if (smallList == false)
1731 {
1732 autoremovelist += P.FullName(true) + " ";
1733 autoremoveversions += string(Cache[P].CandVersion) + "\n";
1734 }
1735 }
1736 tooMuch.erase(P);
1737 Changed = true;
1738 break;
1739 }
1740 }
1741 } while (Changed == true);
1742 }
1743
1744 // Now see if we had destroyed anything (if we had done anything)
1745 if (Cache->BrokenCount() != 0)
1746 {
1747 c1out << _("Hmm, seems like the AutoRemover destroyed something which really\n"
1748 "shouldn't happen. Please file a bug report against apt.") << endl;
1749 c1out << endl;
1750 c1out << _("The following information may help to resolve the situation:") << endl;
1751 c1out << endl;
1752 ShowBroken(c1out,Cache,false);
1753
1754 return _error->Error(_("Internal Error, AutoRemover broke stuff"));
1755 }
1756
1757 // if we don't remove them, we should show them!
1758 if (doAutoRemove == false && (autoremovelist.empty() == false || autoRemoveCount != 0))
1759 {
1760 if (smallList == false)
1761 ShowList(c1out, P_("The following package was automatically installed and is no longer required:",
1762 "The following packages were automatically installed and are no longer required:",
1763 autoRemoveCount), autoremovelist, autoremoveversions);
1764 else
1765 ioprintf(c1out, P_("%lu package was automatically installed and is no longer required.\n",
1766 "%lu packages were automatically installed and are no longer required.\n", autoRemoveCount), autoRemoveCount);
1767 c1out << _("Use 'apt-get autoremove' to remove them.") << std::endl;
1768 }
1769 return true;
1770 }
1771 /*}}}*/
1772 // DoUpgrade - Upgrade all packages /*{{{*/
1773 // ---------------------------------------------------------------------
1774 /* Upgrade all packages without installing new packages or erasing old
1775 packages */
1776 bool DoUpgrade(CommandLine &CmdL)
1777 {
1778 CacheFile Cache;
1779 if (Cache.OpenForInstall() == false || Cache.CheckDeps() == false)
1780 return false;
1781
1782 // Do the upgrade
1783 if (pkgAllUpgrade(Cache) == false)
1784 {
1785 ShowBroken(c1out,Cache,false);
1786 return _error->Error(_("Internal error, AllUpgrade broke stuff"));
1787 }
1788
1789 return InstallPackages(Cache,true);
1790 }
1791 /*}}}*/
1792 // DoInstall - Install packages from the command line /*{{{*/
1793 // ---------------------------------------------------------------------
1794 /* Install named packages */
1795 bool DoInstall(CommandLine &CmdL)
1796 {
1797 CacheFile Cache;
1798 if (Cache.OpenForInstall() == false ||
1799 Cache.CheckDeps(CmdL.FileSize() != 1) == false)
1800 return false;
1801
1802 // Enter the special broken fixing mode if the user specified arguments
1803 bool BrokenFix = false;
1804 if (Cache->BrokenCount() != 0)
1805 BrokenFix = true;
1806
1807 pkgProblemResolver* Fix = NULL;
1808 if (_config->FindB("APT::Get::CallResolver", true) == true)
1809 Fix = new pkgProblemResolver(Cache);
1810
1811 static const unsigned short MOD_REMOVE = 1;
1812 static const unsigned short MOD_INSTALL = 2;
1813
1814 unsigned short fallback = MOD_INSTALL;
1815 if (strcasecmp(CmdL.FileList[0],"remove") == 0)
1816 fallback = MOD_REMOVE;
1817 else if (strcasecmp(CmdL.FileList[0], "purge") == 0)
1818 {
1819 _config->Set("APT::Get::Purge", true);
1820 fallback = MOD_REMOVE;
1821 }
1822 else if (strcasecmp(CmdL.FileList[0], "autoremove") == 0)
1823 {
1824 _config->Set("APT::Get::AutomaticRemove", "true");
1825 fallback = MOD_REMOVE;
1826 }
1827
1828 std::list<APT::VersionSet::Modifier> mods;
1829 mods.push_back(APT::VersionSet::Modifier(MOD_INSTALL, "+",
1830 APT::VersionSet::Modifier::POSTFIX, APT::VersionSet::CANDIDATE));
1831 mods.push_back(APT::VersionSet::Modifier(MOD_REMOVE, "-",
1832 APT::VersionSet::Modifier::POSTFIX, APT::VersionSet::NEWEST));
1833 CacheSetHelperAPTGet helper(c0out);
1834 std::map<unsigned short, APT::VersionSet> verset = APT::VersionSet::GroupedFromCommandLine(Cache,
1835 CmdL.FileList + 1, mods, fallback, helper);
1836
1837 if (_error->PendingError() == true)
1838 {
1839 helper.showVirtualPackageErrors(Cache);
1840 if (Fix != NULL)
1841 delete Fix;
1842 return false;
1843 }
1844
1845 unsigned short const order[] = { MOD_REMOVE, MOD_INSTALL, 0 };
1846
1847 TryToInstall InstallAction(Cache, Fix, BrokenFix);
1848 TryToRemove RemoveAction(Cache, Fix);
1849
1850 // new scope for the ActionGroup
1851 {
1852 pkgDepCache::ActionGroup group(Cache);
1853
1854 for (unsigned short i = 0; order[i] != 0; ++i)
1855 {
1856 if (order[i] == MOD_INSTALL)
1857 InstallAction = std::for_each(verset[MOD_INSTALL].begin(), verset[MOD_INSTALL].end(), InstallAction);
1858 else if (order[i] == MOD_REMOVE)
1859 RemoveAction = std::for_each(verset[MOD_REMOVE].begin(), verset[MOD_REMOVE].end(), RemoveAction);
1860 }
1861
1862 if (Fix != NULL && _config->FindB("APT::Get::AutoSolving", true) == true)
1863 {
1864 for (unsigned short i = 0; order[i] != 0; ++i)
1865 {
1866 if (order[i] != MOD_INSTALL)
1867 continue;
1868 InstallAction.propergateReleaseCandiateSwitching(helper.selectedByRelease, c0out);
1869 InstallAction.doAutoInstall();
1870 }
1871 }
1872
1873 if (_error->PendingError() == true)
1874 {
1875 if (Fix != NULL)
1876 delete Fix;
1877 return false;
1878 }
1879
1880 /* If we are in the Broken fixing mode we do not attempt to fix the
1881 problems. This is if the user invoked install without -f and gave
1882 packages */
1883 if (BrokenFix == true && Cache->BrokenCount() != 0)
1884 {
1885 c1out << _("You might want to run 'apt-get -f install' to correct these:") << endl;
1886 ShowBroken(c1out,Cache,false);
1887 if (Fix != NULL)
1888 delete Fix;
1889 return _error->Error(_("Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution)."));
1890 }
1891
1892 if (Fix != NULL)
1893 {
1894 // Call the scored problem resolver
1895 Fix->InstallProtect();
1896 Fix->Resolve(true);
1897 delete Fix;
1898 }
1899
1900 // Now we check the state of the packages,
1901 if (Cache->BrokenCount() != 0)
1902 {
1903 c1out <<
1904 _("Some packages could not be installed. This may mean that you have\n"
1905 "requested an impossible situation or if you are using the unstable\n"
1906 "distribution that some required packages have not yet been created\n"
1907 "or been moved out of Incoming.") << endl;
1908 /*
1909 if (Packages == 1)
1910 {
1911 c1out << endl;
1912 c1out <<
1913 _("Since you only requested a single operation it is extremely likely that\n"
1914 "the package is simply not installable and a bug report against\n"
1915 "that package should be filed.") << endl;
1916 }
1917 */
1918
1919 c1out << _("The following information may help to resolve the situation:") << endl;
1920 c1out << endl;
1921 ShowBroken(c1out,Cache,false);
1922 if (_error->PendingError() == true)
1923 return false;
1924 else
1925 return _error->Error(_("Broken packages"));
1926 }
1927 }
1928 if (!DoAutomaticRemove(Cache))
1929 return false;
1930
1931 /* Print out a list of packages that are going to be installed extra
1932 to what the user asked */
1933 if (Cache->InstCount() != verset[MOD_INSTALL].size())
1934 {
1935 string List;
1936 string VersionsList;
1937 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
1938 {
1939 pkgCache::PkgIterator I(Cache,Cache.List[J]);
1940 if ((*Cache)[I].Install() == false)
1941 continue;
1942 pkgCache::VerIterator Cand = Cache[I].CandidateVerIter(Cache);
1943
1944 if (verset[MOD_INSTALL].find(Cand) != verset[MOD_INSTALL].end())
1945 continue;
1946
1947 List += I.FullName(true) + " ";
1948 VersionsList += string(Cache[I].CandVersion) + "\n";
1949 }
1950
1951 ShowList(c1out,_("The following extra packages will be installed:"),List,VersionsList);
1952 }
1953
1954 /* Print out a list of suggested and recommended packages */
1955 {
1956 string SuggestsList, RecommendsList, List;
1957 string SuggestsVersions, RecommendsVersions;
1958 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
1959 {
1960 pkgCache::PkgIterator Pkg(Cache,Cache.List[J]);
1961
1962 /* Just look at the ones we want to install */
1963 if ((*Cache)[Pkg].Install() == false)
1964 continue;
1965
1966 // get the recommends/suggests for the candidate ver
1967 pkgCache::VerIterator CV = (*Cache)[Pkg].CandidateVerIter(*Cache);
1968 for (pkgCache::DepIterator D = CV.DependsList(); D.end() == false; )
1969 {
1970 pkgCache::DepIterator Start;
1971 pkgCache::DepIterator End;
1972 D.GlobOr(Start,End); // advances D
1973
1974 // FIXME: we really should display a or-group as a or-group to the user
1975 // the problem is that ShowList is incapable of doing this
1976 string RecommendsOrList,RecommendsOrVersions;
1977 string SuggestsOrList,SuggestsOrVersions;
1978 bool foundInstalledInOrGroup = false;
1979 for(;;)
1980 {
1981 /* Skip if package is installed already, or is about to be */
1982 string target = Start.TargetPkg().FullName(true) + " ";
1983 pkgCache::PkgIterator const TarPkg = Start.TargetPkg();
1984 if (TarPkg->SelectedState == pkgCache::State::Install ||
1985 TarPkg->SelectedState == pkgCache::State::Hold ||
1986 Cache[Start.TargetPkg()].Install())
1987 {
1988 foundInstalledInOrGroup=true;
1989 break;
1990 }
1991
1992 /* Skip if we already saw it */
1993 if (int(SuggestsList.find(target)) != -1 || int(RecommendsList.find(target)) != -1)
1994 {
1995 foundInstalledInOrGroup=true;
1996 break;
1997 }
1998
1999 // this is a dep on a virtual pkg, check if any package that provides it
2000 // should be installed
2001 if(Start.TargetPkg().ProvidesList() != 0)
2002 {
2003 pkgCache::PrvIterator I = Start.TargetPkg().ProvidesList();
2004 for (; I.end() == false; ++I)
2005 {
2006 pkgCache::PkgIterator Pkg = I.OwnerPkg();
2007 if (Cache[Pkg].CandidateVerIter(Cache) == I.OwnerVer() &&
2008 Pkg.CurrentVer() != 0)
2009 foundInstalledInOrGroup=true;
2010 }
2011 }
2012
2013 if (Start->Type == pkgCache::Dep::Suggests)
2014 {
2015 SuggestsOrList += target;
2016 SuggestsOrVersions += string(Cache[Start.TargetPkg()].CandVersion) + "\n";
2017 }
2018
2019 if (Start->Type == pkgCache::Dep::Recommends)
2020 {
2021 RecommendsOrList += target;
2022 RecommendsOrVersions += string(Cache[Start.TargetPkg()].CandVersion) + "\n";
2023 }
2024
2025 if (Start >= End)
2026 break;
2027 ++Start;
2028 }
2029
2030 if(foundInstalledInOrGroup == false)
2031 {
2032 RecommendsList += RecommendsOrList;
2033 RecommendsVersions += RecommendsOrVersions;
2034 SuggestsList += SuggestsOrList;
2035 SuggestsVersions += SuggestsOrVersions;
2036 }
2037
2038 }
2039 }
2040
2041 ShowList(c1out,_("Suggested packages:"),SuggestsList,SuggestsVersions);
2042 ShowList(c1out,_("Recommended packages:"),RecommendsList,RecommendsVersions);
2043
2044 }
2045
2046 // if nothing changed in the cache, but only the automark information
2047 // we write the StateFile here, otherwise it will be written in
2048 // cache.commit()
2049 if (InstallAction.AutoMarkChanged > 0 &&
2050 Cache->DelCount() == 0 && Cache->InstCount() == 0 &&
2051 Cache->BadCount() == 0 &&
2052 _config->FindB("APT::Get::Simulate",false) == false)
2053 Cache->writeStateFile(NULL);
2054
2055 // See if we need to prompt
2056 // FIXME: check if really the packages in the set are going to be installed
2057 if (Cache->InstCount() == verset[MOD_INSTALL].size() && Cache->DelCount() == 0)
2058 return InstallPackages(Cache,false,false);
2059
2060 return InstallPackages(Cache,false);
2061 }
2062 /*}}}*/
2063 /* mark packages as automatically/manually installed. {{{*/
2064 bool DoMarkAuto(CommandLine &CmdL)
2065 {
2066 bool Action = true;
2067 int AutoMarkChanged = 0;
2068 OpTextProgress progress;
2069 CacheFile Cache;
2070 if (Cache.Open() == false)
2071 return false;
2072
2073 if (strcasecmp(CmdL.FileList[0],"markauto") == 0)
2074 Action = true;
2075 else if (strcasecmp(CmdL.FileList[0],"unmarkauto") == 0)
2076 Action = false;
2077
2078 for (const char **I = CmdL.FileList + 1; *I != 0; I++)
2079 {
2080 const char *S = *I;
2081 // Locate the package
2082 pkgCache::PkgIterator Pkg = Cache->FindPkg(S);
2083 if (Pkg.end() == true) {
2084 return _error->Error(_("Couldn't find package %s"),S);
2085 }
2086 else
2087 {
2088 if (!Action)
2089 ioprintf(c1out,_("%s set to manually installed.\n"), Pkg.Name());
2090 else
2091 ioprintf(c1out,_("%s set to automatically installed.\n"),
2092 Pkg.Name());
2093
2094 Cache->MarkAuto(Pkg,Action);
2095 AutoMarkChanged++;
2096 }
2097 }
2098
2099 _error->Notice(_("This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' instead."));
2100
2101 if (AutoMarkChanged && ! _config->FindB("APT::Get::Simulate",false))
2102 return Cache->writeStateFile(NULL);
2103 return false;
2104 }
2105 /*}}}*/
2106 // DoDistUpgrade - Automatic smart upgrader /*{{{*/
2107 // ---------------------------------------------------------------------
2108 /* Intelligent upgrader that will install and remove packages at will */
2109 bool DoDistUpgrade(CommandLine &CmdL)
2110 {
2111 CacheFile Cache;
2112 if (Cache.OpenForInstall() == false || Cache.CheckDeps() == false)
2113 return false;
2114
2115 c0out << _("Calculating upgrade... ") << flush;
2116 if (pkgDistUpgrade(*Cache) == false)
2117 {
2118 c0out << _("Failed") << endl;
2119 ShowBroken(c1out,Cache,false);
2120 return false;
2121 }
2122
2123 c0out << _("Done") << endl;
2124
2125 return InstallPackages(Cache,true);
2126 }
2127 /*}}}*/
2128 // DoDSelectUpgrade - Do an upgrade by following dselects selections /*{{{*/
2129 // ---------------------------------------------------------------------
2130 /* Follows dselect's selections */
2131 bool DoDSelectUpgrade(CommandLine &CmdL)
2132 {
2133 CacheFile Cache;
2134 if (Cache.OpenForInstall() == false || Cache.CheckDeps() == false)
2135 return false;
2136
2137 pkgDepCache::ActionGroup group(Cache);
2138
2139 // Install everything with the install flag set
2140 pkgCache::PkgIterator I = Cache->PkgBegin();
2141 for (;I.end() != true; ++I)
2142 {
2143 /* Install the package only if it is a new install, the autoupgrader
2144 will deal with the rest */
2145 if (I->SelectedState == pkgCache::State::Install)
2146 Cache->MarkInstall(I,false);
2147 }
2148
2149 /* Now install their deps too, if we do this above then order of
2150 the status file is significant for | groups */
2151 for (I = Cache->PkgBegin();I.end() != true; ++I)
2152 {
2153 /* Install the package only if it is a new install, the autoupgrader
2154 will deal with the rest */
2155 if (I->SelectedState == pkgCache::State::Install)
2156 Cache->MarkInstall(I,true);
2157 }
2158
2159 // Apply erasures now, they override everything else.
2160 for (I = Cache->PkgBegin();I.end() != true; ++I)
2161 {
2162 // Remove packages
2163 if (I->SelectedState == pkgCache::State::DeInstall ||
2164 I->SelectedState == pkgCache::State::Purge)
2165 Cache->MarkDelete(I,I->SelectedState == pkgCache::State::Purge);
2166 }
2167
2168 /* Resolve any problems that dselect created, allupgrade cannot handle
2169 such things. We do so quite agressively too.. */
2170 if (Cache->BrokenCount() != 0)
2171 {
2172 pkgProblemResolver Fix(Cache);
2173
2174 // Hold back held packages.
2175 if (_config->FindB("APT::Ignore-Hold",false) == false)
2176 {
2177 for (pkgCache::PkgIterator I = Cache->PkgBegin(); I.end() == false; ++I)
2178 {
2179 if (I->SelectedState == pkgCache::State::Hold)
2180 {
2181 Fix.Protect(I);
2182 Cache->MarkKeep(I);
2183 }
2184 }
2185 }
2186
2187 if (Fix.Resolve() == false)
2188 {
2189 ShowBroken(c1out,Cache,false);
2190 return _error->Error(_("Internal error, problem resolver broke stuff"));
2191 }
2192 }
2193
2194 // Now upgrade everything
2195 if (pkgAllUpgrade(Cache) == false)
2196 {
2197 ShowBroken(c1out,Cache,false);
2198 return _error->Error(_("Internal error, problem resolver broke stuff"));
2199 }
2200
2201 return InstallPackages(Cache,false);
2202 }
2203 /*}}}*/
2204 // DoClean - Remove download archives /*{{{*/
2205 // ---------------------------------------------------------------------
2206 /* */
2207 bool DoClean(CommandLine &CmdL)
2208 {
2209 std::string const archivedir = _config->FindDir("Dir::Cache::archives");
2210 std::string const pkgcache = _config->FindFile("Dir::cache::pkgcache");
2211 std::string const srcpkgcache = _config->FindFile("Dir::cache::srcpkgcache");
2212
2213 if (_config->FindB("APT::Get::Simulate") == true)
2214 {
2215 cout << "Del " << archivedir << "* " << archivedir << "partial/*"<< endl
2216 << "Del " << pkgcache << " " << srcpkgcache << endl;
2217 return true;
2218 }
2219
2220 // Lock the archive directory
2221 FileFd Lock;
2222 if (_config->FindB("Debug::NoLocking",false) == false)
2223 {
2224 Lock.Fd(GetLock(archivedir + "lock"));
2225 if (_error->PendingError() == true)
2226 return _error->Error(_("Unable to lock the download directory"));
2227 }
2228
2229 pkgAcquire Fetcher;
2230 Fetcher.Clean(archivedir);
2231 Fetcher.Clean(archivedir + "partial/");
2232
2233 pkgCacheFile::RemoveCaches();
2234
2235 return true;
2236 }
2237 /*}}}*/
2238 // DoAutoClean - Smartly remove downloaded archives /*{{{*/
2239 // ---------------------------------------------------------------------
2240 /* This is similar to clean but it only purges things that cannot be
2241 downloaded, that is old versions of cached packages. */
2242 class LogCleaner : public pkgArchiveCleaner
2243 {
2244 protected:
2245 virtual void Erase(const char *File,string Pkg,string Ver,struct stat &St)
2246 {
2247 c1out << "Del " << Pkg << " " << Ver << " [" << SizeToStr(St.st_size) << "B]" << endl;
2248
2249 if (_config->FindB("APT::Get::Simulate") == false)
2250 unlink(File);
2251 };
2252 };
2253
2254 bool DoAutoClean(CommandLine &CmdL)
2255 {
2256 // Lock the archive directory
2257 FileFd Lock;
2258 if (_config->FindB("Debug::NoLocking",false) == false)
2259 {
2260 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
2261 if (_error->PendingError() == true)
2262 return _error->Error(_("Unable to lock the download directory"));
2263 }
2264
2265 CacheFile Cache;
2266 if (Cache.Open() == false)
2267 return false;
2268
2269 LogCleaner Cleaner;
2270
2271 return Cleaner.Go(_config->FindDir("Dir::Cache::archives"),*Cache) &&
2272 Cleaner.Go(_config->FindDir("Dir::Cache::archives") + "partial/",*Cache);
2273 }
2274 /*}}}*/
2275 // DoDownload - download a binary /*{{{*/
2276 // ---------------------------------------------------------------------
2277 bool DoDownload(CommandLine &CmdL)
2278 {
2279 CacheFile Cache;
2280 if (Cache.ReadOnlyOpen() == false)
2281 return false;
2282
2283 APT::CacheSetHelper helper(c0out);
2284 APT::VersionSet verset = APT::VersionSet::FromCommandLine(Cache,
2285 CmdL.FileList + 1, APT::VersionSet::CANDIDATE, helper);
2286
2287 if (verset.empty() == true)
2288 return false;
2289
2290 pkgAcquire Fetcher;
2291 AcqTextStatus Stat(ScreenWidth, _config->FindI("quiet",0));
2292 if (_config->FindB("APT::Get::Print-URIs") == false)
2293 Fetcher.Setup(&Stat);
2294
2295 pkgRecords Recs(Cache);
2296 pkgSourceList *SrcList = Cache.GetSourceList();
2297 for (APT::VersionSet::const_iterator Ver = verset.begin();
2298 Ver != verset.end();
2299 ++Ver)
2300 {
2301 string descr;
2302 // get the right version
2303 pkgCache::PkgIterator Pkg = Ver.ParentPkg();
2304 pkgRecords::Parser &rec=Recs.Lookup(Ver.FileList());
2305 pkgCache::VerFileIterator Vf = Ver.FileList();
2306 if (Vf.end() == true)
2307 return _error->Error("Can not find VerFile");
2308 pkgCache::PkgFileIterator F = Vf.File();
2309 pkgIndexFile *index;
2310 if(SrcList->FindIndex(F, index) == false)
2311 return _error->Error("FindIndex failed");
2312 string uri = index->ArchiveURI(rec.FileName());
2313 strprintf(descr, _("Downloading %s %s"), Pkg.Name(), Ver.VerStr());
2314 // get the most appropriate hash
2315 HashString hash;
2316 if (rec.SHA512Hash() != "")
2317 hash = HashString("sha512", rec.SHA512Hash());
2318 if (rec.SHA256Hash() != "")
2319 hash = HashString("sha256", rec.SHA256Hash());
2320 else if (rec.SHA1Hash() != "")
2321 hash = HashString("sha1", rec.SHA1Hash());
2322 else if (rec.MD5Hash() != "")
2323 hash = HashString("md5", rec.MD5Hash());
2324 // get the file
2325 new pkgAcqFile(&Fetcher, uri, hash.toStr(), (*Ver)->Size, descr, Pkg.Name(), ".");
2326 }
2327
2328 // Just print out the uris and exit if the --print-uris flag was used
2329 if (_config->FindB("APT::Get::Print-URIs") == true)
2330 {
2331 pkgAcquire::UriIterator I = Fetcher.UriBegin();
2332 for (; I != Fetcher.UriEnd(); ++I)
2333 cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' <<
2334 I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl;
2335 return true;
2336 }
2337
2338 return (Fetcher.Run() == pkgAcquire::Continue);
2339 }
2340 /*}}}*/
2341 // DoCheck - Perform the check operation /*{{{*/
2342 // ---------------------------------------------------------------------
2343 /* Opening automatically checks the system, this command is mostly used
2344 for debugging */
2345 bool DoCheck(CommandLine &CmdL)
2346 {
2347 CacheFile Cache;
2348 Cache.Open();
2349 Cache.CheckDeps();
2350
2351 return true;
2352 }
2353 /*}}}*/
2354 // DoSource - Fetch a source archive /*{{{*/
2355 // ---------------------------------------------------------------------
2356 /* Fetch souce packages */
2357 struct DscFile
2358 {
2359 string Package;
2360 string Version;
2361 string Dsc;
2362 };
2363
2364 bool DoSource(CommandLine &CmdL)
2365 {
2366 CacheFile Cache;
2367 if (Cache.Open(false) == false)
2368 return false;
2369
2370 if (CmdL.FileSize() <= 1)
2371 return _error->Error(_("Must specify at least one package to fetch source for"));
2372
2373 // Read the source list
2374 if (Cache.BuildSourceList() == false)
2375 return false;
2376 pkgSourceList *List = Cache.GetSourceList();
2377
2378 // Create the text record parsers
2379 pkgRecords Recs(Cache);
2380 pkgSrcRecords SrcRecs(*List);
2381 if (_error->PendingError() == true)
2382 return false;
2383
2384 // Create the download object
2385 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
2386 pkgAcquire Fetcher;
2387 Fetcher.SetLog(&Stat);
2388
2389 DscFile *Dsc = new DscFile[CmdL.FileSize()];
2390
2391 // insert all downloaded uris into this set to avoid downloading them
2392 // twice
2393 set<string> queued;
2394
2395 // Diff only mode only fetches .diff files
2396 bool const diffOnly = _config->FindB("APT::Get::Diff-Only", false);
2397 // Tar only mode only fetches .tar files
2398 bool const tarOnly = _config->FindB("APT::Get::Tar-Only", false);
2399 // Dsc only mode only fetches .dsc files
2400 bool const dscOnly = _config->FindB("APT::Get::Dsc-Only", false);
2401
2402 // Load the requestd sources into the fetcher
2403 unsigned J = 0;
2404 for (const char **I = CmdL.FileList + 1; *I != 0; I++, J++)
2405 {
2406 string Src;
2407 pkgSrcRecords::Parser *Last = FindSrc(*I,Recs,SrcRecs,Src,*Cache);
2408
2409 if (Last == 0) {
2410 delete[] Dsc;
2411 return _error->Error(_("Unable to find a source package for %s"),Src.c_str());
2412 }
2413
2414 string srec = Last->AsStr();
2415 string::size_type pos = srec.find("\nVcs-");
2416 while (pos != string::npos)
2417 {
2418 pos += strlen("\nVcs-");
2419 string vcs = srec.substr(pos,srec.find(":",pos)-pos);
2420 if(vcs == "Browser")
2421 {
2422 pos = srec.find("\nVcs-", pos);
2423 continue;
2424 }
2425 pos += vcs.length()+2;
2426 string::size_type epos = srec.find("\n", pos);
2427 string uri = srec.substr(pos,epos-pos).c_str();
2428 ioprintf(c1out, _("NOTICE: '%s' packaging is maintained in "
2429 "the '%s' version control system at:\n"
2430 "%s\n"),
2431 Src.c_str(), vcs.c_str(), uri.c_str());
2432 if(vcs == "Bzr")
2433 ioprintf(c1out,_("Please use:\n"
2434 "bzr get %s\n"
2435 "to retrieve the latest (possibly unreleased) "
2436 "updates to the package.\n"),
2437 uri.c_str());
2438 break;
2439 }
2440
2441 // Back track
2442 vector<pkgSrcRecords::File> Lst;
2443 if (Last->Files(Lst) == false) {
2444 delete[] Dsc;
2445 return false;
2446 }
2447
2448 // Load them into the fetcher
2449 for (vector<pkgSrcRecords::File>::const_iterator I = Lst.begin();
2450 I != Lst.end(); ++I)
2451 {
2452 // Try to guess what sort of file it is we are getting.
2453 if (I->Type == "dsc")
2454 {
2455 Dsc[J].Package = Last->Package();
2456 Dsc[J].Version = Last->Version();
2457 Dsc[J].Dsc = flNotDir(I->Path);
2458 }
2459
2460 // Handle the only options so that multiple can be used at once
2461 if (diffOnly == true || tarOnly == true || dscOnly == true)
2462 {
2463 if ((diffOnly == true && I->Type == "diff") ||
2464 (tarOnly == true && I->Type == "tar") ||
2465 (dscOnly == true && I->Type == "dsc"))
2466 ; // Fine, we want this file downloaded
2467 else
2468 continue;
2469 }
2470
2471 // don't download the same uri twice (should this be moved to
2472 // the fetcher interface itself?)
2473 if(queued.find(Last->Index().ArchiveURI(I->Path)) != queued.end())
2474 continue;
2475 queued.insert(Last->Index().ArchiveURI(I->Path));
2476
2477 // check if we have a file with that md5 sum already localy
2478 if(!I->MD5Hash.empty() && FileExists(flNotDir(I->Path)))
2479 {
2480 FileFd Fd(flNotDir(I->Path), FileFd::ReadOnly);
2481 MD5Summation sum;
2482 sum.AddFD(Fd.Fd(), Fd.Size());
2483 Fd.Close();
2484 if((string)sum.Result() == I->MD5Hash)
2485 {
2486 ioprintf(c1out,_("Skipping already downloaded file '%s'\n"),
2487 flNotDir(I->Path).c_str());
2488 continue;
2489 }
2490 }
2491
2492 new pkgAcqFile(&Fetcher,Last->Index().ArchiveURI(I->Path),
2493 I->MD5Hash,I->Size,
2494 Last->Index().SourceInfo(*Last,*I),Src);
2495 }
2496 }
2497
2498 // Display statistics
2499 unsigned long long FetchBytes = Fetcher.FetchNeeded();
2500 unsigned long long FetchPBytes = Fetcher.PartialPresent();
2501 unsigned long long DebBytes = Fetcher.TotalNeeded();
2502
2503 // Check for enough free space
2504 struct statvfs Buf;
2505 string OutputDir = ".";
2506 if (statvfs(OutputDir.c_str(),&Buf) != 0) {
2507 delete[] Dsc;
2508 if (errno == EOVERFLOW)
2509 return _error->WarningE("statvfs",_("Couldn't determine free space in %s"),
2510 OutputDir.c_str());
2511 else
2512 return _error->Errno("statvfs",_("Couldn't determine free space in %s"),
2513 OutputDir.c_str());
2514 } else if (unsigned(Buf.f_bfree) < (FetchBytes - FetchPBytes)/Buf.f_bsize)
2515 {
2516 struct statfs Stat;
2517 if (statfs(OutputDir.c_str(),&Stat) != 0
2518 #if HAVE_STRUCT_STATFS_F_TYPE
2519 || unsigned(Stat.f_type) != RAMFS_MAGIC
2520 #endif
2521 ) {
2522 delete[] Dsc;
2523 return _error->Error(_("You don't have enough free space in %s"),
2524 OutputDir.c_str());
2525 }
2526 }
2527
2528 // Number of bytes
2529 if (DebBytes != FetchBytes)
2530 //TRANSLATOR: The required space between number and unit is already included
2531 // in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
2532 ioprintf(c1out,_("Need to get %sB/%sB of source archives.\n"),
2533 SizeToStr(FetchBytes).c_str(),SizeToStr(DebBytes).c_str());
2534 else
2535 //TRANSLATOR: The required space between number and unit is already included
2536 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
2537 ioprintf(c1out,_("Need to get %sB of source archives.\n"),
2538 SizeToStr(DebBytes).c_str());
2539
2540 if (_config->FindB("APT::Get::Simulate",false) == true)
2541 {
2542 for (unsigned I = 0; I != J; I++)
2543 ioprintf(cout,_("Fetch source %s\n"),Dsc[I].Package.c_str());
2544 delete[] Dsc;
2545 return true;
2546 }
2547
2548 // Just print out the uris an exit if the --print-uris flag was used
2549 if (_config->FindB("APT::Get::Print-URIs") == true)
2550 {
2551 pkgAcquire::UriIterator I = Fetcher.UriBegin();
2552 for (; I != Fetcher.UriEnd(); ++I)
2553 cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' <<
2554 I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl;
2555 delete[] Dsc;
2556 return true;
2557 }
2558
2559 // Run it
2560 if (Fetcher.Run() == pkgAcquire::Failed)
2561 {
2562 delete[] Dsc;
2563 return false;
2564 }
2565
2566 // Print error messages
2567 bool Failed = false;
2568 for (pkgAcquire::ItemIterator I = Fetcher.ItemsBegin(); I != Fetcher.ItemsEnd(); ++I)
2569 {
2570 if ((*I)->Status == pkgAcquire::Item::StatDone &&
2571 (*I)->Complete == true)
2572 continue;
2573
2574 fprintf(stderr,_("Failed to fetch %s %s\n"),(*I)->DescURI().c_str(),
2575 (*I)->ErrorText.c_str());
2576 Failed = true;
2577 }
2578 if (Failed == true)
2579 {
2580 delete[] Dsc;
2581 return _error->Error(_("Failed to fetch some archives."));
2582 }
2583
2584 if (_config->FindB("APT::Get::Download-only",false) == true)
2585 {
2586 c1out << _("Download complete and in download only mode") << endl;
2587 delete[] Dsc;
2588 return true;
2589 }
2590
2591 // Unpack the sources
2592 pid_t Process = ExecFork();
2593
2594 if (Process == 0)
2595 {
2596 bool const fixBroken = _config->FindB("APT::Get::Fix-Broken", false);
2597 for (unsigned I = 0; I != J; ++I)
2598 {
2599 string Dir = Dsc[I].Package + '-' + Cache->VS().UpstreamVersion(Dsc[I].Version.c_str());
2600
2601 // Diff only mode only fetches .diff files
2602 if (_config->FindB("APT::Get::Diff-Only",false) == true ||
2603 _config->FindB("APT::Get::Tar-Only",false) == true ||
2604 Dsc[I].Dsc.empty() == true)
2605 continue;
2606
2607 // See if the package is already unpacked
2608 struct stat Stat;
2609 if (fixBroken == false && stat(Dir.c_str(),&Stat) == 0 &&
2610 S_ISDIR(Stat.st_mode) != 0)
2611 {
2612 ioprintf(c0out ,_("Skipping unpack of already unpacked source in %s\n"),
2613 Dir.c_str());
2614 }
2615 else
2616 {
2617 // Call dpkg-source
2618 char S[500];
2619 snprintf(S,sizeof(S),"%s -x %s",
2620 _config->Find("Dir::Bin::dpkg-source","dpkg-source").c_str(),
2621 Dsc[I].Dsc.c_str());
2622 if (system(S) != 0)
2623 {
2624 fprintf(stderr,_("Unpack command '%s' failed.\n"),S);
2625 fprintf(stderr,_("Check if the 'dpkg-dev' package is installed.\n"));
2626 _exit(1);
2627 }
2628 }
2629
2630 // Try to compile it with dpkg-buildpackage
2631 if (_config->FindB("APT::Get::Compile",false) == true)
2632 {
2633 string buildopts = _config->Find("APT::Get::Host-Architecture");
2634 if (buildopts.empty() == false)
2635 buildopts = "-a " + buildopts + " ";
2636 buildopts.append(_config->Find("DPkg::Build-Options","-b -uc"));
2637
2638 // Call dpkg-buildpackage
2639 char S[500];
2640 snprintf(S,sizeof(S),"cd %s && %s %s",
2641 Dir.c_str(),
2642 _config->Find("Dir::Bin::dpkg-buildpackage","dpkg-buildpackage").c_str(),
2643 buildopts.c_str());
2644
2645 if (system(S) != 0)
2646 {
2647 fprintf(stderr,_("Build command '%s' failed.\n"),S);
2648 _exit(1);
2649 }
2650 }
2651 }
2652
2653 _exit(0);
2654 }
2655 delete[] Dsc;
2656
2657 // Wait for the subprocess
2658 int Status = 0;
2659 while (waitpid(Process,&Status,0) != Process)
2660 {
2661 if (errno == EINTR)
2662 continue;
2663 return _error->Errno("waitpid","Couldn't wait for subprocess");
2664 }
2665
2666 if (WIFEXITED(Status) == 0 || WEXITSTATUS(Status) != 0)
2667 return _error->Error(_("Child process failed"));
2668
2669 return true;
2670 }
2671 /*}}}*/
2672 // DoBuildDep - Install/removes packages to satisfy build dependencies /*{{{*/
2673 // ---------------------------------------------------------------------
2674 /* This function will look at the build depends list of the given source
2675 package and install the necessary packages to make it true, or fail. */
2676 bool DoBuildDep(CommandLine &CmdL)
2677 {
2678 CacheFile Cache;
2679
2680 _config->Set("APT::Install-Recommends", false);
2681
2682 if (Cache.Open(true) == false)
2683 return false;
2684
2685 if (CmdL.FileSize() <= 1)
2686 return _error->Error(_("Must specify at least one package to check builddeps for"));
2687
2688 // Read the source list
2689 if (Cache.BuildSourceList() == false)
2690 return false;
2691 pkgSourceList *List = Cache.GetSourceList();
2692
2693 // Create the text record parsers
2694 pkgRecords Recs(Cache);
2695 pkgSrcRecords SrcRecs(*List);
2696 if (_error->PendingError() == true)
2697 return false;
2698
2699 // Create the download object
2700 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
2701 pkgAcquire Fetcher;
2702 if (Fetcher.Setup(&Stat) == false)
2703 return false;
2704
2705 bool StripMultiArch;
2706 string hostArch = _config->Find("APT::Get::Host-Architecture");
2707 if (hostArch.empty() == false)
2708 {
2709 std::vector<std::string> archs = APT::Configuration::getArchitectures();
2710 if (std::find(archs.begin(), archs.end(), hostArch) == archs.end())
2711 return _error->Error(_("No architecture information available for %s. See apt.conf(5) APT::Architectures for setup"), hostArch.c_str());
2712 StripMultiArch = false;
2713 }
2714 else
2715 StripMultiArch = true;
2716
2717 unsigned J = 0;
2718 for (const char **I = CmdL.FileList + 1; *I != 0; I++, J++)
2719 {
2720 string Src;
2721 pkgSrcRecords::Parser *Last = FindSrc(*I,Recs,SrcRecs,Src,*Cache);
2722 if (Last == 0)
2723 return _error->Error(_("Unable to find a source package for %s"),Src.c_str());
2724
2725 // Process the build-dependencies
2726 vector<pkgSrcRecords::Parser::BuildDepRec> BuildDeps;
2727 if (Last->BuildDepends(BuildDeps, _config->FindB("APT::Get::Arch-Only", false), StripMultiArch) == false)
2728 return _error->Error(_("Unable to get build-dependency information for %s"),Src.c_str());
2729
2730 // Also ensure that build-essential packages are present
2731 Configuration::Item const *Opts = _config->Tree("APT::Build-Essential");
2732 if (Opts)
2733 Opts = Opts->Child;
2734 for (; Opts; Opts = Opts->Next)
2735 {
2736 if (Opts->Value.empty() == true)
2737 continue;
2738
2739 pkgSrcRecords::Parser::BuildDepRec rec;
2740 rec.Package = Opts->Value;
2741 rec.Type = pkgSrcRecords::Parser::BuildDependIndep;
2742 rec.Op = 0;
2743 BuildDeps.push_back(rec);
2744 }
2745
2746 if (BuildDeps.empty() == true)
2747 {
2748 ioprintf(c1out,_("%s has no build depends.\n"),Src.c_str());
2749 continue;
2750 }
2751
2752 // Install the requested packages
2753 vector <pkgSrcRecords::Parser::BuildDepRec>::iterator D;
2754 pkgProblemResolver Fix(Cache);
2755 bool skipAlternatives = false; // skip remaining alternatives in an or group
2756 for (D = BuildDeps.begin(); D != BuildDeps.end(); ++D)
2757 {
2758 bool hasAlternatives = (((*D).Op & pkgCache::Dep::Or) == pkgCache::Dep::Or);
2759
2760 if (skipAlternatives == true)
2761 {
2762 /*
2763 * if there are alternatives, we've already picked one, so skip
2764 * the rest
2765 *
2766 * TODO: this means that if there's a build-dep on A|B and B is
2767 * installed, we'll still try to install A; more importantly,
2768 * if A is currently broken, we cannot go back and try B. To fix
2769 * this would require we do a Resolve cycle for each package we
2770 * add to the install list. Ugh
2771 */
2772 if (!hasAlternatives)
2773 skipAlternatives = false; // end of or group
2774 continue;
2775 }
2776
2777 if ((*D).Type == pkgSrcRecords::Parser::BuildConflict ||
2778 (*D).Type == pkgSrcRecords::Parser::BuildConflictIndep)
2779 {
2780 pkgCache::GrpIterator Grp = Cache->FindGrp((*D).Package);
2781 // Build-conflicts on unknown packages are silently ignored
2782 if (Grp.end() == true)
2783 continue;
2784
2785 for (pkgCache::PkgIterator Pkg = Grp.PackageList(); Pkg.end() == false; Pkg = Grp.NextPkg(Pkg))
2786 {
2787 pkgCache::VerIterator IV = (*Cache)[Pkg].InstVerIter(*Cache);
2788 /*
2789 * Remove if we have an installed version that satisfies the
2790 * version criteria
2791 */
2792 if (IV.end() == false &&
2793 Cache->VS().CheckDep(IV.VerStr(),(*D).Op,(*D).Version.c_str()) == true)
2794 TryToInstallBuildDep(Pkg,Cache,Fix,true,false);
2795 }
2796 }
2797 else // BuildDep || BuildDepIndep
2798 {
2799 if (_config->FindB("Debug::BuildDeps",false) == true)
2800 cout << "Looking for " << (*D).Package << "...\n";
2801
2802 pkgCache::PkgIterator Pkg;
2803
2804 // Cross-Building?
2805 if (StripMultiArch == false)
2806 {
2807 size_t const colon = D->Package.find(":");
2808 if (colon != string::npos &&
2809 (strcmp(D->Package.c_str() + colon, ":any") == 0 || strcmp(D->Package.c_str() + colon, ":native") == 0))
2810 Pkg = Cache->FindPkg(D->Package.substr(0,colon));
2811 else
2812 Pkg = Cache->FindPkg(D->Package);
2813
2814 // We need to decide if host or build arch, so find a version we can look at
2815 pkgCache::VerIterator Ver;
2816
2817 // a bad version either is invalid or doesn't satify dependency
2818 #define BADVER(Ver) Ver.end() == true || \
2819 (Ver.end() == false && D->Version.empty() == false && \
2820 Cache->VS().CheckDep(Ver.VerStr(),D->Op,D->Version.c_str()) == false)
2821
2822 if (Pkg.end() == false)
2823 {
2824 Ver = (*Cache)[Pkg].InstVerIter(*Cache);
2825 if (BADVER(Ver))
2826 Ver = (*Cache)[Pkg].CandidateVerIter(*Cache);
2827 }
2828 if (BADVER(Ver))
2829 {
2830 pkgCache::PkgIterator HostPkg = Cache->FindPkg(D->Package, hostArch);
2831 if (HostPkg.end() == false)
2832 {
2833 Ver = (*Cache)[HostPkg].InstVerIter(*Cache);
2834 if (BADVER(Ver))
2835 Ver = (*Cache)[HostPkg].CandidateVerIter(*Cache);
2836 }
2837 }
2838 if ((BADVER(Ver)) == false)
2839 {
2840 string forbidden;
2841 if (Ver->MultiArch == pkgCache::Version::None || Ver->MultiArch == pkgCache::Version::All);
2842 else if (Ver->MultiArch == pkgCache::Version::Same)
2843 {
2844 if (colon != string::npos)
2845 Pkg = Ver.ParentPkg().Group().FindPkg(hostArch);
2846 else if (strcmp(D->Package.c_str() + colon, ":any") == 0)
2847 forbidden = "Multi-Arch: same";
2848 // :native gets the buildArch
2849 }
2850 else if (Ver->MultiArch == pkgCache::Version::Foreign || Ver->MultiArch == pkgCache::Version::AllForeign)
2851 {
2852 if (colon != string::npos)
2853 forbidden = "Multi-Arch: foreign";
2854 }
2855 else if (Ver->MultiArch == pkgCache::Version::Allowed || Ver->MultiArch == pkgCache::Version::AllAllowed)
2856 {
2857 if (colon == string::npos)
2858 Pkg = Ver.ParentPkg().Group().FindPkg(hostArch);
2859 else if (strcmp(D->Package.c_str() + colon, ":any") == 0)
2860 {
2861 // prefer any installed over preferred non-installed architectures
2862 pkgCache::GrpIterator Grp = Ver.ParentPkg().Group();
2863 // we don't check for version here as we are better of with upgrading than remove and install
2864 for (Pkg = Grp.PackageList(); Pkg.end() == false; Pkg = Grp.NextPkg(Pkg))
2865 if (Pkg.CurrentVer().end() == false)
2866 break;
2867 if (Pkg.end() == true)
2868 Pkg = Grp.FindPreferredPkg(true);
2869 }
2870 // native gets buildArch
2871 }
2872 if (forbidden.empty() == false)
2873 {
2874 if (_config->FindB("Debug::BuildDeps",false) == true)
2875 cout << " :any is not allowed from M-A: same package " << (*D).Package << endl;
2876 if (hasAlternatives)
2877 continue;
2878 return _error->Error(_("%s dependency for %s can't be satisfied "
2879 "because %s is not allowed on '%s' packages"),
2880 Last->BuildDepType(D->Type), Src.c_str(),
2881 D->Package.c_str(), "Multi-Arch: same");
2882 }
2883 }
2884 else if (_config->FindB("Debug::BuildDeps",false) == true)
2885 cout << " No multiarch info as we have no satisfying installed nor candidate for " << D->Package << " on build or host arch" << endl;
2886 #undef BADVER
2887 }
2888 else
2889 Pkg = Cache->FindPkg(D->Package);
2890
2891 if (Pkg.end() == true)
2892 {
2893 if (_config->FindB("Debug::BuildDeps",false) == true)
2894 cout << " (not found)" << (*D).Package << endl;
2895
2896 if (hasAlternatives)
2897 continue;
2898
2899 return _error->Error(_("%s dependency for %s cannot be satisfied "
2900 "because the package %s cannot be found"),
2901 Last->BuildDepType((*D).Type),Src.c_str(),
2902 (*D).Package.c_str());
2903 }
2904
2905 pkgCache::VerIterator IV = (*Cache)[Pkg].InstVerIter(*Cache);
2906 if (IV.end() == false)
2907 {
2908 if (_config->FindB("Debug::BuildDeps",false) == true)
2909 cout << " Is installed\n";
2910
2911 if (D->Version.empty() == true ||
2912 Cache->VS().CheckDep(IV.VerStr(),(*D).Op,(*D).Version.c_str()) == true)
2913 {
2914 skipAlternatives = hasAlternatives;
2915 continue;
2916 }
2917
2918 if (_config->FindB("Debug::BuildDeps",false) == true)
2919 cout << " ...but the installed version doesn't meet the version requirement\n";
2920
2921 if (((*D).Op & pkgCache::Dep::LessEq) == pkgCache::Dep::LessEq)
2922 return _error->Error(_("Failed to satisfy %s dependency for %s: Installed package %s is too new"),
2923 Last->BuildDepType((*D).Type), Src.c_str(), Pkg.FullName(true).c_str());
2924 }
2925
2926 // Only consider virtual packages if there is no versioned dependency
2927 if ((*D).Version.empty() == true)
2928 {
2929 /*
2930 * If this is a virtual package, we need to check the list of
2931 * packages that provide it and see if any of those are
2932 * installed
2933 */
2934 pkgCache::PrvIterator Prv = Pkg.ProvidesList();
2935 for (; Prv.end() != true; ++Prv)
2936 {
2937 if (_config->FindB("Debug::BuildDeps",false) == true)
2938 cout << " Checking provider " << Prv.OwnerPkg().FullName() << endl;
2939
2940 if ((*Cache)[Prv.OwnerPkg()].InstVerIter(*Cache).end() == false)
2941 break;
2942 }
2943
2944 if (Prv.end() == false)
2945 {
2946 if (_config->FindB("Debug::BuildDeps",false) == true)
2947 cout << " Is provided by installed package " << Prv.OwnerPkg().FullName() << endl;
2948 skipAlternatives = hasAlternatives;
2949 continue;
2950 }
2951 }
2952 else // versioned dependency
2953 {
2954 pkgCache::VerIterator CV = (*Cache)[Pkg].CandidateVerIter(*Cache);
2955 if (CV.end() == true ||
2956 Cache->VS().CheckDep(CV.VerStr(),(*D).Op,(*D).Version.c_str()) == false)
2957 {
2958 if (hasAlternatives)
2959 continue;
2960 else if (CV.end() == false)
2961 return _error->Error(_("%s dependency for %s cannot be satisfied "
2962 "because candidate version of package %s "
2963 "can't satisfy version requirements"),
2964 Last->BuildDepType(D->Type), Src.c_str(),
2965 D->Package.c_str());
2966 else
2967 return _error->Error(_("%s dependency for %s cannot be satisfied "
2968 "because package %s has no candidate version"),
2969 Last->BuildDepType(D->Type), Src.c_str(),
2970 D->Package.c_str());
2971 }
2972 }
2973
2974 if (TryToInstallBuildDep(Pkg,Cache,Fix,false,false) == true)
2975 {
2976 // We successfully installed something; skip remaining alternatives
2977 skipAlternatives = hasAlternatives;
2978 if(_config->FindB("APT::Get::Build-Dep-Automatic", false) == true)
2979 Cache->MarkAuto(Pkg, true);
2980 continue;
2981 }
2982 else if (hasAlternatives)
2983 {
2984 if (_config->FindB("Debug::BuildDeps",false) == true)
2985 cout << " Unsatisfiable, trying alternatives\n";
2986 continue;
2987 }
2988 else
2989 {
2990 return _error->Error(_("Failed to satisfy %s dependency for %s: %s"),
2991 Last->BuildDepType((*D).Type),
2992 Src.c_str(),
2993 (*D).Package.c_str());
2994 }
2995 }
2996 }
2997
2998 Fix.InstallProtect();
2999 if (Fix.Resolve(true) == false)
3000 _error->Discard();
3001
3002 // Now we check the state of the packages,
3003 if (Cache->BrokenCount() != 0)
3004 {
3005 ShowBroken(cout, Cache, false);
3006 return _error->Error(_("Build-dependencies for %s could not be satisfied."),*I);
3007 }
3008 }
3009
3010 if (InstallPackages(Cache, false, true) == false)
3011 return _error->Error(_("Failed to process build dependencies"));
3012 return true;
3013 }
3014 /*}}}*/
3015 // GetChangelogPath - return a path pointing to a changelog file or dir /*{{{*/
3016 // ---------------------------------------------------------------------
3017 /* This returns a "path" string for the changelog url construction.
3018 * Please note that its not complete, it either needs a "/changelog"
3019 * appended (for the packages.debian.org/changelogs site) or a
3020 * ".changelog" (for third party sites that store the changelog in the
3021 * pool/ next to the deb itself)
3022 * Example return: "pool/main/a/apt/apt_0.8.8ubuntu3"
3023 */
3024 string GetChangelogPath(CacheFile &Cache,
3025 pkgCache::PkgIterator Pkg,
3026 pkgCache::VerIterator Ver)
3027 {
3028 string path;
3029
3030 pkgRecords Recs(Cache);
3031 pkgRecords::Parser &rec=Recs.Lookup(Ver.FileList());
3032 string srcpkg = rec.SourcePkg().empty() ? Pkg.Name() : rec.SourcePkg();
3033 string ver = Ver.VerStr();
3034 // if there is a source version it always wins
3035 if (rec.SourceVer() != "")
3036 ver = rec.SourceVer();
3037 path = flNotFile(rec.FileName());
3038 path += srcpkg + "_" + StripEpoch(ver);
3039 return path;
3040 }
3041 /*}}}*/
3042 // GuessThirdPartyChangelogUri - return url /*{{{*/
3043 // ---------------------------------------------------------------------
3044 /* Contruct a changelog file path for third party sites that do not use
3045 * packages.debian.org/changelogs
3046 * This simply uses the ArchiveURI() of the source pkg and looks for
3047 * a .changelog file there, Example for "mediabuntu":
3048 * apt-get changelog mplayer-doc:
3049 * http://packages.medibuntu.org/pool/non-free/m/mplayer/mplayer_1.0~rc4~try1.dsfg1-1ubuntu1+medibuntu1.changelog
3050 */
3051 bool GuessThirdPartyChangelogUri(CacheFile &Cache,
3052 pkgCache::PkgIterator Pkg,
3053 pkgCache::VerIterator Ver,
3054 string &out_uri)
3055 {
3056 // get the binary deb server path
3057 pkgCache::VerFileIterator Vf = Ver.FileList();
3058 if (Vf.end() == true)
3059 return false;
3060 pkgCache::PkgFileIterator F = Vf.File();
3061 pkgIndexFile *index;
3062 pkgSourceList *SrcList = Cache.GetSourceList();
3063 if(SrcList->FindIndex(F, index) == false)
3064 return false;
3065
3066 // get archive uri for the binary deb
3067 string path_without_dot_changelog = GetChangelogPath(Cache, Pkg, Ver);
3068 out_uri = index->ArchiveURI(path_without_dot_changelog + ".changelog");
3069
3070 // now strip away the filename and add srcpkg_srcver.changelog
3071 return true;
3072 }
3073 /*}}}*/
3074 // DownloadChangelog - Download the changelog /*{{{*/
3075 // ---------------------------------------------------------------------
3076 bool DownloadChangelog(CacheFile &CacheFile, pkgAcquire &Fetcher,
3077 pkgCache::VerIterator Ver, string targetfile)
3078 /* Download a changelog file for the given package version to
3079 * targetfile. This will first try the server from Apt::Changelogs::Server
3080 * (http://packages.debian.org/changelogs by default) and if that gives
3081 * a 404 tries to get it from the archive directly (see
3082 * GuessThirdPartyChangelogUri for details how)
3083 */
3084 {
3085 string path;
3086 string descr;
3087 string server;
3088 string changelog_uri;
3089
3090 // data structures we need
3091 pkgCache::PkgIterator Pkg = Ver.ParentPkg();
3092
3093 // make the server root configurable
3094 server = _config->Find("Apt::Changelogs::Server",
3095 "http://packages.debian.org/changelogs");
3096 path = GetChangelogPath(CacheFile, Pkg, Ver);
3097 strprintf(changelog_uri, "%s/%s/changelog", server.c_str(), path.c_str());
3098 if (_config->FindB("APT::Get::Print-URIs", false) == true)
3099 {
3100 std::cout << '\'' << changelog_uri << '\'' << std::endl;
3101 return true;
3102 }
3103
3104 strprintf(descr, _("Changelog for %s (%s)"), Pkg.Name(), changelog_uri.c_str());
3105 // queue it
3106 new pkgAcqFile(&Fetcher, changelog_uri, "", 0, descr, Pkg.Name(), "ignored", targetfile);
3107
3108 // try downloading it, if that fails, try third-party-changelogs location
3109 // FIXME: Fetcher.Run() is "Continue" even if I get a 404?!?
3110 Fetcher.Run();
3111 if (!FileExists(targetfile))
3112 {
3113 string third_party_uri;
3114 if (GuessThirdPartyChangelogUri(CacheFile, Pkg, Ver, third_party_uri))
3115 {
3116 strprintf(descr, _("Changelog for %s (%s)"), Pkg.Name(), third_party_uri.c_str());
3117 new pkgAcqFile(&Fetcher, third_party_uri, "", 0, descr, Pkg.Name(), "ignored", targetfile);
3118 Fetcher.Run();
3119 }
3120 }
3121
3122 if (FileExists(targetfile))
3123 return true;
3124
3125 // error
3126 return _error->Error("changelog download failed");
3127 }
3128 /*}}}*/
3129 // DisplayFileInPager - Display File with pager /*{{{*/
3130 void DisplayFileInPager(string filename)
3131 {
3132 pid_t Process = ExecFork();
3133 if (Process == 0)
3134 {
3135 const char *Args[3];
3136 Args[0] = "/usr/bin/sensible-pager";
3137 Args[1] = filename.c_str();
3138 Args[2] = 0;
3139 execvp(Args[0],(char **)Args);
3140 exit(100);
3141 }
3142
3143 // Wait for the subprocess
3144 ExecWait(Process, "sensible-pager", false);
3145 }
3146 /*}}}*/
3147 // DoChangelog - Get changelog from the command line /*{{{*/
3148 // ---------------------------------------------------------------------
3149 bool DoChangelog(CommandLine &CmdL)
3150 {
3151 CacheFile Cache;
3152 if (Cache.ReadOnlyOpen() == false)
3153 return false;
3154
3155 APT::CacheSetHelper helper(c0out);
3156 APT::VersionSet verset = APT::VersionSet::FromCommandLine(Cache,
3157 CmdL.FileList + 1, APT::VersionSet::CANDIDATE, helper);
3158 if (verset.empty() == true)
3159 return false;
3160 pkgAcquire Fetcher;
3161
3162 if (_config->FindB("APT::Get::Print-URIs", false) == true)
3163 for (APT::VersionSet::const_iterator Ver = verset.begin();
3164 Ver != verset.end(); ++Ver)
3165 return DownloadChangelog(Cache, Fetcher, Ver, "");
3166
3167 AcqTextStatus Stat(ScreenWidth, _config->FindI("quiet",0));
3168 Fetcher.Setup(&Stat);
3169
3170 bool const downOnly = _config->FindB("APT::Get::Download-Only", false);
3171
3172 char tmpname[100];
3173 char* tmpdir = NULL;
3174 if (downOnly == false)
3175 {
3176 const char* const tmpDir = getenv("TMPDIR");
3177 if (tmpDir != NULL && *tmpDir != '\0')
3178 snprintf(tmpname, sizeof(tmpname), "%s/apt-changelog-XXXXXX", tmpDir);
3179 else
3180 strncpy(tmpname, "/tmp/apt-changelog-XXXXXX", sizeof(tmpname));
3181 tmpdir = mkdtemp(tmpname);
3182 if (tmpdir == NULL)
3183 return _error->Errno("mkdtemp", "mkdtemp failed");
3184 }
3185
3186 for (APT::VersionSet::const_iterator Ver = verset.begin();
3187 Ver != verset.end();
3188 ++Ver)
3189 {
3190 string changelogfile;
3191 if (downOnly == false)
3192 changelogfile.append(tmpname).append("changelog");
3193 else
3194 changelogfile.append(Ver.ParentPkg().Name()).append(".changelog");
3195 if (DownloadChangelog(Cache, Fetcher, Ver, changelogfile) && downOnly == false)
3196 {
3197 DisplayFileInPager(changelogfile);
3198 // cleanup temp file
3199 unlink(changelogfile.c_str());
3200 }
3201 }
3202 // clenaup tmp dir
3203 if (tmpdir != NULL)
3204 rmdir(tmpdir);
3205 return true;
3206 }
3207 /*}}}*/
3208 // DoMoo - Never Ask, Never Tell /*{{{*/
3209 // ---------------------------------------------------------------------
3210 /* */
3211 bool DoMoo(CommandLine &CmdL)
3212 {
3213 cout <<
3214 " (__) \n"
3215 " (oo) \n"
3216 " /------\\/ \n"
3217 " / | || \n"
3218 " * /\\---/\\ \n"
3219 " ~~ ~~ \n"
3220 "....\"Have you mooed today?\"...\n";
3221
3222 return true;
3223 }
3224 /*}}}*/
3225 // ShowHelp - Show a help screen /*{{{*/
3226 // ---------------------------------------------------------------------
3227 /* */
3228 bool ShowHelp(CommandLine &CmdL)
3229 {
3230 ioprintf(cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,VERSION,
3231 COMMON_ARCH,__DATE__,__TIME__);
3232
3233 if (_config->FindB("version") == true)
3234 {
3235 cout << _("Supported modules:") << endl;
3236
3237 for (unsigned I = 0; I != pkgVersioningSystem::GlobalListLen; I++)
3238 {
3239 pkgVersioningSystem *VS = pkgVersioningSystem::GlobalList[I];
3240 if (_system != 0 && _system->VS == VS)
3241 cout << '*';
3242 else
3243 cout << ' ';
3244 cout << "Ver: " << VS->Label << endl;
3245
3246 /* Print out all the packaging systems that will work with
3247 this VS */
3248 for (unsigned J = 0; J != pkgSystem::GlobalListLen; J++)
3249 {
3250 pkgSystem *Sys = pkgSystem::GlobalList[J];
3251 if (_system == Sys)
3252 cout << '*';
3253 else
3254 cout << ' ';
3255 if (Sys->VS->TestCompatibility(*VS) == true)
3256 cout << "Pkg: " << Sys->Label << " (Priority " << Sys->Score(*_config) << ")" << endl;
3257 }
3258 }
3259
3260 for (unsigned I = 0; I != pkgSourceList::Type::GlobalListLen; I++)
3261 {
3262 pkgSourceList::Type *Type = pkgSourceList::Type::GlobalList[I];
3263 cout << " S.L: '" << Type->Name << "' " << Type->Label << endl;
3264 }
3265
3266 for (unsigned I = 0; I != pkgIndexFile::Type::GlobalListLen; I++)
3267 {
3268 pkgIndexFile::Type *Type = pkgIndexFile::Type::GlobalList[I];
3269 cout << " Idx: " << Type->Label << endl;
3270 }
3271
3272 return true;
3273 }
3274
3275 cout <<
3276 _("Usage: apt-get [options] command\n"
3277 " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
3278 " apt-get [options] source pkg1 [pkg2 ...]\n"
3279 "\n"
3280 "apt-get is a simple command line interface for downloading and\n"
3281 "installing packages. The most frequently used commands are update\n"
3282 "and install.\n"
3283 "\n"
3284 "Commands:\n"
3285 " update - Retrieve new lists of packages\n"
3286 " upgrade - Perform an upgrade\n"
3287 " install - Install new packages (pkg is libc6 not libc6.deb)\n"
3288 " remove - Remove packages\n"
3289 " autoremove - Remove automatically all unused packages\n"
3290 " purge - Remove packages and config files\n"
3291 " source - Download source archives\n"
3292 " build-dep - Configure build-dependencies for source packages\n"
3293 " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
3294 " dselect-upgrade - Follow dselect selections\n"
3295 " clean - Erase downloaded archive files\n"
3296 " autoclean - Erase old downloaded archive files\n"
3297 " check - Verify that there are no broken dependencies\n"
3298 " changelog - Download and display the changelog for the given package\n"
3299 " download - Download the binary package into the current directory\n"
3300 "\n"
3301 "Options:\n"
3302 " -h This help text.\n"
3303 " -q Loggable output - no progress indicator\n"
3304 " -qq No output except for errors\n"
3305 " -d Download only - do NOT install or unpack archives\n"
3306 " -s No-act. Perform ordering simulation\n"
3307 " -y Assume Yes to all queries and do not prompt\n"
3308 " -f Attempt to correct a system with broken dependencies in place\n"
3309 " -m Attempt to continue if archives are unlocatable\n"
3310 " -u Show a list of upgraded packages as well\n"
3311 " -b Build the source package after fetching it\n"
3312 " -V Show verbose version numbers\n"
3313 " -c=? Read this configuration file\n"
3314 " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
3315 "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
3316 "pages for more information and options.\n"
3317 " This APT has Super Cow Powers.\n");
3318 return true;
3319 }
3320 /*}}}*/
3321 // SigWinch - Window size change signal handler /*{{{*/
3322 // ---------------------------------------------------------------------
3323 /* */
3324 void SigWinch(int)
3325 {
3326 // Riped from GNU ls
3327 #ifdef TIOCGWINSZ
3328 struct winsize ws;
3329
3330 if (ioctl(1, TIOCGWINSZ, &ws) != -1 && ws.ws_col >= 5)
3331 ScreenWidth = ws.ws_col - 1;
3332 #endif
3333 }
3334 /*}}}*/
3335 int main(int argc,const char *argv[]) /*{{{*/
3336 {
3337 CommandLine::Args Args[] = {
3338 {'h',"help","help",0},
3339 {'v',"version","version",0},
3340 {'V',"verbose-versions","APT::Get::Show-Versions",0},
3341 {'q',"quiet","quiet",CommandLine::IntLevel},
3342 {'q',"silent","quiet",CommandLine::IntLevel},
3343 {'d',"download-only","APT::Get::Download-Only",0},
3344 {'b',"compile","APT::Get::Compile",0},
3345 {'b',"build","APT::Get::Compile",0},
3346 {'s',"simulate","APT::Get::Simulate",0},
3347 {'s',"just-print","APT::Get::Simulate",0},
3348 {'s',"recon","APT::Get::Simulate",0},
3349 {'s',"dry-run","APT::Get::Simulate",0},
3350 {'s',"no-act","APT::Get::Simulate",0},
3351 {'y',"yes","APT::Get::Assume-Yes",0},
3352 {'y',"assume-yes","APT::Get::Assume-Yes",0},
3353 {0,"assume-no","APT::Get::Assume-No",0},
3354 {'f',"fix-broken","APT::Get::Fix-Broken",0},
3355 {'u',"show-upgraded","APT::Get::Show-Upgraded",0},
3356 {'m',"ignore-missing","APT::Get::Fix-Missing",0},
3357 {'t',"target-release","APT::Default-Release",CommandLine::HasArg},
3358 {'t',"default-release","APT::Default-Release",CommandLine::HasArg},
3359 {'a',"host-architecture","APT::Get::Host-Architecture",CommandLine::HasArg},
3360 {0,"download","APT::Get::Download",0},
3361 {0,"fix-missing","APT::Get::Fix-Missing",0},
3362 {0,"ignore-hold","APT::Ignore-Hold",0},
3363 {0,"upgrade","APT::Get::upgrade",0},
3364 {0,"only-upgrade","APT::Get::Only-Upgrade",0},
3365 {0,"force-yes","APT::Get::force-yes",0},
3366 {0,"print-uris","APT::Get::Print-URIs",0},
3367 {0,"diff-only","APT::Get::Diff-Only",0},
3368 {0,"debian-only","APT::Get::Diff-Only",0},
3369 {0,"tar-only","APT::Get::Tar-Only",0},
3370 {0,"dsc-only","APT::Get::Dsc-Only",0},
3371 {0,"purge","APT::Get::Purge",0},
3372 {0,"list-cleanup","APT::Get::List-Cleanup",0},
3373 {0,"reinstall","APT::Get::ReInstall",0},
3374 {0,"trivial-only","APT::Get::Trivial-Only",0},
3375 {0,"remove","APT::Get::Remove",0},
3376 {0,"only-source","APT::Get::Only-Source",0},
3377 {0,"arch-only","APT::Get::Arch-Only",0},
3378 {0,"auto-remove","APT::Get::AutomaticRemove",0},
3379 {0,"allow-unauthenticated","APT::Get::AllowUnauthenticated",0},
3380 {0,"install-recommends","APT::Install-Recommends",CommandLine::Boolean},
3381 {0,"install-suggests","APT::Install-Suggests",CommandLine::Boolean},
3382 {0,"fix-policy","APT::Get::Fix-Policy-Broken",0},
3383 {0,"solver","APT::Solver",CommandLine::HasArg},
3384 {'c',"config-file",0,CommandLine::ConfigFile},
3385 {'o',"option",0,CommandLine::ArbItem},
3386 {0,0,0,0}};
3387 CommandLine::Dispatch Cmds[] = {{"update",&DoUpdate},
3388 {"upgrade",&DoUpgrade},
3389 {"install",&DoInstall},
3390 {"remove",&DoInstall},
3391 {"purge",&DoInstall},
3392 {"autoremove",&DoInstall},
3393 {"markauto",&DoMarkAuto},
3394 {"unmarkauto",&DoMarkAuto},
3395 {"dist-upgrade",&DoDistUpgrade},
3396 {"dselect-upgrade",&DoDSelectUpgrade},
3397 {"build-dep",&DoBuildDep},
3398 {"clean",&DoClean},
3399 {"autoclean",&DoAutoClean},
3400 {"check",&DoCheck},
3401 {"source",&DoSource},
3402 {"download",&DoDownload},
3403 {"changelog",&DoChangelog},
3404 {"moo",&DoMoo},
3405 {"help",&ShowHelp},
3406 {0,0}};
3407
3408 // Set up gettext support
3409 setlocale(LC_ALL,"");
3410 textdomain(PACKAGE);
3411
3412 // Parse the command line and initialize the package library
3413 CommandLine CmdL(Args,_config);
3414 if (pkgInitConfig(*_config) == false ||
3415 CmdL.Parse(argc,argv) == false ||
3416 pkgInitSystem(*_config,_system) == false)
3417 {
3418 if (_config->FindB("version") == true)
3419 ShowHelp(CmdL);
3420
3421 _error->DumpErrors();
3422 return 100;
3423 }
3424
3425 // See if the help should be shown
3426 if (_config->FindB("help") == true ||
3427 _config->FindB("version") == true ||
3428 CmdL.FileSize() == 0)
3429 {
3430 ShowHelp(CmdL);
3431 return 0;
3432 }
3433
3434 // simulate user-friendly if apt-get has no root privileges
3435 if (getuid() != 0 && _config->FindB("APT::Get::Simulate") == true &&
3436 (CmdL.FileSize() == 0 ||
3437 (strcmp(CmdL.FileList[0], "source") != 0 && strcmp(CmdL.FileList[0], "download") != 0 &&
3438 strcmp(CmdL.FileList[0], "changelog") != 0)))
3439 {
3440 if (_config->FindB("APT::Get::Show-User-Simulation-Note",true) == true)
3441 cout << _("NOTE: This is only a simulation!\n"
3442 " apt-get needs root privileges for real execution.\n"
3443 " Keep also in mind that locking is deactivated,\n"
3444 " so don't depend on the relevance to the real current situation!"
3445 ) << std::endl;
3446 _config->Set("Debug::NoLocking",true);
3447 }
3448
3449 // Deal with stdout not being a tty
3450 if (!isatty(STDOUT_FILENO) && _config->FindI("quiet", -1) == -1)
3451 _config->Set("quiet","1");
3452
3453 // Setup the output streams
3454 c0out.rdbuf(cout.rdbuf());
3455 c1out.rdbuf(cout.rdbuf());
3456 c2out.rdbuf(cout.rdbuf());
3457 if (_config->FindI("quiet",0) > 0)
3458 c0out.rdbuf(devnull.rdbuf());
3459 if (_config->FindI("quiet",0) > 1)
3460 c1out.rdbuf(devnull.rdbuf());
3461
3462 // Setup the signals
3463 signal(SIGPIPE,SIG_IGN);
3464 signal(SIGWINCH,SigWinch);
3465 SigWinch(0);
3466
3467 // Match the operation
3468 CmdL.DispatchArg(Cmds);
3469
3470 // Print any errors or warnings found during parsing
3471 bool const Errors = _error->PendingError();
3472 if (_config->FindI("quiet",0) > 0)
3473 _error->DumpErrors();
3474 else
3475 _error->DumpErrors(GlobalError::DEBUG);
3476 return Errors == true ? 100 : 0;
3477 }
3478 /*}}}*/