Rip the remains of --aid and --nosuggest, except for the callback
[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 (rpmcliQueryFlags & VERIFY_DIGEST)
85         vsflags |= _RPMVSF_NODIGESTS;
86     if (rpmcliQueryFlags & VERIFY_SIGNATURE)
87         vsflags |= _RPMVSF_NOSIGNATURES;
88     if (rpmcliQueryFlags & 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     const char *arch = headerGetString(eiu->h, RPMTAG_ARCH);
359     Header oldH = NULL;
360
361     if (name != NULL)
362         mi = rpmtsInitIterator(ts, RPMDBI_NAME, name, 0);
363     if (rpmtsColor(ts) && arch)
364         rpmdbSetIteratorRE(mi, RPMTAG_ARCH, RPMMIRE_DEFAULT, arch);
365
366     while ((oldH = rpmdbNextIterator(mi)) != NULL) {
367         /* Package is newer than those currently installed. */
368         if (rpmVersionCompare(oldH, eiu->h) < 0)
369             break;
370     }
371
372     mi = rpmdbFreeIterator(mi);
373     if (oldH == NULL) {
374         eiu->h = headerFree(eiu->h);
375     }
376    return (oldH != NULL);
377 }
378
379 /** @todo Generalize --freshen policies. */
380 int rpmInstall(rpmts ts, struct rpmInstallArguments_s * ia, ARGV_t fileArgv)
381 {
382     struct rpmEIU * eiu = xcalloc(1, sizeof(*eiu));
383     rpmRelocation * relocations;
384     char * fileURL = NULL;
385     rpmVSFlags vsflags, ovsflags;
386     int rc;
387     int i;
388
389     if (fileArgv == NULL) goto exit;
390
391     rpmcliPackagesTotal = 0;
392
393     (void) rpmtsSetFlags(ts, ia->transFlags);
394
395     relocations = ia->relocations;
396
397     vsflags = setvsFlags(ia);
398     ovsflags = rpmtsSetVSFlags(ts, (vsflags | RPMVSF_NEEDPAYLOAD));
399
400     setNotifyFlag(ia, ts); 
401
402     if ((eiu->relocations = relocations) != NULL) {
403         while (eiu->relocations->oldPath)
404             eiu->relocations++;
405         if (eiu->relocations->newPath == NULL)
406             eiu->relocations = NULL;
407     }
408
409     /* Build fully globbed list of arguments in argv[argc]. */
410     for (eiu->fnp = fileArgv; *eiu->fnp != NULL; eiu->fnp++) {
411         ARGV_t av = NULL;
412         int ac = 0;
413         char * fn;
414
415         fn = rpmEscapeSpaces(*eiu->fnp);
416         rc = rpmGlob(fn, &ac, &av);
417         fn = _free(fn);
418         if (rc || ac == 0) {
419             rpmlog(RPMLOG_ERR, _("File not found by glob: %s\n"), *eiu->fnp);
420             eiu->numFailed++;
421             continue;
422         }
423
424         argvAppend(&(eiu->argv), av);
425         argvFree(av);
426         eiu->argc += ac;
427     }
428
429 restart:
430     /* Allocate sufficient storage for next set of args. */
431     if (eiu->pkgx >= eiu->numPkgs) {
432         eiu->numPkgs = eiu->pkgx + eiu->argc;
433         eiu->pkgURL = xrealloc(eiu->pkgURL,
434                         (eiu->numPkgs + 1) * sizeof(*eiu->pkgURL));
435         memset(eiu->pkgURL + eiu->pkgx, 0,
436                         ((eiu->argc + 1) * sizeof(*eiu->pkgURL)));
437         eiu->pkgState = xrealloc(eiu->pkgState,
438                         (eiu->numPkgs + 1) * sizeof(*eiu->pkgState));
439         memset(eiu->pkgState + eiu->pkgx, 0,
440                         ((eiu->argc + 1) * sizeof(*eiu->pkgState)));
441     }
442
443     /* Retrieve next set of args, cache on local storage. */
444     for (i = 0; i < eiu->argc; i++) {
445         fileURL = _free(fileURL);
446         fileURL = eiu->argv[i];
447         eiu->argv[i] = NULL;
448
449         switch (urlIsURL(fileURL)) {
450         case URL_IS_HTTPS:
451         case URL_IS_HTTP:
452         case URL_IS_FTP:
453         {   char *tfn = NULL;
454             FD_t tfd;
455
456             if (rpmIsVerbose())
457                 fprintf(stdout, _("Retrieving %s\n"), fileURL);
458
459             tfd = rpmMkTempFile(rpmtsRootDir(ts), &tfn);
460             if (tfd && tfn) {
461                 Fclose(tfd);
462                 rc = urlGetFile(fileURL, tfn);
463             } else {
464                 rc = -1;
465             }
466
467             if (rc != 0) {
468                 rpmlog(RPMLOG_ERR,
469                         _("skipping %s - transfer failed\n"), fileURL);
470                 eiu->numFailed++;
471                 eiu->pkgURL[eiu->pkgx] = NULL;
472                 tfn = _free(tfn);
473                 break;
474             }
475             eiu->pkgState[eiu->pkgx] = 1;
476             eiu->pkgURL[eiu->pkgx] = tfn;
477             eiu->pkgx++;
478         }   break;
479         case URL_IS_PATH:
480         case URL_IS_DASH:       /* WRONG WRONG WRONG */
481         case URL_IS_HKP:        /* WRONG WRONG WRONG */
482         default:
483             eiu->pkgURL[eiu->pkgx] = fileURL;
484             fileURL = NULL;
485             eiu->pkgx++;
486             break;
487         }
488     }
489     fileURL = _free(fileURL);
490
491     if (eiu->numFailed) goto exit;
492
493     /* Continue processing file arguments, building transaction set. */
494     for (eiu->fnp = eiu->pkgURL+eiu->prevx;
495          *eiu->fnp != NULL;
496          eiu->fnp++, eiu->prevx++)
497     {
498         const char * fileName;
499
500         rpmlog(RPMLOG_DEBUG, "============== %s\n", *eiu->fnp);
501         (void) urlPath(*eiu->fnp, &fileName);
502
503         if (tryReadHeader(ts, eiu, vsflags) == RPMRC_FAIL)
504             continue;
505
506         if (eiu->rpmrc == RPMRC_NOTFOUND) {
507             rc = tryReadManifest(eiu);
508             if (rc == RPMRC_OK) {
509                 eiu->prevx++;
510                 goto restart;
511             }
512         }
513
514         eiu->isSource = headerIsSource(eiu->h);
515
516         if (eiu->isSource) {
517             rpmlog(RPMLOG_DEBUG, "\tadded source package [%d]\n",
518                 eiu->numSRPMS);
519             eiu->sourceURL = xrealloc(eiu->sourceURL,
520                                 (eiu->numSRPMS + 2) * sizeof(*eiu->sourceURL));
521             eiu->sourceURL[eiu->numSRPMS] = *eiu->fnp;
522             *eiu->fnp = NULL;
523             eiu->numSRPMS++;
524             eiu->sourceURL[eiu->numSRPMS] = NULL;
525             continue;
526         }
527
528         if (eiu->relocations) {
529             struct rpmtd_s prefixes;
530
531             headerGet(eiu->h, RPMTAG_PREFIXES, &prefixes, HEADERGET_DEFAULT);
532             if (rpmtdCount(&prefixes) == 1) {
533                 eiu->relocations->oldPath = xstrdup(rpmtdGetString(&prefixes));
534                 rpmtdFreeData(&prefixes);
535             } else {
536                 rpmlog(RPMLOG_ERR, _("package %s is not relocatable\n"),
537                        headerGetString(eiu->h, RPMTAG_NAME));
538                 eiu->numFailed++;
539                 goto exit;
540             }
541         }
542
543         if (ia->installInterfaceFlags & INSTALL_FRESHEN)
544             if (checkFreshenStatus(ts, eiu) != 1)
545                 continue;
546
547         rc = rpmtsAddInstallElement(ts, eiu->h, (fnpyKey)fileName,
548                         (ia->installInterfaceFlags & INSTALL_UPGRADE) != 0,
549                         relocations);
550
551         /* XXX reference held by transaction set */
552         eiu->h = headerFree(eiu->h);
553         if (eiu->relocations)
554             eiu->relocations->oldPath = _free(eiu->relocations->oldPath);
555
556         switch(rc) {
557         case 0:
558             rpmlog(RPMLOG_DEBUG, "\tadded binary package [%d]\n",
559                         eiu->numRPMS);
560             break;
561         case 1:
562             rpmlog(RPMLOG_ERR,
563                             _("error reading from file %s\n"), *eiu->fnp);
564             eiu->numFailed++;
565             goto exit;
566             break;
567         case 2:
568             rpmlog(RPMLOG_ERR,
569                             _("file %s requires a newer version of RPM\n"),
570                             *eiu->fnp);
571             eiu->numFailed++;
572             goto exit;
573             break;
574         default:
575             eiu->numFailed++;
576             goto exit;
577             break;
578         }
579
580         eiu->numRPMS++;
581     }
582
583     rpmlog(RPMLOG_DEBUG, "found %d source and %d binary packages\n",
584                 eiu->numSRPMS, eiu->numRPMS);
585
586     if (eiu->numFailed) goto exit;
587
588     if (eiu->numRPMS) {
589         int rc = rpmcliTransaction(ts, ia, eiu->numPkgs);
590         if (rc < 0)
591             eiu->numFailed += eiu->numRPMS;
592         else if (rc > 0)
593             eiu->numFailed += rc;
594     }
595
596     if (eiu->numSRPMS && (eiu->sourceURL != NULL)) {
597         for (i = 0; i < eiu->numSRPMS; i++) {
598             rpmdbCheckSignals();
599             if (eiu->sourceURL[i] != NULL) {
600                 rc = RPMRC_OK;
601                 if (!(rpmtsFlags(ts) & RPMTRANS_FLAG_TEST))
602                     rc = rpmInstallSource(ts, eiu->sourceURL[i], NULL, NULL);
603                 if (rc != 0)
604                     eiu->numFailed++;
605             }
606         }
607     }
608
609 exit:
610     if (eiu->pkgURL != NULL) {
611         for (i = 0; i < eiu->numPkgs; i++) {
612             if (eiu->pkgURL[i] == NULL) continue;
613             if (eiu->pkgState[i] == 1)
614                 (void) unlink(eiu->pkgURL[i]);
615             eiu->pkgURL[i] = _free(eiu->pkgURL[i]);
616         }
617     }
618     eiu->pkgState = _free(eiu->pkgState);
619     eiu->pkgURL = _free(eiu->pkgURL);
620     eiu->argv = _free(eiu->argv);
621     rc = eiu->numFailed;
622     free(eiu);
623
624     rpmtsEmpty(ts);
625
626     return rc;
627 }
628
629 int rpmErase(rpmts ts, struct rpmInstallArguments_s * ia, ARGV_const_t argv)
630 {
631     char * const * arg;
632     char *qfmt = NULL;
633     int numFailed = 0;
634     int numPackages = 0;
635     rpmVSFlags vsflags, ovsflags;
636
637     if (argv == NULL) return 0;
638
639     vsflags = setvsFlags(ia);
640     ovsflags = rpmtsSetVSFlags(ts, vsflags);
641
642     (void) rpmtsSetFlags(ts, ia->transFlags);
643
644 #ifdef  NOTYET  /* XXX no callbacks on erase yet */
645     setNotifyFlag(ia, ts);
646 #endif
647
648     qfmt = rpmExpand("%{?_query_all_fmt}\n", NULL);
649     for (arg = argv; *arg; arg++) {
650         rpmdbMatchIterator mi;
651         int matches = 0;
652         int erasing = 1;
653
654         /* Iterator count isn't reliable with labels, count manually... */
655         mi = rpmtsInitIterator(ts, RPMDBI_LABEL, *arg, 0);
656         while (rpmdbNextIterator(mi) != NULL) {
657             matches++;
658         }
659         rpmdbFreeIterator(mi);
660
661         if (! matches) {
662             rpmlog(RPMLOG_ERR, _("package %s is not installed\n"), *arg);
663             numFailed++;
664         } else {
665             Header h;   /* XXX iterator owns the reference */
666
667             if (matches > 1 && 
668                 !(ia->installInterfaceFlags & UNINSTALL_ALLMATCHES)) {
669                 rpmlog(RPMLOG_ERR, _("\"%s\" specifies multiple packages:\n"),
670                         *arg);
671                 numFailed++;
672                 erasing = 0;
673             }
674
675             mi = rpmtsInitIterator(ts, RPMDBI_LABEL, *arg, 0);
676             while ((h = rpmdbNextIterator(mi)) != NULL) {
677                 if (erasing) {
678                     (void) rpmtsAddEraseElement(ts, h, -1);
679                     numPackages++;
680                 } else {
681                     char *nevra = headerFormat(h, qfmt, NULL);
682                     rpmlog(RPMLOG_NOTICE, "  %s", nevra);
683                     free(nevra);
684                 }
685             }
686             mi = rpmdbFreeIterator(mi);
687         }
688     }
689     free(qfmt);
690
691     if (numFailed) goto exit;
692     numFailed = rpmcliTransaction(ts, ia, numPackages);
693 exit:
694     rpmtsEmpty(ts);
695
696     return numFailed;
697 }
698
699 int rpmInstallSource(rpmts ts, const char * arg,
700                 char ** specFilePtr, char ** cookie)
701 {
702     FD_t fd;
703     int rc;
704
705
706     fd = Fopen(arg, "r.ufdio");
707     if (fd == NULL || Ferror(fd)) {
708         rpmlog(RPMLOG_ERR, _("cannot open %s: %s\n"), arg, Fstrerror(fd));
709         if (fd != NULL) (void) Fclose(fd);
710         return 1;
711     }
712
713     if (rpmIsVerbose() && specFilePtr != NULL)
714         fprintf(stdout, _("Installing %s\n"), arg);
715
716     {
717         rpmVSFlags ovsflags =
718                 rpmtsSetVSFlags(ts, (specFilePtr) ? (rpmtsVSFlags(ts) | RPMVSF_NEEDPAYLOAD) : rpmtsVSFlags(ts));
719         rpmRC rpmrc = rpmInstallSourcePackage(ts, fd, specFilePtr, cookie);
720         rc = (rpmrc == RPMRC_OK ? 0 : 1);
721         ovsflags = rpmtsSetVSFlags(ts, ovsflags);
722     }
723     if (rc != 0) {
724         rpmlog(RPMLOG_ERR, _("%s cannot be installed\n"), arg);
725         if (specFilePtr && *specFilePtr)
726             *specFilePtr = _free(*specFilePtr);
727         if (cookie && *cookie)
728             *cookie = _free(*cookie);
729     }
730
731     (void) Fclose(fd);
732
733     return rc;
734 }
735