| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465 |
- /*
- * dpkg - main program for package management
- * enquiry.c - status enquiry and listing options
- *
- * Copyright (C) 1995,1996 Ian Jackson <ian@chiark.greenend.org.uk>
- *
- * This is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2,
- * or (at your option) any later version.
- *
- * This is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with dpkg; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
- /* fixme: per-package audit */
- #include <config.h>
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- #include <fnmatch.h>
- #include <assert.h>
- #include <unistd.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <sys/ioctl.h>
- #include <sys/termios.h>
- #include <fcntl.h>
- #include <dpkg.h>
- #include <dpkg-db.h>
- #include <myopt.h>
- #include "filesdb.h"
- #include "main.h"
- int pkglistqsortcmp(const void *a, const void *b) {
- const struct pkginfo *pa= *(const struct pkginfo**)a;
- const struct pkginfo *pb= *(const struct pkginfo**)b;
- return strcmp(pa->name,pb->name);
- }
- static void limiteddescription(struct pkginfo *pkg, int maxl,
- const char **pdesc_r, int *l_r) {
- const char *pdesc, *p;
- int l;
-
- pdesc = pkg->installed.valid ? pkg->installed.description : NULL;
- if (!pdesc) pdesc= _("(no description available)");
- p= strchr(pdesc,'\n');
- if (!p) p= pdesc+strlen(pdesc);
- l= (p - pdesc > maxl) ? maxl : (int)(p - pdesc);
- *pdesc_r=pdesc; *l_r=l;
- }
- struct badstatinfo {
- int (*yesno)(struct pkginfo*, const struct badstatinfo *bsi);
- int val;
- const char *explanation;
- };
- static int bsyn_reinstreq(struct pkginfo *pkg, const struct badstatinfo *bsi) {
- return pkg->eflag &= eflagf_reinstreq;
- }
- static int bsyn_status(struct pkginfo *pkg, const struct badstatinfo *bsi) {
- if (pkg->eflag &= eflagf_reinstreq) return 0;
- return (int)pkg->status == bsi->val;
- }
- static const struct badstatinfo badstatinfos[]= {
- {
- bsyn_reinstreq, 0,
- N_("The following packages are in a mess due to serious problems during\n"
- "installation. They must be reinstalled for them (and any packages\n"
- "that depend on them) to function properly:\n")
- }, {
- bsyn_status, stat_unpacked,
- N_("The following packages have been unpacked but not yet configured.\n"
- "They must be configured using dpkg --configure or the configure\n"
- "menu option in dselect for them to work:\n")
- }, {
- bsyn_status, stat_halfconfigured,
- N_("The following packages are only half configured, probably due to problems\n"
- "configuring them the first time. The configuration should be retried using\n"
- "dpkg --configure <package> or the configure menu option in dselect:\n")
- }, {
- bsyn_status, stat_halfinstalled,
- N_("The following packages are only half installed, due to problems during\n"
- "installation. The installation can probably be completed by retrying it;\n"
- "the packages can be removed using dselect or dpkg --remove:\n")
- }, {
- NULL
- }
- };
- static void describebriefly(struct pkginfo *pkg) {
- int maxl, l;
- const char *pdesc;
- maxl= 57;
- l= strlen(pkg->name);
- if (l>20) maxl -= (l-20);
- limiteddescription(pkg,maxl,&pdesc,&l);
- printf(" %-20s %.*s\n",pkg->name,l,pdesc);
- }
- void audit(const char *const *argv) {
- struct pkgiterator *it;
- struct pkginfo *pkg;
- const struct badstatinfo *bsi;
- int head;
- if (*argv) badusage(_("--audit does not take any arguments"));
- modstatdb_init(admindir,msdbrw_readonly);
- for (bsi= badstatinfos; bsi->yesno; bsi++) {
- head= 0;
- it= iterpkgstart();
- while ((pkg= iterpkgnext(it))) {
- if (!bsi->yesno(pkg,bsi)) continue;
- if (!head) {
- fputs(gettext(bsi->explanation),stdout);
- head= 1;
- }
- describebriefly(pkg);
- }
- iterpkgend(it);
- if (head) putchar('\n');
- }
- if (ferror(stderr)) werr("stderr");
- }
- struct sectionentry {
- struct sectionentry *next;
- const char *name;
- int count;
- };
- static int yettobeunpacked(struct pkginfo *pkg, const char **thissect) {
- if (pkg->want != want_install) return 0;
- switch (pkg->status) {
- case stat_unpacked: case stat_installed: case stat_halfconfigured:
- return 0;
- case stat_notinstalled: case stat_halfinstalled: case stat_configfiles:
- if (thissect)
- *thissect= pkg->section && *pkg->section ? pkg->section : _("<unknown>");
- return 1;
- default:
- internerr("unknown status checking for unpackedness");
- }
- return 0;
- }
- void unpackchk(const char *const *argv) {
- int totalcount, sects;
- struct sectionentry *sectionentries, *se, **sep;
- struct pkgiterator *it;
- struct pkginfo *pkg;
- const char *thissect;
- char buf[20];
- int width;
-
- if (*argv) badusage(_("--yet-to-unpack does not take any arguments"));
- modstatdb_init(admindir,msdbrw_readonly|msdbrw_noavail);
- totalcount= 0;
- sectionentries = NULL;
- sects= 0;
- it= iterpkgstart();
- while ((pkg= iterpkgnext(it))) {
- if (!yettobeunpacked(pkg, &thissect)) continue;
- for (se= sectionentries; se && strcasecmp(thissect,se->name); se= se->next);
- if (!se) {
- se= nfmalloc(sizeof(struct sectionentry));
- for (sep= §ionentries;
- *sep && strcasecmp(thissect,(*sep)->name) > 0;
- sep= &(*sep)->next);
- se->name= thissect;
- se->count= 0;
- se->next= *sep;
- *sep= se;
- sects++;
- }
- se->count++; totalcount++;
- }
- iterpkgend(it);
- if (totalcount == 0) exit(0);
-
- if (totalcount <= 12) {
- it= iterpkgstart();
- while ((pkg= iterpkgnext(it))) {
- if (!yettobeunpacked(pkg, NULL))
- continue;
- describebriefly(pkg);
- }
- iterpkgend(it);
- } else if (sects <= 12) {
- for (se= sectionentries; se; se= se->next) {
- sprintf(buf,"%d",se->count);
- printf(_(" %d in %s: "),se->count,se->name);
- width= 70-strlen(se->name)-strlen(buf);
- while (width > 59) { putchar(' '); width--; }
- it= iterpkgstart();
- while ((pkg= iterpkgnext(it))) {
- if (!yettobeunpacked(pkg,&thissect)) continue;
- if (strcasecmp(thissect,se->name)) continue;
- width -= strlen(pkg->name); width--;
- if (width < 4) { printf(" ..."); break; }
- printf(" %s",pkg->name);
- }
- iterpkgend(it);
- putchar('\n');
- }
- } else {
- printf(_(" %d packages, from the following sections:"),totalcount);
- width= 0;
- for (se= sectionentries; se; se= se->next) {
- sprintf(buf,"%d",se->count);
- width -= (6 + strlen(se->name) + strlen(buf));
- if (width < 0) { putchar('\n'); width= 73 - strlen(se->name) - strlen(buf); }
- printf(" %s (%d)",se->name,se->count);
- }
- putchar('\n');
- }
- fflush(stdout);
- if (ferror(stdout)) werr("stdout");
- }
- static void assertversion(const char *const *argv,
- struct versionrevision *verrev_buf,
- const char *reqversion) {
- struct pkginfo *pkg;
- if (*argv) badusage(_("--assert-* does not take any arguments"));
- modstatdb_init(admindir,msdbrw_readonly|msdbrw_noavail);
- if (verrev_buf->epoch == ~0UL) {
- verrev_buf->epoch= 0;
- verrev_buf->version= nfstrsave(reqversion);
- verrev_buf->revision = NULL;
- }
- pkg= findpackage("dpkg");
- switch (pkg->status) {
- case stat_installed:
- break;
- case stat_unpacked: case stat_halfconfigured: case stat_halfinstalled:
- if (versionsatisfied3(&pkg->configversion,verrev_buf,dvr_laterequal))
- break;
- printf(_("Version of dpkg with working epoch support not yet configured.\n"
- " Please use `dpkg --configure dpkg', and then try again.\n"));
- exit(1);
- default:
- printf(_("dpkg not recorded as installed, cannot check for epoch support !\n"));
- exit(1);
- }
- }
- void assertpredep(const char *const *argv) {
- static struct versionrevision predepversion = { ~0UL, NULL, NULL };
- assertversion(argv,&predepversion,"1.1.0");
- }
- void assertepoch(const char *const *argv) {
- static struct versionrevision epochversion = { ~0UL, NULL, NULL };
- assertversion(argv,&epochversion,"1.4.0.7");
- }
- void assertlongfilenames(const char *const *argv) {
- static struct versionrevision epochversion = { ~0UL, NULL, NULL };
- assertversion(argv,&epochversion,"1.4.1.17");
- }
- void assertmulticonrep(const char *const *argv) {
- static struct versionrevision epochversion = { ~0UL, NULL, NULL };
- assertversion(argv,&epochversion,"1.4.1.19");
- }
- void predeppackage(const char *const *argv) {
- /* Print a single package which:
- * (a) is the target of one or more relevant predependencies.
- * (b) has itself no unsatisfied pre-dependencies.
- * If such a package is present output is the Packages file entry,
- * which can be massaged as appropriate.
- * Exit status:
- * 0 = a package printed, OK
- * 1 = no suitable package available
- * 2 = error
- */
- static struct varbuf vb;
-
- struct pkgiterator *it;
- struct pkginfo *pkg = NULL, *startpkg, *trypkg;
- struct dependency *dep;
- struct deppossi *possi, *provider;
- if (*argv) badusage(_("--predep-package does not take any argument"));
- modstatdb_init(admindir,msdbrw_readonly);
- clear_istobes(); /* We use clientdata->istobe to detect loops */
- for (it = iterpkgstart(), dep = NULL;
- !dep && (pkg=iterpkgnext(it));
- ) {
- if (pkg->want != want_install) continue; /* Ignore packages user doesn't want */
- if (!pkg->files) continue; /* Ignore packages not available */
- pkg->clientdata->istobe= itb_preinstall;
- for (dep= pkg->available.depends; dep; dep= dep->next) {
- if (dep->type != dep_predepends) continue;
- if (depisok(dep, &vb, NULL, 1))
- continue;
- break; /* This will leave dep non-NULL, and so exit the loop. */
- }
- pkg->clientdata->istobe= itb_normal;
- /* If dep is NULL we go and get the next package. */
- }
- if (!dep) exit(1); /* Not found */
- assert(pkg);
- startpkg= pkg;
- pkg->clientdata->istobe= itb_preinstall;
- /* OK, we have found an unsatisfied predependency.
- * Now go and find the first thing we need to install, as a first step
- * towards satisfying it.
- */
- do {
- /* We search for a package which would satisfy dep, and put it in pkg */
- for (possi = dep->list, pkg = NULL;
- !pkg && possi;
- possi=possi->next) {
- trypkg= possi->ed;
- if (!trypkg->available.valid) continue;
- if (trypkg->files && versionsatisfied(&trypkg->available,possi)) {
- if (trypkg->clientdata->istobe == itb_normal) { pkg= trypkg; break; }
- }
- if (possi->verrel != dvr_none) continue;
- for (provider=possi->ed->available.depended;
- !pkg && provider;
- provider=provider->next) {
- if (provider->up->type != dep_provides) continue;
- trypkg= provider->up->up;
- if (!trypkg->available.valid || !trypkg->files) continue;
- if (trypkg->clientdata->istobe == itb_normal) { pkg= trypkg; break; }
- }
- }
- if (!pkg) {
- varbufreset(&vb);
- describedepcon(&vb,dep);
- varbufaddc(&vb,0);
- fprintf(stderr, _("dpkg: cannot see how to satisfy pre-dependency:\n %s\n"),vb.buf);
- ohshit(_("cannot satisfy pre-dependencies for %.250s (wanted due to %.250s)"),
- dep->up->name,startpkg->name);
- }
- pkg->clientdata->istobe= itb_preinstall;
- for (dep= pkg->available.depends; dep; dep= dep->next) {
- if (dep->type != dep_predepends) continue;
- if (depisok(dep, &vb, NULL, 1))
- continue;
- break; /* This will leave dep non-NULL, and so exit the loop. */
- }
- } while (dep);
- /* OK, we've found it - pkg has no unsatisfied pre-dependencies ! */
- writerecord(stdout,"<stdout>",pkg,&pkg->available);
- if (fflush(stdout)) werr("stdout");
- }
- void printarch(const char *const *argv) {
- if (*argv) badusage(_("--print-architecture does not take any argument"));
- if (printf("%s\n",architecture) == EOF) werr("stdout");
- if (fflush(stdout)) werr("stdout");
- }
- void cmpversions(const char *const *argv) {
- struct relationinfo {
- const char *string;
- /* These values are exit status codes, so 0=true, 1=false */
- int if_lesser, if_equal, if_greater;
- int if_none_a, if_none_both, if_none_b;
- };
- static const struct relationinfo relationinfos[]= {
- /* < = > !a!2!b */
- { "le", 0,0,1, 0,0,1 },
- { "lt", 0,1,1, 0,1,1 },
- { "eq", 1,0,1, 1,0,1 },
- { "ne", 0,1,0, 0,1,0 },
- { "ge", 1,0,0, 1,0,0 },
- { "gt", 1,1,0, 1,1,0 },
- { "le-nl", 0,0,1, 1,0,0 }, /* Here none */
- { "lt-nl", 0,1,1, 1,1,0 }, /* is counted */
- { "ge-nl", 1,0,0, 0,0,1 }, /* than any version.*/
- { "gt-nl", 1,1,0, 0,1,1 }, /* */
- { "<", 0,0,1, 0,0,1 }, /* For compatibility*/
- { "<=", 0,0,1, 0,0,1 }, /* with dpkg */
- { "<<", 0,1,1, 0,1,1 }, /* control file */
- { "=", 1,0,1, 1,0,1 }, /* syntax */
- { ">", 1,0,0, 1,0,0 }, /* */
- { ">=", 1,0,0, 1,0,0 },
- { ">>", 1,1,0, 1,1,0 },
- { NULL }
- };
- const struct relationinfo *rip;
- const char *emsg;
- struct versionrevision a, b;
- int r;
-
- if (!argv[0] || !argv[1] || !argv[2] || argv[3])
- badusage(_("--compare-versions takes three arguments:"
- " <version> <relation> <version>"));
- for (rip=relationinfos; rip->string && strcmp(rip->string,argv[1]); rip++);
- if (!rip->string) badusage(_("--compare-versions bad relation"));
- if (*argv[0] && strcmp(argv[0],"<unknown>")) {
- emsg= parseversion(&a,argv[0]);
- if (emsg) {
- if (printf(_("dpkg: version '%s' has bad syntax: %s\n"), argv[0], emsg) == EOF)
- werr("stdout");
- if (fflush(stdout)) werr("stdout");
- exit(1);
- }
- } else {
- blankversion(&a);
- }
- if (*argv[2] && strcmp(argv[2],"<unknown>")) {
- emsg= parseversion(&b,argv[2]);
- if (emsg) {
- if (printf(_("dpkg: version '%s' has bad syntax: %s\n"), argv[2], emsg) == EOF)
- werr("stdout");
- if (fflush(stdout)) werr("stdout");
- exit(1);
- }
- } else {
- blankversion(&b);
- }
- if (!informativeversion(&a)) {
- exit(informativeversion(&b) ? rip->if_none_a : rip->if_none_both);
- } else if (!informativeversion(&b)) {
- exit(rip->if_none_b);
- }
- r= versioncompare(&a,&b);
- debug(dbg_general,"cmpversions a=`%s' b=`%s' r=%d",
- versiondescribe(&a,vdew_always),
- versiondescribe(&b,vdew_always),
- r);
- if (r>0) exit(rip->if_greater);
- else if (r<0) exit(rip->if_lesser);
- else exit(rip->if_equal);
- }
|