Allow "--ignoresize" for erase operations.
[platform/upstream/rpm.git] / lib / rpminstall.c
1 /** \ingroup rpmcli
2  * \file lib/rpminstall.c
3  */
4
5 #include "system.h"
6
7 #include <rpmcli.h>
8
9 #include "rpmdb.h"
10 #include "rpmds.h"
11
12 #include "rpmte.h"      /* XXX: rpmts.h needs this for rpmtsScoreEntries */
13 #define _RPMTS_INTERNAL         /* ts->goal, ts->dbmode, ts->suggests */
14 #include "rpmts.h"
15
16 #include "manifest.h"
17 #include "misc.h"       /* XXX for rpmGlob() */
18 #include "debug.h"
19
20 /*@access rpmts @*/     /* XXX ts->goal, ts->dbmode */
21 /*@access IDTX @*/
22 /*@access IDT @*/
23
24 /*@unchecked@*/
25 int rpmcliPackagesTotal = 0;
26 /*@unchecked@*/
27 int rpmcliHashesCurrent = 0;
28 /*@unchecked@*/
29 int rpmcliHashesTotal = 0;
30 /*@unchecked@*/
31 int rpmcliProgressCurrent = 0;
32 /*@unchecked@*/
33 int rpmcliProgressTotal = 0;
34
35 /**
36  * Print a CLI progress bar.
37  * @todo Unsnarl isatty(STDOUT_FILENO) from the control flow.
38  * @param amount        current
39  * @param total         final
40  */
41 static void printHash(const unsigned long amount, const unsigned long total)
42         /*@globals rpmcliHashesCurrent, rpmcliHashesTotal,
43                 rpmcliProgressCurrent, fileSystem @*/
44         /*@modifies rpmcliHashesCurrent, rpmcliHashesTotal,
45                 rpmcliProgressCurrent, fileSystem @*/
46 {
47     int hashesNeeded;
48
49     rpmcliHashesTotal = (isatty (STDOUT_FILENO) ? 44 : 50);
50
51     if (rpmcliHashesCurrent != rpmcliHashesTotal) {
52 /*@+relaxtypes@*/
53         float pct = (total ? (((float) amount) / total) : 1.0);
54         hashesNeeded = (rpmcliHashesTotal * pct) + 0.5;
55 /*@=relaxtypes@*/
56         while (hashesNeeded > rpmcliHashesCurrent) {
57             if (isatty (STDOUT_FILENO)) {
58                 int i;
59                 for (i = 0; i < rpmcliHashesCurrent; i++)
60                     (void) putchar ('#');
61                 for (; i < rpmcliHashesTotal; i++)
62                     (void) putchar (' ');
63                 fprintf(stdout, "(%3d%%)", (int)((100 * pct) + 0.5));
64                 for (i = 0; i < (rpmcliHashesTotal + 6); i++)
65                     (void) putchar ('\b');
66             } else
67                 fprintf(stdout, "#");
68
69             rpmcliHashesCurrent++;
70         }
71         (void) fflush(stdout);
72
73         if (rpmcliHashesCurrent == rpmcliHashesTotal) {
74             int i;
75             rpmcliProgressCurrent++;
76             if (isatty(STDOUT_FILENO)) {
77                 for (i = 1; i < rpmcliHashesCurrent; i++)
78                     (void) putchar ('#');
79 /*@+relaxtypes@*/
80                 pct = (rpmcliProgressTotal
81                     ? (((float) rpmcliProgressCurrent) / rpmcliProgressTotal)
82                     : 1);
83 /*@=relaxtypes@*/
84                 fprintf(stdout, " [%3d%%]", (int)((100 * pct) + 0.5));
85             }
86             fprintf(stdout, "\n");
87         }
88         (void) fflush(stdout);
89     }
90 }
91
92 void * rpmShowProgress(/*@null@*/ const void * arg,
93                         const rpmCallbackType what,
94                         const unsigned long amount,
95                         const unsigned long total,
96                         /*@null@*/ fnpyKey key,
97                         /*@null@*/ void * data)
98         /*@globals rpmcliHashesCurrent, rpmcliProgressCurrent, rpmcliProgressTotal,
99                 fileSystem @*/
100         /*@modifies rpmcliHashesCurrent, rpmcliProgressCurrent, rpmcliProgressTotal,
101                 fileSystem @*/
102 {
103 /*@-abstract -castexpose @*/
104     Header h = (Header) arg;
105 /*@=abstract =castexpose @*/
106     char * s;
107     int flags = (int) ((long)data);
108     void * rc = NULL;
109 /*@-abstract -assignexpose @*/
110     const char * filename = (const char *)key;
111 /*@=abstract =assignexpose @*/
112     static FD_t fd = NULL;
113     int xx;
114
115     switch (what) {
116     case RPMCALLBACK_INST_OPEN_FILE:
117 /*@-boundsread@*/
118         if (filename == NULL || filename[0] == '\0')
119             return NULL;
120 /*@=boundsread@*/
121         fd = Fopen(filename, "r.ufdio");
122         /*@-type@*/ /* FIX: still necessary? */
123         if (fd == NULL || Ferror(fd)) {
124             rpmError(RPMERR_OPEN, _("open of %s failed: %s\n"), filename,
125                         Fstrerror(fd));
126             if (fd != NULL) {
127                 xx = Fclose(fd);
128                 fd = NULL;
129             }
130         } else
131             fd = fdLink(fd, "persist (showProgress)");
132         /*@=type@*/
133 /*@+voidabstract@*/
134         return (void *)fd;
135 /*@=voidabstract@*/
136         /*@notreached@*/ break;
137
138     case RPMCALLBACK_INST_CLOSE_FILE:
139         /*@-type@*/ /* FIX: still necessary? */
140         fd = fdFree(fd, "persist (showProgress)");
141         /*@=type@*/
142         if (fd != NULL) {
143             xx = Fclose(fd);
144             fd = NULL;
145         }
146         break;
147
148     case RPMCALLBACK_INST_START:
149         rpmcliHashesCurrent = 0;
150         if (h == NULL || !(flags & INSTALL_LABEL))
151             break;
152         /* @todo Remove headerSprintf() on a progress callback. */
153         if (flags & INSTALL_HASH) {
154             s = headerSprintf(h, "%{NAME}",
155                                 rpmTagTable, rpmHeaderFormats, NULL);
156             if (isatty (STDOUT_FILENO))
157                 fprintf(stdout, "%4d:%-23.23s", rpmcliProgressCurrent + 1, s);
158             else
159                 fprintf(stdout, "%-28.28s", s);
160             (void) fflush(stdout);
161             s = _free(s);
162         } else {
163             s = headerSprintf(h, "%{NAME}-%{VERSION}-%{RELEASE}",
164                                   rpmTagTable, rpmHeaderFormats, NULL);
165             fprintf(stdout, "%s\n", s);
166             (void) fflush(stdout);
167             s = _free(s);
168         }
169         break;
170
171     case RPMCALLBACK_TRANS_PROGRESS:
172     case RPMCALLBACK_INST_PROGRESS:
173 /*@+relaxtypes@*/
174         if (flags & INSTALL_PERCENT)
175             fprintf(stdout, "%%%% %f\n", (double) (total
176                                 ? ((((float) amount) / total) * 100)
177                                 : 100.0));
178         else if (flags & INSTALL_HASH)
179             printHash(amount, total);
180 /*@=relaxtypes@*/
181         (void) fflush(stdout);
182         break;
183
184     case RPMCALLBACK_TRANS_START:
185         rpmcliHashesCurrent = 0;
186         rpmcliProgressTotal = 1;
187         rpmcliProgressCurrent = 0;
188         if (!(flags & INSTALL_LABEL))
189             break;
190         if (flags & INSTALL_HASH)
191             fprintf(stdout, "%-28s", _("Preparing..."));
192         else
193             fprintf(stdout, "%s\n", _("Preparing packages for installation..."));
194         (void) fflush(stdout);
195         break;
196
197     case RPMCALLBACK_TRANS_STOP:
198         if (flags & INSTALL_HASH)
199             printHash(1, 1);    /* Fixes "preparing..." progress bar */
200         rpmcliProgressTotal = rpmcliPackagesTotal;
201         rpmcliProgressCurrent = 0;
202         break;
203
204     case RPMCALLBACK_REPACKAGE_START:
205         rpmcliHashesCurrent = 0;
206         rpmcliProgressTotal = total;
207         rpmcliProgressCurrent = 0;
208         if (!(flags & INSTALL_LABEL))
209             break;
210         if (flags & INSTALL_HASH)
211             fprintf(stdout, "%-28s\n", _("Repackaging..."));
212         else
213             fprintf(stdout, "%s\n", _("Repackaging erased files..."));
214         (void) fflush(stdout);
215         break;
216
217     case RPMCALLBACK_REPACKAGE_PROGRESS:
218         if (amount && (flags & INSTALL_HASH))
219             printHash(1, 1);    /* Fixes "preparing..." progress bar */
220         break;
221
222     case RPMCALLBACK_REPACKAGE_STOP:
223         rpmcliProgressTotal = total;
224         rpmcliProgressCurrent = total;
225         if (flags & INSTALL_HASH)
226             printHash(1, 1);    /* Fixes "preparing..." progress bar */
227         rpmcliProgressTotal = rpmcliPackagesTotal;
228         rpmcliProgressCurrent = 0;
229         if (!(flags & INSTALL_LABEL))
230             break;
231         if (flags & INSTALL_HASH)
232             fprintf(stdout, "%-28s\n", _("Upgrading..."));
233         else
234             fprintf(stdout, "%s\n", _("Upgrading packages..."));
235         (void) fflush(stdout);
236         break;
237
238     case RPMCALLBACK_UNINST_PROGRESS:
239         break;
240     case RPMCALLBACK_UNINST_START:
241         break;
242     case RPMCALLBACK_UNINST_STOP:
243         break;
244     case RPMCALLBACK_UNPACK_ERROR:
245         break;
246     case RPMCALLBACK_CPIO_ERROR:
247         break;
248     case RPMCALLBACK_UNKNOWN:
249     default:
250         break;
251     }
252
253     return rc;
254 }       
255
256 typedef /*@only@*/ /*@null@*/ const char * str_t;
257
258 struct rpmEIU {
259     Header h;
260     FD_t fd;
261     int numFailed;
262     int numPkgs;
263 /*@only@*/
264     str_t * pkgURL;
265 /*@dependent@*/ /*@null@*/
266     str_t * fnp;
267 /*@only@*/
268     char * pkgState;
269     int prevx;
270     int pkgx;
271     int numRPMS;
272     int numSRPMS;
273 /*@only@*/ /*@null@*/
274     str_t * sourceURL;
275     int isSource;
276     int argc;
277 /*@only@*/ /*@null@*/
278     str_t * argv;
279 /*@dependent@*/
280     rpmRelocation * relocations;
281     rpmRC rpmrc;
282 };
283
284 /** @todo Generalize --freshen policies. */
285 /*@-bounds@*/
286 int rpmInstall(rpmts ts,
287                 struct rpmInstallArguments_s * ia,
288                 const char ** fileArgv)
289 {
290     struct rpmEIU * eiu = memset(alloca(sizeof(*eiu)), 0, sizeof(*eiu));
291     rpmps ps;
292     rpmprobFilterFlags probFilter;
293     rpmRelocation * relocations;
294 /*@only@*/ /*@null@*/ const char * fileURL = NULL;
295     int stopInstall = 0;
296     const char ** av = NULL;
297     rpmVSFlags vsflags, ovsflags, tvsflags;
298     int ac = 0;
299     int rc;
300     int xx;
301     int i;
302
303     if (fileArgv == NULL) goto exit;
304
305     ts->goal = TSM_INSTALL;
306     rpmcliPackagesTotal = 0;
307
308     if (rpmExpandNumeric("%{?_repackage_all_erasures}"))
309         ia->transFlags |= RPMTRANS_FLAG_REPACKAGE;
310
311     /* Initialize security context patterns (if not already done). */
312     if (!(ia->transFlags & RPMTRANS_FLAG_NOCONTEXTS)) {
313         rpmsx sx = rpmtsREContext(ts);
314         if (sx == NULL) {
315             const char *fn = rpmGetPath("%{?_install_file_context_path}", NULL);
316             if (fn != NULL && *fn != '\0') {
317                 sx = rpmsxNew(fn);
318                 (void) rpmtsSetREContext(ts, sx);
319             }
320             fn = _free(fn);
321         }
322         sx = rpmsxFree(sx);
323     }
324     (void) rpmtsSetFlags(ts, ia->transFlags);
325
326     probFilter = ia->probFilter;
327     relocations = ia->relocations;
328
329     if (ia->installInterfaceFlags & INSTALL_UPGRADE)
330         vsflags = rpmExpandNumeric("%{?_vsflags_erase}");
331     else
332         vsflags = rpmExpandNumeric("%{?_vsflags_install}");
333     if (ia->qva_flags & VERIFY_DIGEST)
334         vsflags |= _RPMVSF_NODIGESTS;
335     if (ia->qva_flags & VERIFY_SIGNATURE)
336         vsflags |= _RPMVSF_NOSIGNATURES;
337     if (ia->qva_flags & VERIFY_HDRCHK)
338         vsflags |= RPMVSF_NOHDRCHK;
339     ovsflags = rpmtsSetVSFlags(ts, (vsflags | RPMVSF_NEEDPAYLOAD));
340
341     {   int notifyFlags;
342         notifyFlags = ia->installInterfaceFlags | (rpmIsVerbose() ? INSTALL_LABEL : 0 );
343         xx = rpmtsSetNotifyCallback(ts,
344                         rpmShowProgress, (void *) ((long)notifyFlags));
345     }
346
347     if ((eiu->relocations = relocations) != NULL) {
348         while (eiu->relocations->oldPath)
349             eiu->relocations++;
350         if (eiu->relocations->newPath == NULL)
351             eiu->relocations = NULL;
352     }
353
354     /* Build fully globbed list of arguments in argv[argc]. */
355     /*@-branchstate@*/
356     /*@-temptrans@*/
357     for (eiu->fnp = fileArgv; *eiu->fnp != NULL; eiu->fnp++) {
358     /*@=temptrans@*/
359         av = _free(av); ac = 0;
360         rc = rpmGlob(*eiu->fnp, &ac, &av);
361         if (rc || ac == 0) {
362             rpmError(RPMERR_OPEN, _("File not found by glob: %s\n"), *eiu->fnp);
363             continue;
364         }
365
366         eiu->argv = xrealloc(eiu->argv, (eiu->argc+ac+1) * sizeof(*eiu->argv));
367         memcpy(eiu->argv+eiu->argc, av, ac * sizeof(*av));
368         eiu->argc += ac;
369         eiu->argv[eiu->argc] = NULL;
370     }
371     /*@=branchstate@*/
372     av = _free(av);     ac = 0;
373
374 restart:
375     /* Allocate sufficient storage for next set of args. */
376     if (eiu->pkgx >= eiu->numPkgs) {
377         eiu->numPkgs = eiu->pkgx + eiu->argc;
378         eiu->pkgURL = xrealloc(eiu->pkgURL,
379                         (eiu->numPkgs + 1) * sizeof(*eiu->pkgURL));
380         memset(eiu->pkgURL + eiu->pkgx, 0,
381                         ((eiu->argc + 1) * sizeof(*eiu->pkgURL)));
382         eiu->pkgState = xrealloc(eiu->pkgState,
383                         (eiu->numPkgs + 1) * sizeof(*eiu->pkgState));
384         memset(eiu->pkgState + eiu->pkgx, 0,
385                         ((eiu->argc + 1) * sizeof(*eiu->pkgState)));
386     }
387
388     /* Retrieve next set of args, cache on local storage. */
389     for (i = 0; i < eiu->argc; i++) {
390         fileURL = _free(fileURL);
391         fileURL = eiu->argv[i];
392         eiu->argv[i] = NULL;
393
394 #ifdef  NOTYET
395 if (fileURL[0] == '=') {
396     rpmds this = rpmdsSingle(RPMTAG_REQUIRENAME, fileURL+1, NULL, 0);
397
398     xx = rpmtsSolve(ts, this, NULL);
399     if (ts->suggests && ts->nsuggests > 0) {
400         fileURL = _free(fileURL);
401         fileURL = ts->suggests[0];
402         ts->suggests[0] = NULL;
403         while (ts->nsuggests-- > 0) {
404             if (ts->suggests[ts->nsuggests] == NULL)
405                 continue;
406             ts->suggests[ts->nsuggests] = _free(ts->suggests[ts->nsuggests]);
407         }
408         ts->suggests = _free(ts->suggests);
409         rpmMessage(RPMMESS_DEBUG, _("Adding goal: %s\n"), fileURL);
410         eiu->pkgURL[eiu->pkgx] = fileURL;
411         fileURL = NULL;
412         eiu->pkgx++;
413     }
414     this = rpmdsFree(this);
415 } else
416 #endif
417
418         switch (urlIsURL(fileURL)) {
419         case URL_IS_HTTPS:
420         case URL_IS_HTTP:
421         case URL_IS_FTP:
422         {   const char *tfn;
423
424             if (rpmIsVerbose())
425                 fprintf(stdout, _("Retrieving %s\n"), fileURL);
426
427             {   char tfnbuf[64];
428                 const char * rootDir = rpmtsRootDir(ts);
429                 if (!(rootDir && * rootDir))
430                     rootDir = "";
431                 strcpy(tfnbuf, "rpm-xfer.XXXXXX");
432                 (void) mktemp(tfnbuf);
433                 tfn = rpmGenPath(rootDir, "%{_tmppath}/", tfnbuf);
434             }
435
436             /* XXX undefined %{name}/%{version}/%{release} here */
437             /* XXX %{_tmpdir} does not exist */
438             rpmMessage(RPMMESS_DEBUG, _(" ... as %s\n"), tfn);
439             rc = urlGetFile(fileURL, tfn);
440             if (rc < 0) {
441                 rpmMessage(RPMMESS_ERROR,
442                         _("skipping %s - transfer failed - %s\n"),
443                         fileURL, ftpStrerror(rc));
444                 eiu->numFailed++;
445                 eiu->pkgURL[eiu->pkgx] = NULL;
446                 tfn = _free(tfn);
447                 /*@switchbreak@*/ break;
448             }
449             eiu->pkgState[eiu->pkgx] = 1;
450             eiu->pkgURL[eiu->pkgx] = tfn;
451             eiu->pkgx++;
452         }   /*@switchbreak@*/ break;
453         case URL_IS_PATH:
454         case URL_IS_DASH:       /* WRONG WRONG WRONG */
455         case URL_IS_HKP:        /* WRONG WRONG WRONG */
456         default:
457             eiu->pkgURL[eiu->pkgx] = fileURL;
458             fileURL = NULL;
459             eiu->pkgx++;
460             /*@switchbreak@*/ break;
461         }
462     }
463     fileURL = _free(fileURL);
464
465     if (eiu->numFailed) goto exit;
466
467     /* Continue processing file arguments, building transaction set. */
468     for (eiu->fnp = eiu->pkgURL+eiu->prevx;
469          *eiu->fnp != NULL;
470          eiu->fnp++, eiu->prevx++)
471     {
472         const char * fileName;
473
474         rpmMessage(RPMMESS_DEBUG, "============== %s\n", *eiu->fnp);
475         (void) urlPath(*eiu->fnp, &fileName);
476
477         /* Try to read the header from a package file. */
478         eiu->fd = Fopen(*eiu->fnp, "r.ufdio");
479         if (eiu->fd == NULL || Ferror(eiu->fd)) {
480             rpmError(RPMERR_OPEN, _("open of %s failed: %s\n"), *eiu->fnp,
481                         Fstrerror(eiu->fd));
482             if (eiu->fd != NULL) {
483                 xx = Fclose(eiu->fd);
484                 eiu->fd = NULL;
485             }
486             eiu->numFailed++; *eiu->fnp = NULL;
487             continue;
488         }
489
490         /* Read the header, verifying signatures (if present). */
491         tvsflags = rpmtsSetVSFlags(ts, vsflags);
492         eiu->rpmrc = rpmReadPackageFile(ts, eiu->fd, *eiu->fnp, &eiu->h);
493         tvsflags = rpmtsSetVSFlags(ts, tvsflags);
494         xx = Fclose(eiu->fd);
495         eiu->fd = NULL;
496
497         switch (eiu->rpmrc) {
498         case RPMRC_FAIL:
499             rpmMessage(RPMMESS_ERROR, _("%s cannot be installed\n"), *eiu->fnp);
500             eiu->numFailed++; *eiu->fnp = NULL;
501             continue;
502             /*@notreached@*/ /*@switchbreak@*/ break;
503         case RPMRC_NOTFOUND:
504             goto maybe_manifest;
505             /*@notreached@*/ /*@switchbreak@*/ break;
506         case RPMRC_NOTTRUSTED:
507         case RPMRC_NOKEY:
508         case RPMRC_OK:
509         default:
510             /*@switchbreak@*/ break;
511         }
512
513         eiu->isSource = headerIsEntry(eiu->h, RPMTAG_SOURCEPACKAGE);
514
515         if (eiu->isSource) {
516             rpmMessage(RPMMESS_DEBUG, _("\tadded source package [%d]\n"),
517                 eiu->numSRPMS);
518             eiu->sourceURL = xrealloc(eiu->sourceURL,
519                                 (eiu->numSRPMS + 2) * sizeof(*eiu->sourceURL));
520             eiu->sourceURL[eiu->numSRPMS] = *eiu->fnp;
521             *eiu->fnp = NULL;
522             eiu->numSRPMS++;
523             eiu->sourceURL[eiu->numSRPMS] = NULL;
524             continue;
525         }
526
527         if (eiu->relocations) {
528             const char ** paths;
529             int pft;
530             int c;
531
532             if (headerGetEntry(eiu->h, RPMTAG_PREFIXES, &pft,
533                                        (void **) &paths, &c) && (c == 1))
534             {
535                 eiu->relocations->oldPath = xstrdup(paths[0]);
536                 paths = headerFreeData(paths, pft);
537             } else {
538                 const char * name;
539                 xx = headerNVR(eiu->h, &name, NULL, NULL);
540                 rpmMessage(RPMMESS_ERROR,
541                                _("package %s is not relocatable\n"), name);
542                 eiu->numFailed++;
543                 goto exit;
544                 /*@notreached@*/
545             }
546         }
547
548         /* On --freshen, verify package is installed and newer */
549         if (ia->installInterfaceFlags & INSTALL_FRESHEN) {
550             rpmdbMatchIterator mi;
551             const char * name;
552             Header oldH;
553             int count;
554
555             xx = headerNVR(eiu->h, &name, NULL, NULL);
556             mi = rpmtsInitIterator(ts, RPMTAG_NAME, name, 0);
557             count = rpmdbGetIteratorCount(mi);
558             while ((oldH = rpmdbNextIterator(mi)) != NULL) {
559                 if (rpmVersionCompare(oldH, eiu->h) < 0)
560                     /*@innercontinue@*/ continue;
561                 /* same or newer package already installed */
562                 count = 0;
563                 /*@innerbreak@*/ break;
564             }
565             mi = rpmdbFreeIterator(mi);
566             if (count == 0) {
567                 eiu->h = headerFree(eiu->h);
568                 continue;
569             }
570             /* Package is newer than those currently installed. */
571         }
572
573         /*@-abstract@*/
574         rc = rpmtsAddInstallElement(ts, eiu->h, (fnpyKey)fileName,
575                         (ia->installInterfaceFlags & INSTALL_UPGRADE) != 0,
576                         relocations);
577         /*@=abstract@*/
578
579         /* XXX reference held by transaction set */
580         eiu->h = headerFree(eiu->h);
581         if (eiu->relocations)
582             eiu->relocations->oldPath = _free(eiu->relocations->oldPath);
583
584         switch(rc) {
585         case 0:
586             rpmMessage(RPMMESS_DEBUG, _("\tadded binary package [%d]\n"),
587                         eiu->numRPMS);
588             /*@switchbreak@*/ break;
589         case 1:
590             rpmMessage(RPMMESS_ERROR,
591                             _("error reading from file %s\n"), *eiu->fnp);
592             eiu->numFailed++;
593             goto exit;
594             /*@notreached@*/ /*@switchbreak@*/ break;
595         case 2:
596             rpmMessage(RPMMESS_ERROR,
597                             _("file %s requires a newer version of RPM\n"),
598                             *eiu->fnp);
599             eiu->numFailed++;
600             goto exit;
601             /*@notreached@*/ /*@switchbreak@*/ break;
602         }
603
604         eiu->numRPMS++;
605         continue;
606
607 maybe_manifest:
608         /* Try to read a package manifest. */
609         eiu->fd = Fopen(*eiu->fnp, "r.fpio");
610         if (eiu->fd == NULL || Ferror(eiu->fd)) {
611             rpmError(RPMERR_OPEN, _("open of %s failed: %s\n"), *eiu->fnp,
612                         Fstrerror(eiu->fd));
613             if (eiu->fd != NULL) {
614                 xx = Fclose(eiu->fd);
615                 eiu->fd = NULL;
616             }
617             eiu->numFailed++; *eiu->fnp = NULL;
618             break;
619         }
620
621         /* Read list of packages from manifest. */
622 /*@-nullstate@*/ /* FIX: *eiu->argv can be NULL */
623         rc = rpmReadPackageManifest(eiu->fd, &eiu->argc, &eiu->argv);
624 /*@=nullstate@*/
625         if (rc != RPMRC_OK)
626             rpmError(RPMERR_MANIFEST, _("%s: not an rpm package (or package manifest): %s\n"),
627                         *eiu->fnp, Fstrerror(eiu->fd));
628         xx = Fclose(eiu->fd);
629         eiu->fd = NULL;
630
631         /* If successful, restart the query loop. */
632         if (rc == RPMRC_OK) {
633             eiu->prevx++;
634             goto restart;
635         }
636
637         eiu->numFailed++; *eiu->fnp = NULL;
638         break;
639     }
640
641     rpmMessage(RPMMESS_DEBUG, _("found %d source and %d binary packages\n"),
642                 eiu->numSRPMS, eiu->numRPMS);
643
644     if (eiu->numFailed) goto exit;
645
646     if (eiu->numRPMS && !(ia->installInterfaceFlags & INSTALL_NODEPS)) {
647
648         if (rpmtsCheck(ts)) {
649             eiu->numFailed = eiu->numPkgs;
650             stopInstall = 1;
651         }
652
653         ps = rpmtsProblems(ts);
654         if (!stopInstall && rpmpsNumProblems(ps) > 0) {
655             rpmMessage(RPMMESS_ERROR, _("Failed dependencies:\n"));
656             rpmpsPrint(NULL, ps);
657             eiu->numFailed = eiu->numPkgs;
658             stopInstall = 1;
659
660             /*@-branchstate@*/
661             if (ts->suggests != NULL && ts->nsuggests > 0) {
662                 rpmMessage(RPMMESS_NORMAL, _("    Suggested resolutions:\n"));
663                 for (i = 0; i < ts->nsuggests; i++) {
664                     const char * str = ts->suggests[i];
665
666                     if (str == NULL)
667                         break;
668
669                     rpmMessage(RPMMESS_NORMAL, "\t%s\n", str);
670                 
671                     ts->suggests[i] = NULL;
672                     str = _free(str);
673                 }
674                 ts->suggests = _free(ts->suggests);
675             }
676             /*@=branchstate@*/
677         }
678         ps = rpmpsFree(ps);
679     }
680
681     if (eiu->numRPMS && !(ia->installInterfaceFlags & INSTALL_NOORDER)) {
682         if (rpmtsOrder(ts)) {
683             eiu->numFailed = eiu->numPkgs;
684             stopInstall = 1;
685         }
686     }
687
688     if (eiu->numRPMS && !stopInstall) {
689
690         rpmcliPackagesTotal += eiu->numSRPMS;
691
692         rpmMessage(RPMMESS_DEBUG, _("installing binary packages\n"));
693
694         /* Drop added/available package indices and dependency sets. */
695         rpmtsClean(ts);
696
697         rc = rpmtsRun(ts, NULL, probFilter);
698         ps = rpmtsProblems(ts);
699
700         if (rc < 0) {
701             eiu->numFailed += eiu->numRPMS;
702         } else if (rc > 0) {
703             eiu->numFailed += rc;
704             if (rpmpsNumProblems(ps) > 0)
705                 rpmpsPrint(stderr, ps);
706         }
707         ps = rpmpsFree(ps);
708     }
709
710     if (eiu->numSRPMS && !stopInstall) {
711         if (eiu->sourceURL != NULL)
712         for (i = 0; i < eiu->numSRPMS; i++) {
713             if (eiu->sourceURL[i] == NULL) continue;
714             eiu->fd = Fopen(eiu->sourceURL[i], "r.ufdio");
715             if (eiu->fd == NULL || Ferror(eiu->fd)) {
716                 rpmMessage(RPMMESS_ERROR, _("cannot open file %s: %s\n"),
717                            eiu->sourceURL[i], Fstrerror(eiu->fd));
718                 if (eiu->fd != NULL) {
719                     xx = Fclose(eiu->fd);
720                     eiu->fd = NULL;
721                 }
722                 continue;
723             }
724
725             if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_TEST)) {
726                 eiu->rpmrc = rpmInstallSourcePackage(ts, eiu->fd, NULL, NULL);
727                 if (eiu->rpmrc != RPMRC_OK) eiu->numFailed++;
728             }
729
730             xx = Fclose(eiu->fd);
731             eiu->fd = NULL;
732         }
733     }
734
735 exit:
736     if (eiu->pkgURL != NULL)
737     for (i = 0; i < eiu->numPkgs; i++) {
738         if (eiu->pkgURL[i] == NULL) continue;
739         if (eiu->pkgState[i] == 1)
740             (void) Unlink(eiu->pkgURL[i]);
741         eiu->pkgURL[i] = _free(eiu->pkgURL[i]);
742     }
743     eiu->pkgState = _free(eiu->pkgState);
744     eiu->pkgURL = _free(eiu->pkgURL);
745     eiu->argv = _free(eiu->argv);
746
747     rpmtsEmpty(ts);
748
749     return eiu->numFailed;
750 }
751 /*@=bounds@*/
752
753 int rpmErase(rpmts ts, struct rpmInstallArguments_s * ia,
754                 const char ** argv)
755 {
756     int count;
757     const char ** arg;
758     int numFailed = 0;
759     int stopUninstall = 0;
760     int numPackages = 0;
761     rpmVSFlags vsflags, ovsflags;
762     rpmps ps;
763
764     if (argv == NULL) return 0;
765
766     vsflags = rpmExpandNumeric("%{?_vsflags_erase}");
767     if (ia->qva_flags & VERIFY_DIGEST)
768         vsflags |= _RPMVSF_NODIGESTS;
769     if (ia->qva_flags & VERIFY_SIGNATURE)
770         vsflags |= _RPMVSF_NOSIGNATURES;
771     if (ia->qva_flags & VERIFY_HDRCHK)
772         vsflags |= RPMVSF_NOHDRCHK;
773     ovsflags = rpmtsSetVSFlags(ts, vsflags);
774
775     if (rpmExpandNumeric("%{?_repackage_all_erasures}"))
776         ia->transFlags |= RPMTRANS_FLAG_REPACKAGE;
777
778     (void) rpmtsSetFlags(ts, ia->transFlags);
779
780 #ifdef  NOTYET  /* XXX no callbacks on erase yet */
781     {   int notifyFlags;
782         notifyFlags = ia->eraseInterfaceFlags | (rpmIsVerbose() ? INSTALL_LABEL : 0 );
783         xx = rpmtsSetNotifyCallback(ts,
784                         rpmShowProgress, (void *) ((long)notifyFlags)
785     }
786 #endif
787
788     ts->goal = TSM_ERASE;
789
790     for (arg = argv; *arg; arg++) {
791         rpmdbMatchIterator mi;
792
793         /* XXX HACK to get rpmdbFindByLabel out of the API */
794         mi = rpmtsInitIterator(ts, RPMDBI_LABEL, *arg, 0);
795         if (mi == NULL) {
796             rpmMessage(RPMMESS_ERROR, _("package %s is not installed\n"), *arg);
797             numFailed++;
798         } else {
799             Header h;   /* XXX iterator owns the reference */
800             count = 0;
801             while ((h = rpmdbNextIterator(mi)) != NULL) {
802                 unsigned int recOffset = rpmdbGetIteratorOffset(mi);
803
804                 if (!(count++ == 0 || (ia->eraseInterfaceFlags & UNINSTALL_ALLMATCHES))) {
805                     rpmMessage(RPMMESS_ERROR, _("\"%s\" specifies multiple packages\n"),
806                         *arg);
807                     numFailed++;
808                     /*@innerbreak@*/ break;
809                 }
810                 if (recOffset) {
811                     (void) rpmtsAddEraseElement(ts, h, recOffset);
812                     numPackages++;
813                 }
814             }
815         }
816         mi = rpmdbFreeIterator(mi);
817     }
818
819     if (numFailed) goto exit;
820
821     if (!(ia->eraseInterfaceFlags & UNINSTALL_NODEPS)) {
822
823         if (rpmtsCheck(ts)) {
824             numFailed = numPackages;
825             stopUninstall = 1;
826         }
827
828         ps = rpmtsProblems(ts);
829         if (!stopUninstall && rpmpsNumProblems(ps) > 0) {
830             rpmMessage(RPMMESS_ERROR, _("Failed dependencies:\n"));
831             rpmpsPrint(NULL, ps);
832             numFailed += numPackages;
833             stopUninstall = 1;
834         }
835         ps = rpmpsFree(ps);
836     }
837
838 #ifdef  NOTYET
839     if (!stopUninstall && !(ia->installInterfaceFlags & INSTALL_NOORDER)) {
840         if (rpmtsOrder(ts)) {
841             numFailed += numPackages;
842             stopUninstall = 1;
843         }
844     }
845 #endif
846
847     if (!stopUninstall) {
848         (void) rpmtsSetFlags(ts, (rpmtsFlags(ts) | RPMTRANS_FLAG_REVERSE));
849
850         /* Drop added/available package indices and dependency sets. */
851         rpmtsClean(ts);
852
853         numPackages = rpmtsRun(ts, NULL, ia->probFilter & (RPMPROB_FILTER_DISKSPACE|RPMPROB_FILTER_DISKNODES));
854         ps = rpmtsProblems(ts);
855         if (rpmpsNumProblems(ps) > 0)
856             rpmpsPrint(NULL, ps);
857         numFailed += numPackages;
858         stopUninstall = 1;
859         ps = rpmpsFree(ps);
860     }
861
862 exit:
863     rpmtsEmpty(ts);
864
865     return numFailed;
866 }
867
868 int rpmInstallSource(rpmts ts, const char * arg,
869                 const char ** specFilePtr, const char ** cookie)
870 {
871     FD_t fd;
872     int rc;
873
874
875     fd = Fopen(arg, "r.ufdio");
876     if (fd == NULL || Ferror(fd)) {
877         rpmMessage(RPMMESS_ERROR, _("cannot open %s: %s\n"), arg, Fstrerror(fd));
878         if (fd != NULL) (void) Fclose(fd);
879         return 1;
880     }
881
882     if (rpmIsVerbose())
883         fprintf(stdout, _("Installing %s\n"), arg);
884
885     {
886         rpmVSFlags ovsflags =
887                 rpmtsSetVSFlags(ts, (rpmtsVSFlags(ts) | RPMVSF_NEEDPAYLOAD));
888         rpmRC rpmrc = rpmInstallSourcePackage(ts, fd, specFilePtr, cookie);
889         rc = (rpmrc == RPMRC_OK ? 0 : 1);
890         ovsflags = rpmtsSetVSFlags(ts, ovsflags);
891     }
892     if (rc != 0) {
893         rpmMessage(RPMMESS_ERROR, _("%s cannot be installed\n"), arg);
894         /*@-unqualifiedtrans@*/
895         if (specFilePtr && *specFilePtr)
896             *specFilePtr = _free(*specFilePtr);
897         if (cookie && *cookie)
898             *cookie = _free(*cookie);
899         /*@=unqualifiedtrans@*/
900     }
901
902     (void) Fclose(fd);
903
904     return rc;
905 }
906
907 /*@unchecked@*/
908 static int reverse = -1;
909
910 /**
911  */
912 static int IDTintcmp(const void * a, const void * b)
913         /*@*/
914 {
915     /*@-castexpose@*/
916     return ( reverse * (((IDT)a)->val.u32 - ((IDT)b)->val.u32) );
917     /*@=castexpose@*/
918 }
919
920 IDTX IDTXfree(IDTX idtx)
921 {
922     if (idtx) {
923         int i;
924         if (idtx->idt)
925         for (i = 0; i < idtx->nidt; i++) {
926             IDT idt = idtx->idt + i;
927             idt->h = headerFree(idt->h);
928             idt->key = _free(idt->key);
929         }
930         idtx->idt = _free(idtx->idt);
931         idtx = _free(idtx);
932     }
933     return NULL;
934 }
935
936 IDTX IDTXnew(void)
937 {
938     IDTX idtx = xcalloc(1, sizeof(*idtx));
939     idtx->delta = 10;
940     idtx->size = sizeof(*((IDT)0));
941     return idtx;
942 }
943
944 IDTX IDTXgrow(IDTX idtx, int need)
945 {
946     if (need < 0) return NULL;
947     if (idtx == NULL)
948         idtx = IDTXnew();
949     if (need == 0) return idtx;
950
951     if ((idtx->nidt + need) > idtx->alloced) {
952         while (need > 0) {
953             idtx->alloced += idtx->delta;
954             need -= idtx->delta;
955         }
956         idtx->idt = xrealloc(idtx->idt, (idtx->alloced * idtx->size) );
957     }
958     return idtx;
959 }
960
961 IDTX IDTXsort(IDTX idtx)
962 {
963     if (idtx != NULL && idtx->idt != NULL && idtx->nidt > 0)
964         qsort(idtx->idt, idtx->nidt, idtx->size, IDTintcmp);
965     return idtx;
966 }
967
968 IDTX IDTXload(rpmts ts, rpmTag tag)
969 {
970     IDTX idtx = NULL;
971     rpmdbMatchIterator mi;
972     HGE_t hge = (HGE_t) headerGetEntry;
973     Header h;
974
975     /*@-branchstate@*/
976     mi = rpmtsInitIterator(ts, tag, NULL, 0);
977 #ifdef  NOTYET
978     (void) rpmdbSetIteratorRE(mi, RPMTAG_NAME, RPMMIRE_DEFAULT, '!gpg-pubkey');
979 #endif
980     while ((h = rpmdbNextIterator(mi)) != NULL) {
981         rpmTagType type = RPM_NULL_TYPE;
982         int_32 count = 0;
983         int_32 * tidp;
984
985         tidp = NULL;
986         if (!hge(h, tag, &type, (void **)&tidp, &count) || tidp == NULL)
987             continue;
988
989         if (type == RPM_INT32_TYPE && (*tidp == 0 || *tidp == -1))
990             continue;
991
992         idtx = IDTXgrow(idtx, 1);
993         if (idtx == NULL)
994             continue;
995         if (idtx->idt == NULL)
996             continue;
997
998         {   IDT idt;
999             /*@-nullderef@*/
1000             idt = idtx->idt + idtx->nidt;
1001             /*@=nullderef@*/
1002             idt->h = headerLink(h);
1003             idt->key = NULL;
1004             idt->instance = rpmdbGetIteratorOffset(mi);
1005             idt->val.u32 = *tidp;
1006         }
1007         idtx->nidt++;
1008     }
1009     mi = rpmdbFreeIterator(mi);
1010     /*@=branchstate@*/
1011
1012     return IDTXsort(idtx);
1013 }
1014
1015 IDTX IDTXglob(rpmts ts, const char * globstr, rpmTag tag)
1016 {
1017     IDTX idtx = NULL;
1018     HGE_t hge = (HGE_t) headerGetEntry;
1019     Header h;
1020     int_32 * tidp;
1021     FD_t fd;
1022     const char ** av = NULL;
1023     int ac = 0;
1024     rpmRC rpmrc;
1025     int xx;
1026     int i;
1027
1028     av = NULL;  ac = 0;
1029     xx = rpmGlob(globstr, &ac, &av);
1030
1031     if (xx == 0)
1032     for (i = 0; i < ac; i++) {
1033         rpmTagType type;
1034         int_32 count;
1035         int isSource;
1036
1037         fd = Fopen(av[i], "r.ufdio");
1038         if (fd == NULL || Ferror(fd)) {
1039             rpmError(RPMERR_OPEN, _("open of %s failed: %s\n"), av[i],
1040                         Fstrerror(fd));
1041             if (fd != NULL) (void) Fclose(fd);
1042             continue;
1043         }
1044
1045         rpmrc = rpmReadPackageFile(ts, fd, av[i], &h);
1046         (void) Fclose(fd);
1047         switch (rpmrc) {
1048         default:
1049             goto bottom;
1050             /*@notreached@*/ /*@switchbreak@*/ break;
1051         case RPMRC_NOTTRUSTED:
1052         case RPMRC_NOKEY:
1053         case RPMRC_OK:
1054             isSource = headerIsEntry(h, RPMTAG_SOURCEPACKAGE);
1055             if (isSource)
1056                 goto bottom;
1057             /*@switchbreak@*/ break;
1058         }
1059
1060         tidp = NULL;
1061         /*@-branchstate@*/
1062         if (hge(h, tag, &type, (void **) &tidp, &count) && tidp != NULL) {
1063
1064             idtx = IDTXgrow(idtx, 1);
1065             if (idtx == NULL || idtx->idt == NULL)
1066                 goto bottom;
1067
1068             {   IDT idt;
1069                 idt = idtx->idt + idtx->nidt;
1070                 idt->h = headerLink(h);
1071                 idt->key = av[i];
1072                 av[i] = NULL;
1073                 idt->instance = 0;
1074                 idt->val.u32 = *tidp;
1075             }
1076             idtx->nidt++;
1077         }
1078         /*@=branchstate@*/
1079 bottom:
1080         h = headerFree(h);
1081     }
1082
1083     for (i = 0; i < ac; i++)
1084         av[i] = _free(av[i]);
1085     av = _free(av);     ac = 0;
1086
1087     return IDTXsort(idtx);
1088 }
1089
1090 /** @todo Transaction handling, more, needs work. */
1091 int rpmRollback(rpmts ts, struct rpmInstallArguments_s * ia, const char ** argv)
1092 {
1093     int ifmask= (INSTALL_UPGRADE|INSTALL_FRESHEN|INSTALL_INSTALL|INSTALL_ERASE);
1094     unsigned thistid = 0xffffffff;
1095     unsigned prevtid;
1096     time_t tid;
1097     IDTX itids = NULL;
1098     IDTX rtids = NULL;
1099     IDT rp;
1100     int nrids = 0;
1101     IDT ip;
1102     int niids = 0;
1103     int rc = 0;
1104     int vsflags, ovsflags;
1105     int numAdded;
1106     int numRemoved;
1107     rpmps ps;
1108     int _unsafe_rollbacks = 0;
1109     rpmtransFlags transFlags = ia->transFlags;
1110
1111     if (argv != NULL && *argv != NULL) {
1112         rc = -1;
1113         goto exit;
1114     }
1115
1116     _unsafe_rollbacks = rpmExpandNumeric("%{?_unsafe_rollbacks}");
1117
1118     vsflags = rpmExpandNumeric("%{?_vsflags_erase}");
1119     if (ia->qva_flags & VERIFY_DIGEST)
1120         vsflags |= _RPMVSF_NODIGESTS;
1121     if (ia->qva_flags & VERIFY_SIGNATURE)
1122         vsflags |= _RPMVSF_NOSIGNATURES;
1123     if (ia->qva_flags & VERIFY_HDRCHK)
1124         vsflags |= RPMVSF_NOHDRCHK;
1125     vsflags |= RPMVSF_NEEDPAYLOAD;      /* XXX no legacy signatures */
1126     ovsflags = rpmtsSetVSFlags(ts, vsflags);
1127
1128     (void) rpmtsSetFlags(ts, transFlags);
1129
1130     /*  Make the transaction a rollback transaction.  In a rollback
1131      *  a best effort is what we want 
1132      */
1133     rpmtsSetType(ts, RPMTRANS_TYPE_ROLLBACK);
1134
1135     itids = IDTXload(ts, RPMTAG_INSTALLTID);
1136     if (itids != NULL) {
1137         ip = itids->idt;
1138         niids = itids->nidt;
1139     } else {
1140         ip = NULL;
1141         niids = 0;
1142     }
1143
1144     {   const char * globstr = rpmExpand("%{_repackage_dir}/*.rpm", NULL);
1145         if (globstr == NULL || *globstr == '%') {
1146             globstr = _free(globstr);
1147             rc = -1;
1148             goto exit;
1149         }
1150         rtids = IDTXglob(ts, globstr, RPMTAG_REMOVETID);
1151
1152         if (rtids != NULL) {
1153             rp = rtids->idt;
1154             nrids = rtids->nidt;
1155         } else {
1156             rp = NULL;
1157             nrids = 0;
1158         }
1159         globstr = _free(globstr);
1160     }
1161
1162     {   int notifyFlags, xx;
1163         notifyFlags = ia->installInterfaceFlags | (rpmIsVerbose() ? INSTALL_LABEL : 0 );
1164         xx = rpmtsSetNotifyCallback(ts,
1165                         rpmShowProgress, (void *) ((long)notifyFlags));
1166     }
1167
1168     /* Run transactions until rollback goal is achieved. */
1169     do {
1170         prevtid = thistid;
1171         rc = 0;
1172         rpmcliPackagesTotal = 0;
1173         numAdded = 0;
1174         numRemoved = 0;
1175         ia->installInterfaceFlags &= ~ifmask;
1176
1177         /* Find larger of the remaining install/erase transaction id's. */
1178         thistid = 0;
1179         if (ip != NULL && ip->val.u32 > thistid)
1180             thistid = ip->val.u32;
1181         if (rp != NULL && rp->val.u32 > thistid)
1182             thistid = rp->val.u32;
1183
1184         /* If we've achieved the rollback goal, then we're done. */
1185         if (thistid == 0 || thistid < ia->rbtid)
1186             break;
1187
1188         /* If we've reached the (configured) rollback goal, then we're done. */
1189         if (_unsafe_rollbacks && thistid <= _unsafe_rollbacks)
1190             break;
1191
1192         rpmtsEmpty(ts);
1193         (void) rpmtsSetFlags(ts, transFlags);
1194
1195         /* Install the previously erased packages for this transaction. */
1196         while (rp != NULL && rp->val.u32 == thistid) {
1197
1198             rpmMessage(RPMMESS_DEBUG, "\t+++ install %s\n",
1199                         (rp->key ? rp->key : "???"));
1200
1201 /*@-abstract@*/
1202             rc = rpmtsAddInstallElement(ts, rp->h, (fnpyKey)rp->key,
1203                                0, ia->relocations);
1204 /*@=abstract@*/
1205             if (rc != 0)
1206                 goto exit;
1207
1208             numAdded++;
1209             rpmcliPackagesTotal++;
1210             if (!(ia->installInterfaceFlags & ifmask))
1211                 ia->installInterfaceFlags |= INSTALL_UPGRADE;
1212
1213 #ifdef  NOTYET
1214             rp->h = headerFree(rp->h);
1215 #endif
1216             nrids--;
1217             if (nrids > 0)
1218                 rp++;
1219             else
1220                 rp = NULL;
1221         }
1222
1223         /* Erase the previously installed packages for this transaction. */
1224         while (ip != NULL && ip->val.u32 == thistid) {
1225
1226             rpmMessage(RPMMESS_DEBUG,
1227                         "\t--- erase h#%u\n", ip->instance);
1228
1229             rc = rpmtsAddEraseElement(ts, ip->h, ip->instance);
1230             if (rc != 0)
1231                 goto exit;
1232
1233             numRemoved++;
1234
1235             if (_unsafe_rollbacks)
1236                 rpmcliPackagesTotal++;
1237
1238             if (!(ia->installInterfaceFlags & ifmask)) {
1239                 ia->installInterfaceFlags |= INSTALL_ERASE;
1240                 (void) rpmtsSetFlags(ts, (transFlags | RPMTRANS_FLAG_REVERSE));
1241             }
1242
1243 #ifdef  NOTYET
1244             ip->instance = 0;
1245 #endif
1246             niids--;
1247             if (niids > 0)
1248                 ip++;
1249             else
1250                 ip = NULL;
1251         }
1252
1253         /* Anything to do? */
1254         if (rpmcliPackagesTotal <= 0)
1255             break;
1256
1257         tid = (time_t)thistid;
1258         rpmMessage(RPMMESS_NORMAL,
1259                 _("Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"),
1260                         numAdded, numRemoved, ctime(&tid), tid);
1261
1262         rc = rpmtsCheck(ts);
1263         ps = rpmtsProblems(ts);
1264         if (rc != 0 && rpmpsNumProblems(ps) > 0) {
1265             rpmMessage(RPMMESS_ERROR, _("Failed dependencies:\n"));
1266             rpmpsPrint(NULL, ps);
1267             ps = rpmpsFree(ps);
1268             goto exit;
1269         }
1270         ps = rpmpsFree(ps);
1271
1272         rc = rpmtsOrder(ts);
1273         if (rc != 0)
1274             goto exit;
1275
1276         /* Drop added/available package indices and dependency sets. */
1277         rpmtsClean(ts);
1278
1279         rc = rpmtsRun(ts, NULL, (ia->probFilter|RPMPROB_FILTER_OLDPACKAGE));
1280         ps = rpmtsProblems(ts);
1281         if (rc > 0 && rpmpsNumProblems(ps) > 0)
1282             rpmpsPrint(stderr, ps);
1283         ps = rpmpsFree(ps);
1284         if (rc)
1285             goto exit;
1286
1287         /* Clean up after successful rollback. */
1288         if (rtids && !rpmIsDebug()) {
1289             int i;
1290             rpmMessage(RPMMESS_NORMAL, _("Cleaning up repackaged packages:\n"));
1291             if (rtids->idt)
1292             for (i = 0; i < rtids->nidt; i++) {
1293                 IDT rrp = rtids->idt + i;
1294                 if (rrp->val.u32 != thistid)
1295                     /*@innercontinue@*/ continue;
1296                 if (rrp->key) { /* XXX can't happen */
1297                     rpmMessage(RPMMESS_NORMAL, _("\tRemoving %s:\n"), rrp->key);
1298                     (void) unlink(rrp->key);    /* XXX: Should check rc??? */
1299                 }
1300             }
1301         }
1302
1303
1304     } while (1);
1305
1306 exit:
1307     rtids = IDTXfree(rtids);
1308     itids = IDTXfree(itids);
1309
1310     rpmtsEmpty(ts);
1311     (void) rpmtsSetFlags(ts, transFlags);
1312
1313     return rc;
1314 }