cmdline/apt-get.cc: add download/changelog to usage
[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 if (Cache.BuildSourceList() == false)
1088 return false;
1089 pkgSourceList *List = Cache.GetSourceList();
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 //TRANSLATOR: The required space between number and unit is already included
1110 // in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
1111 ioprintf(c1out,_("Need to get %sB/%sB of archives.\n"),
1112 SizeToStr(FetchBytes).c_str(),SizeToStr(DebBytes).c_str());
1113 else if (DebBytes != 0)
1114 //TRANSLATOR: The required space between number and unit is already included
1115 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
1116 ioprintf(c1out,_("Need to get %sB of archives.\n"),
1117 SizeToStr(DebBytes).c_str());
1118
1119 // Size delta
1120 if (Cache->UsrSize() >= 0)
1121 //TRANSLATOR: The required space between number and unit is already included
1122 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
1123 ioprintf(c1out,_("After this operation, %sB of additional disk space will be used.\n"),
1124 SizeToStr(Cache->UsrSize()).c_str());
1125 else
1126 //TRANSLATOR: The required space between number and unit is already included
1127 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
1128 ioprintf(c1out,_("After this operation, %sB disk space will be freed.\n"),
1129 SizeToStr(-1*Cache->UsrSize()).c_str());
1130
1131 if (_error->PendingError() == true)
1132 return false;
1133
1134 /* Check for enough free space, but only if we are actually going to
1135 download */
1136 if (_config->FindB("APT::Get::Print-URIs") == false &&
1137 _config->FindB("APT::Get::Download",true) == true)
1138 {
1139 struct statvfs Buf;
1140 string OutputDir = _config->FindDir("Dir::Cache::Archives");
1141 if (statvfs(OutputDir.c_str(),&Buf) != 0) {
1142 if (errno == EOVERFLOW)
1143 return _error->WarningE("statvfs",_("Couldn't determine free space in %s"),
1144 OutputDir.c_str());
1145 else
1146 return _error->Errno("statvfs",_("Couldn't determine free space in %s"),
1147 OutputDir.c_str());
1148 } else if (unsigned(Buf.f_bfree) < (FetchBytes - FetchPBytes)/Buf.f_bsize)
1149 {
1150 struct statfs Stat;
1151 if (statfs(OutputDir.c_str(),&Stat) != 0
1152 #if HAVE_STRUCT_STATFS_F_TYPE
1153 || unsigned(Stat.f_type) != RAMFS_MAGIC
1154 #endif
1155 )
1156 return _error->Error(_("You don't have enough free space in %s."),
1157 OutputDir.c_str());
1158 }
1159 }
1160
1161 // Fail safe check
1162 if (_config->FindI("quiet",0) >= 2 ||
1163 _config->FindB("APT::Get::Assume-Yes",false) == true)
1164 {
1165 if (Fail == true && _config->FindB("APT::Get::Force-Yes",false) == false)
1166 return _error->Error(_("There are problems and -y was used without --force-yes"));
1167 }
1168
1169 if (Essential == true && Safety == true)
1170 {
1171 if (_config->FindB("APT::Get::Trivial-Only",false) == true)
1172 return _error->Error(_("Trivial Only specified but this is not a trivial operation."));
1173
1174 const char *Prompt = _("Yes, do as I say!");
1175 ioprintf(c2out,
1176 _("You are about to do something potentially harmful.\n"
1177 "To continue type in the phrase '%s'\n"
1178 " ?] "),Prompt);
1179 c2out << flush;
1180 if (AnalPrompt(Prompt) == false)
1181 {
1182 c2out << _("Abort.") << endl;
1183 exit(1);
1184 }
1185 }
1186 else
1187 {
1188 // Prompt to continue
1189 if (Ask == true || Fail == true)
1190 {
1191 if (_config->FindB("APT::Get::Trivial-Only",false) == true)
1192 return _error->Error(_("Trivial Only specified but this is not a trivial operation."));
1193
1194 if (_config->FindI("quiet",0) < 2 &&
1195 _config->FindB("APT::Get::Assume-Yes",false) == false)
1196 {
1197 c2out << _("Do you want to continue [Y/n]? ") << flush;
1198
1199 if (YnPrompt() == false)
1200 {
1201 c2out << _("Abort.") << endl;
1202 exit(1);
1203 }
1204 }
1205 }
1206 }
1207
1208 // Just print out the uris an exit if the --print-uris flag was used
1209 if (_config->FindB("APT::Get::Print-URIs") == true)
1210 {
1211 pkgAcquire::UriIterator I = Fetcher.UriBegin();
1212 for (; I != Fetcher.UriEnd(); I++)
1213 cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' <<
1214 I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl;
1215 return true;
1216 }
1217
1218 if (!CheckAuth(Fetcher))
1219 return false;
1220
1221 /* Unlock the dpkg lock if we are not going to be doing an install
1222 after. */
1223 if (_config->FindB("APT::Get::Download-Only",false) == true)
1224 _system->UnLock();
1225
1226 // Run it
1227 while (1)
1228 {
1229 bool Transient = false;
1230 if (_config->FindB("APT::Get::Download",true) == false)
1231 {
1232 for (pkgAcquire::ItemIterator I = Fetcher.ItemsBegin(); I < Fetcher.ItemsEnd();)
1233 {
1234 if ((*I)->Local == true)
1235 {
1236 I++;
1237 continue;
1238 }
1239
1240 // Close the item and check if it was found in cache
1241 (*I)->Finished();
1242 if ((*I)->Complete == false)
1243 Transient = true;
1244
1245 // Clear it out of the fetch list
1246 delete *I;
1247 I = Fetcher.ItemsBegin();
1248 }
1249 }
1250
1251 if (Fetcher.Run() == pkgAcquire::Failed)
1252 return false;
1253
1254 // Print out errors
1255 bool Failed = false;
1256 for (pkgAcquire::ItemIterator I = Fetcher.ItemsBegin(); I != Fetcher.ItemsEnd(); I++)
1257 {
1258 if ((*I)->Status == pkgAcquire::Item::StatDone &&
1259 (*I)->Complete == true)
1260 continue;
1261
1262 if ((*I)->Status == pkgAcquire::Item::StatIdle)
1263 {
1264 Transient = true;
1265 // Failed = true;
1266 continue;
1267 }
1268
1269 fprintf(stderr,_("Failed to fetch %s %s\n"),(*I)->DescURI().c_str(),
1270 (*I)->ErrorText.c_str());
1271 Failed = true;
1272 }
1273
1274 /* If we are in no download mode and missing files and there were
1275 'failures' then the user must specify -m. Furthermore, there
1276 is no such thing as a transient error in no-download mode! */
1277 if (Transient == true &&
1278 _config->FindB("APT::Get::Download",true) == false)
1279 {
1280 Transient = false;
1281 Failed = true;
1282 }
1283
1284 if (_config->FindB("APT::Get::Download-Only",false) == true)
1285 {
1286 if (Failed == true && _config->FindB("APT::Get::Fix-Missing",false) == false)
1287 return _error->Error(_("Some files failed to download"));
1288 c1out << _("Download complete and in download only mode") << endl;
1289 return true;
1290 }
1291
1292 if (Failed == true && _config->FindB("APT::Get::Fix-Missing",false) == false)
1293 {
1294 return _error->Error(_("Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?"));
1295 }
1296
1297 if (Transient == true && Failed == true)
1298 return _error->Error(_("--fix-missing and media swapping is not currently supported"));
1299
1300 // Try to deal with missing package files
1301 if (Failed == true && PM->FixMissing() == false)
1302 {
1303 cerr << _("Unable to correct missing packages.") << endl;
1304 return _error->Error(_("Aborting install."));
1305 }
1306
1307 _system->UnLock();
1308 int status_fd = _config->FindI("APT::Status-Fd",-1);
1309 pkgPackageManager::OrderResult Res = PM->DoInstall(status_fd);
1310 if (Res == pkgPackageManager::Failed || _error->PendingError() == true)
1311 return false;
1312 if (Res == pkgPackageManager::Completed)
1313 break;
1314
1315 // Reload the fetcher object and loop again for media swapping
1316 Fetcher.Shutdown();
1317 if (PM->GetArchives(&Fetcher,List,&Recs) == false)
1318 return false;
1319
1320 _system->Lock();
1321 }
1322
1323 std::set<std::string> const disappearedPkgs = PM->GetDisappearedPackages();
1324 if (disappearedPkgs.empty() == true)
1325 return true;
1326
1327 string disappear;
1328 for (std::set<std::string>::const_iterator d = disappearedPkgs.begin();
1329 d != disappearedPkgs.end(); ++d)
1330 disappear.append(*d).append(" ");
1331
1332 ShowList(c1out, P_("The following package disappeared from your system as\n"
1333 "all files have been overwritten by other packages:",
1334 "The following packages disappeared from your system as\n"
1335 "all files have been overwritten by other packages:", disappearedPkgs.size()), disappear, "");
1336 c0out << _("Note: This is done automatic and on purpose by dpkg.") << std::endl;
1337
1338 return true;
1339 }
1340 /*}}}*/
1341 // TryToInstallBuildDep - Try to install a single package /*{{{*/
1342 // ---------------------------------------------------------------------
1343 /* This used to be inlined in DoInstall, but with the advent of regex package
1344 name matching it was split out.. */
1345 bool TryToInstallBuildDep(pkgCache::PkgIterator Pkg,pkgCacheFile &Cache,
1346 pkgProblemResolver &Fix,bool Remove,bool BrokenFix,
1347 bool AllowFail = true)
1348 {
1349 if (Cache[Pkg].CandidateVer == 0 && Pkg->ProvidesList != 0)
1350 {
1351 CacheSetHelperAPTGet helper(c1out);
1352 helper.showErrors(AllowFail == false);
1353 pkgCache::VerIterator Ver = helper.canNotFindNewestVer(Cache, Pkg);
1354 if (Ver.end() == false)
1355 Pkg = Ver.ParentPkg();
1356 else if (helper.showVirtualPackageErrors(Cache) == false)
1357 return AllowFail;
1358 }
1359
1360 if (Remove == true)
1361 {
1362 TryToRemove RemoveAction(Cache, Fix);
1363 RemoveAction(Pkg.VersionList());
1364 } else if (Cache[Pkg].CandidateVer != 0) {
1365 TryToInstall InstallAction(Cache, Fix, BrokenFix);
1366 InstallAction(Cache[Pkg].CandidateVerIter(Cache));
1367 InstallAction.doAutoInstall();
1368 } else
1369 return AllowFail;
1370
1371 return true;
1372 }
1373 /*}}}*/
1374 // FindSrc - Find a source record /*{{{*/
1375 // ---------------------------------------------------------------------
1376 /* */
1377 pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs,
1378 pkgSrcRecords &SrcRecs,string &Src,
1379 pkgDepCache &Cache)
1380 {
1381 string VerTag;
1382 string DefRel = _config->Find("APT::Default-Release");
1383 string TmpSrc = Name;
1384
1385 // extract the version/release from the pkgname
1386 const size_t found = TmpSrc.find_last_of("/=");
1387 if (found != string::npos) {
1388 if (TmpSrc[found] == '/')
1389 DefRel = TmpSrc.substr(found+1);
1390 else
1391 VerTag = TmpSrc.substr(found+1);
1392 TmpSrc = TmpSrc.substr(0,found);
1393 }
1394
1395 /* Lookup the version of the package we would install if we were to
1396 install a version and determine the source package name, then look
1397 in the archive for a source package of the same name. */
1398 bool MatchSrcOnly = _config->FindB("APT::Get::Only-Source");
1399 const pkgCache::PkgIterator Pkg = Cache.FindPkg(TmpSrc);
1400 if (MatchSrcOnly == false && Pkg.end() == false)
1401 {
1402 if(VerTag.empty() == false || DefRel.empty() == false)
1403 {
1404 bool fuzzy = false;
1405 // we have a default release, try to locate the pkg. we do it like
1406 // this because GetCandidateVer() will not "downgrade", that means
1407 // "apt-get source -t stable apt" won't work on a unstable system
1408 for (pkgCache::VerIterator Ver = Pkg.VersionList();; Ver++)
1409 {
1410 // try first only exact matches, later fuzzy matches
1411 if (Ver.end() == true)
1412 {
1413 if (fuzzy == true)
1414 break;
1415 fuzzy = true;
1416 Ver = Pkg.VersionList();
1417 // exit right away from the Pkg.VersionList() loop if we
1418 // don't have any versions
1419 if (Ver.end() == true)
1420 break;
1421 }
1422 // We match against a concrete version (or a part of this version)
1423 if (VerTag.empty() == false &&
1424 (fuzzy == true || Cache.VS().CmpVersion(VerTag, Ver.VerStr()) != 0) && // exact match
1425 (fuzzy == false || strncmp(VerTag.c_str(), Ver.VerStr(), VerTag.size()) != 0)) // fuzzy match
1426 continue;
1427
1428 for (pkgCache::VerFileIterator VF = Ver.FileList();
1429 VF.end() == false; VF++)
1430 {
1431 /* If this is the status file, and the current version is not the
1432 version in the status file (ie it is not installed, or somesuch)
1433 then it is not a candidate for installation, ever. This weeds
1434 out bogus entries that may be due to config-file states, or
1435 other. */
1436 if ((VF.File()->Flags & pkgCache::Flag::NotSource) ==
1437 pkgCache::Flag::NotSource && Pkg.CurrentVer() != Ver)
1438 continue;
1439
1440 // or we match against a release
1441 if(VerTag.empty() == false ||
1442 (VF.File().Archive() != 0 && VF.File().Archive() == DefRel) ||
1443 (VF.File().Codename() != 0 && VF.File().Codename() == DefRel))
1444 {
1445 pkgRecords::Parser &Parse = Recs.Lookup(VF);
1446 Src = Parse.SourcePkg();
1447 // no SourcePkg name, so it is the "binary" name
1448 if (Src.empty() == true)
1449 Src = TmpSrc;
1450 // the Version we have is possibly fuzzy or includes binUploads,
1451 // so we use the Version of the SourcePkg (empty if same as package)
1452 VerTag = Parse.SourceVer();
1453 if (VerTag.empty() == true)
1454 VerTag = Ver.VerStr();
1455 break;
1456 }
1457 }
1458 if (Src.empty() == false)
1459 break;
1460 }
1461 if (Src.empty() == true)
1462 {
1463 // Sources files have no codename information
1464 if (VerTag.empty() == true && DefRel.empty() == false)
1465 {
1466 _error->Error(_("Ignore unavailable target release '%s' of package '%s'"), DefRel.c_str(), TmpSrc.c_str());
1467 return 0;
1468 }
1469 }
1470 }
1471 if (Src.empty() == true)
1472 {
1473 // if we don't have found a fitting package yet so we will
1474 // choose a good candidate and proceed with that.
1475 // Maybe we will find a source later on with the right VerTag
1476 pkgCache::VerIterator Ver = Cache.GetCandidateVer(Pkg);
1477 if (Ver.end() == false)
1478 {
1479 pkgRecords::Parser &Parse = Recs.Lookup(Ver.FileList());
1480 Src = Parse.SourcePkg();
1481 if (VerTag.empty() == true)
1482 VerTag = Parse.SourceVer();
1483 }
1484 }
1485 }
1486
1487 if (Src.empty() == true)
1488 Src = TmpSrc;
1489 else
1490 {
1491 /* if we have a source pkg name, make sure to only search
1492 for srcpkg names, otherwise apt gets confused if there
1493 is a binary package "pkg1" and a source package "pkg1"
1494 with the same name but that comes from different packages */
1495 MatchSrcOnly = true;
1496 if (Src != TmpSrc)
1497 {
1498 ioprintf(c1out, _("Picking '%s' as source package instead of '%s'\n"), Src.c_str(), TmpSrc.c_str());
1499 }
1500 }
1501
1502 // The best hit
1503 pkgSrcRecords::Parser *Last = 0;
1504 unsigned long Offset = 0;
1505 string Version;
1506
1507 /* Iterate over all of the hits, which includes the resulting
1508 binary packages in the search */
1509 pkgSrcRecords::Parser *Parse;
1510 while (true)
1511 {
1512 SrcRecs.Restart();
1513 while ((Parse = SrcRecs.Find(Src.c_str(), MatchSrcOnly)) != 0)
1514 {
1515 const string Ver = Parse->Version();
1516
1517 // Ignore all versions which doesn't fit
1518 if (VerTag.empty() == false &&
1519 Cache.VS().CmpVersion(VerTag, Ver) != 0) // exact match
1520 continue;
1521
1522 // Newer version or an exact match? Save the hit
1523 if (Last == 0 || Cache.VS().CmpVersion(Version,Ver) < 0) {
1524 Last = Parse;
1525 Offset = Parse->Offset();
1526 Version = Ver;
1527 }
1528
1529 // was the version check above an exact match? If so, we don't need to look further
1530 if (VerTag.empty() == false && VerTag.size() == Ver.size())
1531 break;
1532 }
1533 if (Last != 0 || VerTag.empty() == true)
1534 break;
1535 //if (VerTag.empty() == false && Last == 0)
1536 _error->Error(_("Ignore unavailable version '%s' of package '%s'"), VerTag.c_str(), TmpSrc.c_str());
1537 return 0;
1538 }
1539
1540 if (Last == 0 || Last->Jump(Offset) == false)
1541 return 0;
1542
1543 return Last;
1544 }
1545 /*}}}*/
1546 // DoUpdate - Update the package lists /*{{{*/
1547 // ---------------------------------------------------------------------
1548 /* */
1549 bool DoUpdate(CommandLine &CmdL)
1550 {
1551 if (CmdL.FileSize() != 1)
1552 return _error->Error(_("The update command takes no arguments"));
1553
1554 CacheFile Cache;
1555
1556 // Get the source list
1557 if (Cache.BuildSourceList() == false)
1558 return false;
1559 pkgSourceList *List = Cache.GetSourceList();
1560
1561 // Create the progress
1562 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
1563
1564 // Just print out the uris an exit if the --print-uris flag was used
1565 if (_config->FindB("APT::Get::Print-URIs") == true)
1566 {
1567 // force a hashsum for compatibility reasons
1568 _config->CndSet("Acquire::ForceHash", "md5sum");
1569
1570 // get a fetcher
1571 pkgAcquire Fetcher;
1572 if (Fetcher.Setup(&Stat) == false)
1573 return false;
1574
1575 // Populate it with the source selection and get all Indexes
1576 // (GetAll=true)
1577 if (List->GetIndexes(&Fetcher,true) == false)
1578 return false;
1579
1580 pkgAcquire::UriIterator I = Fetcher.UriBegin();
1581 for (; I != Fetcher.UriEnd(); I++)
1582 cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' <<
1583 I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl;
1584 return true;
1585 }
1586
1587 // do the work
1588 if (_config->FindB("APT::Get::Download",true) == true)
1589 ListUpdate(Stat, *List);
1590
1591 // Rebuild the cache.
1592 if (Cache.BuildCaches() == false)
1593 return false;
1594
1595 return true;
1596 }
1597 /*}}}*/
1598 // DoAutomaticRemove - Remove all automatic unused packages /*{{{*/
1599 // ---------------------------------------------------------------------
1600 /* Remove unused automatic packages */
1601 bool DoAutomaticRemove(CacheFile &Cache)
1602 {
1603 bool Debug = _config->FindI("Debug::pkgAutoRemove",false);
1604 bool doAutoRemove = _config->FindB("APT::Get::AutomaticRemove", false);
1605 bool hideAutoRemove = _config->FindB("APT::Get::HideAutoRemove");
1606
1607 pkgDepCache::ActionGroup group(*Cache);
1608 if(Debug)
1609 std::cout << "DoAutomaticRemove()" << std::endl;
1610
1611 // we don't want to autoremove and we don't want to see it, so why calculating?
1612 if (doAutoRemove == false && hideAutoRemove == true)
1613 return true;
1614
1615 if (doAutoRemove == true &&
1616 _config->FindB("APT::Get::Remove",true) == false)
1617 {
1618 c1out << _("We are not supposed to delete stuff, can't start "
1619 "AutoRemover") << std::endl;
1620 return false;
1621 }
1622
1623 bool purgePkgs = _config->FindB("APT::Get::Purge", false);
1624 bool smallList = (hideAutoRemove == false &&
1625 strcasecmp(_config->Find("APT::Get::HideAutoRemove","").c_str(),"small") == 0);
1626
1627 string autoremovelist, autoremoveversions;
1628 unsigned long autoRemoveCount = 0;
1629 // look over the cache to see what can be removed
1630 for (pkgCache::PkgIterator Pkg = Cache->PkgBegin(); ! Pkg.end(); ++Pkg)
1631 {
1632 if (Cache[Pkg].Garbage)
1633 {
1634 if(Pkg.CurrentVer() != 0 || Cache[Pkg].Install())
1635 if(Debug)
1636 std::cout << "We could delete %s" << Pkg.FullName(true).c_str() << std::endl;
1637
1638 if (doAutoRemove)
1639 {
1640 if(Pkg.CurrentVer() != 0 &&
1641 Pkg->CurrentState != pkgCache::State::ConfigFiles)
1642 Cache->MarkDelete(Pkg, purgePkgs);
1643 else
1644 Cache->MarkKeep(Pkg, false, false);
1645 }
1646 else
1647 {
1648 // only show stuff in the list that is not yet marked for removal
1649 if(Cache[Pkg].Delete() == false)
1650 {
1651 ++autoRemoveCount;
1652 // we don't need to fill the strings if we don't need them
1653 if (smallList == false)
1654 {
1655 autoremovelist += Pkg.FullName(true) + " ";
1656 autoremoveversions += string(Cache[Pkg].CandVersion) + "\n";
1657 }
1658 }
1659 }
1660 }
1661 }
1662 // if we don't remove them, we should show them!
1663 if (doAutoRemove == false && (autoremovelist.empty() == false || autoRemoveCount != 0))
1664 {
1665 if (smallList == false)
1666 ShowList(c1out, P_("The following package was automatically installed and is no longer required:",
1667 "The following packages were automatically installed and are no longer required:",
1668 autoRemoveCount), autoremovelist, autoremoveversions);
1669 else
1670 ioprintf(c1out, P_("%lu package was automatically installed and is no longer required.\n",
1671 "%lu packages were automatically installed and are no longer required.\n", autoRemoveCount), autoRemoveCount);
1672 c1out << _("Use 'apt-get autoremove' to remove them.") << std::endl;
1673 }
1674 // Now see if we had destroyed anything (if we had done anything)
1675 else if (Cache->BrokenCount() != 0)
1676 {
1677 c1out << _("Hmm, seems like the AutoRemover destroyed something which really\n"
1678 "shouldn't happen. Please file a bug report against apt.") << endl;
1679 c1out << endl;
1680 c1out << _("The following information may help to resolve the situation:") << endl;
1681 c1out << endl;
1682 ShowBroken(c1out,Cache,false);
1683
1684 return _error->Error(_("Internal Error, AutoRemover broke stuff"));
1685 }
1686 return true;
1687 }
1688 /*}}}*/
1689 // DoUpgrade - Upgrade all packages /*{{{*/
1690 // ---------------------------------------------------------------------
1691 /* Upgrade all packages without installing new packages or erasing old
1692 packages */
1693 bool DoUpgrade(CommandLine &CmdL)
1694 {
1695 CacheFile Cache;
1696 if (Cache.OpenForInstall() == false || Cache.CheckDeps() == false)
1697 return false;
1698
1699 // Do the upgrade
1700 if (pkgAllUpgrade(Cache) == false)
1701 {
1702 ShowBroken(c1out,Cache,false);
1703 return _error->Error(_("Internal error, AllUpgrade broke stuff"));
1704 }
1705
1706 return InstallPackages(Cache,true);
1707 }
1708 /*}}}*/
1709 // DoInstall - Install packages from the command line /*{{{*/
1710 // ---------------------------------------------------------------------
1711 /* Install named packages */
1712 bool DoInstall(CommandLine &CmdL)
1713 {
1714 CacheFile Cache;
1715 if (Cache.OpenForInstall() == false ||
1716 Cache.CheckDeps(CmdL.FileSize() != 1) == false)
1717 return false;
1718
1719 // Enter the special broken fixing mode if the user specified arguments
1720 bool BrokenFix = false;
1721 if (Cache->BrokenCount() != 0)
1722 BrokenFix = true;
1723
1724 pkgProblemResolver Fix(Cache);
1725
1726 static const unsigned short MOD_REMOVE = 1;
1727 static const unsigned short MOD_INSTALL = 2;
1728
1729 unsigned short fallback = MOD_INSTALL;
1730 if (strcasecmp(CmdL.FileList[0],"remove") == 0)
1731 fallback = MOD_REMOVE;
1732 else if (strcasecmp(CmdL.FileList[0], "purge") == 0)
1733 {
1734 _config->Set("APT::Get::Purge", true);
1735 fallback = MOD_REMOVE;
1736 }
1737 else if (strcasecmp(CmdL.FileList[0], "autoremove") == 0)
1738 {
1739 _config->Set("APT::Get::AutomaticRemove", "true");
1740 fallback = MOD_REMOVE;
1741 }
1742
1743 std::list<APT::VersionSet::Modifier> mods;
1744 mods.push_back(APT::VersionSet::Modifier(MOD_INSTALL, "+",
1745 APT::VersionSet::Modifier::POSTFIX, APT::VersionSet::CANDIDATE));
1746 mods.push_back(APT::VersionSet::Modifier(MOD_REMOVE, "-",
1747 APT::VersionSet::Modifier::POSTFIX, APT::VersionSet::NEWEST));
1748 CacheSetHelperAPTGet helper(c0out);
1749 std::map<unsigned short, APT::VersionSet> verset = APT::VersionSet::GroupedFromCommandLine(Cache,
1750 CmdL.FileList + 1, mods, fallback, helper);
1751
1752 if (_error->PendingError() == true)
1753 {
1754 helper.showVirtualPackageErrors(Cache);
1755 return false;
1756 }
1757
1758 unsigned short order[] = { 0, 0, 0 };
1759 if (fallback == MOD_INSTALL) {
1760 order[0] = MOD_INSTALL;
1761 order[1] = MOD_REMOVE;
1762 } else {
1763 order[0] = MOD_REMOVE;
1764 order[1] = MOD_INSTALL;
1765 }
1766
1767 TryToInstall InstallAction(Cache, Fix, BrokenFix);
1768 TryToRemove RemoveAction(Cache, Fix);
1769
1770 // new scope for the ActionGroup
1771 {
1772 pkgDepCache::ActionGroup group(Cache);
1773
1774 for (unsigned short i = 0; order[i] != 0; ++i)
1775 {
1776 if (order[i] == MOD_INSTALL) {
1777 InstallAction = std::for_each(verset[MOD_INSTALL].begin(), verset[MOD_INSTALL].end(), InstallAction);
1778 InstallAction.doAutoInstall();
1779 }
1780 else if (order[i] == MOD_REMOVE)
1781 RemoveAction = std::for_each(verset[MOD_REMOVE].begin(), verset[MOD_REMOVE].end(), RemoveAction);
1782 }
1783
1784 if (_error->PendingError() == true)
1785 return false;
1786
1787 /* If we are in the Broken fixing mode we do not attempt to fix the
1788 problems. This is if the user invoked install without -f and gave
1789 packages */
1790 if (BrokenFix == true && Cache->BrokenCount() != 0)
1791 {
1792 c1out << _("You might want to run 'apt-get -f install' to correct these:") << endl;
1793 ShowBroken(c1out,Cache,false);
1794
1795 return _error->Error(_("Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution)."));
1796 }
1797
1798 // Call the scored problem resolver
1799 Fix.InstallProtect();
1800 if (Fix.Resolve(true) == false)
1801 _error->Discard();
1802
1803 // Now we check the state of the packages,
1804 if (Cache->BrokenCount() != 0)
1805 {
1806 c1out <<
1807 _("Some packages could not be installed. This may mean that you have\n"
1808 "requested an impossible situation or if you are using the unstable\n"
1809 "distribution that some required packages have not yet been created\n"
1810 "or been moved out of Incoming.") << endl;
1811 /*
1812 if (Packages == 1)
1813 {
1814 c1out << endl;
1815 c1out <<
1816 _("Since you only requested a single operation it is extremely likely that\n"
1817 "the package is simply not installable and a bug report against\n"
1818 "that package should be filed.") << endl;
1819 }
1820 */
1821
1822 c1out << _("The following information may help to resolve the situation:") << endl;
1823 c1out << endl;
1824 ShowBroken(c1out,Cache,false);
1825 return _error->Error(_("Broken packages"));
1826 }
1827 }
1828 if (!DoAutomaticRemove(Cache))
1829 return false;
1830
1831 /* Print out a list of packages that are going to be installed extra
1832 to what the user asked */
1833 if (Cache->InstCount() != verset[MOD_INSTALL].size())
1834 {
1835 string List;
1836 string VersionsList;
1837 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
1838 {
1839 pkgCache::PkgIterator I(Cache,Cache.List[J]);
1840 if ((*Cache)[I].Install() == false)
1841 continue;
1842
1843 const char **J;
1844 for (J = CmdL.FileList + 1; *J != 0; J++)
1845 if (strcmp(*J,I.Name()) == 0)
1846 break;
1847
1848 if (*J == 0) {
1849 List += I.FullName(true) + " ";
1850 VersionsList += string(Cache[I].CandVersion) + "\n";
1851 }
1852 }
1853
1854 ShowList(c1out,_("The following extra packages will be installed:"),List,VersionsList);
1855 }
1856
1857 /* Print out a list of suggested and recommended packages */
1858 {
1859 string SuggestsList, RecommendsList, List;
1860 string SuggestsVersions, RecommendsVersions;
1861 for (unsigned J = 0; J < Cache->Head().PackageCount; J++)
1862 {
1863 pkgCache::PkgIterator Pkg(Cache,Cache.List[J]);
1864
1865 /* Just look at the ones we want to install */
1866 if ((*Cache)[Pkg].Install() == false)
1867 continue;
1868
1869 // get the recommends/suggests for the candidate ver
1870 pkgCache::VerIterator CV = (*Cache)[Pkg].CandidateVerIter(*Cache);
1871 for (pkgCache::DepIterator D = CV.DependsList(); D.end() == false; )
1872 {
1873 pkgCache::DepIterator Start;
1874 pkgCache::DepIterator End;
1875 D.GlobOr(Start,End); // advances D
1876
1877 // FIXME: we really should display a or-group as a or-group to the user
1878 // the problem is that ShowList is incapable of doing this
1879 string RecommendsOrList,RecommendsOrVersions;
1880 string SuggestsOrList,SuggestsOrVersions;
1881 bool foundInstalledInOrGroup = false;
1882 for(;;)
1883 {
1884 /* Skip if package is installed already, or is about to be */
1885 string target = Start.TargetPkg().FullName(true) + " ";
1886 pkgCache::PkgIterator const TarPkg = Start.TargetPkg();
1887 if (TarPkg->SelectedState == pkgCache::State::Install ||
1888 TarPkg->SelectedState == pkgCache::State::Hold ||
1889 Cache[Start.TargetPkg()].Install())
1890 {
1891 foundInstalledInOrGroup=true;
1892 break;
1893 }
1894
1895 /* Skip if we already saw it */
1896 if (int(SuggestsList.find(target)) != -1 || int(RecommendsList.find(target)) != -1)
1897 {
1898 foundInstalledInOrGroup=true;
1899 break;
1900 }
1901
1902 // this is a dep on a virtual pkg, check if any package that provides it
1903 // should be installed
1904 if(Start.TargetPkg().ProvidesList() != 0)
1905 {
1906 pkgCache::PrvIterator I = Start.TargetPkg().ProvidesList();
1907 for (; I.end() == false; I++)
1908 {
1909 pkgCache::PkgIterator Pkg = I.OwnerPkg();
1910 if (Cache[Pkg].CandidateVerIter(Cache) == I.OwnerVer() &&
1911 Pkg.CurrentVer() != 0)
1912 foundInstalledInOrGroup=true;
1913 }
1914 }
1915
1916 if (Start->Type == pkgCache::Dep::Suggests)
1917 {
1918 SuggestsOrList += target;
1919 SuggestsOrVersions += string(Cache[Start.TargetPkg()].CandVersion) + "\n";
1920 }
1921
1922 if (Start->Type == pkgCache::Dep::Recommends)
1923 {
1924 RecommendsOrList += target;
1925 RecommendsOrVersions += string(Cache[Start.TargetPkg()].CandVersion) + "\n";
1926 }
1927
1928 if (Start >= End)
1929 break;
1930 Start++;
1931 }
1932
1933 if(foundInstalledInOrGroup == false)
1934 {
1935 RecommendsList += RecommendsOrList;
1936 RecommendsVersions += RecommendsOrVersions;
1937 SuggestsList += SuggestsOrList;
1938 SuggestsVersions += SuggestsOrVersions;
1939 }
1940
1941 }
1942 }
1943
1944 ShowList(c1out,_("Suggested packages:"),SuggestsList,SuggestsVersions);
1945 ShowList(c1out,_("Recommended packages:"),RecommendsList,RecommendsVersions);
1946
1947 }
1948
1949 // if nothing changed in the cache, but only the automark information
1950 // we write the StateFile here, otherwise it will be written in
1951 // cache.commit()
1952 if (InstallAction.AutoMarkChanged > 0 &&
1953 Cache->DelCount() == 0 && Cache->InstCount() == 0 &&
1954 Cache->BadCount() == 0 &&
1955 _config->FindB("APT::Get::Simulate",false) == false)
1956 Cache->writeStateFile(NULL);
1957
1958 // See if we need to prompt
1959 // FIXME: check if really the packages in the set are going to be installed
1960 if (Cache->InstCount() == verset[MOD_INSTALL].size() && Cache->DelCount() == 0)
1961 return InstallPackages(Cache,false,false);
1962
1963 return InstallPackages(Cache,false);
1964 }
1965
1966 /* mark packages as automatically/manually installed. */
1967 bool DoMarkAuto(CommandLine &CmdL)
1968 {
1969 bool Action = true;
1970 int AutoMarkChanged = 0;
1971 OpTextProgress progress;
1972 CacheFile Cache;
1973 if (Cache.Open() == false)
1974 return false;
1975
1976 if (strcasecmp(CmdL.FileList[0],"markauto") == 0)
1977 Action = true;
1978 else if (strcasecmp(CmdL.FileList[0],"unmarkauto") == 0)
1979 Action = false;
1980
1981 for (const char **I = CmdL.FileList + 1; *I != 0; I++)
1982 {
1983 const char *S = *I;
1984 // Locate the package
1985 pkgCache::PkgIterator Pkg = Cache->FindPkg(S);
1986 if (Pkg.end() == true) {
1987 return _error->Error(_("Couldn't find package %s"),S);
1988 }
1989 else
1990 {
1991 if (!Action)
1992 ioprintf(c1out,_("%s set to manually installed.\n"), Pkg.Name());
1993 else
1994 ioprintf(c1out,_("%s set to automatically installed.\n"),
1995 Pkg.Name());
1996
1997 Cache->MarkAuto(Pkg,Action);
1998 AutoMarkChanged++;
1999 }
2000 }
2001 if (AutoMarkChanged && ! _config->FindB("APT::Get::Simulate",false))
2002 return Cache->writeStateFile(NULL);
2003 return false;
2004 }
2005 /*}}}*/
2006 // DoDistUpgrade - Automatic smart upgrader /*{{{*/
2007 // ---------------------------------------------------------------------
2008 /* Intelligent upgrader that will install and remove packages at will */
2009 bool DoDistUpgrade(CommandLine &CmdL)
2010 {
2011 CacheFile Cache;
2012 if (Cache.OpenForInstall() == false || Cache.CheckDeps() == false)
2013 return false;
2014
2015 c0out << _("Calculating upgrade... ") << flush;
2016 if (pkgDistUpgrade(*Cache) == false)
2017 {
2018 c0out << _("Failed") << endl;
2019 ShowBroken(c1out,Cache,false);
2020 return false;
2021 }
2022
2023 c0out << _("Done") << endl;
2024
2025 return InstallPackages(Cache,true);
2026 }
2027 /*}}}*/
2028 // DoDSelectUpgrade - Do an upgrade by following dselects selections /*{{{*/
2029 // ---------------------------------------------------------------------
2030 /* Follows dselect's selections */
2031 bool DoDSelectUpgrade(CommandLine &CmdL)
2032 {
2033 CacheFile Cache;
2034 if (Cache.OpenForInstall() == false || Cache.CheckDeps() == false)
2035 return false;
2036
2037 pkgDepCache::ActionGroup group(Cache);
2038
2039 // Install everything with the install flag set
2040 pkgCache::PkgIterator I = Cache->PkgBegin();
2041 for (;I.end() != true; I++)
2042 {
2043 /* Install the package only if it is a new install, the autoupgrader
2044 will deal with the rest */
2045 if (I->SelectedState == pkgCache::State::Install)
2046 Cache->MarkInstall(I,false);
2047 }
2048
2049 /* Now install their deps too, if we do this above then order of
2050 the status file is significant for | groups */
2051 for (I = Cache->PkgBegin();I.end() != true; I++)
2052 {
2053 /* Install the package only if it is a new install, the autoupgrader
2054 will deal with the rest */
2055 if (I->SelectedState == pkgCache::State::Install)
2056 Cache->MarkInstall(I,true);
2057 }
2058
2059 // Apply erasures now, they override everything else.
2060 for (I = Cache->PkgBegin();I.end() != true; I++)
2061 {
2062 // Remove packages
2063 if (I->SelectedState == pkgCache::State::DeInstall ||
2064 I->SelectedState == pkgCache::State::Purge)
2065 Cache->MarkDelete(I,I->SelectedState == pkgCache::State::Purge);
2066 }
2067
2068 /* Resolve any problems that dselect created, allupgrade cannot handle
2069 such things. We do so quite agressively too.. */
2070 if (Cache->BrokenCount() != 0)
2071 {
2072 pkgProblemResolver Fix(Cache);
2073
2074 // Hold back held packages.
2075 if (_config->FindB("APT::Ignore-Hold",false) == false)
2076 {
2077 for (pkgCache::PkgIterator I = Cache->PkgBegin(); I.end() == false; I++)
2078 {
2079 if (I->SelectedState == pkgCache::State::Hold)
2080 {
2081 Fix.Protect(I);
2082 Cache->MarkKeep(I);
2083 }
2084 }
2085 }
2086
2087 if (Fix.Resolve() == false)
2088 {
2089 ShowBroken(c1out,Cache,false);
2090 return _error->Error(_("Internal error, problem resolver broke stuff"));
2091 }
2092 }
2093
2094 // Now upgrade everything
2095 if (pkgAllUpgrade(Cache) == false)
2096 {
2097 ShowBroken(c1out,Cache,false);
2098 return _error->Error(_("Internal error, problem resolver broke stuff"));
2099 }
2100
2101 return InstallPackages(Cache,false);
2102 }
2103 /*}}}*/
2104 // DoClean - Remove download archives /*{{{*/
2105 // ---------------------------------------------------------------------
2106 /* */
2107 bool DoClean(CommandLine &CmdL)
2108 {
2109 if (_config->FindB("APT::Get::Simulate") == true)
2110 {
2111 cout << "Del " << _config->FindDir("Dir::Cache::archives") << "* " <<
2112 _config->FindDir("Dir::Cache::archives") << "partial/*" << endl;
2113 return true;
2114 }
2115
2116 // Lock the archive directory
2117 FileFd Lock;
2118 if (_config->FindB("Debug::NoLocking",false) == false)
2119 {
2120 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
2121 if (_error->PendingError() == true)
2122 return _error->Error(_("Unable to lock the download directory"));
2123 }
2124
2125 pkgAcquire Fetcher;
2126 Fetcher.Clean(_config->FindDir("Dir::Cache::archives"));
2127 Fetcher.Clean(_config->FindDir("Dir::Cache::archives") + "partial/");
2128 return true;
2129 }
2130 /*}}}*/
2131 // DoAutoClean - Smartly remove downloaded archives /*{{{*/
2132 // ---------------------------------------------------------------------
2133 /* This is similar to clean but it only purges things that cannot be
2134 downloaded, that is old versions of cached packages. */
2135 class LogCleaner : public pkgArchiveCleaner
2136 {
2137 protected:
2138 virtual void Erase(const char *File,string Pkg,string Ver,struct stat &St)
2139 {
2140 c1out << "Del " << Pkg << " " << Ver << " [" << SizeToStr(St.st_size) << "B]" << endl;
2141
2142 if (_config->FindB("APT::Get::Simulate") == false)
2143 unlink(File);
2144 };
2145 };
2146
2147 bool DoAutoClean(CommandLine &CmdL)
2148 {
2149 // Lock the archive directory
2150 FileFd Lock;
2151 if (_config->FindB("Debug::NoLocking",false) == false)
2152 {
2153 Lock.Fd(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
2154 if (_error->PendingError() == true)
2155 return _error->Error(_("Unable to lock the download directory"));
2156 }
2157
2158 CacheFile Cache;
2159 if (Cache.Open() == false)
2160 return false;
2161
2162 LogCleaner Cleaner;
2163
2164 return Cleaner.Go(_config->FindDir("Dir::Cache::archives"),*Cache) &&
2165 Cleaner.Go(_config->FindDir("Dir::Cache::archives") + "partial/",*Cache);
2166 }
2167 /*}}}*/
2168 // DoDownload - download a binary /*{{{*/
2169 // ---------------------------------------------------------------------
2170 bool DoDownload(CommandLine &CmdL)
2171 {
2172 CacheFile Cache;
2173 if (Cache.ReadOnlyOpen() == false)
2174 return false;
2175
2176 APT::CacheSetHelper helper(c0out);
2177 APT::VersionSet verset = APT::VersionSet::FromCommandLine(Cache,
2178 CmdL.FileList + 1, APT::VersionSet::CANDIDATE, helper);
2179 pkgAcquire Fetcher;
2180 AcqTextStatus Stat(ScreenWidth, _config->FindI("quiet",0));
2181 Fetcher.Setup(&Stat);
2182
2183 if (verset.empty() == true)
2184 return false;
2185
2186 bool result = true;
2187 pkgRecords Recs(Cache);
2188 pkgSourceList *SrcList = Cache.GetSourceList();
2189 for (APT::VersionSet::const_iterator Ver = verset.begin();
2190 Ver != verset.end();
2191 ++Ver)
2192 {
2193 string descr;
2194 // get the right version
2195 pkgCache::PkgIterator Pkg = Ver.ParentPkg();
2196 pkgRecords::Parser &rec=Recs.Lookup(Ver.FileList());
2197 pkgCache::VerFileIterator Vf = Ver.FileList();
2198 if (Vf.end() == true)
2199 return _error->Error("Can not find VerFile");
2200 pkgCache::PkgFileIterator F = Vf.File();
2201 pkgIndexFile *index;
2202 if(SrcList->FindIndex(F, index) == false)
2203 return _error->Error("FindIndex failed");
2204 string uri = index->ArchiveURI(rec.FileName());
2205 strprintf(descr, _("Downloading %s %s"), Pkg.Name(), Ver.VerStr());
2206 // get the most appropriate hash
2207 HashString hash;
2208 if (rec.SHA256Hash() != "")
2209 hash = HashString("sha256", rec.SHA256Hash());
2210 else if (rec.SHA1Hash() != "")
2211 hash = HashString("sha1", rec.SHA1Hash());
2212 else if (rec.MD5Hash() != "")
2213 hash = HashString("md5", rec.MD5Hash());
2214 // get the file
2215 new pkgAcqFile(&Fetcher, uri, hash.toStr(), (*Ver)->Size, descr, Pkg.Name(), ".");
2216 result &= (Fetcher.Run() == pkgAcquire::Continue);
2217 }
2218
2219 return result;
2220 }
2221 /*}}}*/
2222 // DoCheck - Perform the check operation /*{{{*/
2223 // ---------------------------------------------------------------------
2224 /* Opening automatically checks the system, this command is mostly used
2225 for debugging */
2226 bool DoCheck(CommandLine &CmdL)
2227 {
2228 CacheFile Cache;
2229 Cache.Open();
2230 Cache.CheckDeps();
2231
2232 return true;
2233 }
2234 /*}}}*/
2235 // DoSource - Fetch a source archive /*{{{*/
2236 // ---------------------------------------------------------------------
2237 /* Fetch souce packages */
2238 struct DscFile
2239 {
2240 string Package;
2241 string Version;
2242 string Dsc;
2243 };
2244
2245 bool DoSource(CommandLine &CmdL)
2246 {
2247 CacheFile Cache;
2248 if (Cache.Open(false) == false)
2249 return false;
2250
2251 if (CmdL.FileSize() <= 1)
2252 return _error->Error(_("Must specify at least one package to fetch source for"));
2253
2254 // Read the source list
2255 if (Cache.BuildSourceList() == false)
2256 return false;
2257 pkgSourceList *List = Cache.GetSourceList();
2258
2259 // Create the text record parsers
2260 pkgRecords Recs(Cache);
2261 pkgSrcRecords SrcRecs(*List);
2262 if (_error->PendingError() == true)
2263 return false;
2264
2265 // Create the download object
2266 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
2267 pkgAcquire Fetcher;
2268 if (Fetcher.Setup(&Stat) == false)
2269 return false;
2270
2271 DscFile *Dsc = new DscFile[CmdL.FileSize()];
2272
2273 // insert all downloaded uris into this set to avoid downloading them
2274 // twice
2275 set<string> queued;
2276
2277 // Diff only mode only fetches .diff files
2278 bool const diffOnly = _config->FindB("APT::Get::Diff-Only", false);
2279 // Tar only mode only fetches .tar files
2280 bool const tarOnly = _config->FindB("APT::Get::Tar-Only", false);
2281 // Dsc only mode only fetches .dsc files
2282 bool const dscOnly = _config->FindB("APT::Get::Dsc-Only", false);
2283
2284 // Load the requestd sources into the fetcher
2285 unsigned J = 0;
2286 for (const char **I = CmdL.FileList + 1; *I != 0; I++, J++)
2287 {
2288 string Src;
2289 pkgSrcRecords::Parser *Last = FindSrc(*I,Recs,SrcRecs,Src,*Cache);
2290
2291 if (Last == 0)
2292 return _error->Error(_("Unable to find a source package for %s"),Src.c_str());
2293
2294 string srec = Last->AsStr();
2295 string::size_type pos = srec.find("\nVcs-");
2296 while (pos != string::npos)
2297 {
2298 pos += strlen("\nVcs-");
2299 string vcs = srec.substr(pos,srec.find(":",pos)-pos);
2300 if(vcs == "Browser")
2301 {
2302 pos = srec.find("\nVcs-", pos);
2303 continue;
2304 }
2305 pos += vcs.length()+2;
2306 string::size_type epos = srec.find("\n", pos);
2307 string uri = srec.substr(pos,epos-pos).c_str();
2308 ioprintf(c1out, _("NOTICE: '%s' packaging is maintained in "
2309 "the '%s' version control system at:\n"
2310 "%s\n"),
2311 Src.c_str(), vcs.c_str(), uri.c_str());
2312 if(vcs == "Bzr")
2313 ioprintf(c1out,_("Please use:\n"
2314 "bzr get %s\n"
2315 "to retrieve the latest (possibly unreleased) "
2316 "updates to the package.\n"),
2317 uri.c_str());
2318 break;
2319 }
2320
2321 // Back track
2322 vector<pkgSrcRecords::File> Lst;
2323 if (Last->Files(Lst) == false)
2324 return false;
2325
2326 // Load them into the fetcher
2327 for (vector<pkgSrcRecords::File>::const_iterator I = Lst.begin();
2328 I != Lst.end(); I++)
2329 {
2330 // Try to guess what sort of file it is we are getting.
2331 if (I->Type == "dsc")
2332 {
2333 Dsc[J].Package = Last->Package();
2334 Dsc[J].Version = Last->Version();
2335 Dsc[J].Dsc = flNotDir(I->Path);
2336 }
2337
2338 // Handle the only options so that multiple can be used at once
2339 if (diffOnly == true || tarOnly == true || dscOnly == true)
2340 {
2341 if ((diffOnly == true && I->Type == "diff") ||
2342 (tarOnly == true && I->Type == "tar") ||
2343 (dscOnly == true && I->Type == "dsc"))
2344 ; // Fine, we want this file downloaded
2345 else
2346 continue;
2347 }
2348
2349 // don't download the same uri twice (should this be moved to
2350 // the fetcher interface itself?)
2351 if(queued.find(Last->Index().ArchiveURI(I->Path)) != queued.end())
2352 continue;
2353 queued.insert(Last->Index().ArchiveURI(I->Path));
2354
2355 // check if we have a file with that md5 sum already localy
2356 if(!I->MD5Hash.empty() && FileExists(flNotDir(I->Path)))
2357 {
2358 FileFd Fd(flNotDir(I->Path), FileFd::ReadOnly);
2359 MD5Summation sum;
2360 sum.AddFD(Fd.Fd(), Fd.Size());
2361 Fd.Close();
2362 if((string)sum.Result() == I->MD5Hash)
2363 {
2364 ioprintf(c1out,_("Skipping already downloaded file '%s'\n"),
2365 flNotDir(I->Path).c_str());
2366 continue;
2367 }
2368 }
2369
2370 new pkgAcqFile(&Fetcher,Last->Index().ArchiveURI(I->Path),
2371 I->MD5Hash,I->Size,
2372 Last->Index().SourceInfo(*Last,*I),Src);
2373 }
2374 }
2375
2376 // Display statistics
2377 unsigned long long FetchBytes = Fetcher.FetchNeeded();
2378 unsigned long long FetchPBytes = Fetcher.PartialPresent();
2379 unsigned long long DebBytes = Fetcher.TotalNeeded();
2380
2381 // Check for enough free space
2382 struct statvfs Buf;
2383 string OutputDir = ".";
2384 if (statvfs(OutputDir.c_str(),&Buf) != 0) {
2385 if (errno == EOVERFLOW)
2386 return _error->WarningE("statvfs",_("Couldn't determine free space in %s"),
2387 OutputDir.c_str());
2388 else
2389 return _error->Errno("statvfs",_("Couldn't determine free space in %s"),
2390 OutputDir.c_str());
2391 } else if (unsigned(Buf.f_bfree) < (FetchBytes - FetchPBytes)/Buf.f_bsize)
2392 {
2393 struct statfs Stat;
2394 if (statfs(OutputDir.c_str(),&Stat) != 0
2395 #if HAVE_STRUCT_STATFS_F_TYPE
2396 || unsigned(Stat.f_type) != RAMFS_MAGIC
2397 #endif
2398 )
2399 return _error->Error(_("You don't have enough free space in %s"),
2400 OutputDir.c_str());
2401 }
2402
2403 // Number of bytes
2404 if (DebBytes != FetchBytes)
2405 //TRANSLATOR: The required space between number and unit is already included
2406 // in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
2407 ioprintf(c1out,_("Need to get %sB/%sB of source archives.\n"),
2408 SizeToStr(FetchBytes).c_str(),SizeToStr(DebBytes).c_str());
2409 else
2410 //TRANSLATOR: The required space between number and unit is already included
2411 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
2412 ioprintf(c1out,_("Need to get %sB of source archives.\n"),
2413 SizeToStr(DebBytes).c_str());
2414
2415 if (_config->FindB("APT::Get::Simulate",false) == true)
2416 {
2417 for (unsigned I = 0; I != J; I++)
2418 ioprintf(cout,_("Fetch source %s\n"),Dsc[I].Package.c_str());
2419 delete[] Dsc;
2420 return true;
2421 }
2422
2423 // Just print out the uris an exit if the --print-uris flag was used
2424 if (_config->FindB("APT::Get::Print-URIs") == true)
2425 {
2426 pkgAcquire::UriIterator I = Fetcher.UriBegin();
2427 for (; I != Fetcher.UriEnd(); I++)
2428 cout << '\'' << I->URI << "' " << flNotDir(I->Owner->DestFile) << ' ' <<
2429 I->Owner->FileSize << ' ' << I->Owner->HashSum() << endl;
2430 delete[] Dsc;
2431 return true;
2432 }
2433
2434 // Run it
2435 if (Fetcher.Run() == pkgAcquire::Failed)
2436 return false;
2437
2438 // Print error messages
2439 bool Failed = false;
2440 for (pkgAcquire::ItemIterator I = Fetcher.ItemsBegin(); I != Fetcher.ItemsEnd(); I++)
2441 {
2442 if ((*I)->Status == pkgAcquire::Item::StatDone &&
2443 (*I)->Complete == true)
2444 continue;
2445
2446 fprintf(stderr,_("Failed to fetch %s %s\n"),(*I)->DescURI().c_str(),
2447 (*I)->ErrorText.c_str());
2448 Failed = true;
2449 }
2450 if (Failed == true)
2451 return _error->Error(_("Failed to fetch some archives."));
2452
2453 if (_config->FindB("APT::Get::Download-only",false) == true)
2454 {
2455 c1out << _("Download complete and in download only mode") << endl;
2456 delete[] Dsc;
2457 return true;
2458 }
2459
2460 // Unpack the sources
2461 pid_t Process = ExecFork();
2462
2463 if (Process == 0)
2464 {
2465 bool const fixBroken = _config->FindB("APT::Get::Fix-Broken", false);
2466 for (unsigned I = 0; I != J; I++)
2467 {
2468 string Dir = Dsc[I].Package + '-' + Cache->VS().UpstreamVersion(Dsc[I].Version.c_str());
2469
2470 // Diff only mode only fetches .diff files
2471 if (_config->FindB("APT::Get::Diff-Only",false) == true ||
2472 _config->FindB("APT::Get::Tar-Only",false) == true ||
2473 Dsc[I].Dsc.empty() == true)
2474 continue;
2475
2476 // See if the package is already unpacked
2477 struct stat Stat;
2478 if (fixBroken == false && stat(Dir.c_str(),&Stat) == 0 &&
2479 S_ISDIR(Stat.st_mode) != 0)
2480 {
2481 ioprintf(c0out ,_("Skipping unpack of already unpacked source in %s\n"),
2482 Dir.c_str());
2483 }
2484 else
2485 {
2486 // Call dpkg-source
2487 char S[500];
2488 snprintf(S,sizeof(S),"%s -x %s",
2489 _config->Find("Dir::Bin::dpkg-source","dpkg-source").c_str(),
2490 Dsc[I].Dsc.c_str());
2491 if (system(S) != 0)
2492 {
2493 fprintf(stderr,_("Unpack command '%s' failed.\n"),S);
2494 fprintf(stderr,_("Check if the 'dpkg-dev' package is installed.\n"));
2495 _exit(1);
2496 }
2497 }
2498
2499 // Try to compile it with dpkg-buildpackage
2500 if (_config->FindB("APT::Get::Compile",false) == true)
2501 {
2502 // Call dpkg-buildpackage
2503 char S[500];
2504 snprintf(S,sizeof(S),"cd %s && %s %s",
2505 Dir.c_str(),
2506 _config->Find("Dir::Bin::dpkg-buildpackage","dpkg-buildpackage").c_str(),
2507 _config->Find("DPkg::Build-Options","-b -uc").c_str());
2508
2509 if (system(S) != 0)
2510 {
2511 fprintf(stderr,_("Build command '%s' failed.\n"),S);
2512 _exit(1);
2513 }
2514 }
2515 }
2516
2517 _exit(0);
2518 }
2519 delete[] Dsc;
2520
2521 // Wait for the subprocess
2522 int Status = 0;
2523 while (waitpid(Process,&Status,0) != Process)
2524 {
2525 if (errno == EINTR)
2526 continue;
2527 return _error->Errno("waitpid","Couldn't wait for subprocess");
2528 }
2529
2530 if (WIFEXITED(Status) == 0 || WEXITSTATUS(Status) != 0)
2531 return _error->Error(_("Child process failed"));
2532
2533 return true;
2534 }
2535 /*}}}*/
2536 // DoBuildDep - Install/removes packages to satisfy build dependencies /*{{{*/
2537 // ---------------------------------------------------------------------
2538 /* This function will look at the build depends list of the given source
2539 package and install the necessary packages to make it true, or fail. */
2540 bool DoBuildDep(CommandLine &CmdL)
2541 {
2542 CacheFile Cache;
2543 if (Cache.Open(true) == false)
2544 return false;
2545
2546 if (CmdL.FileSize() <= 1)
2547 return _error->Error(_("Must specify at least one package to check builddeps for"));
2548
2549 // Read the source list
2550 if (Cache.BuildSourceList() == false)
2551 return false;
2552 pkgSourceList *List = Cache.GetSourceList();
2553
2554 // Create the text record parsers
2555 pkgRecords Recs(Cache);
2556 pkgSrcRecords SrcRecs(*List);
2557 if (_error->PendingError() == true)
2558 return false;
2559
2560 // Create the download object
2561 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
2562 pkgAcquire Fetcher;
2563 if (Fetcher.Setup(&Stat) == false)
2564 return false;
2565
2566 unsigned J = 0;
2567 bool const StripMultiArch = APT::Configuration::getArchitectures().size() <= 1;
2568 for (const char **I = CmdL.FileList + 1; *I != 0; I++, J++)
2569 {
2570 string Src;
2571 pkgSrcRecords::Parser *Last = FindSrc(*I,Recs,SrcRecs,Src,*Cache);
2572 if (Last == 0)
2573 return _error->Error(_("Unable to find a source package for %s"),Src.c_str());
2574
2575 // Process the build-dependencies
2576 vector<pkgSrcRecords::Parser::BuildDepRec> BuildDeps;
2577 if (Last->BuildDepends(BuildDeps, _config->FindB("APT::Get::Arch-Only", false), StripMultiArch) == false)
2578 return _error->Error(_("Unable to get build-dependency information for %s"),Src.c_str());
2579
2580 // Also ensure that build-essential packages are present
2581 Configuration::Item const *Opts = _config->Tree("APT::Build-Essential");
2582 if (Opts)
2583 Opts = Opts->Child;
2584 for (; Opts; Opts = Opts->Next)
2585 {
2586 if (Opts->Value.empty() == true)
2587 continue;
2588
2589 pkgSrcRecords::Parser::BuildDepRec rec;
2590 rec.Package = Opts->Value;
2591 rec.Type = pkgSrcRecords::Parser::BuildDependIndep;
2592 rec.Op = 0;
2593 BuildDeps.push_back(rec);
2594 }
2595
2596 if (BuildDeps.size() == 0)
2597 {
2598 ioprintf(c1out,_("%s has no build depends.\n"),Src.c_str());
2599 continue;
2600 }
2601
2602 // Install the requested packages
2603 vector <pkgSrcRecords::Parser::BuildDepRec>::iterator D;
2604 pkgProblemResolver Fix(Cache);
2605 bool skipAlternatives = false; // skip remaining alternatives in an or group
2606 for (D = BuildDeps.begin(); D != BuildDeps.end(); D++)
2607 {
2608 bool hasAlternatives = (((*D).Op & pkgCache::Dep::Or) == pkgCache::Dep::Or);
2609
2610 if (skipAlternatives == true)
2611 {
2612 if (!hasAlternatives)
2613 skipAlternatives = false; // end of or group
2614 continue;
2615 }
2616
2617 if ((*D).Type == pkgSrcRecords::Parser::BuildConflict ||
2618 (*D).Type == pkgSrcRecords::Parser::BuildConflictIndep)
2619 {
2620 pkgCache::PkgIterator Pkg = Cache->FindPkg((*D).Package);
2621 // Build-conflicts on unknown packages are silently ignored
2622 if (Pkg.end() == true)
2623 continue;
2624
2625 pkgCache::VerIterator IV = (*Cache)[Pkg].InstVerIter(*Cache);
2626
2627 /*
2628 * Remove if we have an installed version that satisfies the
2629 * version criteria
2630 */
2631 if (IV.end() == false &&
2632 Cache->VS().CheckDep(IV.VerStr(),(*D).Op,(*D).Version.c_str()) == true)
2633 TryToInstallBuildDep(Pkg,Cache,Fix,true,false);
2634 }
2635 else // BuildDep || BuildDepIndep
2636 {
2637 pkgCache::PkgIterator Pkg = Cache->FindPkg((*D).Package);
2638 if (_config->FindB("Debug::BuildDeps",false) == true)
2639 cout << "Looking for " << (*D).Package << "...\n";
2640
2641 if (Pkg.end() == true)
2642 {
2643 if (_config->FindB("Debug::BuildDeps",false) == true)
2644 cout << " (not found)" << (*D).Package << endl;
2645
2646 if (hasAlternatives)
2647 continue;
2648
2649 return _error->Error(_("%s dependency for %s cannot be satisfied "
2650 "because the package %s cannot be found"),
2651 Last->BuildDepType((*D).Type),Src.c_str(),
2652 (*D).Package.c_str());
2653 }
2654
2655 /*
2656 * if there are alternatives, we've already picked one, so skip
2657 * the rest
2658 *
2659 * TODO: this means that if there's a build-dep on A|B and B is
2660 * installed, we'll still try to install A; more importantly,
2661 * if A is currently broken, we cannot go back and try B. To fix
2662 * this would require we do a Resolve cycle for each package we
2663 * add to the install list. Ugh
2664 */
2665
2666 /*
2667 * If this is a virtual package, we need to check the list of
2668 * packages that provide it and see if any of those are
2669 * installed
2670 */
2671 pkgCache::PrvIterator Prv = Pkg.ProvidesList();
2672 for (; Prv.end() != true; Prv++)
2673 {
2674 if (_config->FindB("Debug::BuildDeps",false) == true)
2675 cout << " Checking provider " << Prv.OwnerPkg().FullName() << endl;
2676
2677 if ((*Cache)[Prv.OwnerPkg()].InstVerIter(*Cache).end() == false)
2678 break;
2679 }
2680
2681 // Get installed version and version we are going to install
2682 pkgCache::VerIterator IV = (*Cache)[Pkg].InstVerIter(*Cache);
2683
2684 if ((*D).Version[0] != '\0') {
2685 // Versioned dependency
2686
2687 pkgCache::VerIterator CV = (*Cache)[Pkg].CandidateVerIter(*Cache);
2688
2689 for (; CV.end() != true; CV++)
2690 {
2691 if (Cache->VS().CheckDep(CV.VerStr(),(*D).Op,(*D).Version.c_str()) == true)
2692 break;
2693 }
2694 if (CV.end() == true)
2695 {
2696 if (hasAlternatives)
2697 {
2698 continue;
2699 }
2700 else
2701 {
2702 return _error->Error(_("%s dependency for %s cannot be satisfied "
2703 "because no available versions of package %s "
2704 "can satisfy version requirements"),
2705 Last->BuildDepType((*D).Type),Src.c_str(),
2706 (*D).Package.c_str());
2707 }
2708 }
2709 }
2710 else
2711 {
2712 // Only consider virtual packages if there is no versioned dependency
2713 if (Prv.end() == false)
2714 {
2715 if (_config->FindB("Debug::BuildDeps",false) == true)
2716 cout << " Is provided by installed package " << Prv.OwnerPkg().FullName() << endl;
2717 skipAlternatives = hasAlternatives;
2718 continue;
2719 }
2720 }
2721
2722 if (IV.end() == false)
2723 {
2724 if (_config->FindB("Debug::BuildDeps",false) == true)
2725 cout << " Is installed\n";
2726
2727 if (Cache->VS().CheckDep(IV.VerStr(),(*D).Op,(*D).Version.c_str()) == true)
2728 {
2729 skipAlternatives = hasAlternatives;
2730 continue;
2731 }
2732
2733 if (_config->FindB("Debug::BuildDeps",false) == true)
2734 cout << " ...but the installed version doesn't meet the version requirement\n";
2735
2736 if (((*D).Op & pkgCache::Dep::LessEq) == pkgCache::Dep::LessEq)
2737 {
2738 return _error->Error(_("Failed to satisfy %s dependency for %s: Installed package %s is too new"),
2739 Last->BuildDepType((*D).Type),
2740 Src.c_str(),
2741 Pkg.FullName(true).c_str());
2742 }
2743 }
2744
2745
2746 if (_config->FindB("Debug::BuildDeps",false) == true)
2747 cout << " Trying to install " << (*D).Package << endl;
2748
2749 if (TryToInstallBuildDep(Pkg,Cache,Fix,false,false) == true)
2750 {
2751 // We successfully installed something; skip remaining alternatives
2752 skipAlternatives = hasAlternatives;
2753 if(_config->FindB("APT::Get::Build-Dep-Automatic", false) == true)
2754 Cache->MarkAuto(Pkg, true);
2755 continue;
2756 }
2757 else if (hasAlternatives)
2758 {
2759 if (_config->FindB("Debug::BuildDeps",false) == true)
2760 cout << " Unsatisfiable, trying alternatives\n";
2761 continue;
2762 }
2763 else
2764 {
2765 return _error->Error(_("Failed to satisfy %s dependency for %s: %s"),
2766 Last->BuildDepType((*D).Type),
2767 Src.c_str(),
2768 (*D).Package.c_str());
2769 }
2770 }
2771 }
2772
2773 Fix.InstallProtect();
2774 if (Fix.Resolve(true) == false)
2775 _error->Discard();
2776
2777 // Now we check the state of the packages,
2778 if (Cache->BrokenCount() != 0)
2779 {
2780 ShowBroken(cout, Cache, false);
2781 return _error->Error(_("Build-dependencies for %s could not be satisfied."),*I);
2782 }
2783 }
2784
2785 if (InstallPackages(Cache, false, true) == false)
2786 return _error->Error(_("Failed to process build dependencies"));
2787 return true;
2788 }
2789 /*}}}*/
2790 // GetChangelogPath - return a path pointing to a changelog file or dir /*{{{*/
2791 // ---------------------------------------------------------------------
2792 /* This returns a "path" string for the changelog url construction.
2793 * Please note that its not complete, it either needs a "/changelog"
2794 * appended (for the packages.debian.org/changelogs site) or a
2795 * ".changelog" (for third party sites that store the changelog in the
2796 * pool/ next to the deb itself)
2797 * Example return: "pool/main/a/apt/apt_0.8.8ubuntu3"
2798 */
2799 string GetChangelogPath(CacheFile &Cache,
2800 pkgCache::PkgIterator Pkg,
2801 pkgCache::VerIterator Ver)
2802 {
2803 string path;
2804
2805 pkgRecords Recs(Cache);
2806 pkgRecords::Parser &rec=Recs.Lookup(Ver.FileList());
2807 string srcpkg = rec.SourcePkg().empty() ? Pkg.Name() : rec.SourcePkg();
2808 // FIXME: deal with cases like gcc-defaults (srcver != binver)
2809 string srcver = StripEpoch(Ver.VerStr());
2810 path = flNotFile(rec.FileName());
2811 path += srcpkg + "_" + srcver;
2812 return path;
2813 }
2814 /*}}}*/
2815 // GuessThirdPartyChangelogUri - return url /*{{{*/
2816 // ---------------------------------------------------------------------
2817 /* Contruct a changelog file path for third party sites that do not use
2818 * packages.debian.org/changelogs
2819 * This simply uses the ArchiveURI() of the source pkg and looks for
2820 * a .changelog file there, Example for "mediabuntu":
2821 * apt-get changelog mplayer-doc:
2822 * http://packages.medibuntu.org/pool/non-free/m/mplayer/mplayer_1.0~rc4~try1.dsfg1-1ubuntu1+medibuntu1.changelog
2823 */
2824 bool GuessThirdPartyChangelogUri(CacheFile &Cache,
2825 pkgCache::PkgIterator Pkg,
2826 pkgCache::VerIterator Ver,
2827 string &out_uri)
2828 {
2829 // get the binary deb server path
2830 pkgCache::VerFileIterator Vf = Ver.FileList();
2831 if (Vf.end() == true)
2832 return false;
2833 pkgCache::PkgFileIterator F = Vf.File();
2834 pkgIndexFile *index;
2835 pkgSourceList *SrcList = Cache.GetSourceList();
2836 if(SrcList->FindIndex(F, index) == false)
2837 return false;
2838
2839 // get archive uri for the binary deb
2840 string path_without_dot_changelog = GetChangelogPath(Cache, Pkg, Ver);
2841 out_uri = index->ArchiveURI(path_without_dot_changelog + ".changelog");
2842
2843 // now strip away the filename and add srcpkg_srcver.changelog
2844 return true;
2845 }
2846 // DownloadChangelog - Download the changelog /*{{{*/
2847 // ---------------------------------------------------------------------
2848 bool DownloadChangelog(CacheFile &CacheFile, pkgAcquire &Fetcher,
2849 pkgCache::VerIterator Ver, string targetfile)
2850 /* Download a changelog file for the given package version to
2851 * targetfile. This will first try the server from Apt::Changelogs::Server
2852 * (http://packages.debian.org/changelogs by default) and if that gives
2853 * a 404 tries to get it from the archive directly (see
2854 * GuessThirdPartyChangelogUri for details how)
2855 */
2856 {
2857 string srcpkg;
2858 string path;
2859 string descr;
2860 string server;
2861 string changelog_uri;
2862
2863 // data structures we need
2864 pkgCache::PkgIterator Pkg = Ver.ParentPkg();
2865
2866 // make the server root configurable
2867 server = _config->Find("Apt::Changelogs::Server",
2868 "http://packages.debian.org/changelogs");
2869 path = GetChangelogPath(CacheFile, Pkg, Ver);
2870 strprintf(changelog_uri, "%s/%s/changelog", server.c_str(), path.c_str());
2871 strprintf(descr, _("Changelog for %s (%s)"), srcpkg.c_str(), changelog_uri.c_str());
2872 // queue it
2873 new pkgAcqFile(&Fetcher, changelog_uri, "", 0, descr, srcpkg, "ignored", targetfile);
2874
2875 // try downloading it, if that fails, they third-party-changelogs location
2876 // FIXME: res is "Continue" even if I get a 404?!?
2877 int res = Fetcher.Run();
2878 if (!FileExists(targetfile))
2879 {
2880 string third_party_uri;
2881 if (GuessThirdPartyChangelogUri(CacheFile, Pkg, Ver, third_party_uri))
2882 {
2883 strprintf(descr, _("Changelog for %s (%s)"), srcpkg.c_str(), third_party_uri.c_str());
2884 new pkgAcqFile(&Fetcher, third_party_uri, "", 0, descr, srcpkg, "ignored", targetfile);
2885 res = Fetcher.Run();
2886 }
2887 }
2888
2889 if (FileExists(targetfile))
2890 return true;
2891
2892 // error
2893 return _error->Error("changelog download failed");
2894 }
2895 /*}}}*/
2896 // DisplayFileInPager - Display File with pager /*{{{*/
2897 void DisplayFileInPager(string filename)
2898 {
2899 pid_t Process = ExecFork();
2900 if (Process == 0)
2901 {
2902 const char *Args[3];
2903 Args[0] = "/usr/bin/sensible-pager";
2904 Args[1] = filename.c_str();
2905 Args[2] = 0;
2906 execvp(Args[0],(char **)Args);
2907 exit(100);
2908 }
2909
2910 // Wait for the subprocess
2911 ExecWait(Process, "sensible-pager", false);
2912 }
2913 /*}}}*/
2914 // DoChangelog - Get changelog from the command line /*{{{*/
2915 // ---------------------------------------------------------------------
2916 bool DoChangelog(CommandLine &CmdL)
2917 {
2918 CacheFile Cache;
2919 if (Cache.ReadOnlyOpen() == false)
2920 return false;
2921
2922 APT::CacheSetHelper helper(c0out);
2923 APT::VersionSet verset = APT::VersionSet::FromCommandLine(Cache,
2924 CmdL.FileList + 1, APT::VersionSet::CANDIDATE, helper);
2925 pkgAcquire Fetcher;
2926 AcqTextStatus Stat(ScreenWidth, _config->FindI("quiet",0));
2927 Fetcher.Setup(&Stat);
2928
2929 if (verset.empty() == true)
2930 return false;
2931 char *tmpdir = mkdtemp(strdup("/tmp/apt-changelog-XXXXXX"));
2932 if (tmpdir == NULL) {
2933 return _error->Errno("mkdtemp", "mkdtemp failed");
2934 }
2935
2936 for (APT::VersionSet::const_iterator Ver = verset.begin();
2937 Ver != verset.end();
2938 ++Ver)
2939 {
2940 string changelogfile = string(tmpdir) + "changelog";
2941 if (DownloadChangelog(Cache, Fetcher, Ver, changelogfile))
2942 DisplayFileInPager(changelogfile);
2943 // cleanup temp file
2944 unlink(changelogfile.c_str());
2945 }
2946 // clenaup tmp dir
2947 rmdir(tmpdir);
2948 free(tmpdir);
2949 return true;
2950 }
2951 /*}}}*/
2952 // DoMoo - Never Ask, Never Tell /*{{{*/
2953 // ---------------------------------------------------------------------
2954 /* */
2955 bool DoMoo(CommandLine &CmdL)
2956 {
2957 cout <<
2958 " (__) \n"
2959 " (oo) \n"
2960 " /------\\/ \n"
2961 " / | || \n"
2962 " * /\\---/\\ \n"
2963 " ~~ ~~ \n"
2964 "....\"Have you mooed today?\"...\n";
2965
2966 return true;
2967 }
2968 /*}}}*/
2969 // ShowHelp - Show a help screen /*{{{*/
2970 // ---------------------------------------------------------------------
2971 /* */
2972 bool ShowHelp(CommandLine &CmdL)
2973 {
2974 ioprintf(cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,VERSION,
2975 COMMON_ARCH,__DATE__,__TIME__);
2976
2977 if (_config->FindB("version") == true)
2978 {
2979 cout << _("Supported modules:") << endl;
2980
2981 for (unsigned I = 0; I != pkgVersioningSystem::GlobalListLen; I++)
2982 {
2983 pkgVersioningSystem *VS = pkgVersioningSystem::GlobalList[I];
2984 if (_system != 0 && _system->VS == VS)
2985 cout << '*';
2986 else
2987 cout << ' ';
2988 cout << "Ver: " << VS->Label << endl;
2989
2990 /* Print out all the packaging systems that will work with
2991 this VS */
2992 for (unsigned J = 0; J != pkgSystem::GlobalListLen; J++)
2993 {
2994 pkgSystem *Sys = pkgSystem::GlobalList[J];
2995 if (_system == Sys)
2996 cout << '*';
2997 else
2998 cout << ' ';
2999 if (Sys->VS->TestCompatibility(*VS) == true)
3000 cout << "Pkg: " << Sys->Label << " (Priority " << Sys->Score(*_config) << ")" << endl;
3001 }
3002 }
3003
3004 for (unsigned I = 0; I != pkgSourceList::Type::GlobalListLen; I++)
3005 {
3006 pkgSourceList::Type *Type = pkgSourceList::Type::GlobalList[I];
3007 cout << " S.L: '" << Type->Name << "' " << Type->Label << endl;
3008 }
3009
3010 for (unsigned I = 0; I != pkgIndexFile::Type::GlobalListLen; I++)
3011 {
3012 pkgIndexFile::Type *Type = pkgIndexFile::Type::GlobalList[I];
3013 cout << " Idx: " << Type->Label << endl;
3014 }
3015
3016 return true;
3017 }
3018
3019 cout <<
3020 _("Usage: apt-get [options] command\n"
3021 " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
3022 " apt-get [options] source pkg1 [pkg2 ...]\n"
3023 "\n"
3024 "apt-get is a simple command line interface for downloading and\n"
3025 "installing packages. The most frequently used commands are update\n"
3026 "and install.\n"
3027 "\n"
3028 "Commands:\n"
3029 " update - Retrieve new lists of packages\n"
3030 " upgrade - Perform an upgrade\n"
3031 " install - Install new packages (pkg is libc6 not libc6.deb)\n"
3032 " remove - Remove packages\n"
3033 " autoremove - Remove automatically all unused packages\n"
3034 " purge - Remove packages and config files\n"
3035 " source - Download source archives\n"
3036 " build-dep - Configure build-dependencies for source packages\n"
3037 " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
3038 " dselect-upgrade - Follow dselect selections\n"
3039 " clean - Erase downloaded archive files\n"
3040 " autoclean - Erase old downloaded archive files\n"
3041 " check - Verify that there are no broken dependencies\n"
3042 " markauto - Mark the given packages as automatically installed\n"
3043 " unmarkauto - Mark the given packages as manually installed\n"
3044 " changelog - Download and display the changelog for the given package\n"
3045 " download - Download the binary package into the current directory\n"
3046 "\n"
3047 "Options:\n"
3048 " -h This help text.\n"
3049 " -q Loggable output - no progress indicator\n"
3050 " -qq No output except for errors\n"
3051 " -d Download only - do NOT install or unpack archives\n"
3052 " -s No-act. Perform ordering simulation\n"
3053 " -y Assume Yes to all queries and do not prompt\n"
3054 " -f Attempt to correct a system with broken dependencies in place\n"
3055 " -m Attempt to continue if archives are unlocatable\n"
3056 " -u Show a list of upgraded packages as well\n"
3057 " -b Build the source package after fetching it\n"
3058 " -V Show verbose version numbers\n"
3059 " -c=? Read this configuration file\n"
3060 " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
3061 "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
3062 "pages for more information and options.\n"
3063 " This APT has Super Cow Powers.\n");
3064 return true;
3065 }
3066 /*}}}*/
3067 // SigWinch - Window size change signal handler /*{{{*/
3068 // ---------------------------------------------------------------------
3069 /* */
3070 void SigWinch(int)
3071 {
3072 // Riped from GNU ls
3073 #ifdef TIOCGWINSZ
3074 struct winsize ws;
3075
3076 if (ioctl(1, TIOCGWINSZ, &ws) != -1 && ws.ws_col >= 5)
3077 ScreenWidth = ws.ws_col - 1;
3078 #endif
3079 }
3080 /*}}}*/
3081 int main(int argc,const char *argv[]) /*{{{*/
3082 {
3083 CommandLine::Args Args[] = {
3084 {'h',"help","help",0},
3085 {'v',"version","version",0},
3086 {'V',"verbose-versions","APT::Get::Show-Versions",0},
3087 {'q',"quiet","quiet",CommandLine::IntLevel},
3088 {'q',"silent","quiet",CommandLine::IntLevel},
3089 {'d',"download-only","APT::Get::Download-Only",0},
3090 {'b',"compile","APT::Get::Compile",0},
3091 {'b',"build","APT::Get::Compile",0},
3092 {'s',"simulate","APT::Get::Simulate",0},
3093 {'s',"just-print","APT::Get::Simulate",0},
3094 {'s',"recon","APT::Get::Simulate",0},
3095 {'s',"dry-run","APT::Get::Simulate",0},
3096 {'s',"no-act","APT::Get::Simulate",0},
3097 {'y',"yes","APT::Get::Assume-Yes",0},
3098 {'y',"assume-yes","APT::Get::Assume-Yes",0},
3099 {'f',"fix-broken","APT::Get::Fix-Broken",0},
3100 {'u',"show-upgraded","APT::Get::Show-Upgraded",0},
3101 {'m',"ignore-missing","APT::Get::Fix-Missing",0},
3102 {'t',"target-release","APT::Default-Release",CommandLine::HasArg},
3103 {'t',"default-release","APT::Default-Release",CommandLine::HasArg},
3104 {0,"download","APT::Get::Download",0},
3105 {0,"fix-missing","APT::Get::Fix-Missing",0},
3106 {0,"ignore-hold","APT::Ignore-Hold",0},
3107 {0,"upgrade","APT::Get::upgrade",0},
3108 {0,"only-upgrade","APT::Get::Only-Upgrade",0},
3109 {0,"force-yes","APT::Get::force-yes",0},
3110 {0,"print-uris","APT::Get::Print-URIs",0},
3111 {0,"diff-only","APT::Get::Diff-Only",0},
3112 {0,"debian-only","APT::Get::Diff-Only",0},
3113 {0,"tar-only","APT::Get::Tar-Only",0},
3114 {0,"dsc-only","APT::Get::Dsc-Only",0},
3115 {0,"purge","APT::Get::Purge",0},
3116 {0,"list-cleanup","APT::Get::List-Cleanup",0},
3117 {0,"reinstall","APT::Get::ReInstall",0},
3118 {0,"trivial-only","APT::Get::Trivial-Only",0},
3119 {0,"remove","APT::Get::Remove",0},
3120 {0,"only-source","APT::Get::Only-Source",0},
3121 {0,"arch-only","APT::Get::Arch-Only",0},
3122 {0,"auto-remove","APT::Get::AutomaticRemove",0},
3123 {0,"allow-unauthenticated","APT::Get::AllowUnauthenticated",0},
3124 {0,"install-recommends","APT::Install-Recommends",CommandLine::Boolean},
3125 {0,"fix-policy","APT::Get::Fix-Policy-Broken",0},
3126 {'c',"config-file",0,CommandLine::ConfigFile},
3127 {'o',"option",0,CommandLine::ArbItem},
3128 {0,0,0,0}};
3129 CommandLine::Dispatch Cmds[] = {{"update",&DoUpdate},
3130 {"upgrade",&DoUpgrade},
3131 {"install",&DoInstall},
3132 {"remove",&DoInstall},
3133 {"purge",&DoInstall},
3134 {"autoremove",&DoInstall},
3135 {"markauto",&DoMarkAuto},
3136 {"unmarkauto",&DoMarkAuto},
3137 {"dist-upgrade",&DoDistUpgrade},
3138 {"dselect-upgrade",&DoDSelectUpgrade},
3139 {"build-dep",&DoBuildDep},
3140 {"clean",&DoClean},
3141 {"autoclean",&DoAutoClean},
3142 {"check",&DoCheck},
3143 {"source",&DoSource},
3144 {"download",&DoDownload},
3145 {"changelog",&DoChangelog},
3146 {"moo",&DoMoo},
3147 {"help",&ShowHelp},
3148 {0,0}};
3149
3150 // Set up gettext support
3151 setlocale(LC_ALL,"");
3152 textdomain(PACKAGE);
3153
3154 // Parse the command line and initialize the package library
3155 CommandLine CmdL(Args,_config);
3156 if (pkgInitConfig(*_config) == false ||
3157 CmdL.Parse(argc,argv) == false ||
3158 pkgInitSystem(*_config,_system) == false)
3159 {
3160 if (_config->FindB("version") == true)
3161 ShowHelp(CmdL);
3162
3163 _error->DumpErrors();
3164 return 100;
3165 }
3166
3167 // See if the help should be shown
3168 if (_config->FindB("help") == true ||
3169 _config->FindB("version") == true ||
3170 CmdL.FileSize() == 0)
3171 {
3172 ShowHelp(CmdL);
3173 return 0;
3174 }
3175
3176 // simulate user-friendly if apt-get has no root privileges
3177 if (getuid() != 0 && _config->FindB("APT::Get::Simulate") == true)
3178 {
3179 if (_config->FindB("APT::Get::Show-User-Simulation-Note",true) == true)
3180 cout << _("NOTE: This is only a simulation!\n"
3181 " apt-get needs root privileges for real execution.\n"
3182 " Keep also in mind that locking is deactivated,\n"
3183 " so don't depend on the relevance to the real current situation!"
3184 ) << std::endl;
3185 _config->Set("Debug::NoLocking",true);
3186 }
3187
3188 // Deal with stdout not being a tty
3189 if (!isatty(STDOUT_FILENO) && _config->FindI("quiet", -1) == -1)
3190 _config->Set("quiet","1");
3191
3192 // Setup the output streams
3193 c0out.rdbuf(cout.rdbuf());
3194 c1out.rdbuf(cout.rdbuf());
3195 c2out.rdbuf(cout.rdbuf());
3196 if (_config->FindI("quiet",0) > 0)
3197 c0out.rdbuf(devnull.rdbuf());
3198 if (_config->FindI("quiet",0) > 1)
3199 c1out.rdbuf(devnull.rdbuf());
3200
3201 // Setup the signals
3202 signal(SIGPIPE,SIG_IGN);
3203 signal(SIGWINCH,SigWinch);
3204 SigWinch(0);
3205
3206 // Match the operation
3207 CmdL.DispatchArg(Cmds);
3208
3209 // Print any errors or warnings found during parsing
3210 bool const Errors = _error->PendingError();
3211 if (_config->FindI("quiet",0) > 0)
3212 _error->DumpErrors();
3213 else
3214 _error->DumpErrors(GlobalError::DEBUG);
3215 return Errors == true ? 100 : 0;
3216 }
3217 /*}}}*/