]> git.saurik.com Git - apt.git/blame - cmdline/apt-get.cc
Fixes for file opening
[apt.git] / cmdline / apt-get.cc
CommitLineData
0a8e3465
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
83d89a9f 3// $Id: apt-get.cc,v 1.20 1998/11/27 01:52:58 jgg Exp $
0a8e3465
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 /*{{{*/
28#include <apt-pkg/error.h>
29#include <apt-pkg/cmndline.h>
30#include <apt-pkg/init.h>
31#include <apt-pkg/depcache.h>
32#include <apt-pkg/sourcelist.h>
33#include <apt-pkg/pkgcachegen.h>
34#include <apt-pkg/algorithms.h>
0919e3f9 35#include <apt-pkg/acquire-item.h>
03e39e59 36#include <apt-pkg/dpkgpm.h>
d38b7b3d 37#include <apt-pkg/dpkginit.h>
a6568219 38#include <strutl.h>
0a8e3465
AL
39
40#include <config.h>
41
0919e3f9
AL
42#include "acqprogress.h"
43
0a8e3465 44#include <fstream.h>
d7827aca
AL
45#include <termios.h>
46#include <sys/ioctl.h>
47#include <signal.h>
3e3221ba 48#include <stdio.h>
0a8e3465
AL
49 /*}}}*/
50
51ostream c0out;
52ostream c1out;
53ostream c2out;
54ofstream devnull("/dev/null");
55unsigned int ScreenWidth = 80;
56
a6568219
AL
57// YnPrompt - Yes No Prompt. /*{{{*/
58// ---------------------------------------------------------------------
59/* Returns true on a Yes.*/
60bool YnPrompt()
61{
62 if (_config->FindB("APT::Get::Assume-Yes",false) == true)
63 {
64 c2out << 'Y' << endl;
65 return true;
66 }
67
68 char C = 0;
69 char Jnk = 0;
70 read(STDIN_FILENO,&C,1);
71 while (C != '\n' && Jnk != '\n') read(STDIN_FILENO,&Jnk,1);
72
73 if (!(C == 'Y' || C == 'y' || C == '\n' || C == '\r'))
74 return false;
75 return true;
76}
77 /*}}}*/
0a8e3465
AL
78// ShowList - Show a list /*{{{*/
79// ---------------------------------------------------------------------
80/* This prints out a string of space seperated words with a title and
81 a two space indent line wraped to the current screen width. */
83d89a9f 82bool ShowList(ostream &out,string Title,string List)
0a8e3465
AL
83{
84 if (List.empty() == true)
83d89a9f 85 return true;
0a8e3465
AL
86
87 // Acount for the leading space
88 int ScreenWidth = ::ScreenWidth - 3;
89
90 out << Title << endl;
91 string::size_type Start = 0;
92 while (Start < List.size())
93 {
94 string::size_type End;
95 if (Start + ScreenWidth >= List.size())
96 End = List.size();
97 else
98 End = List.rfind(' ',Start+ScreenWidth);
99
100 if (End == string::npos || End < Start)
101 End = Start + ScreenWidth;
102 out << " " << string(List,Start,End - Start) << endl;
103 Start = End + 1;
104 }
83d89a9f 105 return false;
0a8e3465
AL
106}
107 /*}}}*/
108// ShowBroken - Debugging aide /*{{{*/
109// ---------------------------------------------------------------------
110/* This prints out the names of all the packages that are broken along
111 with the name of each each broken dependency and a quite version
112 description. */
113void ShowBroken(ostream &out,pkgDepCache &Cache)
114{
30e1eab5 115 out << "Sorry, but the following packages have unmet dependencies:" << endl;
0a8e3465
AL
116 pkgCache::PkgIterator I = Cache.PkgBegin();
117 for (;I.end() != true; I++)
118 {
303a1703
AL
119 if (Cache[I].InstBroken() == false)
120 continue;
121
122 // Print out each package and the failed dependencies
123 out <<" " << I.Name() << ":";
124 int Indent = strlen(I.Name()) + 3;
125 bool First = true;
126 if (Cache[I].InstVerIter(Cache).end() == true)
0a8e3465 127 {
303a1703
AL
128 cout << endl;
129 continue;
130 }
131
30e1eab5 132 for (pkgCache::DepIterator D = Cache[I].InstVerIter(Cache).DependsList(); D.end() == false;)
303a1703 133 {
30e1eab5
AL
134 // Compute a single dependency element (glob or)
135 pkgCache::DepIterator Start;
136 pkgCache::DepIterator End;
137 D.GlobOr(Start,End);
138
139 if (Cache.IsImportantDep(End) == false ||
140 (Cache[End] & pkgDepCache::DepGInstall) == pkgDepCache::DepGInstall)
303a1703
AL
141 continue;
142
143 if (First == false)
144 for (int J = 0; J != Indent; J++)
145 out << ' ';
146 First = false;
cc718e9a 147
30e1eab5 148 cout << ' ' << End.DepType() << ": " << End.TargetPkg().Name();
303a1703
AL
149
150 // Show a quick summary of the version requirements
30e1eab5
AL
151 if (End.TargetVer() != 0)
152 out << " (" << End.CompType() << " " << End.TargetVer() <<
303a1703
AL
153 ")";
154
155 /* Show a summary of the target package if possible. In the case
156 of virtual packages we show nothing */
157
30e1eab5 158 pkgCache::PkgIterator Targ = End.TargetPkg();
303a1703 159 if (Targ->ProvidesList == 0)
0a8e3465 160 {
303a1703
AL
161 out << " but ";
162 pkgCache::VerIterator Ver = Cache[Targ].InstVerIter(Cache);
163 if (Ver.end() == false)
164 out << Ver.VerStr() << " is installed";
0a8e3465 165 else
7e798dd7 166 {
303a1703
AL
167 if (Cache[Targ].CandidateVerIter(Cache).end() == true)
168 {
169 if (Targ->ProvidesList == 0)
170 out << "it is not installable";
171 else
172 out << "it is a virtual package";
173 }
7e798dd7
AL
174 else
175 out << "it is not installed";
303a1703
AL
176 }
177 }
178
179 out << endl;
180 }
0a8e3465
AL
181 }
182}
183 /*}}}*/
184// ShowNew - Show packages to newly install /*{{{*/
185// ---------------------------------------------------------------------
186/* */
187void ShowNew(ostream &out,pkgDepCache &Dep)
188{
189 /* Print out a list of packages that are going to be removed extra
190 to what the user asked */
191 pkgCache::PkgIterator I = Dep.PkgBegin();
192 string List;
193 for (;I.end() != true; I++)
194 if (Dep[I].NewInstall() == true)
195 List += string(I.Name()) + " ";
196 ShowList(out,"The following NEW packages will be installed:",List);
197}
198 /*}}}*/
199// ShowDel - Show packages to delete /*{{{*/
200// ---------------------------------------------------------------------
201/* */
202void ShowDel(ostream &out,pkgDepCache &Dep)
203{
204 /* Print out a list of packages that are going to be removed extra
205 to what the user asked */
206 pkgCache::PkgIterator I = Dep.PkgBegin();
207 string List;
208 for (;I.end() != true; I++)
209 if (Dep[I].Delete() == true)
210 List += string(I.Name()) + " ";
211 ShowList(out,"The following packages will be REMOVED:",List);
212}
213 /*}}}*/
214// ShowKept - Show kept packages /*{{{*/
215// ---------------------------------------------------------------------
216/* */
217void ShowKept(ostream &out,pkgDepCache &Dep)
218{
219 pkgCache::PkgIterator I = Dep.PkgBegin();
220 string List;
221 for (;I.end() != true; I++)
222 {
223 // Not interesting
224 if (Dep[I].Upgrade() == true || Dep[I].Upgradable() == false ||
225 I->CurrentVer == 0 || Dep[I].Delete() == true)
226 continue;
227
228 List += string(I.Name()) + " ";
229 }
230 ShowList(out,"The following packages have been kept back",List);
231}
232 /*}}}*/
233// ShowUpgraded - Show upgraded packages /*{{{*/
234// ---------------------------------------------------------------------
235/* */
236void ShowUpgraded(ostream &out,pkgDepCache &Dep)
237{
238 pkgCache::PkgIterator I = Dep.PkgBegin();
239 string List;
240 for (;I.end() != true; I++)
241 {
242 // Not interesting
243 if (Dep[I].Upgrade() == false || Dep[I].NewInstall() == true)
244 continue;
245
246 List += string(I.Name()) + " ";
247 }
248 ShowList(out,"The following packages will be upgraded",List);
249}
250 /*}}}*/
251// ShowHold - Show held but changed packages /*{{{*/
252// ---------------------------------------------------------------------
253/* */
83d89a9f 254bool ShowHold(ostream &out,pkgDepCache &Dep)
0a8e3465
AL
255{
256 pkgCache::PkgIterator I = Dep.PkgBegin();
257 string List;
258 for (;I.end() != true; I++)
259 {
260 if (Dep[I].InstallVer != (pkgCache::Version *)I.CurrentVer() &&
261 I->SelectedState == pkgCache::State::Hold)
262 List += string(I.Name()) + " ";
263 }
264
83d89a9f 265 return ShowList(out,"The following held packages will be changed:",List);
0a8e3465
AL
266}
267 /*}}}*/
268// ShowEssential - Show an essential package warning /*{{{*/
269// ---------------------------------------------------------------------
270/* This prints out a warning message that is not to be ignored. It shows
271 all essential packages and their dependents that are to be removed.
272 It is insanely risky to remove the dependents of an essential package! */
83d89a9f 273bool ShowEssential(ostream &out,pkgDepCache &Dep)
0a8e3465
AL
274{
275 pkgCache::PkgIterator I = Dep.PkgBegin();
276 string List;
277 bool *Added = new bool[Dep.HeaderP->PackageCount];
93641593 278 for (unsigned int I = 0; I != Dep.HeaderP->PackageCount; I++)
0a8e3465
AL
279 Added[I] = false;
280
281 for (;I.end() != true; I++)
282 {
283 if ((I->Flags & pkgCache::Flag::Essential) != pkgCache::Flag::Essential)
284 continue;
285
286 // The essential package is being removed
287 if (Dep[I].Delete() == true)
288 {
289 if (Added[I->ID] == false)
290 {
291 Added[I->ID] = true;
292 List += string(I.Name()) + " ";
293 }
294 }
295
296 if (I->CurrentVer == 0)
297 continue;
298
299 // Print out any essential package depenendents that are to be removed
300 for (pkgDepCache::DepIterator D = I.CurrentVer().DependsList(); D.end() == false; D++)
301 {
3e3221ba
AL
302 // Skip everything but depends
303 if (D->Type != pkgCache::Dep::PreDepends &&
304 D->Type != pkgCache::Dep::Depends)
305 continue;
306
0a8e3465
AL
307 pkgCache::PkgIterator P = D.SmartTargetPkg();
308 if (Dep[P].Delete() == true)
309 {
310 if (Added[P->ID] == true)
311 continue;
312 Added[P->ID] = true;
3e3221ba
AL
313
314 char S[300];
315 sprintf(S,"%s (due to %s) ",P.Name(),I.Name());
316 List += S;
0a8e3465
AL
317 }
318 }
319 }
320
83d89a9f 321 delete [] Added;
0a8e3465
AL
322 if (List.empty() == false)
323 out << "WARNING: The following essential packages will be removed" << endl;
83d89a9f 324 return ShowList(out,"This should NOT be done unless you know exactly what you are doing!",List);
0a8e3465
AL
325}
326 /*}}}*/
327// Stats - Show some statistics /*{{{*/
328// ---------------------------------------------------------------------
329/* */
330void Stats(ostream &out,pkgDepCache &Dep)
331{
332 unsigned long Upgrade = 0;
333 unsigned long Install = 0;
334 for (pkgCache::PkgIterator I = Dep.PkgBegin(); I.end() == false; I++)
335 {
336 if (Dep[I].NewInstall() == true)
337 Install++;
338 else
339 if (Dep[I].Upgrade() == true)
340 Upgrade++;
341 }
342
343 out << Upgrade << " packages upgraded, " <<
344 Install << " newly installed, " <<
345 Dep.DelCount() << " to remove and " <<
346 Dep.KeepCount() << " not upgraded." << endl;
347
348 if (Dep.BadCount() != 0)
349 out << Dep.BadCount() << " packages not fully installed or removed." << endl;
350}
351 /*}}}*/
352
353// class CacheFile - Cover class for some dependency cache functions /*{{{*/
354// ---------------------------------------------------------------------
355/* */
356class CacheFile
357{
358 public:
359
360 FileFd *File;
361 MMap *Map;
362 pkgDepCache *Cache;
d38b7b3d 363 pkgDpkgLock Lock;
0a8e3465
AL
364
365 inline operator pkgDepCache &() {return *Cache;};
366 inline pkgDepCache *operator ->() {return Cache;};
367 inline pkgDepCache &operator *() {return *Cache;};
368
369 bool Open();
370 CacheFile() : File(0), Map(0), Cache(0) {};
371 ~CacheFile()
372 {
373 delete Cache;
374 delete Map;
375 delete File;
376 }
377};
378 /*}}}*/
379// CacheFile::Open - Open the cache file /*{{{*/
380// ---------------------------------------------------------------------
381/* This routine generates the caches and then opens the dependency cache
382 and verifies that the system is OK. */
383bool CacheFile::Open()
384{
d38b7b3d
AL
385 if (_error->PendingError() == true)
386 return false;
387
0a8e3465
AL
388 // Create a progress class
389 OpTextProgress Progress(*_config);
390
391 // Read the source list
392 pkgSourceList List;
393 if (List.ReadMainList() == false)
394 return _error->Error("The list of sources could not be read.");
395
396 // Build all of the caches
397 pkgMakeStatusCache(List,Progress);
398 if (_error->PendingError() == true)
399 return _error->Error("The package lists or status file could not be parsed or opened.");
400
401 Progress.Done();
402
403 // Open the cache file
303a1703 404 File = new FileFd(_config->FindFile("Dir::Cache::pkgcache"),FileFd::ReadOnly);
0a8e3465
AL
405 if (_error->PendingError() == true)
406 return false;
407
408 Map = new MMap(*File,MMap::Public | MMap::ReadOnly);
409 if (_error->PendingError() == true)
410 return false;
411
412 Cache = new pkgDepCache(*Map,Progress);
413 if (_error->PendingError() == true)
414 return false;
415
416 Progress.Done();
417
418 // Check that the system is OK
419 if (Cache->DelCount() != 0 || Cache->InstCount() != 0)
420 return _error->Error("Internal Error, non-zero counts");
421
422 // Apply corrections for half-installed packages
423 if (pkgApplyStatus(*Cache) == false)
424 return false;
425
426 // Nothing is broken
427 if (Cache->BrokenCount() == 0)
428 return true;
429
430 // Attempt to fix broken things
431 if (_config->FindB("APT::Get::Fix-Broken",false) == true)
432 {
433 c1out << "Correcting dependencies..." << flush;
434 if (pkgFixBroken(*Cache) == false || Cache->BrokenCount() != 0)
435 {
436 c1out << " failed." << endl;
437 ShowBroken(c1out,*this);
438
439 return _error->Error("Unable to correct dependencies");
440 }
7e798dd7
AL
441 if (pkgMinimizeUpgrade(*Cache) == false)
442 return _error->Error("Unable to minimize the upgrade set");
0a8e3465
AL
443
444 c1out << " Done" << endl;
445 }
446 else
447 {
448 c1out << "You might want to run `apt-get -f install' to correct these." << endl;
449 ShowBroken(c1out,*this);
450
451 return _error->Error("Unmet dependencies. Try using -f.");
452 }
453
454 return true;
455}
456 /*}}}*/
457
458// InstallPackages - Actually download and install the packages /*{{{*/
459// ---------------------------------------------------------------------
460/* This displays the informative messages describing what is going to
461 happen and then calls the download routines */
d38b7b3d 462bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true)
0a8e3465 463{
83d89a9f
AL
464 bool Fail = false;
465
a6568219 466 // Show all the various warning indicators
0a8e3465
AL
467 ShowDel(c1out,Cache);
468 ShowNew(c1out,Cache);
469 if (ShwKept == true)
470 ShowKept(c1out,Cache);
83d89a9f 471 Fail |= ShowHold(c1out,Cache);
0a8e3465
AL
472 if (_config->FindB("APT::Get::Show-Upgraded",false) == true)
473 ShowUpgraded(c1out,Cache);
83d89a9f 474 Fail |= ShowEssential(c1out,Cache);
0a8e3465
AL
475 Stats(c1out,Cache);
476
477 // Sanity check
d38b7b3d 478 if (Cache->BrokenCount() != 0)
0a8e3465
AL
479 {
480 ShowBroken(c1out,Cache);
481 return _error->Error("Internal Error, InstallPackages was called with broken packages!");
482 }
483
d38b7b3d
AL
484 if (Cache->DelCount() == 0 && Cache->InstCount() == 0 &&
485 Cache->BadCount() == 0)
0a8e3465 486 return true;
03e39e59
AL
487
488 // Run the simulator ..
489 if (_config->FindB("APT::Get::Simulate") == true)
490 {
491 pkgSimulate PM(Cache);
492 return PM.DoInstall();
493 }
494
495 // Create the text record parser
496 pkgRecords Recs(Cache);
83d89a9f
AL
497 if (_error->PendingError() == true)
498 return false;
499
d38b7b3d
AL
500 // Lock the archive directory
501 if (_config->FindB("Debug::NoLocking",false) == false)
502 {
503 FileFd Lock(GetLock(_config->FindDir("Dir::Cache::Archives") + "lock"));
504 if (_error->PendingError() == true)
505 return _error->Error("Unable to lock the download directory");
506 }
03e39e59
AL
507
508 // Create the download object
509 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
510 pkgAcquire Fetcher(&Stat);
511
512 // Read the source list
513 pkgSourceList List;
514 if (List.ReadMainList() == false)
515 return _error->Error("The list of sources could not be read.");
516
517 // Create the package manager and prepare to download
30e1eab5 518 pkgDPkgPM PM(Cache);
03e39e59
AL
519 if (PM.GetArchives(&Fetcher,&List,&Recs) == false)
520 return false;
521
7a1b1f8b 522 // Display statistics
a6568219
AL
523 unsigned long FetchBytes = Fetcher.FetchNeeded();
524 unsigned long DebBytes = Fetcher.TotalNeeded();
d38b7b3d
AL
525 if (DebBytes != Cache->DebSize())
526 {
527 c0out << DebBytes << ',' << Cache->DebSize() << endl;
a6568219 528 c0out << "How odd.. The sizes didn't match, email apt@packages.debian.org" << endl;
d38b7b3d
AL
529 }
530
7a1b1f8b 531 // Number of bytes
a6568219
AL
532 c1out << "Need to get ";
533 if (DebBytes != FetchBytes)
534 c1out << SizeToStr(FetchBytes) << '/' << SizeToStr(DebBytes);
535 else
536 c1out << SizeToStr(DebBytes);
537
538 c1out << " of archives. After unpacking ";
539
7a1b1f8b 540 // Size delta
d38b7b3d
AL
541 if (Cache->UsrSize() >= 0)
542 c1out << SizeToStr(Cache->UsrSize()) << " will be used." << endl;
a6568219 543 else
d38b7b3d 544 c1out << SizeToStr(-1*Cache->UsrSize()) << " will be freed." << endl;
a6568219
AL
545
546 if (_error->PendingError() == true)
547 return false;
548
83d89a9f
AL
549 // Fail safe check
550 if (_config->FindB("APT::Get::Assume-Yes",false) == true)
551 {
552 if (Fail == true && _config->FindB("APT::Get::Force-Yes",false) == false)
553 return _error->Error("There are problems and -y was used without --force-yes");
554 }
555
7a1b1f8b 556 // Prompt to continue
a6568219 557 if (Ask == true)
83d89a9f
AL
558 {
559 if (_config->FindI("quiet",0) < 2 ||
a6568219 560 _config->FindB("APT::Get::Assume-Yes",false) == false)
83d89a9f
AL
561 c2out << "Do you want to continue? [Y/n] " << flush;
562
a6568219
AL
563 if (YnPrompt() == false)
564 exit(1);
565 }
83d89a9f 566
03e39e59
AL
567 // Run it
568 if (Fetcher.Run() == false)
569 return false;
30e1eab5
AL
570
571 // Print out errors
572 bool Failed = false;
573 for (pkgAcquire::Item **I = Fetcher.ItemsBegin(); I != Fetcher.ItemsEnd(); I++)
574 {
575 if ((*I)->Status == pkgAcquire::Item::StatDone &&
576 (*I)->Complete == true)
577 continue;
578
579 cerr << "Failed to fetch " << (*I)->Describe() << endl;
580 cerr << " " << (*I)->ErrorText << endl;
581 Failed = true;
582 }
03e39e59 583
30e1eab5
AL
584 if (Failed == true && _config->FindB("APT::Fix-Missing",false) == false)
585 return _error->Error("Unable to fetch some archives, maybe try with --fix-missing?");
586
587 // Try to deal with missing package files
d38b7b3d 588 if (PM.FixMissing() == false)
30e1eab5
AL
589 {
590 cerr << "Unable to correct missing packages." << endl;
591 return _error->Error("Aborting Install.");
d38b7b3d 592 }
30e1eab5 593
d38b7b3d 594 Cache.Lock.Close();
30e1eab5 595 return PM.DoInstall();
0a8e3465
AL
596}
597 /*}}}*/
598
599// DoUpdate - Update the package lists /*{{{*/
600// ---------------------------------------------------------------------
601/* */
0919e3f9 602bool DoUpdate(CommandLine &)
0a8e3465 603{
0919e3f9
AL
604 // Get the source list
605 pkgSourceList List;
606 if (List.ReadMainList() == false)
607 return false;
608
d38b7b3d
AL
609 // Lock the list directory
610 if (_config->FindB("Debug::NoLocking",false) == false)
611 {
612 FileFd Lock(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
613 if (_error->PendingError() == true)
614 return _error->Error("Unable to lock the list directory");
615 }
616
0919e3f9
AL
617 // Create the download object
618 AcqTextStatus Stat(ScreenWidth,_config->FindI("quiet",0));
619 pkgAcquire Fetcher(&Stat);
620
621 // Populate it with the source selection
622 pkgSourceList::const_iterator I;
623 for (I = List.begin(); I != List.end(); I++)
624 {
625 new pkgAcqIndex(&Fetcher,I);
626 if (_error->PendingError() == true)
627 return false;
628 }
629
630 // Run it
631 if (Fetcher.Run() == false)
632 return false;
633
7a7fa5f0
AL
634 // Clean out any old list files
635 if (Fetcher.Clean(_config->FindDir("Dir::State::lists")) == false ||
636 Fetcher.Clean(_config->FindDir("Dir::State::lists") + "partial/") == false)
637 return false;
638
0919e3f9
AL
639 // Prepare the cache.
640 CacheFile Cache;
641 if (Cache.Open() == false)
642 return false;
643
644 return true;
0a8e3465
AL
645}
646 /*}}}*/
647// DoUpgrade - Upgrade all packages /*{{{*/
648// ---------------------------------------------------------------------
649/* Upgrade all packages without installing new packages or erasing old
650 packages */
651bool DoUpgrade(CommandLine &CmdL)
652{
653 CacheFile Cache;
654 if (Cache.Open() == false)
655 return false;
656
657 // Do the upgrade
0a8e3465
AL
658 if (pkgAllUpgrade(Cache) == false)
659 {
660 ShowBroken(c1out,Cache);
661 return _error->Error("Internal Error, AllUpgrade broke stuff");
662 }
663
664 return InstallPackages(Cache,true);
665}
666 /*}}}*/
667// DoInstall - Install packages from the command line /*{{{*/
668// ---------------------------------------------------------------------
669/* Install named packages */
670bool DoInstall(CommandLine &CmdL)
671{
672 CacheFile Cache;
673 if (Cache.Open() == false)
674 return false;
675
a6568219
AL
676 unsigned int ExpectedInst = 0;
677 unsigned int Packages = 0;
0a8e3465
AL
678 pkgProblemResolver Fix(Cache);
679
303a1703
AL
680 bool DefRemove = false;
681 if (strcasecmp(CmdL.FileList[0],"remove") == 0)
682 DefRemove = true;
683
0a8e3465
AL
684 for (const char **I = CmdL.FileList + 1; *I != 0; I++)
685 {
686 // Duplicate the string
687 unsigned int Length = strlen(*I);
688 char S[300];
689 if (Length >= sizeof(S))
690 continue;
691 strcpy(S,*I);
692
693 // See if we are removing the package
303a1703 694 bool Remove = DefRemove;
2c3bc8bb 695 if (Cache->FindPkg(S).end() == true)
0a8e3465 696 {
2c3bc8bb
AL
697 // Handle an optional end tag indicating what to do
698 if (S[Length - 1] == '-')
699 {
700 Remove = true;
701 S[--Length] = 0;
702 }
703 if (S[Length - 1] == '+')
704 {
705 Remove = false;
706 S[--Length] = 0;
707 }
303a1703 708 }
0a8e3465
AL
709
710 // Locate the package
711 pkgCache::PkgIterator Pkg = Cache->FindPkg(S);
303a1703 712 Packages++;
0a8e3465
AL
713 if (Pkg.end() == true)
714 return _error->Error("Couldn't find package %s",S);
715
2c3bc8bb
AL
716 // Handle the no-upgrade case
717 if (_config->FindB("APT::Get::no-upgrade",false) == true &&
718 Pkg->CurrentVer != 0)
719 {
720 c1out << "Skipping " << Pkg.Name() << ", it is already installed and no-upgrade is set." << endl;
721 continue;
722 }
723
0a8e3465
AL
724 // Check if there is something new to install
725 pkgDepCache::StateCache &State = (*Cache)[Pkg];
726 if (State.CandidateVer == 0)
303a1703
AL
727 {
728 if (Pkg->ProvidesList != 0)
729 {
730 c1out << "Package " << S << " is a virtual package provided by:" << endl;
731
732 pkgCache::PrvIterator I = Pkg.ProvidesList();
733 for (; I.end() == false; I++)
734 {
735 pkgCache::PkgIterator Pkg = I.OwnerPkg();
736
737 if ((*Cache)[Pkg].CandidateVerIter(*Cache) == I.OwnerVer())
738 c1out << " " << Pkg.Name() << " " << I.OwnerVer().VerStr() << endl;
739
740 if ((*Cache)[Pkg].InstVerIter(*Cache) == I.OwnerVer())
741 c1out << " " << Pkg.Name() << " " << I.OwnerVer().VerStr() <<
742 " [Installed]"<< endl;
743 }
744 c1out << "You should explicly select one to install." << endl;
745 }
746 else
747 {
748 c1out << "Package " << S << " has no available version, but exists in the database." << endl;
749 c1out << "This typically means that the package was mentioned in a dependency and " << endl;
750 c1out << "never uploaded, or that it is an obsolete package." << endl;
07801a6d
AL
751
752 string List;
753 pkgCache::DepIterator Dep = Pkg.RevDependsList();
754 for (; Dep.end() == false; Dep++)
755 {
756 if (Dep->Type != pkgCache::Dep::Replaces)
757 continue;
758 List += string(Dep.ParentPkg().Name()) + " ";
759 }
760 ShowList(c1out,"However the following packages replace it:",List);
303a1703
AL
761 }
762
0a8e3465 763 return _error->Error("Package %s has no installation candidate",S);
303a1703 764 }
0a8e3465
AL
765
766 Fix.Protect(Pkg);
767 if (Remove == true)
768 {
303a1703 769 Fix.Remove(Pkg);
0a8e3465
AL
770 Cache->MarkDelete(Pkg);
771 continue;
772 }
773
774 // Install it
775 Cache->MarkInstall(Pkg,false);
776 if (State.Install() == false)
777 c1out << "Sorry, " << S << " is already the newest version" << endl;
778 else
779 ExpectedInst++;
780
781 // Install it with autoinstalling enabled.
782 if (State.InstBroken() == true)
783 Cache->MarkInstall(Pkg,true);
784 }
785
786 // Call the scored problem resolver
303a1703 787 Fix.InstallProtect();
0a8e3465
AL
788 if (Fix.Resolve(true) == false)
789 _error->Discard();
790
791 // Now we check the state of the packages,
792 if (Cache->BrokenCount() != 0)
793 {
303a1703
AL
794 c1out << "Some packages could not be installed. This may mean that you have" << endl;
795 c1out << "requested an impossible situation or if you are using the unstable" << endl;
796 c1out << "distribution that some required packages have not yet been created" << endl;
797 c1out << "or been moved out of Incoming." << endl;
798 if (Packages == 1)
799 {
800 c1out << endl;
801 c1out << "Since you only requested a single operation it is extremely likely that" << endl;
802 c1out << "the package is simply not installable and a bug report against" << endl;
803 c1out << "that package should be filed." << endl;
804 }
805
806 c1out << "The following information may help to resolve the situation:" << endl;
807 c1out << endl;
0a8e3465
AL
808 ShowBroken(c1out,Cache);
809 return _error->Error("Sorry, broken packages");
810 }
811
812 /* Print out a list of packages that are going to be installed extra
813 to what the user asked */
814 if (Cache->InstCount() != ExpectedInst)
815 {
816 string List;
817 pkgCache::PkgIterator I = Cache->PkgBegin();
818 for (;I.end() != true; I++)
819 {
820 if ((*Cache)[I].Install() == false)
821 continue;
822
823 const char **J;
824 for (J = CmdL.FileList + 1; *J != 0; J++)
825 if (strcmp(*J,I.Name()) == 0)
826 break;
827
828 if (*J == 0)
829 List += string(I.Name()) + " ";
830 }
831
832 ShowList(c1out,"The following extra packages will be installed:",List);
833 }
834
03e39e59 835 // See if we need to prompt
2c3bc8bb 836 if (Cache->InstCount() == ExpectedInst && Cache->DelCount() == 0)
2c3bc8bb 837 return InstallPackages(Cache,false,false);
2c3bc8bb 838
03e39e59 839 return InstallPackages(Cache,false);
0a8e3465
AL
840}
841 /*}}}*/
842// DoDistUpgrade - Automatic smart upgrader /*{{{*/
843// ---------------------------------------------------------------------
844/* Intelligent upgrader that will install and remove packages at will */
845bool DoDistUpgrade(CommandLine &CmdL)
846{
847 CacheFile Cache;
848 if (Cache.Open() == false)
849 return false;
850
851 c0out << "Calculating Upgrade... " << flush;
852 if (pkgDistUpgrade(*Cache) == false)
853 {
854 c0out << "Failed" << endl;
855 ShowBroken(c1out,Cache);
856 return false;
857 }
858
859 c0out << "Done" << endl;
860
861 return InstallPackages(Cache,true);
862}
863 /*}}}*/
864// DoDSelectUpgrade - Do an upgrade by following dselects selections /*{{{*/
865// ---------------------------------------------------------------------
866/* Follows dselect's selections */
867bool DoDSelectUpgrade(CommandLine &CmdL)
868{
869 CacheFile Cache;
870 if (Cache.Open() == false)
871 return false;
872
873 // Install everything with the install flag set
874 pkgCache::PkgIterator I = Cache->PkgBegin();
875 for (;I.end() != true; I++)
876 {
877 /* Install the package only if it is a new install, the autoupgrader
878 will deal with the rest */
879 if (I->SelectedState == pkgCache::State::Install)
880 Cache->MarkInstall(I,false);
881 }
882
883 /* Now install their deps too, if we do this above then order of
884 the status file is significant for | groups */
885 for (I = Cache->PkgBegin();I.end() != true; I++)
886 {
887 /* Install the package only if it is a new install, the autoupgrader
888 will deal with the rest */
889 if (I->SelectedState == pkgCache::State::Install)
890 Cache->MarkInstall(I);
891 }
892
893 // Apply erasures now, they override everything else.
894 for (I = Cache->PkgBegin();I.end() != true; I++)
895 {
896 // Remove packages
897 if (I->SelectedState == pkgCache::State::DeInstall ||
898 I->SelectedState == pkgCache::State::Purge)
899 Cache->MarkDelete(I);
900 }
901
902 /* Use updates smart upgrade to do the rest, it will automatically
903 ignore held items */
904 if (pkgAllUpgrade(Cache) == false)
905 {
906 ShowBroken(c1out,Cache);
907 return _error->Error("Internal Error, AllUpgrade broke stuff");
908 }
909
910 return InstallPackages(Cache,false);
911}
912 /*}}}*/
913// DoClean - Remove download archives /*{{{*/
914// ---------------------------------------------------------------------
915/* */
916bool DoClean(CommandLine &CmdL)
917{
7a1b1f8b
AL
918 pkgAcquire Fetcher;
919 Fetcher.Clean(_config->FindDir("Dir::Cache::archives"));
920 Fetcher.Clean(_config->FindDir("Dir::Cache::archives") + "partial/");
0a8e3465
AL
921 return true;
922}
923 /*}}}*/
924// DoCheck - Perform the check operation /*{{{*/
925// ---------------------------------------------------------------------
926/* Opening automatically checks the system, this command is mostly used
927 for debugging */
928bool DoCheck(CommandLine &CmdL)
929{
930 CacheFile Cache;
931 Cache.Open();
932
933 return true;
934}
935 /*}}}*/
936
937// ShowHelp - Show a help screen /*{{{*/
938// ---------------------------------------------------------------------
939/* */
940int ShowHelp()
941{
942 cout << PACKAGE << ' ' << VERSION << " for " << ARCHITECTURE <<
943 " compiled on " << __DATE__ << " " << __TIME__ << endl;
944
945 cout << "Usage: apt-get [options] command" << endl;
946 cout << " apt-get [options] install pkg1 [pkg2 ...]" << endl;
947 cout << endl;
948 cout << "apt-get is a simple command line interface for downloading and" << endl;
949 cout << "installing packages. The most frequently used commands are update" << endl;
950 cout << "and install." << endl;
951 cout << endl;
952 cout << "Commands:" << endl;
953 cout << " update - Retrieve new lists of packages" << endl;
954 cout << " upgrade - Perform an upgrade" << endl;
955 cout << " install - Install new packages (pkg is libc6 not libc6.deb)" << endl;
303a1703 956 cout << " remove - Remove packages" << endl;
0a8e3465
AL
957 cout << " dist-upgrade - Distribution upgrade, see apt-get(8)" << endl;
958 cout << " dselect-upgrade - Follow dselect selections" << endl;
959 cout << " clean - Erase downloaded archive files" << endl;
960 cout << " check - Verify that there are no broken dependencies" << endl;
961 cout << endl;
962 cout << "Options:" << endl;
c217f42a
AL
963 cout << " -h This help text." << endl;
964 cout << " -q Loggable output - no progress indicator" << endl;
0a8e3465
AL
965 cout << " -qq No output except for errors" << endl;
966 cout << " -d Download only - do NOT install or unpack archives" << endl;
967 cout << " -s No-act. Perform ordering simulation" << endl;
968 cout << " -y Assume Yes to all queries and do not prompt" << endl;
969 cout << " -f Attempt to continue if the integrity check fails" << endl;
970 cout << " -m Attempt to continue if archives are unlocatable" << endl;
971 cout << " -u Show a list of upgraded packages as well" << endl;
972 cout << " -c=? Read this configuration file" << endl;
973 cout << " -o=? Set an arbitary configuration option, ie -o dir::cache=/tmp" << endl;
974 cout << "See the apt-get(8), sources.list(8) and apt.conf(8) manual" << endl;
975 cout << "pages for more information." << endl;
976 return 100;
977}
978 /*}}}*/
979// GetInitialize - Initialize things for apt-get /*{{{*/
980// ---------------------------------------------------------------------
981/* */
982void GetInitialize()
983{
984 _config->Set("quiet",0);
985 _config->Set("help",false);
986 _config->Set("APT::Get::Download-Only",false);
987 _config->Set("APT::Get::Simulate",false);
988 _config->Set("APT::Get::Assume-Yes",false);
989 _config->Set("APT::Get::Fix-Broken",false);
83d89a9f 990 _config->Set("APT::Get::Force-Yes",false);
0a8e3465
AL
991}
992 /*}}}*/
d7827aca
AL
993// SigWinch - Window size change signal handler /*{{{*/
994// ---------------------------------------------------------------------
995/* */
996void SigWinch(int)
997{
998 // Riped from GNU ls
999#ifdef TIOCGWINSZ
1000 struct winsize ws;
1001
1002 if (ioctl(1, TIOCGWINSZ, &ws) != -1 && ws.ws_col >= 5)
1003 ScreenWidth = ws.ws_col - 1;
1004#endif
1005}
1006 /*}}}*/
0a8e3465
AL
1007
1008int main(int argc,const char *argv[])
1009{
1010 CommandLine::Args Args[] = {
1011 {'h',"help","help",0},
1012 {'q',"quiet","quiet",CommandLine::IntLevel},
1013 {'q',"silent","quiet",CommandLine::IntLevel},
1014 {'d',"download-only","APT::Get::Download-Only",0},
1015 {'s',"simulate","APT::Get::Simulate",0},
1016 {'s',"just-print","APT::Get::Simulate",0},
1017 {'s',"recon","APT::Get::Simulate",0},
1018 {'s',"no-act","APT::Get::Simulate",0},
1019 {'y',"yes","APT::Get::Assume-Yes",0},
1020 {'y',"assume-yes","APT::Get::Assume-Yes",0},
1021 {'f',"fix-broken","APT::Get::Fix-Broken",0},
1022 {'u',"show-upgraded","APT::Get::Show-Upgraded",0},
30e1eab5
AL
1023 {'m',"ignore-missing","APT::Get::Fix-Missing",0},
1024 {0,"fix-missing","APT::Get::Fix-Missing",0},
c88edf1d 1025 {0,"ignore-hold","APT::Ingore-Hold",0},
83d89a9f
AL
1026 {0,"no-upgrade","APT::Get::no-upgrade",0},
1027 {0,"force-yes","APT::Get::force-yes",0},
0a8e3465
AL
1028 {'c',"config-file",0,CommandLine::ConfigFile},
1029 {'o',"option",0,CommandLine::ArbItem},
1030 {0,0,0,0}};
83d89a9f
AL
1031 CommandLine::Dispatch Cmds[] = {{"update",&DoUpdate},
1032 {"upgrade",&DoUpgrade},
1033 {"install",&DoInstall},
1034 {"remove",&DoInstall},
1035 {"dist-upgrade",&DoDistUpgrade},
1036 {"dselect-upgrade",&DoDSelectUpgrade},
1037 {"clean",&DoClean},
1038 {"check",&DoCheck},
1039 {0,0}};
0a8e3465
AL
1040
1041 // Parse the command line and initialize the package library
1042 CommandLine CmdL(Args,_config);
1043 if (pkgInitialize(*_config) == false ||
1044 CmdL.Parse(argc,argv) == false)
1045 {
1046 _error->DumpErrors();
1047 return 100;
1048 }
1049
1050 // See if the help should be shown
1051 if (_config->FindB("help") == true ||
1052 CmdL.FileSize() == 0)
1053 return ShowHelp();
1054
1055 // Setup the output streams
1056 c0out.rdbuf(cout.rdbuf());
1057 c1out.rdbuf(cout.rdbuf());
1058 c2out.rdbuf(cout.rdbuf());
1059 if (_config->FindI("quiet",0) > 0)
1060 c0out.rdbuf(devnull.rdbuf());
1061 if (_config->FindI("quiet",0) > 1)
1062 c1out.rdbuf(devnull.rdbuf());
d7827aca
AL
1063
1064 // Setup the signals
1065 signal(SIGPIPE,SIG_IGN);
1066 signal(SIGWINCH,SigWinch);
1067 SigWinch(0);
0a8e3465
AL
1068
1069 // Match the operation
83d89a9f 1070 CmdL.DispatchArg(Cmds);
0a8e3465
AL
1071
1072 // Print any errors or warnings found during parsing
1073 if (_error->empty() == false)
1074 {
1075 bool Errors = _error->PendingError();
1076 _error->DumpErrors();
1077 if (Errors == true)
1078 cout << "Returning 100." << endl;
1079 return Errors == true?100:0;
1080 }
1081
1082 return 0;
1083}