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