Simplify rpmcliTransaction() a bit
[platform/upstream/rpm.git] / lib / rpminstall.c
1 /** \ingroup rpmcli
2  * \file lib/rpminstall.c
3  */
4
5 #include "system.h"
6
7 #include <rpm/rpmcli.h>
8 #include <rpm/rpmtag.h>
9 #include <rpm/rpmlib.h>         /* rpmReadPackageFile, vercmp etc */
10 #include <rpm/rpmdb.h>
11 #include <rpm/rpmds.h>
12 #include <rpm/rpmts.h>
13 #include <rpm/rpmlog.h>
14 #include <rpm/rpmfileutil.h>
15
16 #include "lib/rpmgi.h"
17 #include "lib/manifest.h"
18 #include "debug.h"
19
20 int rpmcliPackagesTotal = 0;
21 int rpmcliHashesCurrent = 0;
22 int rpmcliHashesTotal = 0;
23 int rpmcliProgressCurrent = 0;
24 int rpmcliProgressTotal = 0;
25
26 /**
27  * Print a CLI progress bar.
28  * @todo Unsnarl isatty(STDOUT_FILENO) from the control flow.
29  * @param amount        current
30  * @param total         final
31  */
32 static void printHash(const rpm_loff_t amount, const rpm_loff_t total)
33 {
34     int hashesNeeded;
35
36     rpmcliHashesTotal = (isatty (STDOUT_FILENO) ? 44 : 50);
37
38     if (rpmcliHashesCurrent != rpmcliHashesTotal) {
39         float pct = (total ? (((float) amount) / total) : 1.0);
40         hashesNeeded = (rpmcliHashesTotal * pct) + 0.5;
41         while (hashesNeeded > rpmcliHashesCurrent) {
42             if (isatty (STDOUT_FILENO)) {
43                 int i;
44                 for (i = 0; i < rpmcliHashesCurrent; i++)
45                     (void) putchar ('#');
46                 for (; i < rpmcliHashesTotal; i++)
47                     (void) putchar (' ');
48                 fprintf(stdout, "(%3d%%)", (int)((100 * pct) + 0.5));
49                 for (i = 0; i < (rpmcliHashesTotal + 6); i++)
50                     (void) putchar ('\b');
51             } else
52                 fprintf(stdout, "#");
53
54             rpmcliHashesCurrent++;
55         }
56         (void) fflush(stdout);
57
58         if (rpmcliHashesCurrent == rpmcliHashesTotal) {
59             int i;
60             rpmcliProgressCurrent++;
61             if (isatty(STDOUT_FILENO)) {
62                 for (i = 1; i < rpmcliHashesCurrent; i++)
63                     (void) putchar ('#');
64                 pct = (rpmcliProgressTotal
65                     ? (((float) rpmcliProgressCurrent) / rpmcliProgressTotal)
66                     : 1);
67                 fprintf(stdout, " [%3d%%]", (int)((100 * pct) + 0.5));
68             }
69             fprintf(stdout, "\n");
70         }
71         (void) fflush(stdout);
72     }
73 }
74
75 static rpmVSFlags setvsFlags(struct rpmInstallArguments_s * ia)
76 {
77     rpmVSFlags vsflags;
78
79     if (ia->installInterfaceFlags & (INSTALL_UPGRADE | INSTALL_ERASE))
80         vsflags = rpmExpandNumeric("%{?_vsflags_erase}");
81     else
82         vsflags = rpmExpandNumeric("%{?_vsflags_install}");
83
84     if (ia->qva_flags & VERIFY_DIGEST)
85         vsflags |= _RPMVSF_NODIGESTS;
86     if (ia->qva_flags & VERIFY_SIGNATURE)
87         vsflags |= _RPMVSF_NOSIGNATURES;
88     if (ia->qva_flags & VERIFY_HDRCHK)
89         vsflags |= RPMVSF_NOHDRCHK;
90
91     return vsflags;
92 }
93
94 void * rpmShowProgress(const void * arg,
95                         const rpmCallbackType what,
96                         const rpm_loff_t amount,
97                         const rpm_loff_t total,
98                         fnpyKey key,
99                         void * data)
100 {
101     Header h = (Header) arg;
102     char * s;
103     int flags = (int) ((long)data);
104     void * rc = NULL;
105     const char * filename = (const char *)key;
106     static FD_t fd = NULL;
107
108     switch (what) {
109     case RPMCALLBACK_INST_OPEN_FILE:
110         if (filename == NULL || filename[0] == '\0')
111             return NULL;
112         fd = Fopen(filename, "r.ufdio");
113         /* FIX: still necessary? */
114         if (fd == NULL || Ferror(fd)) {
115             rpmlog(RPMLOG_ERR, _("open of %s failed: %s\n"), filename,
116                         Fstrerror(fd));
117             if (fd != NULL) {
118                 Fclose(fd);
119                 fd = NULL;
120             }
121         } else
122             fd = fdLink(fd);
123         return (void *)fd;
124         break;
125
126     case RPMCALLBACK_INST_CLOSE_FILE:
127         /* FIX: still necessary? */
128         fd = fdFree(fd);
129         if (fd != NULL) {
130             Fclose(fd);
131             fd = NULL;
132         }
133         break;
134
135     case RPMCALLBACK_INST_START:
136         rpmcliHashesCurrent = 0;
137         if (h == NULL || !(flags & INSTALL_LABEL))
138             break;
139         /* @todo Remove headerFormat() on a progress callback. */
140         if (flags & INSTALL_HASH) {
141             s = headerFormat(h, "%{NAME}", NULL);
142             if (isatty (STDOUT_FILENO))
143                 fprintf(stdout, "%4d:%-23.23s", rpmcliProgressCurrent + 1, s);
144             else
145                 fprintf(stdout, "%-28.28s", s);
146             (void) fflush(stdout);
147             s = _free(s);
148         } else {
149             s = headerFormat(h, "%{NAME}-%{VERSION}-%{RELEASE}", NULL);
150             fprintf(stdout, "%s\n", s);
151             (void) fflush(stdout);
152             s = _free(s);
153         }
154         break;
155
156     case RPMCALLBACK_TRANS_PROGRESS:
157     case RPMCALLBACK_INST_PROGRESS:
158         if (flags & INSTALL_PERCENT)
159             fprintf(stdout, "%%%% %f\n", (double) (total
160                                 ? ((((float) amount) / total) * 100)
161                                 : 100.0));
162         else if (flags & INSTALL_HASH)
163             printHash(amount, total);
164         (void) fflush(stdout);
165         break;
166
167     case RPMCALLBACK_TRANS_START:
168         rpmcliHashesCurrent = 0;
169         rpmcliProgressTotal = 1;
170         rpmcliProgressCurrent = 0;
171         if (!(flags & INSTALL_LABEL))
172             break;
173         if (flags & INSTALL_HASH)
174             fprintf(stdout, "%-28s", _("Preparing..."));
175         else
176             fprintf(stdout, "%s\n", _("Preparing packages for installation..."));
177         (void) fflush(stdout);
178         break;
179
180     case RPMCALLBACK_TRANS_STOP:
181         if (flags & INSTALL_HASH)
182             printHash(1, 1);    /* Fixes "preparing..." progress bar */
183         rpmcliProgressTotal = rpmcliPackagesTotal;
184         rpmcliProgressCurrent = 0;
185         break;
186
187     case RPMCALLBACK_UNINST_PROGRESS:
188         break;
189     case RPMCALLBACK_UNINST_START:
190         break;
191     case RPMCALLBACK_UNINST_STOP:
192         break;
193     case RPMCALLBACK_UNPACK_ERROR:
194         break;
195     case RPMCALLBACK_CPIO_ERROR:
196         break;
197     case RPMCALLBACK_SCRIPT_ERROR:
198         break;
199     case RPMCALLBACK_UNKNOWN:
200     default:
201         break;
202     }
203
204     return rc;
205 }       
206
207 static void setNotifyFlag(struct rpmInstallArguments_s * ia,
208                           rpmts ts)
209 {
210     int notifyFlags;
211
212     notifyFlags = ia->installInterfaceFlags | (rpmIsVerbose() ? INSTALL_LABEL : 0 );
213     rpmtsSetNotifyCallback(ts, rpmShowProgress, (void *) ((long)notifyFlags));
214 }
215
216 struct rpmEIU {
217     Header h;
218     int numFailed;
219     int numPkgs;
220     char ** pkgURL;
221     char ** fnp;
222     char * pkgState;
223     int prevx;
224     int pkgx;
225     int numRPMS;
226     int numSRPMS;
227     char ** sourceURL;
228     int isSource;
229     int argc;
230     char ** argv;
231     rpmRelocation * relocations;
232     rpmRC rpmrc;
233 };
234
235 static int rpmcliTransaction(rpmts ts, struct rpmInstallArguments_s * ia,
236                       int numPackages)
237 {
238     rpmps ps;
239
240     int rc = 0;
241     int stop = 0;
242
243     int eflags = ia->installInterfaceFlags & INSTALL_ERASE;
244
245     if (!(ia->installInterfaceFlags & INSTALL_NODEPS)) {
246
247         if (rpmtsCheck(ts)) {
248             rc = numPackages;
249             stop = 1;
250         }
251
252         ps = rpmtsProblems(ts);
253         if (!stop && rpmpsNumProblems(ps) > 0) {
254             rpmlog(RPMLOG_ERR, _("Failed dependencies:\n"));
255             rpmpsPrint(NULL, ps);
256             rc = numPackages;
257             stop = 1;
258         }
259         ps = rpmpsFree(ps);
260     }
261
262     if (!stop && !(ia->installInterfaceFlags & INSTALL_NOORDER)) {
263         if (rpmtsOrder(ts)) {
264             rc = numPackages;
265             stop = 1;
266         }
267     }
268
269     if (numPackages && !stop) {
270         rpmlog(RPMLOG_DEBUG, eflags ? "erasing packages\n" :
271                                       "installing binary packages\n");
272         rpmtsClean(ts);
273         rc = rpmtsRun(ts, NULL, ia->probFilter);
274
275         ps = rpmtsProblems(ts);
276
277         if ((rpmpsNumProblems(ps) > 0) && (eflags? 1 : (rc > 0)))
278             rpmpsPrint((eflags? NULL : stderr), ps);
279         ps = rpmpsFree(ps);
280     }
281
282     return rc;
283 }
284
285 static int tryReadManifest(struct rpmEIU * eiu)
286 {
287     int rc;
288
289     /* Try to read a package manifest. */
290     FD_t fd = Fopen(*eiu->fnp, "r.fpio");
291     if (fd == NULL || Ferror(fd)) {
292         rpmlog(RPMLOG_ERR, _("open of %s failed: %s\n"), *eiu->fnp,
293                Fstrerror(fd));
294         if (fd != NULL) {
295             Fclose(fd);
296             fd = NULL;
297         }
298         eiu->numFailed++; *eiu->fnp = NULL;
299         return RPMRC_FAIL;
300     }
301
302     /* Read list of packages from manifest. */
303     rc = rpmReadPackageManifest(fd, &eiu->argc, &eiu->argv);
304     if (rc != RPMRC_OK)
305         rpmlog(RPMLOG_ERR, _("%s: not an rpm package (or package manifest): %s\n"),
306                *eiu->fnp, Fstrerror(fd));
307     Fclose(fd);
308     fd = NULL;
309
310     if (rc != RPMRC_OK)
311         eiu->numFailed++; *eiu->fnp = NULL;
312
313     return rc;
314 }
315
316 static int tryReadHeader(rpmts ts, struct rpmEIU * eiu, rpmVSFlags vsflags)
317 {
318    rpmVSFlags tvsflags;
319
320    /* Try to read the header from a package file. */
321    FD_t fd = Fopen(*eiu->fnp, "r.ufdio");
322    if (fd == NULL || Ferror(fd)) {
323        rpmlog(RPMLOG_ERR, _("open of %s failed: %s\n"), *eiu->fnp,
324               Fstrerror(fd));
325        if (fd != NULL) {
326            Fclose(fd);
327            fd = NULL;
328        }
329        eiu->numFailed++; *eiu->fnp = NULL;
330        return RPMRC_FAIL;
331    }
332
333    /* Read the header, verifying signatures (if present). */
334    tvsflags = rpmtsSetVSFlags(ts, vsflags);
335    eiu->rpmrc = rpmReadPackageFile(ts, fd, *eiu->fnp, &eiu->h);
336    tvsflags = rpmtsSetVSFlags(ts, tvsflags);
337    Fclose(fd);
338    fd = NULL;
339    
340    /* Honor --nomanifest */
341    if (eiu->rpmrc == RPMRC_NOTFOUND && (giFlags & RPMGI_NOMANIFEST))
342        eiu->rpmrc = RPMRC_FAIL;
343
344    if(eiu->rpmrc == RPMRC_FAIL) {
345        rpmlog(RPMLOG_ERR, _("%s cannot be installed\n"), *eiu->fnp);
346        eiu->numFailed++; *eiu->fnp = NULL;
347    }
348
349    return RPMRC_OK;
350 }
351
352
353 /* On --freshen, verify package is installed and newer */
354 static int checkFreshenStatus(rpmts ts, struct rpmEIU * eiu)
355 {
356     rpmdbMatchIterator mi = NULL;
357     const char * name = headerGetString(eiu->h, RPMTAG_NAME);
358     Header oldH;
359     int count;
360
361     if (name != NULL)
362         mi = rpmtsInitIterator(ts, RPMTAG_NAME, name, 0);
363     count = rpmdbGetIteratorCount(mi);
364     while ((oldH = rpmdbNextIterator(mi)) != NULL) {
365         if (rpmVersionCompare(oldH, eiu->h) < 0)
366             continue;
367         /* same or newer package already installed */
368         count = 0;
369         break;
370     }
371     mi = rpmdbFreeIterator(mi);
372     if (count == 0) {
373         eiu->h = headerFree(eiu->h);
374         return -1;
375     }
376     /* Package is newer than those currently installed. */
377
378    return 1;
379 }
380
381 /** @todo Generalize --freshen policies. */
382 int rpmInstall(rpmts ts, struct rpmInstallArguments_s * ia, ARGV_t fileArgv)
383 {
384     struct rpmEIU * eiu = xcalloc(1, sizeof(*eiu));
385     rpmRelocation * relocations;
386     char * fileURL = NULL;
387     rpmVSFlags vsflags, ovsflags;
388     int rc;
389     int i;
390
391     if (fileArgv == NULL) goto exit;
392
393     rpmcliPackagesTotal = 0;
394
395     (void) rpmtsSetFlags(ts, ia->transFlags);
396
397     relocations = ia->relocations;
398
399     vsflags = setvsFlags(ia);
400     ovsflags = rpmtsSetVSFlags(ts, (vsflags | RPMVSF_NEEDPAYLOAD));
401
402     setNotifyFlag(ia, ts); 
403
404     if ((eiu->relocations = relocations) != NULL) {
405         while (eiu->relocations->oldPath)
406             eiu->relocations++;
407         if (eiu->relocations->newPath == NULL)
408             eiu->relocations = NULL;
409     }
410
411     /* Build fully globbed list of arguments in argv[argc]. */
412     for (eiu->fnp = fileArgv; *eiu->fnp != NULL; eiu->fnp++) {
413         ARGV_t av = NULL;
414         int ac = 0;
415         char * fn;
416
417         fn = rpmEscapeSpaces(*eiu->fnp);
418         rc = rpmGlob(fn, &ac, &av);
419         fn = _free(fn);
420         if (rc || ac == 0) {
421             rpmlog(RPMLOG_ERR, _("File not found by glob: %s\n"), *eiu->fnp);
422             eiu->numFailed++;
423             continue;
424         }
425
426         argvAppend(&(eiu->argv), av);
427         argvFree(av);
428         eiu->argc += ac;
429     }
430
431 restart:
432     /* Allocate sufficient storage for next set of args. */
433     if (eiu->pkgx >= eiu->numPkgs) {
434         eiu->numPkgs = eiu->pkgx + eiu->argc;
435         eiu->pkgURL = xrealloc(eiu->pkgURL,
436                         (eiu->numPkgs + 1) * sizeof(*eiu->pkgURL));
437         memset(eiu->pkgURL + eiu->pkgx, 0,
438                         ((eiu->argc + 1) * sizeof(*eiu->pkgURL)));
439         eiu->pkgState = xrealloc(eiu->pkgState,
440                         (eiu->numPkgs + 1) * sizeof(*eiu->pkgState));
441         memset(eiu->pkgState + eiu->pkgx, 0,
442                         ((eiu->argc + 1) * sizeof(*eiu->pkgState)));
443     }
444
445     /* Retrieve next set of args, cache on local storage. */
446     for (i = 0; i < eiu->argc; i++) {
447         fileURL = _free(fileURL);
448         fileURL = eiu->argv[i];
449         eiu->argv[i] = NULL;
450
451         switch (urlIsURL(fileURL)) {
452         case URL_IS_HTTPS:
453         case URL_IS_HTTP:
454         case URL_IS_FTP:
455         {   char *tfn = NULL;
456             FD_t tfd;
457
458             if (rpmIsVerbose())
459                 fprintf(stdout, _("Retrieving %s\n"), fileURL);
460
461             tfd = rpmMkTempFile(rpmtsRootDir(ts), &tfn);
462             if (tfd && tfn) {
463                 Fclose(tfd);
464                 rc = urlGetFile(fileURL, tfn);
465             } else {
466                 rc = -1;
467             }
468
469             if (rc != 0) {
470                 rpmlog(RPMLOG_ERR,
471                         _("skipping %s - transfer failed\n"), fileURL);
472                 eiu->numFailed++;
473                 eiu->pkgURL[eiu->pkgx] = NULL;
474                 tfn = _free(tfn);
475                 break;
476             }
477             eiu->pkgState[eiu->pkgx] = 1;
478             eiu->pkgURL[eiu->pkgx] = tfn;
479             eiu->pkgx++;
480         }   break;
481         case URL_IS_PATH:
482         case URL_IS_DASH:       /* WRONG WRONG WRONG */
483         case URL_IS_HKP:        /* WRONG WRONG WRONG */
484         default:
485             eiu->pkgURL[eiu->pkgx] = fileURL;
486             fileURL = NULL;
487             eiu->pkgx++;
488             break;
489         }
490     }
491     fileURL = _free(fileURL);
492
493     if (eiu->numFailed) goto exit;
494
495     /* Continue processing file arguments, building transaction set. */
496     for (eiu->fnp = eiu->pkgURL+eiu->prevx;
497          *eiu->fnp != NULL;
498          eiu->fnp++, eiu->prevx++)
499     {
500         const char * fileName;
501
502         rpmlog(RPMLOG_DEBUG, "============== %s\n", *eiu->fnp);
503         (void) urlPath(*eiu->fnp, &fileName);
504
505         if (tryReadHeader(ts, eiu, vsflags) == RPMRC_FAIL)
506             continue;
507
508         if (eiu->rpmrc == RPMRC_NOTFOUND) {
509             rc = tryReadManifest(eiu);
510             if (rc == RPMRC_OK) {
511                 eiu->prevx++;
512                 goto restart;
513             }
514         }
515
516         eiu->isSource = headerIsSource(eiu->h);
517
518         if (eiu->isSource) {
519             rpmlog(RPMLOG_DEBUG, "\tadded source package [%d]\n",
520                 eiu->numSRPMS);
521             eiu->sourceURL = xrealloc(eiu->sourceURL,
522                                 (eiu->numSRPMS + 2) * sizeof(*eiu->sourceURL));
523             eiu->sourceURL[eiu->numSRPMS] = *eiu->fnp;
524             *eiu->fnp = NULL;
525             eiu->numSRPMS++;
526             eiu->sourceURL[eiu->numSRPMS] = NULL;
527             continue;
528         }
529
530         if (eiu->relocations) {
531             struct rpmtd_s prefixes;
532
533             headerGet(eiu->h, RPMTAG_PREFIXES, &prefixes, HEADERGET_DEFAULT);
534             if (rpmtdCount(&prefixes) == 1) {
535                 eiu->relocations->oldPath = xstrdup(rpmtdGetString(&prefixes));
536                 rpmtdFreeData(&prefixes);
537             } else {
538                 rpmlog(RPMLOG_ERR, _("package %s is not relocatable\n"),
539                        headerGetString(eiu->h, RPMTAG_NAME));
540                 eiu->numFailed++;
541                 goto exit;
542             }
543         }
544
545         if (ia->installInterfaceFlags & INSTALL_FRESHEN)
546             if (checkFreshenStatus(ts, eiu) != 1)
547                 continue;
548
549         rc = rpmtsAddInstallElement(ts, eiu->h, (fnpyKey)fileName,
550                         (ia->installInterfaceFlags & INSTALL_UPGRADE) != 0,
551                         relocations);
552
553         /* XXX reference held by transaction set */
554         eiu->h = headerFree(eiu->h);
555         if (eiu->relocations)
556             eiu->relocations->oldPath = _free(eiu->relocations->oldPath);
557
558         switch(rc) {
559         case 0:
560             rpmlog(RPMLOG_DEBUG, "\tadded binary package [%d]\n",
561                         eiu->numRPMS);
562             break;
563         case 1:
564             rpmlog(RPMLOG_ERR,
565                             _("error reading from file %s\n"), *eiu->fnp);
566             eiu->numFailed++;
567             goto exit;
568             break;
569         case 2:
570             rpmlog(RPMLOG_ERR,
571                             _("file %s requires a newer version of RPM\n"),
572                             *eiu->fnp);
573             eiu->numFailed++;
574             goto exit;
575             break;
576         default:
577             eiu->numFailed++;
578             goto exit;
579             break;
580         }
581
582         eiu->numRPMS++;
583     }
584
585     rpmlog(RPMLOG_DEBUG, "found %d source and %d binary packages\n",
586                 eiu->numSRPMS, eiu->numRPMS);
587
588     if (eiu->numFailed) goto exit;
589
590     if (eiu->numRPMS) {
591         int rc = rpmcliTransaction(ts, ia, eiu->numPkgs);
592         if (rc < 0)
593             eiu->numFailed += eiu->numRPMS;
594         else if (rc > 0)
595             eiu->numFailed += rc;
596     }
597
598     if (eiu->numSRPMS && (eiu->sourceURL != NULL)) {
599         for (i = 0; i < eiu->numSRPMS; i++) {
600             rpmdbCheckSignals();
601             if (eiu->sourceURL[i] != NULL) {
602                 rc = RPMRC_OK;
603                 if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_TEST))
604                     rc = rpmInstallSource(ts, eiu->sourceURL[i], NULL, NULL);
605                 if (rc != 0)
606                     eiu->numFailed++;
607             }
608         }
609     }
610
611 exit:
612     if (eiu->pkgURL != NULL) {
613         for (i = 0; i < eiu->numPkgs; i++) {
614             if (eiu->pkgURL[i] == NULL) continue;
615             if (eiu->pkgState[i] == 1)
616                 (void) unlink(eiu->pkgURL[i]);
617             eiu->pkgURL[i] = _free(eiu->pkgURL[i]);
618         }
619     }
620     eiu->pkgState = _free(eiu->pkgState);
621     eiu->pkgURL = _free(eiu->pkgURL);
622     eiu->argv = _free(eiu->argv);
623     rc = eiu->numFailed;
624     free(eiu);
625
626     rpmtsEmpty(ts);
627
628     return rc;
629 }
630
631 int rpmErase(rpmts ts, struct rpmInstallArguments_s * ia, ARGV_const_t argv)
632 {
633     char * const * arg;
634     char *qfmt = NULL;
635     int numFailed = 0;
636     int numPackages = 0;
637     rpmVSFlags vsflags, ovsflags;
638
639     if (argv == NULL) return 0;
640
641     vsflags = setvsFlags(ia);
642     ovsflags = rpmtsSetVSFlags(ts, vsflags);
643
644     /* XXX suggest mechanism only meaningful when installing */
645     ia->transFlags |= RPMTRANS_FLAG_NOSUGGEST;
646
647     (void) rpmtsSetFlags(ts, ia->transFlags);
648
649 #ifdef  NOTYET  /* XXX no callbacks on erase yet */
650     setNotifyFlag(ia, ts);
651 #endif
652
653     qfmt = rpmExpand("%{?_query_all_fmt}\n", NULL);
654     for (arg = argv; *arg; arg++) {
655         rpmdbMatchIterator mi;
656         int matches = 0;
657         int erasing = 1;
658
659         /* Iterator count isn't reliable with labels, count manually... */
660         mi = rpmtsInitIterator(ts, RPMDBI_LABEL, *arg, 0);
661         while (rpmdbNextIterator(mi) != NULL) {
662             matches++;
663         }
664         rpmdbFreeIterator(mi);
665
666         if (! matches) {
667             rpmlog(RPMLOG_ERR, _("package %s is not installed\n"), *arg);
668             numFailed++;
669         } else {
670             Header h;   /* XXX iterator owns the reference */
671
672             if (matches > 1 && 
673                 !(ia->installInterfaceFlags & UNINSTALL_ALLMATCHES)) {
674                 rpmlog(RPMLOG_ERR, _("\"%s\" specifies multiple packages:\n"),
675                         *arg);
676                 numFailed++;
677                 erasing = 0;
678             }
679
680             mi = rpmtsInitIterator(ts, RPMDBI_LABEL, *arg, 0);
681             while ((h = rpmdbNextIterator(mi)) != NULL) {
682                 if (erasing) {
683                     (void) rpmtsAddEraseElement(ts, h, -1);
684                     numPackages++;
685                 } else {
686                     char *nevra = headerFormat(h, qfmt, NULL);
687                     rpmlog(RPMLOG_NOTICE, "  %s", nevra);
688                     free(nevra);
689                 }
690             }
691             mi = rpmdbFreeIterator(mi);
692         }
693     }
694     free(qfmt);
695
696     if (numFailed) goto exit;
697     numFailed = rpmcliTransaction(ts, ia, numPackages);
698 exit:
699     rpmtsEmpty(ts);
700
701     return numFailed;
702 }
703
704 int rpmInstallSource(rpmts ts, const char * arg,
705                 char ** specFilePtr, char ** cookie)
706 {
707     FD_t fd;
708     int rc;
709
710
711     fd = Fopen(arg, "r.ufdio");
712     if (fd == NULL || Ferror(fd)) {
713         rpmlog(RPMLOG_ERR, _("cannot open %s: %s\n"), arg, Fstrerror(fd));
714         if (fd != NULL) (void) Fclose(fd);
715         return 1;
716     }
717
718     if (rpmIsVerbose() && specFilePtr != NULL)
719         fprintf(stdout, _("Installing %s\n"), arg);
720
721     {
722         rpmVSFlags ovsflags =
723                 rpmtsSetVSFlags(ts, (specFilePtr) ? (rpmtsVSFlags(ts) | RPMVSF_NEEDPAYLOAD) : rpmtsVSFlags(ts));
724         rpmRC rpmrc = rpmInstallSourcePackage(ts, fd, specFilePtr, cookie);
725         rc = (rpmrc == RPMRC_OK ? 0 : 1);
726         ovsflags = rpmtsSetVSFlags(ts, ovsflags);
727     }
728     if (rc != 0) {
729         rpmlog(RPMLOG_ERR, _("%s cannot be installed\n"), arg);
730         if (specFilePtr && *specFilePtr)
731             *specFilePtr = _free(*specFilePtr);
732         if (cookie && *cookie)
733             *cookie = _free(*cookie);
734     }
735
736     (void) Fclose(fd);
737
738     return rc;
739 }
740