1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
|
/*
* dpkg-query - program for query the dpkg database
* query.c - status enquiry and listing options
*
* dpkg - main program for package management
* enquiry.c - status enquiry and listing options
*
* Copyright (C) 1995,1996 Ian Jackson <ian@chiark.greenend.org.uk>
* Copyright (C) 200,2001 Wichert Akkerman <wakkerma@debian.org>
*
* 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.
*/
#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"
static const char* showformat = "${Package}\t${Version}\n";
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 : 0;
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;
}
static int getwidth(void) {
int fd;
int res;
struct winsize ws;
const char* columns;
if ((columns=getenv("COLUMNS")) && ((res=atoi(columns))>0))
return res;
else if (!isatty(1))
return -1;
else {
if ((fd=open("/dev/tty",O_RDONLY))!=-1) {
if (ioctl(fd, TIOCGWINSZ, &ws)==-1)
ws.ws_col=80;
close(fd);
}
return ws.ws_col;
}
}
static void list1package(struct pkginfo *pkg, int *head,
struct pkginfo **pkgl, int np) {
int i,l,w;
static int nw,vw,dw;
const char *pdesc;
static char format[80] = "";
if (format[0]==0) {
w=getwidth();
if (w == -1) {
nw=14, vw=14, dw=44;
for (i=0; i<np; i++) {
const char *pdesc;
int plen, vlen, dlen;
pdesc= pkg->installed.valid ? pkg->installed.description : 0;
if (!pdesc) pdesc= _("(no description available)");
plen= strlen(pkgl[i]->name);
vlen = strlen(versiondescribe(&pkgl[i]->installed.version, vdew_nonambig));
dlen= strcspn(pdesc, "\n");
if (plen > nw) nw = plen;
if (vlen > vw) vw = vlen;
if (dlen > dw) dw = dlen;
}
} else {
w-=80;
if (w<0) w=0; /* lets not try to deal with terminals that are too small */
w>>=2; /* halve that so we can add that to the both the name and description */
nw=(14+w); /* name width */
vw=(14+w); /* version width */
dw=(44+(2*w)); /* description width */
}
sprintf(format,"%%c%%c%%c %%-%d.%ds %%-%d.%ds %%.*s\n", nw, nw, vw, vw);
}
if (!*head) {
fputs(_("\
Desired=Unknown/Install/Remove/Purge/Hold\n\
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend\n\
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)\n"), stdout);
printf(format,'|','|','/', _("Name"), _("Version"), 40, _("Description"));
printf("+++-"); /* status */
for (l=0;l<nw;l++) printf("="); printf("-"); /* packagename */
for (l=0;l<vw;l++) printf("="); printf("-"); /* version */
for (l=0;l<dw;l++) printf("="); /* description */
printf("\n");
*head= 1;
}
if (!pkg->installed.valid) blankpackageperfile(&pkg->installed);
limiteddescription(pkg,dw,&pdesc,&l);
printf(format,
"uihrp"[pkg->want],
"ncHUFWti"[pkg->status],
" R?#"[pkg->eflag],
pkg->name,
versiondescribe(&pkg->installed.version, vdew_nonambig),
l, pdesc);
}
void listpackages(const char *const *argv) {
struct pkgiterator *it;
struct pkginfo *pkg;
struct pkginfo **pkgl;
int np, i, head;
modstatdb_init(admindir,msdbrw_readonly);
np= countpackages();
pkgl= m_malloc(sizeof(struct pkginfo*)*np);
it= iterpkgstart(); i=0;
while ((pkg= iterpkgnext(it))) {
assert(i<np);
pkgl[i++]= pkg;
}
iterpkgend(it);
assert(i==np);
qsort(pkgl, np, sizeof(struct pkginfo*), pkglistqsortcmp);
head = 0;
if (!*argv) {
for (i=0; i<np; i++) {
pkg= pkgl[i];
if (pkg->status == stat_notinstalled) continue;
list1package(pkg, &head, pkgl, np);
}
} else {
int argc, ip, *found;
for (argc = 0; argv[argc]; argc++);
found = m_malloc(sizeof(int) * argc);
memset(found, 0, sizeof(int) * argc);
for (i = 0; i < np; i++) {
pkg = pkgl[i];
for (ip = 0; ip < argc; ip++) {
if (!fnmatch(argv[ip], pkg->name, 0)) {
list1package(pkg, &head, pkgl, np);
found[ip]++;
break;
}
}
}
/* FIXME: we might get non-matching messages for sub-patterns specified
* after their super-patterns, due to us skipping on first match. */
for (ip = 0; ip < argc; ip++) {
if (!found[ip]) {
fprintf(stderr, _("No packages found matching %s.\n"), argv[ip]);
nerrs++;
}
}
}
if (ferror(stdout)) werr("stdout");
if (ferror(stderr)) werr("stderr");
modstatdb_shutdown();
}
static int searchoutput(struct filenamenode *namenode) {
int found, i;
struct filepackages *packageslump;
if (namenode->divert) {
const char *name_from = namenode->divert->camefrom ?
namenode->divert->camefrom->name : namenode->name;
const char *name_to = namenode->divert->useinstead ?
namenode->divert->useinstead->name : namenode->name;
if (namenode->divert->pkg) {
printf(_("diversion by %s from: %s\n"),
namenode->divert->pkg->name, name_from);
printf(_("diversion by %s to: %s\n"),
namenode->divert->pkg->name, name_to);
} else {
printf(_("local diversion from: %s\n"), name_from);
printf(_("local diversion to: %s\n"), name_to);
}
}
found= 0;
for (packageslump= namenode->packages;
packageslump;
packageslump= packageslump->more) {
for (i=0; i < PERFILEPACKAGESLUMP && packageslump->pkgs[i]; i++) {
if (found) fputs(", ",stdout);
fputs(packageslump->pkgs[i]->name,stdout);
found++;
}
}
if (found) printf(": %s\n",namenode->name);
return found + (namenode->divert ? 1 : 0);
}
void searchfiles(const char *const *argv) {
struct filenamenode *namenode;
struct fileiterator *it;
const char *thisarg;
int found;
static struct varbuf vb;
if (!*argv)
badusage(_("--search needs at least one file name pattern argument"));
modstatdb_init(admindir,msdbrw_readonly|msdbrw_noavail);
ensure_allinstfiles_available_quiet();
ensure_diversions();
while ((thisarg= *argv++) != 0) {
found= 0;
if (!strchr("*[?/",*thisarg)) {
varbufreset(&vb);
varbufaddc(&vb,'*');
varbufaddstr(&vb,thisarg);
varbufaddc(&vb,'*');
varbufaddc(&vb,0);
thisarg= vb.buf;
}
if (strcspn(thisarg,"*[?\\") == strlen(thisarg)) {
namenode= findnamenode(thisarg, 0);
found += searchoutput(namenode);
} else {
it= iterfilestart();
while ((namenode= iterfilenext(it)) != 0) {
if (fnmatch(thisarg,namenode->name,0)) continue;
found+= searchoutput(namenode);
}
iterfileend(it);
}
if (!found) {
fprintf(stderr,_("dpkg: %s not found.\n"),thisarg);
nerrs++;
if (ferror(stderr)) werr("stderr");
} else {
if (ferror(stdout)) werr("stdout");
}
}
modstatdb_shutdown();
}
void enqperpackage(const char *const *argv) {
int failures;
const char *thisarg;
struct fileinlist *file;
struct pkginfo *pkg;
struct filenamenode *namenode;
if (!*argv)
badusage(_("--%s needs at least one package name argument"), cipaction->olong);
failures= 0;
if (cipaction->arg==act_listfiles)
modstatdb_init(admindir,msdbrw_readonly|msdbrw_noavail);
else
modstatdb_init(admindir,msdbrw_readonly);
while ((thisarg= *argv++) != 0) {
pkg= findpackage(thisarg);
switch (cipaction->arg) {
case act_status:
if (pkg->status == stat_notinstalled &&
pkg->priority == pri_unknown &&
!(pkg->section && *pkg->section) &&
!pkg->files &&
pkg->want == want_unknown &&
!informative(pkg,&pkg->installed)) {
fprintf(stderr,_("Package `%s' is not installed and no info is available.\n"),pkg->name);
failures++;
} else {
writerecord(stdout, "<stdout>", pkg, &pkg->installed);
}
break;
case act_printavail:
if (!informative(pkg,&pkg->available)) {
fprintf(stderr,_("Package `%s' is not available.\n"),pkg->name);
failures++;
} else {
writerecord(stdout, "<stdout>", pkg, &pkg->available);
}
break;
case act_listfiles:
switch (pkg->status) {
case stat_notinstalled:
fprintf(stderr,_("Package `%s' is not installed.\n"),pkg->name);
failures++;
break;
default:
ensure_packagefiles_available(pkg);
ensure_diversions();
file= pkg->clientdata->files;
if (!file) {
printf(_("Package `%s' does not contain any files (!)\n"),pkg->name);
} else {
while (file) {
namenode= file->namenode;
puts(namenode->name);
if (namenode->divert && !namenode->divert->camefrom) {
if (!namenode->divert->pkg)
printf(_("locally diverted to: %s\n"),
namenode->divert->useinstead->name);
else if (pkg == namenode->divert->pkg)
printf(_("package diverts others to: %s\n"),
namenode->divert->useinstead->name);
else
printf(_("diverted by %s to: %s\n"),
namenode->divert->pkg->name,
namenode->divert->useinstead->name);
}
file= file->next;
}
}
break;
}
break;
default:
internerr("unknown action");
}
if (*(argv + 1) == 0)
putchar('\n');
if (ferror(stdout)) werr("stdout");
}
if (failures) {
nerrs++;
fputs(_("Use dpkg --info (= dpkg-deb --info) to examine archive files,\n"
"and dpkg --contents (= dpkg-deb --contents) to list their contents.\n"),stderr);
if (ferror(stdout)) werr("stdout");
}
modstatdb_shutdown();
}
void showpackages(const char *const *argv) {
struct pkgiterator *it;
struct pkginfo *pkg;
struct pkginfo **pkgl;
int np, i;
struct lstitem* fmt = parseformat(showformat);
if (!fmt) {
nerrs++;
return;
}
modstatdb_init(admindir,msdbrw_readonly);
np= countpackages();
pkgl= m_malloc(sizeof(struct pkginfo*)*np);
it= iterpkgstart(); i=0;
while ((pkg= iterpkgnext(it))) {
assert(i<np);
pkgl[i++]= pkg;
}
iterpkgend(it);
assert(i==np);
qsort(pkgl,np,sizeof(struct pkginfo*),pkglistqsortcmp);
if (!*argv) {
for (i=0; i<np; i++) {
pkg= pkgl[i];
if (pkg->status == stat_notinstalled) continue;
show1package(fmt,pkg);
}
} else {
int argc, ip, *found;
for (argc = 0; argv[argc]; argc++);
found = m_malloc(sizeof(int) * argc);
memset(found, 0, sizeof(int) * argc);
for (i = 0; i < np; i++) {
pkg = pkgl[i];
for (ip = 0; ip < argc; ip++) {
if (!fnmatch(argv[ip], pkg->name, 0)) {
show1package(fmt, pkg);
found[ip]++;
break;
}
}
}
/* FIXME: we might get non-matching messages for sub-patterns specified
* after their super-patterns, due to us skipping on first match. */
for (ip = 0; ip < argc; ip++) {
if (!found[ip]) {
fprintf(stderr, _("No packages found matching %s.\n"), argv[ip]);
nerrs++;
}
}
}
if (ferror(stdout)) werr("stdout");
if (ferror(stderr)) werr("stderr");
freeformat(fmt);
modstatdb_shutdown();
}
void
printversion(void)
{
if (printf(_("Debian `%s' package management program query tool\n"),
DPKGQUERY) < 0) werr("stdout");
if (printf(_("This is free software; see the GNU General Public License version 2 or\n"
"later for copying conditions. There is NO warranty.\n"
"See %s --license for copyright and license details.\n"),
DPKGQUERY) < 0) werr("stdout");
}
/*
options that need fixing:
dpkg --yet-to-unpack \n\
*/
void
usage(void)
{
if (printf(_(
"Usage: %s [<option> ...] <command>\n"
"\n"), DPKGQUERY) < 0) werr ("stdout");
if (printf(_(
"Commands:\n"
" -s|--status <package> ... Display package status details.\n"
" -p|--print-avail <package> ... Display available version details.\n"
" -L|--listfiles <package> ... List files `owned' by package(s).\n"
" -l|--list [<pattern> ...] List packages concisely.\n"
" -W|--show <pattern> ... Show information on package(s).\n"
" -S|--search <pattern> ... Find package(s) owning file(s).\n"
"\n")) < 0) werr ("stdout");
if (printf(_(
" -h|--help Show this help message.\n"
" --version Show the version.\n"
" --license|--licence Show the copyright licensing terms.\n"
"\n")) < 0) werr ("stdout");
if (printf(_(
"Options:\n"
" --admindir=<directory> Use <directory> instead of %s.\n"
" -f|--showformat=<format> Use alternative format for --show.\n"
"\n"), ADMINDIR) < 0) werr ("stdout");
if (printf(_(
"Format syntax:\n"
" A format is a string that will be output for each package. The format\n"
" can include the standard escape sequences \\n (newline), \\r (carriage\n"
" return) or \\\\ (plain backslash). Package information can be included\n"
" by inserting variable references to package fields using the ${var[;width]}\n"
" syntax. Fields will be right-aligned unless the width is negative in which\n"
" case left alignment will be used.\n")) < 0) werr ("stdout");
}
const char thisname[]= "dpkg-query";
const char printforhelp[]= N_("\
Use --help for help about querying packages;\n\
Use --license for copyright license and lack of warranty (GNU GPL).\n\
\n");
const struct cmdinfo *cipaction= 0;
int f_pending=0, f_recursive=0, f_alsoselect=1, f_skipsame=0, f_noact=0;
int f_autodeconf=0, f_nodebsig=0;
unsigned long f_debug=0;
/* Change fc_overwrite to 1 to enable force-overwrite by default */
int fc_hold=0;
int fc_conflicts=0, fc_depends=0;
int fc_badpath=0;
int errabort = 50;
const char *admindir= ADMINDIR;
const char *instdir= "";
struct packageinlist *ignoredependss=0;
static void setaction(const struct cmdinfo *cip, const char *value) {
if (cipaction)
badusage(_("conflicting actions -%c (--%s) and -%c (--%s)"),
cip->oshort, cip->olong, cipaction->oshort, cipaction->olong);
cipaction= cip;
}
static const struct cmdinfo cmdinfos[]= {
/* This table has both the action entries in it and the normal options.
* The action entries are made with the ACTION macro, as they all
* have a very similar structure.
*/
#define ACTION(longopt,shortopt,code,function) \
{ longopt, shortopt, 0,0,0, setaction, code, 0, (voidfnp)function }
#define OBSOLETE(longopt,shortopt) \
{ longopt, shortopt, 0,0,0, setobsolete, 0, 0, 0 }
ACTION( "listfiles", 'L', act_listfiles, enqperpackage ),
ACTION( "status", 's', act_status, enqperpackage ),
ACTION( "print-avail", 'p', act_printavail, enqperpackage ),
ACTION( "list", 'l', act_listpackages, listpackages ),
ACTION( "search", 'S', act_searchfiles, searchfiles ),
ACTION( "show", 'W', act_listpackages, showpackages ),
{ "admindir", 0, 1, 0, &admindir, 0 },
{ "showformat", 'f', 1, 0, &showformat, 0 },
{ "help", 'h', 0, 0, 0, helponly },
{ "version", 0, 0, 0, 0, versiononly },
{ "licence",/* UK spelling */ 0,0,0,0, showcopyright },
{ "license",/* US spelling */ 0,0,0,0, showcopyright },
{ 0, 0 }
};
int main(int argc, const char *const *argv) {
jmp_buf ejbuf;
static void (*actionfunction)(const char *const *argv);
standard_startup(&ejbuf, argc, &argv, NULL, 0, cmdinfos);
if (!cipaction) badusage(_("need an action option"));
setvbuf(stdout,0,_IONBF,0);
filesdbinit();
actionfunction= (void (*)(const char* const*))cipaction->farg;
actionfunction(argv);
standard_shutdown(0);
return reportbroken_retexitstatus();
}
|