- let the problem resolver install packages to fix or-groups
[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 #define _LARGEFILE_SOURCE
29 #define _LARGEFILE64_SOURCE
30
31 #include <apt-pkg/aptconfiguration.h>
32 #include <apt-pkg/error.h>
33 #include <apt-pkg/cmndline.h>
34 #include <apt-pkg/init.h>
35 #include <apt-pkg/depcache.h>
36 #include <apt-pkg/sourcelist.h>
37 #include <apt-pkg/algorithms.h>
38 #include <apt-pkg/acquire-item.h>
39 #include <apt-pkg/strutl.h>
40 #include <apt-pkg/clean.h>
41 #include <apt-pkg/srcrecords.h>
42 #include <apt-pkg/version.h>
43 #include <apt-pkg/cachefile.h>
44 #include <apt-pkg/cacheset.h>
45 #include <apt-pkg/sptr.h>
46 #include <apt-pkg/md5.h>
47 #include <apt-pkg/versionmatch.h>
48
49 #include <config.h>
50 #include <apti18n.h>
51
52 #include "acqprogress.h"
53
54 #include <set>
55 #include <locale.h>
56 #include <langinfo.h>
57 #include <fstream>
58 #include <termios.h>
59 #include <sys/ioctl.h>
60 #include <sys/stat.h>
61 #include <sys/statfs.h>
62 #include <sys/statvfs.h>
63 #include <signal.h>
64 #include <unistd.h>
65 #include <stdio.h>
66 #include <errno.h>
67 #include <regex.h>
68 #include <sys/wait.h>
69 #include <sstream>
70
71 #define statfs statfs64
72 #define statvfs statvfs64
73 /*}}}*/
74
75 #define RAMFS_MAGIC 0x858458f6
76
77 using namespace std;
78
79 ostream c0out(0);
80 ostream c1out(0);
81 ostream c2out(0);
82 ofstream devnull("/dev/null");
83 unsigned int ScreenWidth = 80 - 1; /* - 1 for the cursor */
84
85 // class CacheFile - Cover class for some dependency cache functions /*{{{*/
86 // ---------------------------------------------------------------------
87 /* */
88 class CacheFile : public pkgCacheFile
89 {
90 static pkgCache *SortCache;
91 static int NameComp(const void *a,const void *b);
92
93 public:
94 pkgCache::Package **List;
95
96 void Sort();
97 bool CheckDeps(bool AllowBroken = false);
98 bool BuildCaches(bool WithLock = true)
99 {
100 OpTextProgress Prog(*_config);
101 if (pkgCacheFile::BuildCaches(&Prog,WithLock) == false)
102 return false;
103 return true;
104 }
105 bool Open(bool WithLock = true)
106 {
107 OpTextProgress Prog(*_config);
108 if (pkgCacheFile::Open(&Prog,WithLock) == false)
109 return false;
110 Sort();
111
112 return true;
113 };
114 bool OpenForInstall()
115 {
116 if (_config->FindB("APT::Get::Print-URIs") == true)
117 return Open(false);
118 else
119 return Open(true);
120 }
121 CacheFile() : List(0) {};
122 ~CacheFile() {
123 delete[] List;
124 }
125 };
126 /*}}}*/
127
128 // YnPrompt - Yes No Prompt. /*{{{*/
129 // ---------------------------------------------------------------------
130 /* Returns true on a Yes.*/
131 bool YnPrompt(bool Default=true)
132 {
133 if (_config->FindB("APT::Get::Assume-Yes",false) == true)
134 {
135 c1out << _("Y") << endl;
136 return true;
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 if (Cache[I].CandidateVerIter(Cache).Pseudo() == true)
386 continue;
387 List += I.FullName(true) + " ";
388 VersionsList += string(Cache[I].CandVersion) + "\n";
389 }
390 }
391
392 ShowList(out,_("The following NEW packages will be installed:"),List,VersionsList);
393 }
394 /*}}}*/
395 // ShowDel - Show packages to delete /*{{{*/
396 // ---------------------------------------------------------------------
397 /* */
398 void ShowDel(ostream &out,CacheFile &Cache)
399 {
400 /* Print out a list of packages that are going to be removed extra
401 to what the user asked */
402 string List;
403 string VersionsList;
404 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
405 {
406 pkgCache::PkgIterator I(Cache,Cache.List[J]);
407 if (Cache[I].Delete() == true)
408 {
409 if (Cache[I].CandidateVerIter(Cache).Pseudo() == true)
410 continue;
411 if ((Cache[I].iFlags & pkgDepCache::Purge) == pkgDepCache::Purge)
412 List += I.FullName(true) + "* ";
413 else
414 List += I.FullName(true) + " ";
415
416 VersionsList += string(Cache[I].CandVersion)+ "\n";
417 }
418 }
419
420 ShowList(out,_("The following packages will be REMOVED:"),List,VersionsList);
421 }
422 /*}}}*/
423 // ShowKept - Show kept packages /*{{{*/
424 // ---------------------------------------------------------------------
425 /* */
426 void ShowKept(ostream &out,CacheFile &Cache)
427 {
428 string List;
429 string VersionsList;
430 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
431 {
432 pkgCache::PkgIterator I(Cache,Cache.List[J]);
433
434 // Not interesting
435 if (Cache[I].Upgrade() == true || Cache[I].Upgradable() == false ||
436 I->CurrentVer == 0 || Cache[I].Delete() == true)
437 continue;
438
439 List += I.FullName(true) + " ";
440 VersionsList += string(Cache[I].CurVersion) + " => " + Cache[I].CandVersion + "\n";
441 }
442 ShowList(out,_("The following packages have been kept back:"),List,VersionsList);
443 }
444 /*}}}*/
445 // ShowUpgraded - Show upgraded packages /*{{{*/
446 // ---------------------------------------------------------------------
447 /* */
448 void ShowUpgraded(ostream &out,CacheFile &Cache)
449 {
450 string List;
451 string VersionsList;
452 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
453 {
454 pkgCache::PkgIterator I(Cache,Cache.List[J]);
455
456 // Not interesting
457 if (Cache[I].Upgrade() == false || Cache[I].NewInstall() == true)
458 continue;
459 if (Cache[I].CandidateVerIter(Cache).Pseudo() == true)
460 continue;
461
462 List += I.FullName(true) + " ";
463 VersionsList += string(Cache[I].CurVersion) + " => " + Cache[I].CandVersion + "\n";
464 }
465 ShowList(out,_("The following packages will be upgraded:"),List,VersionsList);
466 }
467 /*}}}*/
468 // ShowDowngraded - Show downgraded packages /*{{{*/
469 // ---------------------------------------------------------------------
470 /* */
471 bool ShowDowngraded(ostream &out,CacheFile &Cache)
472 {
473 string List;
474 string VersionsList;
475 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
476 {
477 pkgCache::PkgIterator I(Cache,Cache.List[J]);
478
479 // Not interesting
480 if (Cache[I].Downgrade() == false || Cache[I].NewInstall() == true)
481 continue;
482 if (Cache[I].CandidateVerIter(Cache).Pseudo() == true)
483 continue;
484
485 List += I.FullName(true) + " ";
486 VersionsList += string(Cache[I].CurVersion) + " => " + Cache[I].CandVersion + "\n";
487 }
488 return ShowList(out,_("The following packages will be DOWNGRADED:"),List,VersionsList);
489 }
490 /*}}}*/
491 // ShowHold - Show held but changed packages /*{{{*/
492 // ---------------------------------------------------------------------
493 /* */
494 bool ShowHold(ostream &out,CacheFile &Cache)
495 {
496 string List;
497 string VersionsList;
498 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
499 {
500 pkgCache::PkgIterator I(Cache,Cache.List[J]);
501 if (Cache[I].InstallVer != (pkgCache::Version *)I.CurrentVer() &&
502 I->SelectedState == pkgCache::State::Hold) {
503 List += I.FullName(true) + " ";
504 VersionsList += string(Cache[I].CurVersion) + " => " + Cache[I].CandVersion + "\n";
505 }
506 }
507
508 return ShowList(out,_("The following held packages will be changed:"),List,VersionsList);
509 }
510 /*}}}*/
511 // ShowEssential - Show an essential package warning /*{{{*/
512 // ---------------------------------------------------------------------
513 /* This prints out a warning message that is not to be ignored. It shows
514 all essential packages and their dependents that are to be removed.
515 It is insanely risky to remove the dependents of an essential package! */
516 bool ShowEssential(ostream &out,CacheFile &Cache)
517 {
518 string List;
519 string VersionsList;
520 bool *Added = new bool[Cache->Head().PackageCount];
521 for (unsigned int I = 0; I != Cache->Head().PackageCount; I++)
522 Added[I] = false;
523
524 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
525 {
526 pkgCache::PkgIterator I(Cache,Cache.List[J]);
527 if ((I->Flags & pkgCache::Flag::Essential) != pkgCache::Flag::Essential &&
528 (I->Flags & pkgCache::Flag::Important) != pkgCache::Flag::Important)
529 continue;
530
531 // The essential package is being removed
532 if (Cache[I].Delete() == true)
533 {
534 if (Added[I->ID] == false)
535 {
536 Added[I->ID] = true;
537 List += I.FullName(true) + " ";
538 //VersionsList += string(Cache[I].CurVersion) + "\n"; ???
539 }
540 }
541
542 if (I->CurrentVer == 0)
543 continue;
544
545 // Print out any essential package depenendents that are to be removed
546 for (pkgCache::DepIterator D = I.CurrentVer().DependsList(); D.end() == false; D++)
547 {
548 // Skip everything but depends
549 if (D->Type != pkgCache::Dep::PreDepends &&
550 D->Type != pkgCache::Dep::Depends)
551 continue;
552
553 pkgCache::PkgIterator P = D.SmartTargetPkg();
554 if (Cache[P].Delete() == true)
555 {
556 if (Added[P->ID] == true)
557 continue;
558 Added[P->ID] = true;
559
560 char S[300];
561 snprintf(S,sizeof(S),_("%s (due to %s) "),P.FullName(true).c_str(),I.FullName(true).c_str());
562 List += S;
563 //VersionsList += "\n"; ???
564 }
565 }
566 }
567
568 delete [] Added;
569 return ShowList(out,_("WARNING: The following essential packages will be removed.\n"
570 "This should NOT be done unless you know exactly what you are doing!"),List,VersionsList);
571 }
572
573 /*}}}*/
574 // Stats - Show some statistics /*{{{*/
575 // ---------------------------------------------------------------------
576 /* */
577 void Stats(ostream &out,pkgDepCache &Dep)
578 {
579 unsigned long Upgrade = 0;
580 unsigned long Downgrade = 0;
581 unsigned long Install = 0;
582 unsigned long ReInstall = 0;
583 for (pkgCache::PkgIterator I = Dep.PkgBegin(); I.end() == false; I++)
584 {
585 if (pkgCache::VerIterator(Dep, Dep[I].CandidateVer).Pseudo() == true)
586 continue;
587
588 if (Dep[I].NewInstall() == true)
589 Install++;
590 else
591 {
592 if (Dep[I].Upgrade() == true)
593 Upgrade++;
594 else
595 if (Dep[I].Downgrade() == true)
596 Downgrade++;
597 }
598
599 if (Dep[I].Delete() == false && (Dep[I].iFlags & pkgDepCache::ReInstall) == pkgDepCache::ReInstall)
600 ReInstall++;
601 }
602
603 ioprintf(out,_("%lu upgraded, %lu newly installed, "),
604 Upgrade,Install);
605
606 if (ReInstall != 0)
607 ioprintf(out,_("%lu reinstalled, "),ReInstall);
608 if (Downgrade != 0)
609 ioprintf(out,_("%lu downgraded, "),Downgrade);
610
611 ioprintf(out,_("%lu to remove and %lu not upgraded.\n"),
612 Dep.DelCount(),Dep.KeepCount());
613
614 if (Dep.BadCount() != 0)
615 ioprintf(out,_("%lu not fully installed or removed.\n"),
616 Dep.BadCount());
617 }
618 /*}}}*/
619 // CacheSetHelperAPTGet - responsible for message telling from the CacheSets/*{{{*/
620 class CacheSetHelperAPTGet : public APT::CacheSetHelper {
621 /** \brief stream message should be printed to */
622 std::ostream &out;
623 /** \brief were things like Task or RegEx used to select packages? */
624 bool explicitlyNamed;
625
626 APT::PackageSet virtualPkgs;
627
628 public:
629 CacheSetHelperAPTGet(std::ostream &out) : APT::CacheSetHelper(true), out(out) {
630 explicitlyNamed = true;
631 }
632
633 virtual void showTaskSelection(APT::PackageSet const &pkgset, string const &pattern) {
634 for (APT::PackageSet::const_iterator Pkg = pkgset.begin(); Pkg != pkgset.end(); ++Pkg)
635 ioprintf(out, _("Note, selecting '%s' for task '%s'\n"),
636 Pkg.FullName(true).c_str(), pattern.c_str());
637 explicitlyNamed = false;
638 }
639 virtual void showRegExSelection(APT::PackageSet const &pkgset, string const &pattern) {
640 for (APT::PackageSet::const_iterator Pkg = pkgset.begin(); Pkg != pkgset.end(); ++Pkg)
641 ioprintf(out, _("Note, selecting '%s' for regex '%s'\n"),
642 Pkg.FullName(true).c_str(), pattern.c_str());
643 explicitlyNamed = false;
644 }
645 virtual void showSelectedVersion(pkgCache::PkgIterator const &Pkg, pkgCache::VerIterator const Ver,
646 string const &ver, bool const &verIsRel) {
647 if (ver != Ver.VerStr())
648 ioprintf(out, _("Selected version '%s' (%s) for '%s'\n"),
649 Ver.VerStr(), Ver.RelStr().c_str(), Pkg.FullName(true).c_str());
650 }
651
652 bool showVirtualPackageErrors(pkgCacheFile &Cache) {
653 if (virtualPkgs.empty() == true)
654 return true;
655 for (APT::PackageSet::const_iterator Pkg = virtualPkgs.begin();
656 Pkg != virtualPkgs.end(); ++Pkg) {
657 if (Pkg->ProvidesList != 0) {
658 ioprintf(c1out,_("Package %s is a virtual package provided by:\n"),
659 Pkg.FullName(true).c_str());
660
661 pkgCache::PrvIterator I = Pkg.ProvidesList();
662 unsigned short provider = 0;
663 for (; I.end() == false; ++I) {
664 pkgCache::PkgIterator Pkg = I.OwnerPkg();
665
666 if (Cache[Pkg].CandidateVerIter(Cache) == I.OwnerVer()) {
667 out << " " << Pkg.FullName(true) << " " << I.OwnerVer().VerStr();
668 if (Cache[Pkg].Install() == true && Cache[Pkg].NewInstall() == false)
669 out << _(" [Installed]");
670 out << endl;
671 ++provider;
672 }
673 }
674 // if we found no candidate which provide this package, show non-candidates
675 if (provider == 0)
676 for (I = Pkg.ProvidesList(); I.end() == false; I++)
677 out << " " << I.OwnerPkg().FullName(true) << " " << I.OwnerVer().VerStr()
678 << _(" [Not candidate version]") << endl;
679 else
680 out << _("You should explicitly select one to install.") << endl;
681 } else {
682 ioprintf(out,
683 _("Package %s is not available, but is referred to by another package.\n"
684 "This may mean that the package is missing, has been obsoleted, or\n"
685 "is only available from another source\n"),Pkg.FullName(true).c_str());
686
687 string List;
688 string VersionsList;
689 SPtrArray<bool> Seen = new bool[Cache.GetPkgCache()->Head().PackageCount];
690 memset(Seen,0,Cache.GetPkgCache()->Head().PackageCount*sizeof(*Seen));
691 for (pkgCache::DepIterator Dep = Pkg.RevDependsList();
692 Dep.end() == false; Dep++) {
693 if (Dep->Type != pkgCache::Dep::Replaces)
694 continue;
695 if (Seen[Dep.ParentPkg()->ID] == true)
696 continue;
697 Seen[Dep.ParentPkg()->ID] = true;
698 List += Dep.ParentPkg().FullName(true) + " ";
699 //VersionsList += string(Dep.ParentPkg().CurVersion) + "\n"; ???
700 }
701 ShowList(out,_("However the following packages replace it:"),List,VersionsList);
702 }
703 out << std::endl;
704 }
705 return false;
706 }
707
708 virtual pkgCache::VerIterator canNotFindCandidateVer(pkgCacheFile &Cache, pkgCache::PkgIterator const &Pkg) {
709 APT::VersionSet const verset = tryVirtualPackage(Cache, Pkg, APT::VersionSet::CANDIDATE);
710 if (verset.empty() == false)
711 return *(verset.begin());
712 if (ShowError == true) {
713 _error->Error(_("Package '%s' has no installation candidate"),Pkg.FullName(true).c_str());
714 virtualPkgs.insert(Pkg);
715 }
716 return pkgCache::VerIterator(Cache, 0);
717 }
718
719 virtual pkgCache::VerIterator canNotFindNewestVer(pkgCacheFile &Cache, pkgCache::PkgIterator const &Pkg) {
720 APT::VersionSet const verset = tryVirtualPackage(Cache, Pkg, APT::VersionSet::NEWEST);
721 if (verset.empty() == false)
722 return *(verset.begin());
723 if (ShowError == true)
724 ioprintf(out, _("Virtual packages like '%s' can't be removed\n"), Pkg.FullName(true).c_str());
725 return pkgCache::VerIterator(Cache, 0);
726 }
727
728 APT::VersionSet tryVirtualPackage(pkgCacheFile &Cache, pkgCache::PkgIterator const &Pkg,
729 APT::VersionSet::Version const &select) {
730 /* This is a pure virtual package and there is a single available
731 candidate providing it. */
732 if (unlikely(Cache[Pkg].CandidateVer != 0) || Pkg->ProvidesList == 0)
733 return APT::VersionSet();
734
735 pkgCache::PkgIterator Prov;
736 bool found_one = false;
737 for (pkgCache::PrvIterator P = Pkg.ProvidesList(); P; ++P) {
738 pkgCache::VerIterator const PVer = P.OwnerVer();
739 pkgCache::PkgIterator const PPkg = PVer.ParentPkg();
740
741 /* Ignore versions that are not a candidate. */
742 if (Cache[PPkg].CandidateVer != PVer)
743 continue;
744
745 if (found_one == false) {
746 Prov = PPkg;
747 found_one = true;
748 } else if (PPkg != Prov) {
749 found_one = false; // we found at least two
750 break;
751 }
752 }
753
754 if (found_one == true) {
755 ioprintf(out, _("Note, selecting '%s' instead of '%s'\n"),
756 Prov.FullName(true).c_str(), Pkg.FullName(true).c_str());
757 return APT::VersionSet::FromPackage(Cache, Prov, select, *this);
758 }
759 return APT::VersionSet();
760 }
761
762 inline bool allPkgNamedExplicitly() const { return explicitlyNamed; }
763
764 };
765 /*}}}*/
766 // TryToInstall - Mark a package for installation /*{{{*/
767 struct TryToInstall {
768 pkgCacheFile* Cache;
769 pkgProblemResolver* Fix;
770 bool FixBroken;
771 unsigned long AutoMarkChanged;
772 APT::PackageSet doAutoInstallLater;
773
774 TryToInstall(pkgCacheFile &Cache, pkgProblemResolver &PM, bool const &FixBroken) : Cache(&Cache), Fix(&PM),
775 FixBroken(FixBroken), AutoMarkChanged(0) {};
776
777 void operator() (pkgCache::VerIterator const &Ver) {
778 pkgCache::PkgIterator Pkg = Ver.ParentPkg();
779
780 Cache->GetDepCache()->SetCandidateVersion(Ver);
781 pkgDepCache::StateCache &State = (*Cache)[Pkg];
782
783 // Handle the no-upgrade case
784 if (_config->FindB("APT::Get::upgrade",true) == false && Pkg->CurrentVer != 0)
785 ioprintf(c1out,_("Skipping %s, it is already installed and upgrade is not set.\n"),
786 Pkg.FullName(true).c_str());
787 // Ignore request for install if package would be new
788 else if (_config->FindB("APT::Get::Only-Upgrade", false) == true && Pkg->CurrentVer == 0)
789 ioprintf(c1out,_("Skipping %s, it is not installed and only upgrades are requested.\n"),
790 Pkg.FullName(true).c_str());
791 else {
792 Fix->Clear(Pkg);
793 Fix->Protect(Pkg);
794 Cache->GetDepCache()->MarkInstall(Pkg,false);
795
796 if (State.Install() == false) {
797 if (_config->FindB("APT::Get::ReInstall",false) == true) {
798 if (Pkg->CurrentVer == 0 || Pkg.CurrentVer().Downloadable() == false)
799 ioprintf(c1out,_("Reinstallation of %s is not possible, it cannot be downloaded.\n"),
800 Pkg.FullName(true).c_str());
801 else
802 Cache->GetDepCache()->SetReInstall(Pkg, true);
803 } else
804 ioprintf(c1out,_("%s is already the newest version.\n"),
805 Pkg.FullName(true).c_str());
806 }
807
808 // Install it with autoinstalling enabled (if we not respect the minial
809 // required deps or the policy)
810 if (FixBroken == false)
811 doAutoInstallLater.insert(Pkg);
812 }
813
814 // see if we need to fix the auto-mark flag
815 // e.g. apt-get install foo
816 // where foo is marked automatic
817 if (State.Install() == false &&
818 (State.Flags & pkgCache::Flag::Auto) &&
819 _config->FindB("APT::Get::ReInstall",false) == false &&
820 _config->FindB("APT::Get::Only-Upgrade",false) == false &&
821 _config->FindB("APT::Get::Download-Only",false) == false)
822 {
823 ioprintf(c1out,_("%s set to manually installed.\n"),
824 Pkg.FullName(true).c_str());
825 Cache->GetDepCache()->MarkAuto(Pkg,false);
826 AutoMarkChanged++;
827 }
828 }
829
830 void doAutoInstall() {
831 for (APT::PackageSet::const_iterator P = doAutoInstallLater.begin();
832 P != doAutoInstallLater.end(); ++P) {
833 pkgDepCache::StateCache &State = (*Cache)[P];
834 if (State.InstBroken() == false && State.InstPolicyBroken() == false)
835 continue;
836 Cache->GetDepCache()->MarkInstall(P, true);
837 }
838 doAutoInstallLater.clear();
839 }
840 };
841 /*}}}*/
842 // TryToRemove - Mark a package for removal /*{{{*/
843 struct TryToRemove {
844 pkgCacheFile* Cache;
845 pkgProblemResolver* Fix;
846 bool FixBroken;
847 bool PurgePkgs;
848 unsigned long AutoMarkChanged;
849
850 TryToRemove(pkgCacheFile &Cache, pkgProblemResolver &PM) : Cache(&Cache), Fix(&PM),
851 PurgePkgs(_config->FindB("APT::Get::Purge", false)) {};
852
853 void operator() (pkgCache::VerIterator const &Ver)
854 {
855 pkgCache::PkgIterator Pkg = Ver.ParentPkg();
856
857 Fix->Clear(Pkg);
858 Fix->Protect(Pkg);
859 Fix->Remove(Pkg);
860
861 if ((Pkg->CurrentVer == 0 && PurgePkgs == false) ||
862 (PurgePkgs == true && Pkg->CurrentState == pkgCache::State::NotInstalled))
863 ioprintf(c1out,_("Package %s is not installed, so not removed\n"),Pkg.FullName(true).c_str());
864 else
865 Cache->GetDepCache()->MarkDelete(Pkg, PurgePkgs);
866 }
867 };
868 /*}}}*/
869 // CacheFile::NameComp - QSort compare by name /*{{{*/
870 // ---------------------------------------------------------------------
871 /* */
872 pkgCache *CacheFile::SortCache = 0;
873 int CacheFile::NameComp(const void *a,const void *b)
874 {
875 if (*(pkgCache::Package **)a == 0 || *(pkgCache::Package **)b == 0)
876 return *(pkgCache::Package **)a - *(pkgCache::Package **)b;
877
878 const pkgCache::Package &A = **(pkgCache::Package **)a;
879 const pkgCache::Package &B = **(pkgCache::Package **)b;
880
881 return strcmp(SortCache->StrP + A.Name,SortCache->StrP + B.Name);
882 }
883 /*}}}*/
884 // CacheFile::Sort - Sort by name /*{{{*/
885 // ---------------------------------------------------------------------
886 /* */
887 void CacheFile::Sort()
888 {
889 delete [] List;
890 List = new pkgCache::Package *[Cache->Head().PackageCount];
891 memset(List,0,sizeof(*List)*Cache->Head().PackageCount);
892 pkgCache::PkgIterator I = Cache->PkgBegin();
893 for (;I.end() != true; I++)
894 List[I->ID] = I;
895
896 SortCache = *this;
897 qsort(List,Cache->Head().PackageCount,sizeof(*List),NameComp);
898 }
899 /*}}}*/
900 // CacheFile::CheckDeps - Open the cache file /*{{{*/
901 // ---------------------------------------------------------------------
902 /* This routine generates the caches and then opens the dependency cache
903 and verifies that the system is OK. */
904 bool CacheFile::CheckDeps(bool AllowBroken)
905 {
906 bool FixBroken = _config->FindB("APT::Get::Fix-Broken",false);
907
908 if (_error->PendingError() == true)
909 return false;
910
911 // Check that the system is OK
912 if (DCache->DelCount() != 0 || DCache->InstCount() != 0)
913 return _error->Error("Internal error, non-zero counts");
914
915 // Apply corrections for half-installed packages
916 if (pkgApplyStatus(*DCache) == false)
917 return false;
918
919 if (_config->FindB("APT::Get::Fix-Policy-Broken",false) == true)
920 {
921 FixBroken = true;
922 if ((DCache->PolicyBrokenCount() > 0))
923 {
924 // upgrade all policy-broken packages with ForceImportantDeps=True
925 for (pkgCache::PkgIterator I = Cache->PkgBegin(); !I.end(); I++)
926 if ((*DCache)[I].NowPolicyBroken() == true)
927 DCache->MarkInstall(I,true,0, false, true);
928 }
929 }
930
931 // Nothing is broken
932 if (DCache->BrokenCount() == 0 || AllowBroken == true)
933 return true;
934
935 // Attempt to fix broken things
936 if (FixBroken == true)
937 {
938 c1out << _("Correcting dependencies...") << flush;
939 if (pkgFixBroken(*DCache) == false || DCache->BrokenCount() != 0)
940 {
941 c1out << _(" failed.") << endl;
942 ShowBroken(c1out,*this,true);
943
944 return _error->Error(_("Unable to correct dependencies"));
945 }
946 if (pkgMinimizeUpgrade(*DCache) == false)
947 return _error->Error(_("Unable to minimize the upgrade set"));
948
949 c1out << _(" Done") << endl;
950 }
951 else
952 {
953 c1out << _("You might want to run 'apt-get -f install' to correct these.") << endl;
954 ShowBroken(c1out,*this,true);
955
956 return _error->Error(_("Unmet dependencies. Try using -f."));
957 }
958
959 return true;
960 }
961 /*}}}*/
962 // CheckAuth - check if each download comes form a trusted source /*{{{*/
963 // ---------------------------------------------------------------------
964 /* */
965 static bool CheckAuth(pkgAcquire& Fetcher)
966 {
967 string UntrustedList;
968 for (pkgAcquire::ItemIterator I = Fetcher.ItemsBegin(); I < Fetcher.ItemsEnd(); ++I)
969 {
970 if (!(*I)->IsTrusted())
971 {
972 UntrustedList += string((*I)->ShortDesc()) + " ";
973 }
974 }
975
976 if (UntrustedList == "")
977 {
978 return true;
979 }
980
981 ShowList(c2out,_("WARNING: The following packages cannot be authenticated!"),UntrustedList,"");
982
983 if (_config->FindB("APT::Get::AllowUnauthenticated",false) == true)
984 {
985 c2out << _("Authentication warning overridden.\n");
986 return true;
987 }
988
989 if (_config->FindI("quiet",0) < 2
990 && _config->FindB("APT::Get::Assume-Yes",false) == false)
991 {
992 c2out << _("Install these packages without verification [y/N]? ") << flush;
993 if (!YnPrompt(false))
994 return _error->Error(_("Some packages could not be authenticated"));
995
996 return true;
997 }
998 else if (_config->FindB("APT::Get::Force-Yes",false) == true)
999 {
1000 return true;
1001 }
1002
1003 return _error->Error(_("There are problems and -y was used without --force-yes"));
1004 }
1005 /*}}}*/
1006 // InstallPackages - Actually download and install the packages /*{{{*/
1007 // ---------------------------------------------------------------------
1008 /* This displays the informative messages describing what is going to
1009 happen and then calls the download routines */
1010 bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true,
1011 bool Safety = true)
1012 {
1013 if (_config->FindB("APT::Get::Purge",false) == true)
1014 {
1015 pkgCache::PkgIterator I = Cache->PkgBegin();
1016 for (; I.end() == false; I++)
1017 {
1018 if (I.Purge() == false && Cache[I].Mode == pkgDepCache::ModeDelete)
1019 Cache->MarkDelete(I,true);
1020 }
1021 }
1022
1023 bool Fail = false;
1024 bool Essential = false;
1025
1026 // Show all the various warning indicators
1027 ShowDel(c1out,Cache);
1028 ShowNew(c1out,Cache);
1029 if (ShwKept == true)
1030 ShowKept(c1out,Cache);
1031 Fail |= !ShowHold(c1out,Cache);
1032 if (_config->FindB("APT::Get::Show-Upgraded",true) == true)
1033 ShowUpgraded(c1out,Cache);
1034 Fail |= !ShowDowngraded(c1out,Cache);
1035 if (_config->FindB("APT::Get::Download-Only",false) == false)
1036 Essential = !ShowEssential(c1out,Cache);
1037 Fail |= Essential;
1038 Stats(c1out,Cache);
1039
1040 // Sanity check
1041 if (Cache->BrokenCount() != 0)
1042 {
1043 ShowBroken(c1out,Cache,false);
1044 return _error->Error(_("Internal error, InstallPackages was called with broken packages!"));
1045 }
1046
1047 if (Cache->DelCount() == 0 && Cache->InstCount() == 0 &&
1048 Cache->BadCount() == 0)
1049 return true;
1050
1051 // No remove flag
1052 if (Cache->DelCount() != 0 && _config->FindB("APT::Get::Remove",true) == false)
1053 return _error->Error(_("Packages need to be removed but remove is disabled."));
1054
1055 // Run the simulator ..
1056 if (_config->FindB("APT::Get::Simulate") == true)
1057 {
1058 pkgSimulate PM(Cache);
1059 int status_fd = _config->FindI("APT::Status-Fd",-1);
1060 pkgPackageManager::OrderResult Res = PM.DoInstall(status_fd);
1061 if (Res == pkgPackageManager::Failed)
1062 return false;
1063 if (Res != pkgPackageManager::Completed)
1064 return _error->Error(_("Internal error, Ordering didn't finish"));
1065 return true;
1066 }
1067
1068 // Create the text record parser
1069 pkgRecords Recs(Cache);
1070 if (_error->PendingError() == true)
1071 return false;
1072
1073 // Create the download object
1074 pkgAcquire Fetcher;
1075 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
1076 if (_config->FindB("APT::Get::Print-URIs", false) == true)
1077 {
1078 // force a hashsum for compatibility reasons
1079 _config->CndSet("Acquire::ForceHash", "md5sum");
1080 if (Fetcher.Setup(&Stat, "") == false)
1081 return false;
1082 }
1083 else if (Fetcher.Setup(&Stat, _config->FindDir("Dir::Cache::Archives")) == false)
1084 return false;
1085
1086 // Read the source list
1087 pkgSourceList List;
1088 if (List.ReadMainList() == false)
1089 return _error->Error(_("The list of sources could not be read."));
1090
1091 // Create the package manager and prepare to download
1092 SPtr<pkgPackageManager> PM= _system->CreatePM(Cache);
1093 if (PM->GetArchives(&Fetcher,&List,&Recs) == false ||
1094 _error->PendingError() == true)
1095 return false;
1096
1097 // Display statistics
1098 unsigned long long FetchBytes = Fetcher.FetchNeeded();
1099 unsigned long long FetchPBytes = Fetcher.PartialPresent();
1100 unsigned long long DebBytes = Fetcher.TotalNeeded();
1101 if (DebBytes != Cache->DebSize())
1102 {
1103 c0out << DebBytes << ',' << Cache->DebSize() << endl;
1104 c0out << _("How odd.. The sizes didn't match, email apt@packages.debian.org") << endl;
1105 }
1106
1107 // Number of bytes
1108 if (DebBytes != FetchBytes)
1109 ioprintf(c1out,_("Need to get %sB/%sB of archives.\n"),
1110 SizeToStr(FetchBytes).c_str(),SizeToStr(DebBytes).c_str());
1111 else if (DebBytes != 0)
1112 ioprintf(c1out,_("Need to get %sB of archives.\n"),
1113 SizeToStr(DebBytes).c_str());
1114
1115 // Size delta
1116 if (Cache->UsrSize() >= 0)
1117 ioprintf(c1out,_("After this operation, %sB of additional disk space will be used.\n"),
1118 SizeToStr(Cache->UsrSize()).c_str());
1119 else
1120 ioprintf(c1out,_("After this operation, %sB disk space will be freed.\n"),
1121 SizeToStr(-1*Cache->UsrSize()).c_str());
1122
1123 if (_error->PendingError() == true)
1124 return false;
1125
1126 /* Check for enough free space, but only if we are actually going to
1127 download */
1128 if (_config->FindB("APT::Get::Print-URIs") == false &&
1129 _config->FindB("APT::Get::Download",true) == true)
1130 {
1131 struct statvfs Buf;
1132 string OutputDir = _config->FindDir("Dir::Cache::Archives");
1133 if (statvfs(OutputDir.c_str(),&Buf) != 0) {
1134 if (errno == EOVERFLOW)
1135 return _error->WarningE("statvfs",_("Couldn't determine free space in %s"),
1136 OutputDir.c_str());
1137 else
1138 return _error->Errno("statvfs",_("Couldn't determine free space in %s"),
1139 OutputDir.c_str());
1140 } else if (unsigned(Buf.f_bfree) < (FetchBytes - FetchPBytes)/Buf.f_bsize)
1141 {
1142 struct statfs Stat;
1143 if (statfs(OutputDir.c_str(),&Stat) != 0
1144 #if HAVE_STRUCT_STATFS_F_TYPE
1145 || unsigned(Stat.f_type) != RAMFS_MAGIC
1146 #endif
1147 )
1148 return _error->Error(_("You don't have enough free space in %s."),
1149 OutputDir.c_str());
1150 }
1151 }
1152
1153 // Fail safe check
1154 if (_config->FindI("quiet",0) >= 2 ||
1155 _config->FindB("APT::Get::Assume-Yes",false) == true)
1156 {
1157 if (Fail == true && _config->FindB("APT::Get::Force-Yes",false) == false)
1158 return _error->Error(_("There are problems and -y was used without --force-yes"));
1159 }
1160
1161 if (Essential == true && Safety == true)
1162 {
1163 if (_config->FindB("APT::Get::Trivial-Only",false) == true)
1164 return _error->Error(_("Trivial Only specified but this is not a trivial operation."));
1165
1166 const char *Prompt = _("Yes, do as I say!");
1167 ioprintf(c2out,
1168 _("You are about to do something potentially harmful.\n"
1169 "To continue type in the phrase '%s'\n"
1170 " ?] "),Prompt);
1171 c2out << flush;
1172 if (AnalPrompt(Prompt) == false)
1173 {
1174 c2out << _("Abort.") << endl;
1175 exit(1);
1176 }
1177 }
1178 else
1179 {
1180 // Prompt to continue
1181 if (Ask == true || Fail == true)
1182 {
1183 if (_config->FindB("APT::Get::Trivial-Only",false) == true)
1184 return _error->Error(_("Trivial Only specified but this is not a trivial operation."));
1185
1186 if (_config->FindI("quiet",0) < 2 &&
1187 _config->FindB("APT::Get::Assume-Yes",false) == false)
1188 {
1189 c2out << _("Do you want to continue [Y/n]? ") << flush;
1190
1191 if (YnPrompt() == false)
1192 {
1193 c2out << _("Abort.") << endl;
1194 exit(1);
1195 }
1196 }
1197 }
1198 }
1199
1200 // Just print out the uris an exit if the --print-uris flag was used
1201 if (_config->FindB("APT::Get::Print-URIs") == true)
1202 {
1203 pkgAcquire::UriIterator I = Fetcher.UriBegin();
1204 for (; I != Fetcher.UriEnd(); I++)
1205 cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' <<
1206 I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl;
1207 return true;
1208 }
1209
1210 if (!CheckAuth(Fetcher))
1211 return false;
1212
1213 /* Unlock the dpkg lock if we are not going to be doing an install
1214 after. */
1215 if (_config->FindB("APT::Get::Download-Only",false) == true)
1216 _system->UnLock();
1217
1218 // Run it
1219 while (1)
1220 {
1221 bool Transient = false;
1222 if (_config->FindB("APT::Get::Download",true) == false)
1223 {
1224 for (pkgAcquire::ItemIterator I = Fetcher.ItemsBegin(); I < Fetcher.ItemsEnd();)
1225 {
1226 if ((*I)->Local == true)
1227 {
1228 I++;
1229 continue;
1230 }
1231
1232 // Close the item and check if it was found in cache
1233 (*I)->Finished();
1234 if ((*I)->Complete == false)
1235 Transient = true;
1236
1237 // Clear it out of the fetch list
1238 delete *I;
1239 I = Fetcher.ItemsBegin();
1240 }
1241 }
1242
1243 if (Fetcher.Run() == pkgAcquire::Failed)
1244 return false;
1245
1246 // Print out errors
1247 bool Failed = false;
1248 for (pkgAcquire::ItemIterator I = Fetcher.ItemsBegin(); I != Fetcher.ItemsEnd(); I++)
1249 {
1250 if ((*I)->Status == pkgAcquire::Item::StatDone &&
1251 (*I)->Complete == true)
1252 continue;
1253
1254 if ((*I)->Status == pkgAcquire::Item::StatIdle)
1255 {
1256 Transient = true;
1257 // Failed = true;
1258 continue;
1259 }
1260
1261 fprintf(stderr,_("Failed to fetch %s %s\n"),(*I)->DescURI().c_str(),
1262 (*I)->ErrorText.c_str());
1263 Failed = true;
1264 }
1265
1266 /* If we are in no download mode and missing files and there were
1267 'failures' then the user must specify -m. Furthermore, there
1268 is no such thing as a transient error in no-download mode! */
1269 if (Transient == true &&
1270 _config->FindB("APT::Get::Download",true) == false)
1271 {
1272 Transient = false;
1273 Failed = true;
1274 }
1275
1276 if (_config->FindB("APT::Get::Download-Only",false) == true)
1277 {
1278 if (Failed == true && _config->FindB("APT::Get::Fix-Missing",false) == false)
1279 return _error->Error(_("Some files failed to download"));
1280 c1out << _("Download complete and in download only mode") << endl;
1281 return true;
1282 }
1283
1284 if (Failed == true && _config->FindB("APT::Get::Fix-Missing",false) == false)
1285 {
1286 return _error->Error(_("Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?"));
1287 }
1288
1289 if (Transient == true && Failed == true)
1290 return _error->Error(_("--fix-missing and media swapping is not currently supported"));
1291
1292 // Try to deal with missing package files
1293 if (Failed == true && PM->FixMissing() == false)
1294 {
1295 cerr << _("Unable to correct missing packages.") << endl;
1296 return _error->Error(_("Aborting install."));
1297 }
1298
1299 _system->UnLock();
1300 int status_fd = _config->FindI("APT::Status-Fd",-1);
1301 pkgPackageManager::OrderResult Res = PM->DoInstall(status_fd);
1302 if (Res == pkgPackageManager::Failed || _error->PendingError() == true)
1303 return false;
1304 if (Res == pkgPackageManager::Completed)
1305 break;
1306
1307 // Reload the fetcher object and loop again for media swapping
1308 Fetcher.Shutdown();
1309 if (PM->GetArchives(&Fetcher,&List,&Recs) == false)
1310 return false;
1311
1312 _system->Lock();
1313 }
1314
1315 std::set<std::string> const disappearedPkgs = PM->GetDisappearedPackages();
1316 if (disappearedPkgs.empty() == true)
1317 return true;
1318
1319 string disappear;
1320 for (std::set<std::string>::const_iterator d = disappearedPkgs.begin();
1321 d != disappearedPkgs.end(); ++d)
1322 disappear.append(*d).append(" ");
1323
1324 ShowList(c1out, P_("The following package disappeared from your system as\n"
1325 "all files have been overwritten by other packages:",
1326 "The following packages disappeared from your system as\n"
1327 "all files have been overwritten by other packages:", disappearedPkgs.size()), disappear, "");
1328 c0out << _("Note: This is done automatic and on purpose by dpkg.") << std::endl;
1329
1330 return true;
1331 }
1332 /*}}}*/
1333 // TryToInstallBuildDep - Try to install a single package /*{{{*/
1334 // ---------------------------------------------------------------------
1335 /* This used to be inlined in DoInstall, but with the advent of regex package
1336 name matching it was split out.. */
1337 bool TryToInstallBuildDep(pkgCache::PkgIterator Pkg,pkgCacheFile &Cache,
1338 pkgProblemResolver &Fix,bool Remove,bool BrokenFix,
1339 bool AllowFail = true)
1340 {
1341 if (Cache[Pkg].CandidateVer == 0 && Pkg->ProvidesList != 0)
1342 {
1343 CacheSetHelperAPTGet helper(c1out);
1344 helper.showErrors(AllowFail == false);
1345 pkgCache::VerIterator Ver = helper.canNotFindNewestVer(Cache, Pkg);
1346 if (Ver.end() == false)
1347 Pkg = Ver.ParentPkg();
1348 else if (helper.showVirtualPackageErrors(Cache) == false)
1349 return AllowFail;
1350 }
1351
1352 if (Remove == true)
1353 {
1354 TryToRemove RemoveAction(Cache, Fix);
1355 RemoveAction(Pkg.VersionList());
1356 } else if (Cache[Pkg].CandidateVer != 0) {
1357 TryToInstall InstallAction(Cache, Fix, BrokenFix);
1358 InstallAction(Cache[Pkg].CandidateVerIter(Cache));
1359 InstallAction.doAutoInstall();
1360 } else
1361 return AllowFail;
1362
1363 return true;
1364 }
1365 /*}}}*/
1366 // FindSrc - Find a source record /*{{{*/
1367 // ---------------------------------------------------------------------
1368 /* */
1369 pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs,
1370 pkgSrcRecords &SrcRecs,string &Src,
1371 pkgDepCache &Cache)
1372 {
1373 string VerTag;
1374 string DefRel = _config->Find("APT::Default-Release");
1375 string TmpSrc = Name;
1376
1377 // extract the version/release from the pkgname
1378 const size_t found = TmpSrc.find_last_of("/=");
1379 if (found != string::npos) {
1380 if (TmpSrc[found] == '/')
1381 DefRel = TmpSrc.substr(found+1);
1382 else
1383 VerTag = TmpSrc.substr(found+1);
1384 TmpSrc = TmpSrc.substr(0,found);
1385 }
1386
1387 /* Lookup the version of the package we would install if we were to
1388 install a version and determine the source package name, then look
1389 in the archive for a source package of the same name. */
1390 bool MatchSrcOnly = _config->FindB("APT::Get::Only-Source");
1391 const pkgCache::PkgIterator Pkg = Cache.FindPkg(TmpSrc);
1392 if (MatchSrcOnly == false && Pkg.end() == false)
1393 {
1394 if(VerTag.empty() == false || DefRel.empty() == false)
1395 {
1396 bool fuzzy = false;
1397 // we have a default release, try to locate the pkg. we do it like
1398 // this because GetCandidateVer() will not "downgrade", that means
1399 // "apt-get source -t stable apt" won't work on a unstable system
1400 for (pkgCache::VerIterator Ver = Pkg.VersionList();; Ver++)
1401 {
1402 // try first only exact matches, later fuzzy matches
1403 if (Ver.end() == true)
1404 {
1405 if (fuzzy == true)
1406 break;
1407 fuzzy = true;
1408 Ver = Pkg.VersionList();
1409 // exit right away from the Pkg.VersionList() loop if we
1410 // don't have any versions
1411 if (Ver.end() == true)
1412 break;
1413 }
1414 // We match against a concrete version (or a part of this version)
1415 if (VerTag.empty() == false &&
1416 (fuzzy == true || Cache.VS().CmpVersion(VerTag, Ver.VerStr()) != 0) && // exact match
1417 (fuzzy == false || strncmp(VerTag.c_str(), Ver.VerStr(), VerTag.size()) != 0)) // fuzzy match
1418 continue;
1419
1420 for (pkgCache::VerFileIterator VF = Ver.FileList();
1421 VF.end() == false; VF++)
1422 {
1423 /* If this is the status file, and the current version is not the
1424 version in the status file (ie it is not installed, or somesuch)
1425 then it is not a candidate for installation, ever. This weeds
1426 out bogus entries that may be due to config-file states, or
1427 other. */
1428 if ((VF.File()->Flags & pkgCache::Flag::NotSource) ==
1429 pkgCache::Flag::NotSource && Pkg.CurrentVer() != Ver)
1430 continue;
1431
1432 // or we match against a release
1433 if(VerTag.empty() == false ||
1434 (VF.File().Archive() != 0 && VF.File().Archive() == DefRel) ||
1435 (VF.File().Codename() != 0 && VF.File().Codename() == DefRel))
1436 {
1437 pkgRecords::Parser &Parse = Recs.Lookup(VF);
1438 Src = Parse.SourcePkg();
1439 // no SourcePkg name, so it is the "binary" name
1440 if (Src.empty() == true)
1441 Src = TmpSrc;
1442 // the Version we have is possibly fuzzy or includes binUploads,
1443 // so we use the Version of the SourcePkg (empty if same as package)
1444 VerTag = Parse.SourceVer();
1445 if (VerTag.empty() == true)
1446 VerTag = Ver.VerStr();
1447 break;
1448 }
1449 }
1450 if (Src.empty() == false)
1451 break;
1452 }
1453 if (Src.empty() == true)
1454 {
1455 // Sources files have no codename information
1456 if (VerTag.empty() == true && DefRel.empty() == false)
1457 {
1458 _error->Error(_("Ignore unavailable target release '%s' of package '%s'"), DefRel.c_str(), TmpSrc.c_str());
1459 return 0;
1460 }
1461 }
1462 }
1463 if (Src.empty() == true)
1464 {
1465 // if we don't have found a fitting package yet so we will
1466 // choose a good candidate and proceed with that.
1467 // Maybe we will find a source later on with the right VerTag
1468 pkgCache::VerIterator Ver = Cache.GetCandidateVer(Pkg);
1469 if (Ver.end() == false)
1470 {
1471 pkgRecords::Parser &Parse = Recs.Lookup(Ver.FileList());
1472 Src = Parse.SourcePkg();
1473 if (VerTag.empty() == true)
1474 VerTag = Parse.SourceVer();
1475 }
1476 }
1477 }
1478
1479 if (Src.empty() == true)
1480 Src = TmpSrc;
1481 else
1482 {
1483 /* if we have a source pkg name, make sure to only search
1484 for srcpkg names, otherwise apt gets confused if there
1485 is a binary package "pkg1" and a source package "pkg1"
1486 with the same name but that comes from different packages */
1487 MatchSrcOnly = true;
1488 if (Src != TmpSrc)
1489 {
1490 ioprintf(c1out, _("Picking '%s' as source package instead of '%s'\n"), Src.c_str(), TmpSrc.c_str());
1491 }
1492 }
1493
1494 // The best hit
1495 pkgSrcRecords::Parser *Last = 0;
1496 unsigned long Offset = 0;
1497 string Version;
1498
1499 /* Iterate over all of the hits, which includes the resulting
1500 binary packages in the search */
1501 pkgSrcRecords::Parser *Parse;
1502 while (true)
1503 {
1504 SrcRecs.Restart();
1505 while ((Parse = SrcRecs.Find(Src.c_str(), MatchSrcOnly)) != 0)
1506 {
1507 const string Ver = Parse->Version();
1508
1509 // Ignore all versions which doesn't fit
1510 if (VerTag.empty() == false &&
1511 Cache.VS().CmpVersion(VerTag, Ver) != 0) // exact match
1512 continue;
1513
1514 // Newer version or an exact match? Save the hit
1515 if (Last == 0 || Cache.VS().CmpVersion(Version,Ver) < 0) {
1516 Last = Parse;
1517 Offset = Parse->Offset();
1518 Version = Ver;
1519 }
1520
1521 // was the version check above an exact match? If so, we don't need to look further
1522 if (VerTag.empty() == false && VerTag.size() == Ver.size())
1523 break;
1524 }
1525 if (Last != 0 || VerTag.empty() == true)
1526 break;
1527 //if (VerTag.empty() == false && Last == 0)
1528 _error->Error(_("Ignore unavailable version '%s' of package '%s'"), VerTag.c_str(), TmpSrc.c_str());
1529 return 0;
1530 }
1531
1532 if (Last == 0 || Last->Jump(Offset) == false)
1533 return 0;
1534
1535 return Last;
1536 }
1537 /*}}}*/
1538 // DoUpdate - Update the package lists /*{{{*/
1539 // ---------------------------------------------------------------------
1540 /* */
1541 bool DoUpdate(CommandLine &CmdL)
1542 {
1543 if (CmdL.FileSize() != 1)
1544 return _error->Error(_("The update command takes no arguments"));
1545
1546 // Get the source list
1547 pkgSourceList List;
1548 if (List.ReadMainList() == false)
1549 return false;
1550
1551 // Create the progress
1552 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
1553
1554 // Just print out the uris an exit if the --print-uris flag was used
1555 if (_config->FindB("APT::Get::Print-URIs") == true)
1556 {
1557 // force a hashsum for compatibility reasons
1558 _config->CndSet("Acquire::ForceHash", "md5sum");
1559
1560 // get a fetcher
1561 pkgAcquire Fetcher;
1562 if (Fetcher.Setup(&Stat) == false)
1563 return false;
1564
1565 // Populate it with the source selection and get all Indexes
1566 // (GetAll=true)
1567 if (List.GetIndexes(&Fetcher,true) == false)
1568 return false;
1569
1570 pkgAcquire::UriIterator I = Fetcher.UriBegin();
1571 for (; I != Fetcher.UriEnd(); I++)
1572 cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' <<
1573 I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl;
1574 return true;
1575 }
1576
1577 // do the work
1578 CacheFile Cache;
1579 if (_config->FindB("APT::Get::Download",true) == true)
1580 ListUpdate(Stat, List);
1581
1582 // Rebuild the cache.
1583 if (Cache.BuildCaches() == false)
1584 return false;
1585
1586 return true;
1587 }
1588 /*}}}*/
1589 // DoAutomaticRemove - Remove all automatic unused packages /*{{{*/
1590 // ---------------------------------------------------------------------
1591 /* Remove unused automatic packages */
1592 bool DoAutomaticRemove(CacheFile &Cache)
1593 {
1594 bool Debug = _config->FindI("Debug::pkgAutoRemove",false);
1595 bool doAutoRemove = _config->FindB("APT::Get::AutomaticRemove", false);
1596 bool hideAutoRemove = _config->FindB("APT::Get::HideAutoRemove");
1597
1598 pkgDepCache::ActionGroup group(*Cache);
1599 if(Debug)
1600 std::cout << "DoAutomaticRemove()" << std::endl;
1601
1602 // we don't want to autoremove and we don't want to see it, so why calculating?
1603 if (doAutoRemove == false && hideAutoRemove == true)
1604 return true;
1605
1606 if (doAutoRemove == true &&
1607 _config->FindB("APT::Get::Remove",true) == false)
1608 {
1609 c1out << _("We are not supposed to delete stuff, can't start "
1610 "AutoRemover") << std::endl;
1611 return false;
1612 }
1613
1614 bool purgePkgs = _config->FindB("APT::Get::Purge", false);
1615 bool smallList = (hideAutoRemove == false &&
1616 strcasecmp(_config->Find("APT::Get::HideAutoRemove","").c_str(),"small") == 0);
1617
1618 string autoremovelist, autoremoveversions;
1619 unsigned long autoRemoveCount = 0;
1620 // look over the cache to see what can be removed
1621 for (pkgCache::PkgIterator Pkg = Cache->PkgBegin(); ! Pkg.end(); ++Pkg)
1622 {
1623 if (Cache[Pkg].Garbage)
1624 {
1625 if(Pkg.CurrentVer() != 0 || Cache[Pkg].Install())
1626 if(Debug)
1627 std::cout << "We could delete %s" << Pkg.FullName(true).c_str() << std::endl;
1628
1629 if (doAutoRemove)
1630 {
1631 if(Pkg.CurrentVer() != 0 &&
1632 Pkg->CurrentState != pkgCache::State::ConfigFiles)
1633 Cache->MarkDelete(Pkg, purgePkgs);
1634 else
1635 Cache->MarkKeep(Pkg, false, false);
1636 }
1637 else
1638 {
1639 // only show stuff in the list that is not yet marked for removal
1640 if(Cache[Pkg].Delete() == false)
1641 {
1642 ++autoRemoveCount;
1643 // we don't need to fill the strings if we don't need them
1644 if (smallList == false)
1645 {
1646 autoremovelist += Pkg.FullName(true) + " ";
1647 autoremoveversions += string(Cache[Pkg].CandVersion) + "\n";
1648 }
1649 }
1650 }
1651 }
1652 }
1653 // if we don't remove them, we should show them!
1654 if (doAutoRemove == false && (autoremovelist.empty() == false || autoRemoveCount != 0))
1655 {
1656 if (smallList == false)
1657 ShowList(c1out, P_("The following package is automatically installed and is no longer required:",
1658 "The following packages were automatically installed and are no longer required:",
1659 autoRemoveCount), autoremovelist, autoremoveversions);
1660 else
1661 ioprintf(c1out, P_("%lu package was automatically installed and is no longer required.\n",
1662 "%lu packages were automatically installed and are no longer required.\n", autoRemoveCount), autoRemoveCount);
1663 c1out << _("Use 'apt-get autoremove' to remove them.") << std::endl;
1664 }
1665 // Now see if we had destroyed anything (if we had done anything)
1666 else if (Cache->BrokenCount() != 0)
1667 {
1668 c1out << _("Hmm, seems like the AutoRemover destroyed something which really\n"
1669 "shouldn't happen. Please file a bug report against apt.") << endl;
1670 c1out << endl;
1671 c1out << _("The following information may help to resolve the situation:") << endl;
1672 c1out << endl;
1673 ShowBroken(c1out,Cache,false);
1674
1675 return _error->Error(_("Internal Error, AutoRemover broke stuff"));
1676 }
1677 return true;
1678 }
1679 /*}}}*/
1680 // DoUpgrade - Upgrade all packages /*{{{*/
1681 // ---------------------------------------------------------------------
1682 /* Upgrade all packages without installing new packages or erasing old
1683 packages */
1684 bool DoUpgrade(CommandLine &CmdL)
1685 {
1686 CacheFile Cache;
1687 if (Cache.OpenForInstall() == false || Cache.CheckDeps() == false)
1688 return false;
1689
1690 // Do the upgrade
1691 if (pkgAllUpgrade(Cache) == false)
1692 {
1693 ShowBroken(c1out,Cache,false);
1694 return _error->Error(_("Internal error, AllUpgrade broke stuff"));
1695 }
1696
1697 return InstallPackages(Cache,true);
1698 }
1699 /*}}}*/
1700 // DoInstall - Install packages from the command line /*{{{*/
1701 // ---------------------------------------------------------------------
1702 /* Install named packages */
1703 bool DoInstall(CommandLine &CmdL)
1704 {
1705 CacheFile Cache;
1706 if (Cache.OpenForInstall() == false ||
1707 Cache.CheckDeps(CmdL.FileSize() != 1) == false)
1708 return false;
1709
1710 // Enter the special broken fixing mode if the user specified arguments
1711 bool BrokenFix = false;
1712 if (Cache->BrokenCount() != 0)
1713 BrokenFix = true;
1714
1715 pkgProblemResolver Fix(Cache);
1716
1717 static const unsigned short MOD_REMOVE = 1;
1718 static const unsigned short MOD_INSTALL = 2;
1719
1720 unsigned short fallback = MOD_INSTALL;
1721 if (strcasecmp(CmdL.FileList[0],"remove") == 0)
1722 fallback = MOD_REMOVE;
1723 else if (strcasecmp(CmdL.FileList[0], "purge") == 0)
1724 {
1725 _config->Set("APT::Get::Purge", true);
1726 fallback = MOD_REMOVE;
1727 }
1728 else if (strcasecmp(CmdL.FileList[0], "autoremove") == 0)
1729 {
1730 _config->Set("APT::Get::AutomaticRemove", "true");
1731 fallback = MOD_REMOVE;
1732 }
1733
1734 std::list<APT::VersionSet::Modifier> mods;
1735 mods.push_back(APT::VersionSet::Modifier(MOD_INSTALL, "+",
1736 APT::VersionSet::Modifier::POSTFIX, APT::VersionSet::CANDIDATE));
1737 mods.push_back(APT::VersionSet::Modifier(MOD_REMOVE, "-",
1738 APT::VersionSet::Modifier::POSTFIX, APT::VersionSet::NEWEST));
1739 CacheSetHelperAPTGet helper(c0out);
1740 std::map<unsigned short, APT::VersionSet> verset = APT::VersionSet::GroupedFromCommandLine(Cache,
1741 CmdL.FileList + 1, mods, fallback, helper);
1742
1743 if (_error->PendingError() == true)
1744 {
1745 helper.showVirtualPackageErrors(Cache);
1746 return false;
1747 }
1748
1749 unsigned short order[] = { 0, 0, 0 };
1750 if (fallback == MOD_INSTALL) {
1751 order[0] = MOD_INSTALL;
1752 order[1] = MOD_REMOVE;
1753 } else {
1754 order[0] = MOD_REMOVE;
1755 order[1] = MOD_INSTALL;
1756 }
1757
1758 TryToInstall InstallAction(Cache, Fix, BrokenFix);
1759 TryToRemove RemoveAction(Cache, Fix);
1760
1761 // new scope for the ActionGroup
1762 {
1763 pkgDepCache::ActionGroup group(Cache);
1764
1765 for (unsigned short i = 0; order[i] != 0; ++i)
1766 {
1767 if (order[i] == MOD_INSTALL) {
1768 InstallAction = std::for_each(verset[MOD_INSTALL].begin(), verset[MOD_INSTALL].end(), InstallAction);
1769 InstallAction.doAutoInstall();
1770 }
1771 else if (order[i] == MOD_REMOVE)
1772 RemoveAction = std::for_each(verset[MOD_REMOVE].begin(), verset[MOD_REMOVE].end(), RemoveAction);
1773 }
1774
1775 if (_error->PendingError() == true)
1776 return false;
1777
1778 /* If we are in the Broken fixing mode we do not attempt to fix the
1779 problems. This is if the user invoked install without -f and gave
1780 packages */
1781 if (BrokenFix == true && Cache->BrokenCount() != 0)
1782 {
1783 c1out << _("You might want to run 'apt-get -f install' to correct these:") << endl;
1784 ShowBroken(c1out,Cache,false);
1785
1786 return _error->Error(_("Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution)."));
1787 }
1788
1789 // Call the scored problem resolver
1790 Fix.InstallProtect();
1791 if (Fix.Resolve(true) == false)
1792 _error->Discard();
1793
1794 // Now we check the state of the packages,
1795 if (Cache->BrokenCount() != 0)
1796 {
1797 c1out <<
1798 _("Some packages could not be installed. This may mean that you have\n"
1799 "requested an impossible situation or if you are using the unstable\n"
1800 "distribution that some required packages have not yet been created\n"
1801 "or been moved out of Incoming.") << endl;
1802 /*
1803 if (Packages == 1)
1804 {
1805 c1out << endl;
1806 c1out <<
1807 _("Since you only requested a single operation it is extremely likely that\n"
1808 "the package is simply not installable and a bug report against\n"
1809 "that package should be filed.") << endl;
1810 }
1811 */
1812
1813 c1out << _("The following information may help to resolve the situation:") << endl;
1814 c1out << endl;
1815 ShowBroken(c1out,Cache,false);
1816 return _error->Error(_("Broken packages"));
1817 }
1818 }
1819 if (!DoAutomaticRemove(Cache))
1820 return false;
1821
1822 /* Print out a list of packages that are going to be installed extra
1823 to what the user asked */
1824 if (Cache->InstCount() != verset[MOD_INSTALL].size())
1825 {
1826 string List;
1827 string VersionsList;
1828 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
1829 {
1830 pkgCache::PkgIterator I(Cache,Cache.List[J]);
1831 if ((*Cache)[I].Install() == false)
1832 continue;
1833
1834 const char **J;
1835 for (J = CmdL.FileList + 1; *J != 0; J++)
1836 if (strcmp(*J,I.Name()) == 0)
1837 break;
1838
1839 if (*J == 0) {
1840 List += I.FullName(true) + " ";
1841 VersionsList += string(Cache[I].CandVersion) + "\n";
1842 }
1843 }
1844
1845 ShowList(c1out,_("The following extra packages will be installed:"),List,VersionsList);
1846 }
1847
1848 /* Print out a list of suggested and recommended packages */
1849 {
1850 string SuggestsList, RecommendsList, List;
1851 string SuggestsVersions, RecommendsVersions;
1852 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
1853 {
1854 pkgCache::PkgIterator Pkg(Cache,Cache.List[J]);
1855
1856 /* Just look at the ones we want to install */
1857 if ((*Cache)[Pkg].Install() == false)
1858 continue;
1859
1860 // get the recommends/suggests for the candidate ver
1861 pkgCache::VerIterator CV = (*Cache)[Pkg].CandidateVerIter(*Cache);
1862 for (pkgCache::DepIterator D = CV.DependsList(); D.end() == false; )
1863 {
1864 pkgCache::DepIterator Start;
1865 pkgCache::DepIterator End;
1866 D.GlobOr(Start,End); // advances D
1867
1868 // FIXME: we really should display a or-group as a or-group to the user
1869 // the problem is that ShowList is incapable of doing this
1870 string RecommendsOrList,RecommendsOrVersions;
1871 string SuggestsOrList,SuggestsOrVersions;
1872 bool foundInstalledInOrGroup = false;
1873 for(;;)
1874 {
1875 /* Skip if package is installed already, or is about to be */
1876 string target = Start.TargetPkg().FullName(true) + " ";
1877 pkgCache::PkgIterator const TarPkg = Start.TargetPkg();
1878 if (TarPkg->SelectedState == pkgCache::State::Install ||
1879 TarPkg->SelectedState == pkgCache::State::Hold ||
1880 Cache[Start.TargetPkg()].Install())
1881 {
1882 foundInstalledInOrGroup=true;
1883 break;
1884 }
1885
1886 /* Skip if we already saw it */
1887 if (int(SuggestsList.find(target)) != -1 || int(RecommendsList.find(target)) != -1)
1888 {
1889 foundInstalledInOrGroup=true;
1890 break;
1891 }
1892
1893 // this is a dep on a virtual pkg, check if any package that provides it
1894 // should be installed
1895 if(Start.TargetPkg().ProvidesList() != 0)
1896 {
1897 pkgCache::PrvIterator I = Start.TargetPkg().ProvidesList();
1898 for (; I.end() == false; I++)
1899 {
1900 pkgCache::PkgIterator Pkg = I.OwnerPkg();
1901 if (Cache[Pkg].CandidateVerIter(Cache) == I.OwnerVer() &&
1902 Pkg.CurrentVer() != 0)
1903 foundInstalledInOrGroup=true;
1904 }
1905 }
1906
1907 if (Start->Type == pkgCache::Dep::Suggests)
1908 {
1909 SuggestsOrList += target;
1910 SuggestsOrVersions += string(Cache[Start.TargetPkg()].CandVersion) + "\n";
1911 }
1912
1913 if (Start->Type == pkgCache::Dep::Recommends)
1914 {
1915 RecommendsOrList += target;
1916 RecommendsOrVersions += string(Cache[Start.TargetPkg()].CandVersion) + "\n";
1917 }
1918
1919 if (Start >= End)
1920 break;
1921 Start++;
1922 }
1923
1924 if(foundInstalledInOrGroup == false)
1925 {
1926 RecommendsList += RecommendsOrList;
1927 RecommendsVersions += RecommendsOrVersions;
1928 SuggestsList += SuggestsOrList;
1929 SuggestsVersions += SuggestsOrVersions;
1930 }
1931
1932 }
1933 }
1934
1935 ShowList(c1out,_("Suggested packages:"),SuggestsList,SuggestsVersions);
1936 ShowList(c1out,_("Recommended packages:"),RecommendsList,RecommendsVersions);
1937
1938 }
1939
1940 // if nothing changed in the cache, but only the automark information
1941 // we write the StateFile here, otherwise it will be written in
1942 // cache.commit()
1943 if (InstallAction.AutoMarkChanged > 0 &&
1944 Cache->DelCount() == 0 && Cache->InstCount() == 0 &&
1945 Cache->BadCount() == 0 &&
1946 _config->FindB("APT::Get::Simulate",false) == false)
1947 Cache->writeStateFile(NULL);
1948
1949 // See if we need to prompt
1950 // FIXME: check if really the packages in the set are going to be installed
1951 if (Cache->InstCount() == verset[MOD_INSTALL].size() && Cache->DelCount() == 0)
1952 return InstallPackages(Cache,false,false);
1953
1954 return InstallPackages(Cache,false);
1955 }
1956
1957 /* mark packages as automatically/manually installed. */
1958 bool DoMarkAuto(CommandLine &CmdL)
1959 {
1960 bool Action = true;
1961 int AutoMarkChanged = 0;
1962 OpTextProgress progress;
1963 CacheFile Cache;
1964 if (Cache.Open() == false)
1965 return false;
1966
1967 if (strcasecmp(CmdL.FileList[0],"markauto") == 0)
1968 Action = true;
1969 else if (strcasecmp(CmdL.FileList[0],"unmarkauto") == 0)
1970 Action = false;
1971
1972 for (const char **I = CmdL.FileList + 1; *I != 0; I++)
1973 {
1974 const char *S = *I;
1975 // Locate the package
1976 pkgCache::PkgIterator Pkg = Cache->FindPkg(S);
1977 if (Pkg.end() == true) {
1978 return _error->Error(_("Couldn't find package %s"),S);
1979 }
1980 else
1981 {
1982 if (!Action)
1983 ioprintf(c1out,_("%s set to manually installed.\n"), Pkg.Name());
1984 else
1985 ioprintf(c1out,_("%s set to automatically installed.\n"),
1986 Pkg.Name());
1987
1988 Cache->MarkAuto(Pkg,Action);
1989 AutoMarkChanged++;
1990 }
1991 }
1992 if (AutoMarkChanged && ! _config->FindB("APT::Get::Simulate",false))
1993 return Cache->writeStateFile(NULL);
1994 return false;
1995 }
1996 /*}}}*/
1997 // DoDistUpgrade - Automatic smart upgrader /*{{{*/
1998 // ---------------------------------------------------------------------
1999 /* Intelligent upgrader that will install and remove packages at will */
2000 bool DoDistUpgrade(CommandLine &CmdL)
2001 {
2002 CacheFile Cache;
2003 if (Cache.OpenForInstall() == false || Cache.CheckDeps() == false)
2004 return false;
2005
2006 c0out << _("Calculating upgrade... ") << flush;
2007 if (pkgDistUpgrade(*Cache) == false)
2008 {
2009 c0out << _("Failed") << endl;
2010 ShowBroken(c1out,Cache,false);
2011 return false;
2012 }
2013
2014 c0out << _("Done") << endl;
2015
2016 return InstallPackages(Cache,true);
2017 }
2018 /*}}}*/
2019 // DoDSelectUpgrade - Do an upgrade by following dselects selections /*{{{*/
2020 // ---------------------------------------------------------------------
2021 /* Follows dselect's selections */
2022 bool DoDSelectUpgrade(CommandLine &CmdL)
2023 {
2024 CacheFile Cache;
2025 if (Cache.OpenForInstall() == false || Cache.CheckDeps() == false)
2026 return false;
2027
2028 pkgDepCache::ActionGroup group(Cache);
2029
2030 // Install everything with the install flag set
2031 pkgCache::PkgIterator I = Cache->PkgBegin();
2032 for (;I.end() != true; I++)
2033 {
2034 /* Install the package only if it is a new install, the autoupgrader
2035 will deal with the rest */
2036 if (I->SelectedState == pkgCache::State::Install)
2037 Cache->MarkInstall(I,false);
2038 }
2039
2040 /* Now install their deps too, if we do this above then order of
2041 the status file is significant for | groups */
2042 for (I = Cache->PkgBegin();I.end() != true; I++)
2043 {
2044 /* Install the package only if it is a new install, the autoupgrader
2045 will deal with the rest */
2046 if (I->SelectedState == pkgCache::State::Install)
2047 Cache->MarkInstall(I,true);
2048 }
2049
2050 // Apply erasures now, they override everything else.
2051 for (I = Cache->PkgBegin();I.end() != true; I++)
2052 {
2053 // Remove packages
2054 if (I->SelectedState == pkgCache::State::DeInstall ||
2055 I->SelectedState == pkgCache::State::Purge)
2056 Cache->MarkDelete(I,I->SelectedState == pkgCache::State::Purge);
2057 }
2058
2059 /* Resolve any problems that dselect created, allupgrade cannot handle
2060 such things. We do so quite agressively too.. */
2061 if (Cache->BrokenCount() != 0)
2062 {
2063 pkgProblemResolver Fix(Cache);
2064
2065 // Hold back held packages.
2066 if (_config->FindB("APT::Ignore-Hold",false) == false)
2067 {
2068 for (pkgCache::PkgIterator I = Cache->PkgBegin(); I.end() == false; I++)
2069 {
2070 if (I->SelectedState == pkgCache::State::Hold)
2071 {
2072 Fix.Protect(I);
2073 Cache->MarkKeep(I);
2074 }
2075 }
2076 }
2077
2078 if (Fix.Resolve() == false)
2079 {
2080 ShowBroken(c1out,Cache,false);
2081 return _error->Error(_("Internal error, problem resolver broke stuff"));
2082 }
2083 }
2084
2085 // Now upgrade everything
2086 if (pkgAllUpgrade(Cache) == false)
2087 {
2088 ShowBroken(c1out,Cache,false);
2089 return _error->Error(_("Internal error, problem resolver broke stuff"));
2090 }
2091
2092 return InstallPackages(Cache,false);
2093 }
2094 /*}}}*/
2095 // DoClean - Remove download archives /*{{{*/
2096 // ---------------------------------------------------------------------
2097 /* */
2098 bool DoClean(CommandLine &CmdL)
2099 {
2100 if (_config->FindB("APT::Get::Simulate") == true)
2101 {
2102 cout << "Del " << _config->FindDir("Dir::Cache::archives") << "* " <<
2103 _config->FindDir("Dir::Cache::archives") << "partial/*" << endl;
2104 return true;
2105 }
2106
2107 // Lock the archive directory
2108 FileFd Lock;
2109 if (_config->FindB("Debug::NoLocking",false) == false)
2110 {
2111 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
2112 if (_error->PendingError() == true)
2113 return _error->Error(_("Unable to lock the download directory"));
2114 }
2115
2116 pkgAcquire Fetcher;
2117 Fetcher.Clean(_config->FindDir("Dir::Cache::archives"));
2118 Fetcher.Clean(_config->FindDir("Dir::Cache::archives") + "partial/");
2119 return true;
2120 }
2121 /*}}}*/
2122 // DoAutoClean - Smartly remove downloaded archives /*{{{*/
2123 // ---------------------------------------------------------------------
2124 /* This is similar to clean but it only purges things that cannot be
2125 downloaded, that is old versions of cached packages. */
2126 class LogCleaner : public pkgArchiveCleaner
2127 {
2128 protected:
2129 virtual void Erase(const char *File,string Pkg,string Ver,struct stat &St)
2130 {
2131 c1out << "Del " << Pkg << " " << Ver << " [" << SizeToStr(St.st_size) << "B]" << endl;
2132
2133 if (_config->FindB("APT::Get::Simulate") == false)
2134 unlink(File);
2135 };
2136 };
2137
2138 bool DoAutoClean(CommandLine &CmdL)
2139 {
2140 // Lock the archive directory
2141 FileFd Lock;
2142 if (_config->FindB("Debug::NoLocking",false) == false)
2143 {
2144 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
2145 if (_error->PendingError() == true)
2146 return _error->Error(_("Unable to lock the download directory"));
2147 }
2148
2149 CacheFile Cache;
2150 if (Cache.Open() == false)
2151 return false;
2152
2153 LogCleaner Cleaner;
2154
2155 return Cleaner.Go(_config->FindDir("Dir::Cache::archives"),*Cache) &&
2156 Cleaner.Go(_config->FindDir("Dir::Cache::archives") + "partial/",*Cache);
2157 }
2158 /*}}}*/
2159 // DoCheck - Perform the check operation /*{{{*/
2160 // ---------------------------------------------------------------------
2161 /* Opening automatically checks the system, this command is mostly used
2162 for debugging */
2163 bool DoCheck(CommandLine &CmdL)
2164 {
2165 CacheFile Cache;
2166 Cache.Open();
2167 Cache.CheckDeps();
2168
2169 return true;
2170 }
2171 /*}}}*/
2172 // DoSource - Fetch a source archive /*{{{*/
2173 // ---------------------------------------------------------------------
2174 /* Fetch souce packages */
2175 struct DscFile
2176 {
2177 string Package;
2178 string Version;
2179 string Dsc;
2180 };
2181
2182 bool DoSource(CommandLine &CmdL)
2183 {
2184 CacheFile Cache;
2185 if (Cache.Open(false) == false)
2186 return false;
2187
2188 if (CmdL.FileSize() <= 1)
2189 return _error->Error(_("Must specify at least one package to fetch source for"));
2190
2191 // Read the source list
2192 pkgSourceList List;
2193 if (List.ReadMainList() == false)
2194 return _error->Error(_("The list of sources could not be read."));
2195
2196 // Create the text record parsers
2197 pkgRecords Recs(Cache);
2198 pkgSrcRecords SrcRecs(List);
2199 if (_error->PendingError() == true)
2200 return false;
2201
2202 // Create the download object
2203 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
2204 pkgAcquire Fetcher;
2205 if (Fetcher.Setup(&Stat) == false)
2206 return false;
2207
2208 DscFile *Dsc = new DscFile[CmdL.FileSize()];
2209
2210 // insert all downloaded uris into this set to avoid downloading them
2211 // twice
2212 set<string> queued;
2213
2214 // Diff only mode only fetches .diff files
2215 bool const diffOnly = _config->FindB("APT::Get::Diff-Only", false);
2216 // Tar only mode only fetches .tar files
2217 bool const tarOnly = _config->FindB("APT::Get::Tar-Only", false);
2218 // Dsc only mode only fetches .dsc files
2219 bool const dscOnly = _config->FindB("APT::Get::Dsc-Only", false);
2220
2221 // Load the requestd sources into the fetcher
2222 unsigned J = 0;
2223 for (const char **I = CmdL.FileList + 1; *I != 0; I++, J++)
2224 {
2225 string Src;
2226 pkgSrcRecords::Parser *Last = FindSrc(*I,Recs,SrcRecs,Src,*Cache);
2227
2228 if (Last == 0)
2229 return _error->Error(_("Unable to find a source package for %s"),Src.c_str());
2230
2231 string srec = Last->AsStr();
2232 string::size_type pos = srec.find("\nVcs-");
2233 while (pos != string::npos)
2234 {
2235 pos += strlen("\nVcs-");
2236 string vcs = srec.substr(pos,srec.find(":",pos)-pos);
2237 if(vcs == "Browser")
2238 {
2239 pos = srec.find("\nVcs-", pos);
2240 continue;
2241 }
2242 pos += vcs.length()+2;
2243 string::size_type epos = srec.find("\n", pos);
2244 string uri = srec.substr(pos,epos-pos).c_str();
2245 ioprintf(c1out, _("NOTICE: '%s' packaging is maintained in "
2246 "the '%s' version control system at:\n"
2247 "%s\n"),
2248 Src.c_str(), vcs.c_str(), uri.c_str());
2249 if(vcs == "Bzr")
2250 ioprintf(c1out,_("Please use:\n"
2251 "bzr get %s\n"
2252 "to retrieve the latest (possibly unreleased) "
2253 "updates to the package.\n"),
2254 uri.c_str());
2255 break;
2256 }
2257
2258 // Back track
2259 vector<pkgSrcRecords::File> Lst;
2260 if (Last->Files(Lst) == false)
2261 return false;
2262
2263 // Load them into the fetcher
2264 for (vector<pkgSrcRecords::File>::const_iterator I = Lst.begin();
2265 I != Lst.end(); I++)
2266 {
2267 // Try to guess what sort of file it is we are getting.
2268 if (I->Type == "dsc")
2269 {
2270 Dsc[J].Package = Last->Package();
2271 Dsc[J].Version = Last->Version();
2272 Dsc[J].Dsc = flNotDir(I->Path);
2273 }
2274
2275 // Handle the only options so that multiple can be used at once
2276 if (diffOnly == true || tarOnly == true || dscOnly == true)
2277 {
2278 if ((diffOnly == true && I->Type == "diff") ||
2279 (tarOnly == true && I->Type == "tar") ||
2280 (dscOnly == true && I->Type == "dsc"))
2281 ; // Fine, we want this file downloaded
2282 else
2283 continue;
2284 }
2285
2286 // don't download the same uri twice (should this be moved to
2287 // the fetcher interface itself?)
2288 if(queued.find(Last->Index().ArchiveURI(I->Path)) != queued.end())
2289 continue;
2290 queued.insert(Last->Index().ArchiveURI(I->Path));
2291
2292 // check if we have a file with that md5 sum already localy
2293 if(!I->MD5Hash.empty() && FileExists(flNotDir(I->Path)))
2294 {
2295 FileFd Fd(flNotDir(I->Path), FileFd::ReadOnly);
2296 MD5Summation sum;
2297 sum.AddFD(Fd.Fd(), Fd.Size());
2298 Fd.Close();
2299 if((string)sum.Result() == I->MD5Hash)
2300 {
2301 ioprintf(c1out,_("Skipping already downloaded file '%s'\n"),
2302 flNotDir(I->Path).c_str());
2303 continue;
2304 }
2305 }
2306
2307 new pkgAcqFile(&Fetcher,Last->Index().ArchiveURI(I->Path),
2308 I->MD5Hash,I->Size,
2309 Last->Index().SourceInfo(*Last,*I),Src);
2310 }
2311 }
2312
2313 // Display statistics
2314 unsigned long long FetchBytes = Fetcher.FetchNeeded();
2315 unsigned long long FetchPBytes = Fetcher.PartialPresent();
2316 unsigned long long DebBytes = Fetcher.TotalNeeded();
2317
2318 // Check for enough free space
2319 struct statvfs Buf;
2320 string OutputDir = ".";
2321 if (statvfs(OutputDir.c_str(),&Buf) != 0) {
2322 if (errno == EOVERFLOW)
2323 return _error->WarningE("statvfs",_("Couldn't determine free space in %s"),
2324 OutputDir.c_str());
2325 else
2326 return _error->Errno("statvfs",_("Couldn't determine free space in %s"),
2327 OutputDir.c_str());
2328 } else if (unsigned(Buf.f_bfree) < (FetchBytes - FetchPBytes)/Buf.f_bsize)
2329 {
2330 struct statfs Stat;
2331 if (statfs(OutputDir.c_str(),&Stat) != 0
2332 #if HAVE_STRUCT_STATFS_F_TYPE
2333 || unsigned(Stat.f_type) != RAMFS_MAGIC
2334 #endif
2335 )
2336 return _error->Error(_("You don't have enough free space in %s"),
2337 OutputDir.c_str());
2338 }
2339
2340 // Number of bytes
2341 if (DebBytes != FetchBytes)
2342 ioprintf(c1out,_("Need to get %sB/%sB of source archives.\n"),
2343 SizeToStr(FetchBytes).c_str(),SizeToStr(DebBytes).c_str());
2344 else
2345 ioprintf(c1out,_("Need to get %sB of source archives.\n"),
2346 SizeToStr(DebBytes).c_str());
2347
2348 if (_config->FindB("APT::Get::Simulate",false) == true)
2349 {
2350 for (unsigned I = 0; I != J; I++)
2351 ioprintf(cout,_("Fetch source %s\n"),Dsc[I].Package.c_str());
2352 delete[] Dsc;
2353 return true;
2354 }
2355
2356 // Just print out the uris an exit if the --print-uris flag was used
2357 if (_config->FindB("APT::Get::Print-URIs") == true)
2358 {
2359 pkgAcquire::UriIterator I = Fetcher.UriBegin();
2360 for (; I != Fetcher.UriEnd(); I++)
2361 cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' <<
2362 I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl;
2363 delete[] Dsc;
2364 return true;
2365 }
2366
2367 // Run it
2368 if (Fetcher.Run() == pkgAcquire::Failed)
2369 return false;
2370
2371 // Print error messages
2372 bool Failed = false;
2373 for (pkgAcquire::ItemIterator I = Fetcher.ItemsBegin(); I != Fetcher.ItemsEnd(); I++)
2374 {
2375 if ((*I)->Status == pkgAcquire::Item::StatDone &&
2376 (*I)->Complete == true)
2377 continue;
2378
2379 fprintf(stderr,_("Failed to fetch %s %s\n"),(*I)->DescURI().c_str(),
2380 (*I)->ErrorText.c_str());
2381 Failed = true;
2382 }
2383 if (Failed == true)
2384 return _error->Error(_("Failed to fetch some archives."));
2385
2386 if (_config->FindB("APT::Get::Download-only",false) == true)
2387 {
2388 c1out << _("Download complete and in download only mode") << endl;
2389 delete[] Dsc;
2390 return true;
2391 }
2392
2393 // Unpack the sources
2394 pid_t Process = ExecFork();
2395
2396 if (Process == 0)
2397 {
2398 bool const fixBroken = _config->FindB("APT::Get::Fix-Broken", false);
2399 for (unsigned I = 0; I != J; I++)
2400 {
2401 string Dir = Dsc[I].Package + '-' + Cache->VS().UpstreamVersion(Dsc[I].Version.c_str());
2402
2403 // Diff only mode only fetches .diff files
2404 if (_config->FindB("APT::Get::Diff-Only",false) == true ||
2405 _config->FindB("APT::Get::Tar-Only",false) == true ||
2406 Dsc[I].Dsc.empty() == true)
2407 continue;
2408
2409 // See if the package is already unpacked
2410 struct stat Stat;
2411 if (fixBroken == false && stat(Dir.c_str(),&Stat) == 0 &&
2412 S_ISDIR(Stat.st_mode) != 0)
2413 {
2414 ioprintf(c0out ,_("Skipping unpack of already unpacked source in %s\n"),
2415 Dir.c_str());
2416 }
2417 else
2418 {
2419 // Call dpkg-source
2420 char S[500];
2421 snprintf(S,sizeof(S),"%s -x %s",
2422 _config->Find("Dir::Bin::dpkg-source","dpkg-source").c_str(),
2423 Dsc[I].Dsc.c_str());
2424 if (system(S) != 0)
2425 {
2426 fprintf(stderr,_("Unpack command '%s' failed.\n"),S);
2427 fprintf(stderr,_("Check if the 'dpkg-dev' package is installed.\n"));
2428 _exit(1);
2429 }
2430 }
2431
2432 // Try to compile it with dpkg-buildpackage
2433 if (_config->FindB("APT::Get::Compile",false) == true)
2434 {
2435 // Call dpkg-buildpackage
2436 char S[500];
2437 snprintf(S,sizeof(S),"cd %s && %s %s",
2438 Dir.c_str(),
2439 _config->Find("Dir::Bin::dpkg-buildpackage","dpkg-buildpackage").c_str(),
2440 _config->Find("DPkg::Build-Options","-b -uc").c_str());
2441
2442 if (system(S) != 0)
2443 {
2444 fprintf(stderr,_("Build command '%s' failed.\n"),S);
2445 _exit(1);
2446 }
2447 }
2448 }
2449
2450 _exit(0);
2451 }
2452 delete[] Dsc;
2453
2454 // Wait for the subprocess
2455 int Status = 0;
2456 while (waitpid(Process,&Status,0) != Process)
2457 {
2458 if (errno == EINTR)
2459 continue;
2460 return _error->Errno("waitpid","Couldn't wait for subprocess");
2461 }
2462
2463 if (WIFEXITED(Status) == 0 || WEXITSTATUS(Status) != 0)
2464 return _error->Error(_("Child process failed"));
2465
2466 return true;
2467 }
2468 /*}}}*/
2469 // DoBuildDep - Install/removes packages to satisfy build dependencies /*{{{*/
2470 // ---------------------------------------------------------------------
2471 /* This function will look at the build depends list of the given source
2472 package and install the necessary packages to make it true, or fail. */
2473 bool DoBuildDep(CommandLine &CmdL)
2474 {
2475 CacheFile Cache;
2476 if (Cache.Open(true) == false)
2477 return false;
2478
2479 if (CmdL.FileSize() <= 1)
2480 return _error->Error(_("Must specify at least one package to check builddeps for"));
2481
2482 // Read the source list
2483 pkgSourceList List;
2484 if (List.ReadMainList() == false)
2485 return _error->Error(_("The list of sources could not be read."));
2486
2487 // Create the text record parsers
2488 pkgRecords Recs(Cache);
2489 pkgSrcRecords SrcRecs(List);
2490 if (_error->PendingError() == true)
2491 return false;
2492
2493 // Create the download object
2494 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
2495 pkgAcquire Fetcher;
2496 if (Fetcher.Setup(&Stat) == false)
2497 return false;
2498
2499 unsigned J = 0;
2500 bool const StripMultiArch = APT::Configuration::getArchitectures().size() <= 1;
2501 for (const char **I = CmdL.FileList + 1; *I != 0; I++, J++)
2502 {
2503 string Src;
2504 pkgSrcRecords::Parser *Last = FindSrc(*I,Recs,SrcRecs,Src,*Cache);
2505 if (Last == 0)
2506 return _error->Error(_("Unable to find a source package for %s"),Src.c_str());
2507
2508 // Process the build-dependencies
2509 vector<pkgSrcRecords::Parser::BuildDepRec> BuildDeps;
2510 if (Last->BuildDepends(BuildDeps, _config->FindB("APT::Get::Arch-Only", false), StripMultiArch) == false)
2511 return _error->Error(_("Unable to get build-dependency information for %s"),Src.c_str());
2512
2513 // Also ensure that build-essential packages are present
2514 Configuration::Item const *Opts = _config->Tree("APT::Build-Essential");
2515 if (Opts)
2516 Opts = Opts->Child;
2517 for (; Opts; Opts = Opts->Next)
2518 {
2519 if (Opts->Value.empty() == true)
2520 continue;
2521
2522 pkgSrcRecords::Parser::BuildDepRec rec;
2523 rec.Package = Opts->Value;
2524 rec.Type = pkgSrcRecords::Parser::BuildDependIndep;
2525 rec.Op = 0;
2526 BuildDeps.push_back(rec);
2527 }
2528
2529 if (BuildDeps.size() == 0)
2530 {
2531 ioprintf(c1out,_("%s has no build depends.\n"),Src.c_str());
2532 continue;
2533 }
2534
2535 // Install the requested packages
2536 vector <pkgSrcRecords::Parser::BuildDepRec>::iterator D;
2537 pkgProblemResolver Fix(Cache);
2538 bool skipAlternatives = false; // skip remaining alternatives in an or group
2539 for (D = BuildDeps.begin(); D != BuildDeps.end(); D++)
2540 {
2541 bool hasAlternatives = (((*D).Op & pkgCache::Dep::Or) == pkgCache::Dep::Or);
2542
2543 if (skipAlternatives == true)
2544 {
2545 if (!hasAlternatives)
2546 skipAlternatives = false; // end of or group
2547 continue;
2548 }
2549
2550 if ((*D).Type == pkgSrcRecords::Parser::BuildConflict ||
2551 (*D).Type == pkgSrcRecords::Parser::BuildConflictIndep)
2552 {
2553 pkgCache::PkgIterator Pkg = Cache->FindPkg((*D).Package);
2554 // Build-conflicts on unknown packages are silently ignored
2555 if (Pkg.end() == true)
2556 continue;
2557
2558 pkgCache::VerIterator IV = (*Cache)[Pkg].InstVerIter(*Cache);
2559
2560 /*
2561 * Remove if we have an installed version that satisfies the
2562 * version criteria
2563 */
2564 if (IV.end() == false &&
2565 Cache->VS().CheckDep(IV.VerStr(),(*D).Op,(*D).Version.c_str()) == true)
2566 TryToInstallBuildDep(Pkg,Cache,Fix,true,false);
2567 }
2568 else // BuildDep || BuildDepIndep
2569 {
2570 pkgCache::PkgIterator Pkg = Cache->FindPkg((*D).Package);
2571 if (_config->FindB("Debug::BuildDeps",false) == true)
2572 cout << "Looking for " << (*D).Package << "...\n";
2573
2574 if (Pkg.end() == true)
2575 {
2576 if (_config->FindB("Debug::BuildDeps",false) == true)
2577 cout << " (not found)" << (*D).Package << endl;
2578
2579 if (hasAlternatives)
2580 continue;
2581
2582 return _error->Error(_("%s dependency for %s cannot be satisfied "
2583 "because the package %s cannot be found"),
2584 Last->BuildDepType((*D).Type),Src.c_str(),
2585 (*D).Package.c_str());
2586 }
2587
2588 /*
2589 * if there are alternatives, we've already picked one, so skip
2590 * the rest
2591 *
2592 * TODO: this means that if there's a build-dep on A|B and B is
2593 * installed, we'll still try to install A; more importantly,
2594 * if A is currently broken, we cannot go back and try B. To fix
2595 * this would require we do a Resolve cycle for each package we
2596 * add to the install list. Ugh
2597 */
2598
2599 /*
2600 * If this is a virtual package, we need to check the list of
2601 * packages that provide it and see if any of those are
2602 * installed
2603 */
2604 pkgCache::PrvIterator Prv = Pkg.ProvidesList();
2605 for (; Prv.end() != true; Prv++)
2606 {
2607 if (_config->FindB("Debug::BuildDeps",false) == true)
2608 cout << " Checking provider " << Prv.OwnerPkg().FullName() << endl;
2609
2610 if ((*Cache)[Prv.OwnerPkg()].InstVerIter(*Cache).end() == false)
2611 break;
2612 }
2613
2614 // Get installed version and version we are going to install
2615 pkgCache::VerIterator IV = (*Cache)[Pkg].InstVerIter(*Cache);
2616
2617 if ((*D).Version[0] != '\0') {
2618 // Versioned dependency
2619
2620 pkgCache::VerIterator CV = (*Cache)[Pkg].CandidateVerIter(*Cache);
2621
2622 for (; CV.end() != true; CV++)
2623 {
2624 if (Cache->VS().CheckDep(CV.VerStr(),(*D).Op,(*D).Version.c_str()) == true)
2625 break;
2626 }
2627 if (CV.end() == true)
2628 {
2629 if (hasAlternatives)
2630 {
2631 continue;
2632 }
2633 else
2634 {
2635 return _error->Error(_("%s dependency for %s cannot be satisfied "
2636 "because no available versions of package %s "
2637 "can satisfy version requirements"),
2638 Last->BuildDepType((*D).Type),Src.c_str(),
2639 (*D).Package.c_str());
2640 }
2641 }
2642 }
2643 else
2644 {
2645 // Only consider virtual packages if there is no versioned dependency
2646 if (Prv.end() == false)
2647 {
2648 if (_config->FindB("Debug::BuildDeps",false) == true)
2649 cout << " Is provided by installed package " << Prv.OwnerPkg().FullName() << endl;
2650 skipAlternatives = hasAlternatives;
2651 continue;
2652 }
2653 }
2654
2655 if (IV.end() == false)
2656 {
2657 if (_config->FindB("Debug::BuildDeps",false) == true)
2658 cout << " Is installed\n";
2659
2660 if (Cache->VS().CheckDep(IV.VerStr(),(*D).Op,(*D).Version.c_str()) == true)
2661 {
2662 skipAlternatives = hasAlternatives;
2663 continue;
2664 }
2665
2666 if (_config->FindB("Debug::BuildDeps",false) == true)
2667 cout << " ...but the installed version doesn't meet the version requirement\n";
2668
2669 if (((*D).Op & pkgCache::Dep::LessEq) == pkgCache::Dep::LessEq)
2670 {
2671 return _error->Error(_("Failed to satisfy %s dependency for %s: Installed package %s is too new"),
2672 Last->BuildDepType((*D).Type),
2673 Src.c_str(),
2674 Pkg.FullName(true).c_str());
2675 }
2676 }
2677
2678
2679 if (_config->FindB("Debug::BuildDeps",false) == true)
2680 cout << " Trying to install " << (*D).Package << endl;
2681
2682 if (TryToInstallBuildDep(Pkg,Cache,Fix,false,false) == true)
2683 {
2684 // We successfully installed something; skip remaining alternatives
2685 skipAlternatives = hasAlternatives;
2686 if(_config->FindB("APT::Get::Build-Dep-Automatic", false) == true)
2687 Cache->MarkAuto(Pkg, true);
2688 continue;
2689 }
2690 else if (hasAlternatives)
2691 {
2692 if (_config->FindB("Debug::BuildDeps",false) == true)
2693 cout << " Unsatisfiable, trying alternatives\n";
2694 continue;
2695 }
2696 else
2697 {
2698 return _error->Error(_("Failed to satisfy %s dependency for %s: %s"),
2699 Last->BuildDepType((*D).Type),
2700 Src.c_str(),
2701 (*D).Package.c_str());
2702 }
2703 }
2704 }
2705
2706 Fix.InstallProtect();
2707 if (Fix.Resolve(true) == false)
2708 _error->Discard();
2709
2710 // Now we check the state of the packages,
2711 if (Cache->BrokenCount() != 0)
2712 {
2713 ShowBroken(cout, Cache, false);
2714 return _error->Error(_("Build-dependencies for %s could not be satisfied."),*I);
2715 }
2716 }
2717
2718 if (InstallPackages(Cache, false, true) == false)
2719 return _error->Error(_("Failed to process build dependencies"));
2720 return true;
2721 }
2722 /*}}}*/
2723 // DoMoo - Never Ask, Never Tell /*{{{*/
2724 // ---------------------------------------------------------------------
2725 /* */
2726 bool DoMoo(CommandLine &CmdL)
2727 {
2728 cout <<
2729 " (__) \n"
2730 " (oo) \n"
2731 " /------\\/ \n"
2732 " / | || \n"
2733 " * /\\---/\\ \n"
2734 " ~~ ~~ \n"
2735 "....\"Have you mooed today?\"...\n";
2736
2737 return true;
2738 }
2739 /*}}}*/
2740 // ShowHelp - Show a help screen /*{{{*/
2741 // ---------------------------------------------------------------------
2742 /* */
2743 bool ShowHelp(CommandLine &CmdL)
2744 {
2745 ioprintf(cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,VERSION,
2746 COMMON_ARCH,__DATE__,__TIME__);
2747
2748 if (_config->FindB("version") == true)
2749 {
2750 cout << _("Supported modules:") << endl;
2751
2752 for (unsigned I = 0; I != pkgVersioningSystem::GlobalListLen; I++)
2753 {
2754 pkgVersioningSystem *VS = pkgVersioningSystem::GlobalList[I];
2755 if (_system != 0 && _system->VS == VS)
2756 cout << '*';
2757 else
2758 cout << ' ';
2759 cout << "Ver: " << VS->Label << endl;
2760
2761 /* Print out all the packaging systems that will work with
2762 this VS */
2763 for (unsigned J = 0; J != pkgSystem::GlobalListLen; J++)
2764 {
2765 pkgSystem *Sys = pkgSystem::GlobalList[J];
2766 if (_system == Sys)
2767 cout << '*';
2768 else
2769 cout << ' ';
2770 if (Sys->VS->TestCompatibility(*VS) == true)
2771 cout << "Pkg: " << Sys->Label << " (Priority " << Sys->Score(*_config) << ")" << endl;
2772 }
2773 }
2774
2775 for (unsigned I = 0; I != pkgSourceList::Type::GlobalListLen; I++)
2776 {
2777 pkgSourceList::Type *Type = pkgSourceList::Type::GlobalList[I];
2778 cout << " S.L: '" << Type->Name << "' " << Type->Label << endl;
2779 }
2780
2781 for (unsigned I = 0; I != pkgIndexFile::Type::GlobalListLen; I++)
2782 {
2783 pkgIndexFile::Type *Type = pkgIndexFile::Type::GlobalList[I];
2784 cout << " Idx: " << Type->Label << endl;
2785 }
2786
2787 return true;
2788 }
2789
2790 cout <<
2791 _("Usage: apt-get [options] command\n"
2792 " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
2793 " apt-get [options] source pkg1 [pkg2 ...]\n"
2794 "\n"
2795 "apt-get is a simple command line interface for downloading and\n"
2796 "installing packages. The most frequently used commands are update\n"
2797 "and install.\n"
2798 "\n"
2799 "Commands:\n"
2800 " update - Retrieve new lists of packages\n"
2801 " upgrade - Perform an upgrade\n"
2802 " install - Install new packages (pkg is libc6 not libc6.deb)\n"
2803 " remove - Remove packages\n"
2804 " autoremove - Remove automatically all unused packages\n"
2805 " purge - Remove packages and config files\n"
2806 " source - Download source archives\n"
2807 " build-dep - Configure build-dependencies for source packages\n"
2808 " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
2809 " dselect-upgrade - Follow dselect selections\n"
2810 " clean - Erase downloaded archive files\n"
2811 " autoclean - Erase old downloaded archive files\n"
2812 " check - Verify that there are no broken dependencies\n"
2813 " markauto - Mark the given packages as automatically installed\n"
2814 " unmarkauto - Mark the given packages as manually installed\n"
2815 "\n"
2816 "Options:\n"
2817 " -h This help text.\n"
2818 " -q Loggable output - no progress indicator\n"
2819 " -qq No output except for errors\n"
2820 " -d Download only - do NOT install or unpack archives\n"
2821 " -s No-act. Perform ordering simulation\n"
2822 " -y Assume Yes to all queries and do not prompt\n"
2823 " -f Attempt to correct a system with broken dependencies in place\n"
2824 " -m Attempt to continue if archives are unlocatable\n"
2825 " -u Show a list of upgraded packages as well\n"
2826 " -b Build the source package after fetching it\n"
2827 " -V Show verbose version numbers\n"
2828 " -c=? Read this configuration file\n"
2829 " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
2830 "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
2831 "pages for more information and options.\n"
2832 " This APT has Super Cow Powers.\n");
2833 return true;
2834 }
2835 /*}}}*/
2836 // GetInitialize - Initialize things for apt-get /*{{{*/
2837 // ---------------------------------------------------------------------
2838 /* */
2839 void GetInitialize()
2840 {
2841 _config->Set("quiet",0);
2842 _config->Set("help",false);
2843 _config->Set("APT::Get::Download-Only",false);
2844 _config->Set("APT::Get::Simulate",false);
2845 _config->Set("APT::Get::Assume-Yes",false);
2846 _config->Set("APT::Get::Fix-Broken",false);
2847 _config->Set("APT::Get::Force-Yes",false);
2848 _config->Set("APT::Get::List-Cleanup",true);
2849 _config->Set("APT::Get::AutomaticRemove",false);
2850 }
2851 /*}}}*/
2852 // SigWinch - Window size change signal handler /*{{{*/
2853 // ---------------------------------------------------------------------
2854 /* */
2855 void SigWinch(int)
2856 {
2857 // Riped from GNU ls
2858 #ifdef TIOCGWINSZ
2859 struct winsize ws;
2860
2861 if (ioctl(1, TIOCGWINSZ, &ws) != -1 && ws.ws_col >= 5)
2862 ScreenWidth = ws.ws_col - 1;
2863 #endif
2864 }
2865 /*}}}*/
2866 int main(int argc,const char *argv[]) /*{{{*/
2867 {
2868 CommandLine::Args Args[] = {
2869 {'h',"help","help",0},
2870 {'v',"version","version",0},
2871 {'V',"verbose-versions","APT::Get::Show-Versions",0},
2872 {'q',"quiet","quiet",CommandLine::IntLevel},
2873 {'q',"silent","quiet",CommandLine::IntLevel},
2874 {'d',"download-only","APT::Get::Download-Only",0},
2875 {'b',"compile","APT::Get::Compile",0},
2876 {'b',"build","APT::Get::Compile",0},
2877 {'s',"simulate","APT::Get::Simulate",0},
2878 {'s',"just-print","APT::Get::Simulate",0},
2879 {'s',"recon","APT::Get::Simulate",0},
2880 {'s',"dry-run","APT::Get::Simulate",0},
2881 {'s',"no-act","APT::Get::Simulate",0},
2882 {'y',"yes","APT::Get::Assume-Yes",0},
2883 {'y',"assume-yes","APT::Get::Assume-Yes",0},
2884 {'f',"fix-broken","APT::Get::Fix-Broken",0},
2885 {'u',"show-upgraded","APT::Get::Show-Upgraded",0},
2886 {'m',"ignore-missing","APT::Get::Fix-Missing",0},
2887 {'t',"target-release","APT::Default-Release",CommandLine::HasArg},
2888 {'t',"default-release","APT::Default-Release",CommandLine::HasArg},
2889 {0,"download","APT::Get::Download",0},
2890 {0,"fix-missing","APT::Get::Fix-Missing",0},
2891 {0,"ignore-hold","APT::Ignore-Hold",0},
2892 {0,"upgrade","APT::Get::upgrade",0},
2893 {0,"only-upgrade","APT::Get::Only-Upgrade",0},
2894 {0,"force-yes","APT::Get::force-yes",0},
2895 {0,"print-uris","APT::Get::Print-URIs",0},
2896 {0,"diff-only","APT::Get::Diff-Only",0},
2897 {0,"debian-only","APT::Get::Diff-Only",0},
2898 {0,"tar-only","APT::Get::Tar-Only",0},
2899 {0,"dsc-only","APT::Get::Dsc-Only",0},
2900 {0,"purge","APT::Get::Purge",0},
2901 {0,"list-cleanup","APT::Get::List-Cleanup",0},
2902 {0,"reinstall","APT::Get::ReInstall",0},
2903 {0,"trivial-only","APT::Get::Trivial-Only",0},
2904 {0,"remove","APT::Get::Remove",0},
2905 {0,"only-source","APT::Get::Only-Source",0},
2906 {0,"arch-only","APT::Get::Arch-Only",0},
2907 {0,"auto-remove","APT::Get::AutomaticRemove",0},
2908 {0,"allow-unauthenticated","APT::Get::AllowUnauthenticated",0},
2909 {0,"install-recommends","APT::Install-Recommends",CommandLine::Boolean},
2910 {0,"fix-policy","APT::Get::Fix-Policy-Broken",0},
2911 {'c',"config-file",0,CommandLine::ConfigFile},
2912 {'o',"option",0,CommandLine::ArbItem},
2913 {0,0,0,0}};
2914 CommandLine::Dispatch Cmds[] = {{"update",&DoUpdate},
2915 {"upgrade",&DoUpgrade},
2916 {"install",&DoInstall},
2917 {"remove",&DoInstall},
2918 {"purge",&DoInstall},
2919 {"autoremove",&DoInstall},
2920 {"markauto",&DoMarkAuto},
2921 {"unmarkauto",&DoMarkAuto},
2922 {"dist-upgrade",&DoDistUpgrade},
2923 {"dselect-upgrade",&DoDSelectUpgrade},
2924 {"build-dep",&DoBuildDep},
2925 {"clean",&DoClean},
2926 {"autoclean",&DoAutoClean},
2927 {"check",&DoCheck},
2928 {"source",&DoSource},
2929 {"moo",&DoMoo},
2930 {"help",&ShowHelp},
2931 {0,0}};
2932
2933 // Set up gettext support
2934 setlocale(LC_ALL,"");
2935 textdomain(PACKAGE);
2936
2937 // Parse the command line and initialize the package library
2938 CommandLine CmdL(Args,_config);
2939 if (pkgInitConfig(*_config) == false ||
2940 CmdL.Parse(argc,argv) == false ||
2941 pkgInitSystem(*_config,_system) == false)
2942 {
2943 if (_config->FindB("version") == true)
2944 ShowHelp(CmdL);
2945
2946 _error->DumpErrors();
2947 return 100;
2948 }
2949
2950 // See if the help should be shown
2951 if (_config->FindB("help") == true ||
2952 _config->FindB("version") == true ||
2953 CmdL.FileSize() == 0)
2954 {
2955 ShowHelp(CmdL);
2956 return 0;
2957 }
2958
2959 // simulate user-friendly if apt-get has no root privileges
2960 if (getuid() != 0 && _config->FindB("APT::Get::Simulate") == true)
2961 {
2962 if (_config->FindB("APT::Get::Show-User-Simulation-Note",true) == true)
2963 cout << _("NOTE: This is only a simulation!\n"
2964 " apt-get needs root privileges for real execution.\n"
2965 " Keep also in mind that locking is deactivated,\n"
2966 " so don't depend on the relevance to the real current situation!"
2967 ) << std::endl;
2968 _config->Set("Debug::NoLocking",true);
2969 }
2970
2971 // Deal with stdout not being a tty
2972 if (!isatty(STDOUT_FILENO) && _config->FindI("quiet", -1) == -1)
2973 _config->Set("quiet","1");
2974
2975 // Setup the output streams
2976 c0out.rdbuf(cout.rdbuf());
2977 c1out.rdbuf(cout.rdbuf());
2978 c2out.rdbuf(cout.rdbuf());
2979 if (_config->FindI("quiet",0) > 0)
2980 c0out.rdbuf(devnull.rdbuf());
2981 if (_config->FindI("quiet",0) > 1)
2982 c1out.rdbuf(devnull.rdbuf());
2983
2984 // Setup the signals
2985 signal(SIGPIPE,SIG_IGN);
2986 signal(SIGWINCH,SigWinch);
2987 SigWinch(0);
2988
2989 // Match the operation
2990 CmdL.DispatchArg(Cmds);
2991
2992 // Print any errors or warnings found during parsing
2993 bool const Errors = _error->PendingError();
2994 if (_config->FindI("quiet",0) > 0)
2995 _error->DumpErrors();
2996 else
2997 _error->DumpErrors(GlobalError::DEBUG);
2998 return Errors == true ? 100 : 0;
2999 }
3000 /*}}}*/