5 #if defined(IAM_RPM) || defined(__LCLINT__)
22 #define GETOPT_REBUILD 1003
23 #define GETOPT_RECOMPILE 1004
26 #if defined(IAM_RPMBT) || defined(IAM_RPMK)
27 #include "signature.h"
34 MODE_QUERY = (1 << 0),
35 MODE_VERIFY = (1 << 3),
36 #define MODES_QV (MODE_QUERY | MODE_VERIFY)
38 MODE_INSTALL = (1 << 1),
39 MODE_ERASE = (1 << 2),
40 #define MODES_IE (MODE_INSTALL | MODE_ERASE)
42 MODE_BUILD = (1 << 4),
43 MODE_REBUILD = (1 << 5),
44 MODE_RECOMPILE = (1 << 8),
45 MODE_TARBUILD = (1 << 11),
46 #define MODES_BT (MODE_BUILD | MODE_TARBUILD | MODE_REBUILD | MODE_RECOMPILE)
48 MODE_CHECKSIG = (1 << 6),
49 MODE_RESIGN = (1 << 7),
50 #define MODES_K (MODE_CHECKSIG | MODE_RESIGN)
52 MODE_INITDB = (1 << 10),
53 MODE_REBUILDDB = (1 << 12),
54 MODE_VERIFYDB = (1 << 13),
55 #define MODES_DB (MODE_INITDB | MODE_REBUILDDB | MODE_VERIFYDB)
61 #define MODES_FOR_DBPATH (MODES_BT | MODES_IE | MODES_QV | MODES_DB)
62 #define MODES_FOR_NODEPS (MODES_BT | MODES_IE | MODE_VERIFY)
63 #define MODES_FOR_TEST (MODES_BT | MODES_IE)
64 #define MODES_FOR_ROOT (MODES_BT | MODES_IE | MODES_QV | MODES_DB | MODES_K)
66 /* the structure describing the options we take and the defaults */
68 static struct poptOption optionsTable[] = {
71 { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmQueryPoptTable, 0,
72 N_("Query options (with -q or --query):"),
74 { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmVerifyPoptTable, 0,
75 N_("Verify options (with -V or --verify):"),
77 #endif /* IAM_RPMQV */
80 { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmSignPoptTable, 0,
81 N_("Signature options:"),
86 { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmDatabasePoptTable, 0,
87 N_("Database options:"),
89 #endif /* IAM_RPMDB */
92 { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmBuildPoptTable, 0,
93 N_("Build options with [ <specfile> | <tarball> | <source package> ]:"),
95 #endif /* IAM_RPMBT */
98 { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmInstallPoptTable, 0,
99 N_("Install/Upgrade/Erase options:"),
101 #endif /* IAM_RPMEIU */
103 { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmcliAllPoptTable, 0,
104 N_("Common options for all rpm modes and executables:"),
113 /* MiNT cannot dynamically increase the stack. */
114 long _stksize = 64 * 1024L;
117 /*@exits@*/ static void argerror(const char * desc)
118 /*@globals __assert_program_name, fileSystem @*/
119 /*@modifies fileSystem @*/
121 fprintf(stderr, _("%s: %s\n"), __progname, desc);
125 static void printVersion(FILE * fp)
126 /*@globals rpmEVR, fileSystem @*/
127 /*@modifies *fp, fileSystem @*/
129 fprintf(fp, _("RPM version %s\n"), rpmEVR);
132 static void printBanner(FILE * fp)
133 /*@globals fileSystem @*/
134 /*@modifies *fp, fileSystem @*/
136 fprintf(fp, _("Copyright (C) 1998-2002 - Red Hat, Inc.\n"));
137 fprintf(fp, _("This program may be freely redistributed under the terms of the GNU GPL\n"));
140 static void printUsage(poptContext con, FILE * fp, int flags)
141 /*@globals rpmEVR, fileSystem, internalState @*/
142 /*@modifies *fp, fileSystem, internalState @*/
149 poptPrintHelp(con, fp, flags);
151 poptPrintUsage(con, fp, flags);
154 /*@-bounds@*/ /* LCL: segfault */
155 /*@-mods@*/ /* FIX: shrug */
156 #if !defined(__GLIBC__) && !defined(__LCLINT__)
157 int main(int argc, const char ** argv, /*@unused@*/ char ** envp)
159 int main(int argc, const char ** argv)
161 /*@globals __assert_program_name, rpmEVR, RPMVERSION,
162 rpmGlobalMacroContext, rpmCLIMacroContext,
163 h_errno, fileSystem, internalState@*/
164 /*@modifies __assert_program_name,
165 fileSystem, internalState@*/
168 enum modes bigMode = MODE_UNKNOWN;
170 #if defined(IAM_RPMQV)
171 QVA_t qva = &rpmQVKArgs;
175 BTA_t ba = &rpmBTArgs;
179 struct rpmInstallArguments_s * ia = &rpmIArgs;
182 #if defined(IAM_RPMDB)
183 struct rpmDatabaseArguments_s * da = &rpmDBArgs;
186 #if defined(IAM_RPMK)
187 QVA_t ka = &rpmQVKArgs;
190 #if defined(IAM_RPMBT) || defined(IAM_RPMK)
191 char * passPhrase = "";
206 #if HAVE_MCHECK_H && HAVE_MTRACE
208 mtrace(); /* Trace malloc only if MALLOC_TRACE=mtrace-output-file. */
211 setprogname(argv[0]); /* Retrofit glibc __progname */
213 #if !defined(__GLIBC__) && !defined(__LCLINT__)
217 /* XXX glibc churn sanity */
218 if (__progname == NULL) {
219 if ((__progname = strrchr(argv[0], '/')) != NULL) __progname++;
220 else __progname = argv[0];
223 /* Set the major mode based on argv[0] */
226 if (!strcmp(__progname, "rpmb")) bigMode = MODE_BUILD;
227 if (!strcmp(__progname, "lt-rpmb")) bigMode = MODE_BUILD;
228 if (!strcmp(__progname, "rpmt")) bigMode = MODE_TARBUILD;
229 if (!strcmp(__progname, "rpmbuild")) bigMode = MODE_BUILD;
232 if (!strcmp(__progname, "rpmq")) bigMode = MODE_QUERY;
233 if (!strcmp(__progname, "lt-rpmq")) bigMode = MODE_QUERY;
234 if (!strcmp(__progname, "rpmv")) bigMode = MODE_VERIFY;
235 if (!strcmp(__progname, "rpmquery")) bigMode = MODE_QUERY;
236 if (!strcmp(__progname, "rpmverify")) bigMode = MODE_VERIFY;
239 if (!strcmp(__progname, "rpme")) bigMode = MODE_ERASE;
240 if (!strcmp(__progname, "rpmi")) bigMode = MODE_INSTALL;
241 if (!strcmp(__progname, "lt-rpmi")) bigMode = MODE_INSTALL;
242 if (!strcmp(__progname, "rpmu")) bigMode = MODE_INSTALL;
246 #if defined(IAM_RPMQV)
247 /* Jumpstart option from argv[0] if necessary. */
249 case MODE_QUERY: qva->qva_mode = 'q'; break;
250 case MODE_VERIFY: qva->qva_mode = 'V'; break;
251 case MODE_CHECKSIG: qva->qva_mode = 'K'; break;
252 case MODE_RESIGN: qva->qva_mode = 'R'; break;
268 #if defined(ENABLE_NLS)
269 /* set up the correct locale */
270 (void) setlocale(LC_ALL, "" );
273 #define LOCALEDIR "/usr/share/locale"
275 bindtextdomain(PACKAGE, LOCALEDIR);
279 rpmSetVerbosity(RPMMESS_NORMAL); /* XXX silly use by showrc */
281 /* Make a first pass through the arguments, looking for --rcfile */
282 /* We need to handle that before dealing with the rest of the arguments. */
283 /*@-nullpass -temptrans@*/
284 optCon = poptGetContext(__progname, argc, argv, optionsTable, 0);
285 /*@=nullpass =temptrans@*/
286 (void) poptReadConfigFile(optCon, LIBRPMALIAS_FILENAME);
287 (void) poptReadDefaultConfig(optCon, 1);
288 poptSetExecPath(optCon, RPMCONFIGDIR, 1);
290 while ((arg = poptGetNextOpt(optCon)) > 0) {
291 optArg = poptGetOptArg(optCon);
295 fprintf(stderr, _("Internal error in argument processing (%d) :-(\n"), arg);
301 fprintf(stderr, "%s: %s\n",
302 poptBadOption(optCon, POPT_BADOPTION_NOALIAS),
310 switch (ba->buildMode) {
311 case 'b': bigMode = MODE_BUILD; break;
312 case 't': bigMode = MODE_TARBUILD; break;
313 case 'B': bigMode = MODE_REBUILD; break;
314 case 'C': bigMode = MODE_RECOMPILE; break;
317 if ((ba->buildAmount & RPMBUILD_RMSOURCE) && bigMode == MODE_UNKNOWN)
318 bigMode = MODE_BUILD;
320 if ((ba->buildAmount & RPMBUILD_RMSPEC) && bigMode == MODE_UNKNOWN)
321 bigMode = MODE_BUILD;
323 if (ba->buildRootOverride && bigMode != MODE_BUILD &&
324 bigMode != MODE_REBUILD && bigMode != MODE_TARBUILD) {
325 argerror("--buildroot may only be used during package builds");
327 #endif /* IAM_RPMBT */
330 if (bigMode == MODE_UNKNOWN || (bigMode & MODES_DB)) {
332 if (bigMode != MODE_UNKNOWN)
333 argerror(_("only one major mode may be specified"));
335 bigMode = MODE_INITDB;
338 if (bigMode != MODE_UNKNOWN)
339 argerror(_("only one major mode may be specified"));
341 bigMode = MODE_REBUILDDB;
344 if (bigMode != MODE_UNKNOWN)
345 argerror(_("only one major mode may be specified"));
347 bigMode = MODE_VERIFYDB;
350 #endif /* IAM_RPMDB */
353 if (bigMode == MODE_UNKNOWN || (bigMode & MODES_QV)) {
354 switch (qva->qva_mode) {
355 case 'q': bigMode = MODE_QUERY; break;
356 case 'V': bigMode = MODE_VERIFY; break;
359 if (qva->qva_sourceCount) {
360 if (qva->qva_sourceCount > 2)
361 argerror(_("one type of query/verify may be performed at a "
364 if (qva->qva_flags && (bigMode & ~MODES_QV))
365 argerror(_("unexpected query flags"));
367 if (qva->qva_queryFormat && (bigMode & ~MODES_QV))
368 argerror(_("unexpected query format"));
370 if (qva->qva_source != RPMQV_PACKAGE && (bigMode & ~MODES_QV))
371 argerror(_("unexpected query source"));
373 #endif /* IAM_RPMQV */
376 if (bigMode == MODE_UNKNOWN || (bigMode & MODES_IE))
377 { int iflags = (ia->installInterfaceFlags &
378 (INSTALL_UPGRADE|INSTALL_FRESHEN|INSTALL_INSTALL));
379 int eflags = (ia->installInterfaceFlags & INSTALL_ERASE);
382 argerror(_("only one major mode may be specified"));
384 bigMode = MODE_INSTALL;
386 bigMode = MODE_ERASE;
388 #endif /* IAM_RPMEIU */
391 if (bigMode == MODE_UNKNOWN || (bigMode & MODES_K)) {
392 switch (ka->qva_mode) {
396 case RPMSIGN_IMPORT_PUBKEY:
397 case RPMSIGN_CHK_SIGNATURE:
398 bigMode = MODE_CHECKSIG;
401 case RPMSIGN_ADD_SIGNATURE:
402 case RPMSIGN_NEW_SIGNATURE:
403 bigMode = MODE_RESIGN;
408 #endif /* IAM_RPMK */
410 #if defined(IAM_RPMEIU)
411 if (!( bigMode == MODE_INSTALL ) &&
412 (ia->probFilter & (RPMPROB_FILTER_REPLACEPKG | RPMPROB_FILTER_OLDPACKAGE)))
413 argerror(_("only installation, upgrading, rmsource and rmspec may be forced"));
414 if (bigMode != MODE_INSTALL && (ia->probFilter & RPMPROB_FILTER_FORCERELOCATE))
415 argerror(_("files may only be relocated during package installation"));
417 if (ia->relocations && ia->prefix)
418 argerror(_("cannot use --prefix with --relocate or --excludepath"));
420 if (bigMode != MODE_INSTALL && ia->relocations)
421 argerror(_("--relocate and --excludepath may only be used when installing new packages"));
423 if (bigMode != MODE_INSTALL && ia->prefix)
424 argerror(_("--prefix may only be used when installing new packages"));
426 if (ia->prefix && ia->prefix[0] != '/')
427 argerror(_("arguments to --prefix must begin with a /"));
429 if (bigMode != MODE_INSTALL && (ia->installInterfaceFlags & INSTALL_HASH))
430 argerror(_("--hash (-h) may only be specified during package "
433 if (bigMode != MODE_INSTALL && (ia->installInterfaceFlags & INSTALL_PERCENT))
434 argerror(_("--percent may only be specified during package "
437 if (bigMode != MODE_INSTALL && (ia->probFilter & RPMPROB_FILTER_REPLACEPKG))
438 argerror(_("--replacepkgs may only be specified during package "
441 if (bigMode != MODE_INSTALL && (ia->transFlags & RPMTRANS_FLAG_NODOCS))
442 argerror(_("--excludedocs may only be specified during package "
445 if (bigMode != MODE_INSTALL && ia->incldocs)
446 argerror(_("--includedocs may only be specified during package "
449 if (ia->incldocs && (ia->transFlags & RPMTRANS_FLAG_NODOCS))
450 argerror(_("only one of --excludedocs and --includedocs may be "
453 if (bigMode != MODE_INSTALL && (ia->probFilter & RPMPROB_FILTER_IGNOREARCH))
454 argerror(_("--ignorearch may only be specified during package "
457 if (bigMode != MODE_INSTALL && (ia->probFilter & RPMPROB_FILTER_IGNOREOS))
458 argerror(_("--ignoreos may only be specified during package "
461 if (bigMode != MODE_INSTALL &&
462 (ia->probFilter & (RPMPROB_FILTER_DISKSPACE|RPMPROB_FILTER_DISKNODES)))
463 argerror(_("--ignoresize may only be specified during package "
466 if ((ia->eraseInterfaceFlags & UNINSTALL_ALLMATCHES) && bigMode != MODE_ERASE)
467 argerror(_("--allmatches may only be specified during package "
470 if ((ia->transFlags & RPMTRANS_FLAG_ALLFILES) && bigMode != MODE_INSTALL)
471 argerror(_("--allfiles may only be specified during package "
474 if ((ia->transFlags & RPMTRANS_FLAG_JUSTDB) &&
475 bigMode != MODE_INSTALL && bigMode != MODE_ERASE)
476 argerror(_("--justdb may only be specified during package "
477 "installation and erasure"));
479 if (bigMode != MODE_INSTALL && bigMode != MODE_ERASE &&
480 (ia->transFlags & (RPMTRANS_FLAG_NOSCRIPTS | _noTransScripts | _noTransTriggers)))
481 argerror(_("script disabling options may only be specified during "
482 "package installation and erasure"));
484 if (bigMode != MODE_INSTALL && bigMode != MODE_ERASE &&
485 (ia->transFlags & (RPMTRANS_FLAG_NOTRIGGERS | _noTransTriggers)))
486 argerror(_("trigger disabling options may only be specified during "
487 "package installation and erasure"));
489 if (ia->noDeps & (bigMode & ~MODES_FOR_NODEPS))
490 argerror(_("--nodeps may only be specified during package "
491 "building, rebuilding, recompilation, installation,"
492 "erasure, and verification"));
494 if ((ia->transFlags & RPMTRANS_FLAG_TEST) && (bigMode & ~MODES_FOR_TEST))
495 argerror(_("--test may only be specified during package installation, "
496 "erasure, and building"));
497 #endif /* IAM_RPMEIU */
499 if (rpmcliRootDir && rpmcliRootDir[1] && (bigMode & ~MODES_FOR_ROOT))
500 argerror(_("--root (-r) may only be specified during "
501 "installation, erasure, querying, and "
502 "database rebuilds"));
505 switch (urlIsURL(rpmcliRootDir)) {
507 if (bigMode & MODES_FOR_ROOT)
511 if (rpmcliRootDir[0] != '/')
512 argerror(_("arguments to --root (-r) must begin with a /"));
517 #if defined(IAM_RPMBT) || defined(IAM_RPMK)
519 #if defined(IAM_RPMBT)
522 #if defined(IAM_RPMK)
528 if (bigMode == MODE_REBUILD || bigMode == MODE_BUILD ||
529 bigMode == MODE_RESIGN || bigMode == MODE_TARBUILD)
535 if ((av = poptGetArgs(optCon)) == NULL) {
536 fprintf(stderr, _("no files to sign\n"));
540 if (stat(*av, &sb)) {
541 fprintf(stderr, _("cannot access file %s\n"), *av);
552 if (poptPeekArg(optCon)) {
554 switch (sigTag = rpmLookupSignatureType(RPMLOOKUPSIG_QUERY)) {
558 if ((sigTag == RPMSIGTAG_PGP || sigTag == RPMSIGTAG_PGP5) &&
559 !rpmDetectPGPVersion(NULL)) {
560 fprintf(stderr, _("pgp not found: "));
565 passPhrase = rpmGetPassPhrase(_("Enter pass phrase: "), sigTag);
566 if (passPhrase == NULL) {
567 fprintf(stderr, _("Pass phrase check failed\n"));
571 fprintf(stderr, _("Pass phrase is good.\n"));
572 passPhrase = xstrdup(passPhrase);
576 _("Invalid %%_signature spec in macro file.\n"));
579 /*@notreached@*/ break;
583 argerror(_("--sign may only be used during package building"));
586 /* Make rpmLookupSignatureType() return 0 ("none") from now on */
587 (void) rpmLookupSignatureType(RPMLOOKUPSIG_DISABLE);
590 #endif /* IAM_RPMBT || IAM_RPMK */
592 if (rpmcliPipeOutput) {
595 if (!(pipeChild = fork())) {
597 (void) dup2(p[0], STDIN_FILENO);
599 (void) execl("/bin/sh", "/bin/sh", "-c", rpmcliPipeOutput, NULL);
600 fprintf(stderr, _("exec failed\n"));
604 (void) dup2(p[1], STDOUT_FILENO);
609 (void) rpmtsSetRootDir(ts, rpmcliRootDir);
613 (void) rpmtsInitDB(ts, 0644);
617 { rpmVSFlags vsflags = rpmExpandNumeric("%{_vsflags_rebuilddb}");
618 rpmVSFlags ovsflags = rpmtsSetVSFlags(ts, vsflags);
619 ec = rpmtsRebuildDB(ts);
620 vsflags = rpmtsSetVSFlags(ts, ovsflags);
623 ec = rpmtsVerifyDB(ts);
625 #endif /* IAM_RPMDB */
632 while (!rpmIsVerbose())
633 rpmIncreaseVerbosity();
635 if (!poptPeekArg(optCon))
636 argerror(_("no packages files given for rebuild"));
639 RPMBUILD_PREP | RPMBUILD_BUILD | RPMBUILD_INSTALL | RPMBUILD_CHECK;
640 if (bigMode == MODE_REBUILD) {
641 ba->buildAmount |= RPMBUILD_PACKAGEBINARY;
642 ba->buildAmount |= RPMBUILD_RMSOURCE;
643 ba->buildAmount |= RPMBUILD_RMSPEC;
644 ba->buildAmount |= RPMBUILD_CLEAN;
645 ba->buildAmount |= RPMBUILD_RMBUILD;
648 while ((pkg = poptGetArg(optCon))) {
649 const char * specFile = NULL;
652 ec = rpmInstallSource(ts, pkg, &specFile, &ba->cookie);
654 ba->rootdir = rpmcliRootDir;
655 ba->passPhrase = passPhrase;
656 ec = build(ts, specFile, ba, rpmcliRcfile);
658 ba->cookie = _free(ba->cookie);
659 specFile = _free(specFile);
662 /*@loopbreak@*/ break;
670 while (!rpmIsVerbose())
671 rpmIncreaseVerbosity();
673 switch (ba->buildChar) {
675 ba->buildAmount |= RPMBUILD_PACKAGESOURCE;
678 ba->buildAmount |= RPMBUILD_PACKAGEBINARY;
679 ba->buildAmount |= RPMBUILD_CLEAN;
682 ba->buildAmount |= RPMBUILD_INSTALL;
683 ba->buildAmount |= RPMBUILD_CHECK;
684 if ((ba->buildChar == 'i') && ba->shortCircuit)
685 /*@innerbreak@*/ break;
688 ba->buildAmount |= RPMBUILD_BUILD;
689 if ((ba->buildChar == 'c') && ba->shortCircuit)
690 /*@innerbreak@*/ break;
693 ba->buildAmount |= RPMBUILD_PREP;
694 /*@innerbreak@*/ break;
697 ba->buildAmount |= RPMBUILD_FILECHECK;
698 /*@innerbreak@*/ break;
700 ba->buildAmount |= RPMBUILD_PACKAGESOURCE;
701 /*@innerbreak@*/ break;
704 if (!poptPeekArg(optCon)) {
705 if (bigMode == MODE_BUILD)
706 argerror(_("no spec files given for build"));
708 argerror(_("no tar files given for build"));
711 while ((pkg = poptGetArg(optCon))) {
712 ba->rootdir = rpmcliRootDir;
713 ba->passPhrase = passPhrase;
715 ec = build(ts, pkg, ba, rpmcliRcfile);
717 /*@loopbreak@*/ break;
719 (void) rpmReadConfigFiles(rpmcliRcfile, NULL);
722 #endif /* IAM_RPMBT */
726 if (ia->noDeps) ia->eraseInterfaceFlags |= UNINSTALL_NODEPS;
728 if (!poptPeekArg(optCon)) {
730 argerror(_("no packages given for erase"));
731 ia->transFlags |= RPMTRANS_FLAG_NOMD5;
732 ia->probFilter |= RPMPROB_FILTER_OLDPACKAGE;
733 ec += rpmRollback(ts, ia, NULL);
735 ec += rpmErase(ts, ia, (const char **) poptGetArgs(optCon));
741 /* RPMTRANS_FLAG_KEEPOBSOLETE */
744 if (ia->transFlags & RPMTRANS_FLAG_NODOCS) {
746 } else if (rpmExpandNumeric("%{_excludedocs}"))
747 ia->transFlags |= RPMTRANS_FLAG_NODOCS;
750 if (ia->noDeps) ia->installInterfaceFlags |= INSTALL_NODEPS;
752 /* we've already ensured !(!ia->prefix && !ia->relocations) */
755 ia->relocations = xmalloc(2 * sizeof(*ia->relocations));
756 ia->relocations[0].oldPath = NULL; /* special case magic */
757 ia->relocations[0].newPath = ia->prefix;
758 ia->relocations[1].oldPath = NULL;
759 ia->relocations[1].newPath = NULL;
760 } else if (ia->relocations) {
761 ia->relocations = xrealloc(ia->relocations,
762 sizeof(*ia->relocations) * (ia->numRelocations + 1));
763 ia->relocations[ia->numRelocations].oldPath = NULL;
764 ia->relocations[ia->numRelocations].newPath = NULL;
768 if (!poptPeekArg(optCon)) {
770 argerror(_("no packages given for install"));
771 ia->transFlags |= RPMTRANS_FLAG_NOMD5;
772 ia->probFilter |= RPMPROB_FILTER_OLDPACKAGE;
773 /*@i@*/ ec += rpmRollback(ts, ia, NULL);
775 /*@-compdef -compmempass@*/ /* FIX: ia->relocations[0].newPath undefined */
776 ec += rpmInstall(ts, ia, (const char **)poptGetArgs(optCon));
777 /*@=compdef =compmempass@*/
781 #endif /* IAM_RPMEIU */
785 if (qva->qva_source != RPMQV_ALL && !poptPeekArg(optCon))
786 argerror(_("no arguments given for query"));
788 qva->qva_specQuery = rpmspecQuery;
789 ec = rpmcliQuery(ts, qva, (const char **) poptGetArgs(optCon));
790 qva->qva_specQuery = NULL;
794 { rpmVerifyFlags verifyFlags = VERIFY_ALL;
796 verifyFlags &= ~qva->qva_flags;
797 qva->qva_flags = (rpmQueryFlags) verifyFlags;
799 if (qva->qva_source != RPMQV_ALL && !poptPeekArg(optCon))
800 argerror(_("no arguments given for verify"));
801 ec = rpmcliVerify(ts, qva, (const char **) poptGetArgs(optCon));
803 #endif /* IAM_RPMQV */
807 { rpmVerifyFlags verifyFlags =
808 (VERIFY_MD5|VERIFY_DIGEST|VERIFY_SIGNATURE);
810 verifyFlags &= ~ka->qva_flags;
811 ka->qva_flags = (rpmQueryFlags) verifyFlags;
814 if (!poptPeekArg(optCon))
815 argerror(_("no arguments given"));
816 ka->passPhrase = passPhrase;
817 ec = rpmcliSign(ts, ka, (const char **)poptGetArgs(optCon));
819 #endif /* IAM_RPMK */
821 #if !defined(IAM_RPMQV)
825 #if !defined(IAM_RPMK)
829 #if !defined(IAM_RPMDB)
834 #if !defined(IAM_RPMBT)
840 #if !defined(IAM_RPMEIU)
845 if (poptPeekArg(optCon) != NULL || argc <= 1 || rpmIsVerbose()) {
846 printUsage(optCon, stdout, 0);
852 #if defined(IAM_RPMBT) || defined(IAM_RPMK)
854 #endif /* IAM_RPMBT || IAM_RPMK */
858 optCon = poptFreeContext(optCon);
860 /*@i@*/ rpmFreeMacros(rpmCLIMacroContext);
864 (void) fclose(stdout);
865 (void) waitpid(pipeChild, &status, 0);
868 /* keeps memory leak checkers quiet */
870 /*@i@*/ urlFreeCache();
872 dbiTags = _free(dbiTags);
875 qva->qva_queryFormat = _free(qva->qva_queryFormat);
880 ba->buildRootOverride = _free(ba->buildRootOverride);
881 ba->targets = _free(ba->targets);
885 if (ia->relocations != NULL)
886 for (i = 0; i < ia->numRelocations; i++)
887 ia->relocations[i].oldPath = _free(ia->relocations[i].oldPath);
888 ia->relocations = _free(ia->relocations);
891 #if HAVE_MCHECK_H && HAVE_MTRACE
893 muntrace(); /* Trace malloc only if MALLOC_TRACE=mtrace-output-file. */
897 /* XXX don't overflow single byte exit status */
898 if (ec > 255) ec = 255;