Don't throw away modified config files on cross-hash upgrades (rhbz#479869)
[platform/upstream/rpm.git] / lib / rpmfi.c
1 /** \ingroup rpmdep
2  * \file lib/rpmfi.c
3  * Routines to handle file info tag sets.
4  */
5
6 #include "system.h"
7
8 #include <rpm/rpmlog.h>
9 #include <rpm/rpmts.h>
10 #include <rpm/rpmfileutil.h>    /* XXX rpmDoDigest */
11 #include <rpm/rpmstring.h>
12 #include <rpm/rpmmacro.h>       /* XXX rpmCleanPath */
13 #include <rpm/rpmds.h>
14
15 #include "lib/rpmfi_internal.h"
16 #include "lib/rpmte_internal.h" /* relocations */
17 #include "lib/cpio.h"   /* XXX CPIO_FOO */
18 #include "lib/fsm.h"    /* XXX newFSM() */
19
20 #include "debug.h"
21
22 /*
23  * Simple and stupid string "cache."
24  * Store each unique string just once, retrieve by index value. 
25  * For data where number of unique names is typically very low,
26  * the dumb linear lookup appears to be fast enough and hash table seems
27  * like an overkill.
28  */
29 struct strcache_s {
30     char **uniq;
31     scidx_t num;
32 };
33
34 static struct strcache_s _ugcache = { NULL, 0 };
35 static strcache ugcache = &_ugcache;
36 static struct strcache_s _langcache = { NULL, 0 };
37 static strcache langcache = &_langcache;
38
39 static scidx_t strcachePut(strcache cache, const char *str)
40 {
41     int found = 0;
42     scidx_t ret;
43
44     for (scidx_t i = 0; i < cache->num; i++) {
45         if (strcmp(str, cache->uniq[i]) == 0) {
46             ret = i;
47             found = 1;
48             break;
49         }
50     }
51     if (!found) {
52         /* blow up on index wraparound */
53         assert((scidx_t)(cache->num + 1) > cache->num);
54         cache->uniq = xrealloc(cache->uniq, 
55                                 sizeof(cache->uniq) * (cache->num+1));
56         cache->uniq[cache->num] = xstrdup(str);
57         ret = cache->num;
58         cache->num++;
59     }
60     return ret;
61 }
62
63 static const char *strcacheGet(strcache cache, scidx_t idx)
64 {
65     const char *name = NULL;
66     if (idx >= 0 && idx < cache->num && cache->uniq != NULL)
67         name = cache->uniq[idx];
68     return name;
69 }
70     
71 static strcache strcacheNew(void)
72 {
73     strcache cache = xcalloc(1, sizeof(*cache));
74     return cache;
75 }
76
77 static strcache strcacheFree(strcache cache)
78 {
79     if (cache != NULL) {
80         for (scidx_t i = 0; i < cache->num; i++) {
81             free(cache->uniq[i]);
82         }
83         cache->uniq = _free(cache->uniq);
84         free(cache);
85     }
86     return NULL;
87
88
89
90 int _rpmfi_debug = 0;
91
92 rpmfi rpmfiUnlink(rpmfi fi, const char * msg)
93 {
94     if (fi == NULL) return NULL;
95 if (_rpmfi_debug && msg != NULL)
96 fprintf(stderr, "--> fi %p -- %d %s\n", fi, fi->nrefs, msg);
97     fi->nrefs--;
98     return NULL;
99 }
100
101 rpmfi rpmfiLink(rpmfi fi, const char * msg)
102 {
103     if (fi == NULL) return NULL;
104     fi->nrefs++;
105 if (_rpmfi_debug && msg != NULL)
106 fprintf(stderr, "--> fi %p ++ %d %s\n", fi, fi->nrefs, msg);
107     return fi;
108 }
109
110 rpm_count_t rpmfiFC(rpmfi fi)
111 {
112     return (fi != NULL ? fi->fc : 0);
113 }
114
115 rpm_count_t rpmfiDC(rpmfi fi)
116 {
117     return (fi != NULL ? fi->dc : 0);
118 }
119
120 #ifdef  NOTYET
121 int rpmfiDI(rpmfi fi)
122 {
123 }
124 #endif
125
126 int rpmfiFX(rpmfi fi)
127 {
128     return (fi != NULL ? fi->i : -1);
129 }
130
131 int rpmfiSetFX(rpmfi fi, int fx)
132 {
133     int i = -1;
134
135     if (fi != NULL && fx >= 0 && fx < fi->fc) {
136         i = fi->i;
137         fi->i = fx;
138         fi->j = fi->dil[fi->i];
139     }
140     return i;
141 }
142
143 int rpmfiDX(rpmfi fi)
144 {
145     return (fi != NULL ? fi->j : -1);
146 }
147
148 int rpmfiSetDX(rpmfi fi, int dx)
149 {
150     int j = -1;
151
152     if (fi != NULL && dx >= 0 && dx < fi->dc) {
153         j = fi->j;
154         fi->j = dx;
155     }
156     return j;
157 }
158
159 int rpmfiDIIndex(rpmfi fi, int dx)
160 {
161     int j = -1;
162     if (fi != NULL && dx >= 0 && dx < fi->fc) {
163         if (fi->dil != NULL)
164             j = fi->dil[dx];
165     }
166     return j;
167 }
168
169 const char * rpmfiBNIndex(rpmfi fi, int ix)
170 {
171     const char * BN = NULL;
172
173     if (fi != NULL && ix >= 0 && ix < fi->fc) {
174         if (fi->bnl != NULL)
175             BN = fi->bnl[ix];
176     }
177     return BN;
178 }
179
180 const char * rpmfiDNIndex(rpmfi fi, int jx)
181 {
182     const char * DN = NULL;
183
184     if (fi != NULL && jx >= 0 && jx < fi->dc) {
185         if (fi->dnl != NULL)
186             DN = fi->dnl[jx];
187     }
188     return DN;
189 }
190
191 const char * rpmfiFNIndex(rpmfi fi, int ix)
192 {
193     const char * FN = "";
194
195     if (fi != NULL && ix >= 0 && ix < fi->fc) {
196         char * t;
197         if (fi->fn == NULL) {
198             size_t dnlmax = 0, bnlmax = 0, len;
199             for (int i = 0; i < fi->dc; i++) {
200                 if ((len = strlen(fi->dnl[i])) > dnlmax)
201                     dnlmax = len;
202             }
203             for (int i = 0; i < fi->fc; i++) {
204                 if ((len = strlen(fi->bnl[i])) > bnlmax)
205                     bnlmax = len;
206             }
207             fi->fn = xmalloc(dnlmax + bnlmax + 1);
208         }
209         FN = t = fi->fn;
210         *t = '\0';
211         t = stpcpy(t, fi->dnl[fi->dil[ix]]);
212         t = stpcpy(t, fi->bnl[ix]);
213     }
214     return FN;
215 }
216
217 rpmfileAttrs rpmfiFFlagsIndex(rpmfi fi, int ix)
218 {
219     rpmfileAttrs FFlags = 0;
220
221     if (fi != NULL && ix >= 0 && ix < fi->fc) {
222         if (fi->fflags != NULL)
223             FFlags = fi->fflags[ix];
224     }
225     return FFlags;
226 }
227
228 rpmVerifyAttrs rpmfiVFlagsIndex(rpmfi fi, int ix)
229 {
230     rpmVerifyAttrs VFlags = 0;
231
232     if (fi != NULL && ix >= 0 && ix < fi->fc) {
233         if (fi->vflags != NULL)
234             VFlags = fi->vflags[ix];
235     }
236     return VFlags;
237 }
238
239 rpm_mode_t rpmfiFModeIndex(rpmfi fi, int ix)
240 {
241     rpm_mode_t fmode = 0;
242
243     if (fi != NULL && ix >= 0 && ix < fi->fc) {
244         if (fi->fmodes != NULL)
245             fmode = fi->fmodes[ix];
246     }
247     return fmode;
248 }
249
250 rpmfileState rpmfiFStateIndex(rpmfi fi, int ix)
251 {
252     rpmfileState fstate = RPMFILE_STATE_MISSING;
253
254     if (fi != NULL && ix >= 0 && ix < fi->fc) {
255         if (fi->fstates != NULL)
256             fstate = fi->fstates[ix];
257     }
258     return fstate;
259 }
260
261 const unsigned char * rpmfiMD5(rpmfi fi)
262 {
263     const unsigned char *digest;
264     pgpHashAlgo algo = 0;
265
266     digest = rpmfiFDigest(fi, &algo, NULL);
267     return (algo == PGPHASHALGO_MD5) ? digest : NULL;
268 }
269
270 pgpHashAlgo rpmfiDigestAlgo(rpmfi fi)
271 {
272     return fi ? fi->digestalgo : 0;
273 }
274
275 const unsigned char * rpmfiFDigestIndex(rpmfi fi, int ix, pgpHashAlgo *algo, size_t *len)
276 {
277     const unsigned char *digest = NULL;
278
279     if (fi != NULL && ix >= 0 && ix < fi->fc) {
280         size_t diglen = rpmDigestLength(fi->digestalgo);
281         if (fi->digests != NULL)
282             digest = fi->digests + (diglen * ix);
283         if (len) 
284             *len = diglen;
285         if (algo) 
286             *algo = fi->digestalgo;
287     }
288     return digest;
289 }
290
291 char * rpmfiFDigestHex(rpmfi fi, pgpHashAlgo *algo)
292 {
293     size_t diglen = 0;
294     char *fdigest = NULL;
295     const unsigned char *digest = rpmfiFDigest(fi, algo, &diglen);
296     if (digest) {
297         fdigest = pgpHexStr(digest, diglen);
298     }
299     return fdigest;
300 }
301
302 const char * rpmfiFLinkIndex(rpmfi fi, int ix)
303 {
304     const char * flink = NULL;
305
306     if (fi != NULL && ix >= 0 && ix < fi->fc) {
307         if (fi->flinks != NULL)
308             flink = strcacheGet(fi->flinkcache, fi->flinks[ix]);
309     }
310     return flink;
311 }
312
313 rpm_loff_t rpmfiFSizeIndex(rpmfi fi, int ix)
314 {
315     rpm_loff_t fsize = 0;
316
317     if (fi != NULL && ix >= 0 && ix < fi->fc) {
318         if (fi->fsizes != NULL)
319             fsize = fi->fsizes[ix];
320     }
321     return fsize;
322 }
323
324 rpm_rdev_t rpmfiFRdevIndex(rpmfi fi, int ix)
325 {
326     rpm_rdev_t frdev = 0;
327
328     if (fi != NULL && ix >= 0 && ix < fi->fc) {
329         if (fi->frdevs != NULL)
330             frdev = fi->frdevs[ix];
331     }
332     return frdev;
333 }
334
335 rpm_ino_t rpmfiFInodeIndex(rpmfi fi, int ix)
336 {
337     rpm_ino_t finode = 0;
338
339     if (fi != NULL && ix >= 0 && ix < fi->fc) {
340         if (fi->finodes != NULL)
341             finode = fi->finodes[ix];
342     }
343     return finode;
344 }
345
346 rpm_color_t rpmfiColor(rpmfi fi)
347 {
348     rpm_color_t color = 0;
349
350     if (fi != NULL && fi->fcolors != NULL) {
351         for (int i = 0; i < fi->fc; i++)
352             color |= fi->fcolors[i];
353         /* XXX ignore all but lsnibble for now. */
354         color &= 0xf;
355     }
356     return color;
357 }
358
359 rpm_color_t rpmfiFColorIndex(rpmfi fi, int ix)
360 {
361     rpm_color_t fcolor = 0;
362
363     if (fi != NULL && ix >= 0 && ix < fi->fc) {
364         if (fi->fcolors != NULL)
365             /* XXX ignore all but lsnibble for now. */
366             fcolor = (fi->fcolors[ix] & 0x0f);
367     }
368     return fcolor;
369 }
370
371 const char * rpmfiFClassIndex(rpmfi fi, int ix)
372 {
373     const char * fclass = NULL;
374     int cdictx;
375
376     if (fi != NULL && fi->fcdictx != NULL && ix >= 0 && ix < fi->fc) {
377         cdictx = fi->fcdictx[ix];
378         if (fi->cdict != NULL && cdictx >= 0 && cdictx < fi->ncdict)
379             fclass = fi->cdict[cdictx];
380     }
381     return fclass;
382 }
383
384 uint32_t rpmfiFDependsIndex(rpmfi fi, int ix, const uint32_t ** fddictp)
385 {
386     int fddictx = -1;
387     int fddictn = 0;
388     const uint32_t * fddict = NULL;
389
390     if (fi != NULL && ix >= 0 && ix < fi->fc) {
391         if (fi->fddictn != NULL)
392             fddictn = fi->fddictn[ix];
393         if (fddictn > 0 && fi->fddictx != NULL)
394             fddictx = fi->fddictx[ix];
395         if (fi->ddict != NULL && fddictx >= 0 && (fddictx+fddictn) <= fi->nddict)
396             fddict = fi->ddict + fddictx;
397     }
398     if (fddictp)
399         *fddictp = fddict;
400     return fddictn;
401 }
402
403 uint32_t rpmfiFNlinkIndex(rpmfi fi, int ix)
404 {
405     uint32_t nlink = 0;
406
407     if (fi != NULL && ix >= 0 && ix < fi->fc) {
408         /* XXX rpm-2.3.12 has not RPMTAG_FILEINODES */
409         if (fi->finodes && fi->frdevs) {
410             rpm_ino_t finode = fi->finodes[ix];
411             rpm_rdev_t frdev = fi->frdevs[ix];
412             int j;
413
414             for (j = 0; j < fi->fc; j++) {
415                 if (fi->frdevs[j] == frdev && fi->finodes[j] == finode)
416                     nlink++;
417             }
418         }
419     }
420     return nlink;
421 }
422
423 rpm_time_t rpmfiFMtimeIndex(rpmfi fi, int ix)
424 {
425     rpm_time_t fmtime = 0;
426
427     if (fi != NULL && ix >= 0 && ix < fi->fc) {
428         if (fi->fmtimes != NULL)
429             fmtime = fi->fmtimes[ix];
430     }
431     return fmtime;
432 }
433
434 const char * rpmfiFUserIndex(rpmfi fi, int ix)
435 {
436     const char * fuser = NULL;
437
438     if (fi != NULL && ix >= 0 && ix < fi->fc) {
439         if (fi->fuser != NULL)
440             fuser = strcacheGet(ugcache, fi->fuser[ix]);
441     }
442     return fuser;
443 }
444
445 const char * rpmfiFGroupIndex(rpmfi fi, int ix)
446 {
447     const char * fgroup = NULL;
448
449     if (fi != NULL && ix >= 0 && ix < fi->fc) {
450         if (fi->fgroup != NULL)
451             fgroup = strcacheGet(ugcache, fi->fgroup[ix]);
452     }
453     return fgroup;
454 }
455
456 const char * rpmfiFCapsIndex(rpmfi fi, int ix)
457 {
458     const char *fcaps = NULL;
459     if (fi != NULL && ix >= 0 && ix < fi->fc) {
460         fcaps = fi->fcaps ? fi->fcaps[ix] : "";
461     }
462     return fcaps;
463 }
464
465 const char * rpmfiFLangsIndex(rpmfi fi, int ix)
466 {
467     const char *flangs = NULL;
468     if (fi != NULL && fi->flangs != NULL && ix >= 0 && ix < fi->fc) {
469         flangs = strcacheGet(langcache, fi->flangs[ix]);
470     }
471     return flangs;
472 }
473
474 struct fingerPrint_s *rpmfiFpsIndex(rpmfi fi, int ix)
475 {
476     struct fingerPrint_s * fps = NULL;
477     if (fi != NULL && fi->fps != NULL && ix >= 0 && ix < fi->fc) {
478         fps = fi->fps + ix;
479     }
480     return fps;
481 }
482
483 int rpmfiNext(rpmfi fi)
484 {
485     int i = -1;
486
487     if (fi != NULL && ++fi->i >= 0) {
488         if (fi->i < fi->fc) {
489             i = fi->i;
490             if (fi->dil != NULL)
491                 fi->j = fi->dil[fi->i];
492         } else
493             fi->i = -1;
494
495 if (_rpmfi_debug  < 0 && i != -1)
496 fprintf(stderr, "*** fi %p\t%s[%d] %s%s\n", fi, (fi->Type ? fi->Type : "?Type?"), i, (i >= 0 ? fi->dnl[fi->j] : ""), (i >= 0 ? fi->bnl[fi->i] : ""));
497
498     }
499
500     return i;
501 }
502
503 rpmfi rpmfiInit(rpmfi fi, int fx)
504 {
505     if (fi != NULL) {
506         if (fx >= 0 && fx < fi->fc) {
507             fi->i = fx - 1;
508             fi->j = -1;
509         }
510     }
511
512     return fi;
513 }
514
515 int rpmfiNextD(rpmfi fi)
516 {
517     int j = -1;
518
519     if (fi != NULL && ++fi->j >= 0) {
520         if (fi->j < fi->dc)
521             j = fi->j;
522         else
523             fi->j = -1;
524
525 if (_rpmfi_debug  < 0 && j != -1)
526 fprintf(stderr, "*** fi %p\t%s[%d]\n", fi, (fi->Type ? fi->Type : "?Type?"), j);
527
528     }
529
530     return j;
531 }
532
533 rpmfi rpmfiInitD(rpmfi fi, int dx)
534 {
535     if (fi != NULL) {
536         if (dx >= 0 && dx < fi->fc)
537             fi->j = dx - 1;
538         else
539             fi = NULL;
540     }
541
542     return fi;
543 }
544
545 /**
546  * Identify a file type.
547  * @param ft            file type
548  * @return              string to identify a file type
549  */
550 static
551 const char * ftstring (rpmFileTypes ft)
552 {
553     switch (ft) {
554     case XDIR:  return "directory";
555     case CDEV:  return "char dev";
556     case BDEV:  return "block dev";
557     case LINK:  return "link";
558     case SOCK:  return "sock";
559     case PIPE:  return "fifo/pipe";
560     case REG:   return "file";
561     default:    return "unknown file type";
562     }
563 }
564
565 rpmFileTypes rpmfiWhatis(rpm_mode_t mode)
566 {
567     if (S_ISDIR(mode))  return XDIR;
568     if (S_ISCHR(mode))  return CDEV;
569     if (S_ISBLK(mode))  return BDEV;
570     if (S_ISLNK(mode))  return LINK;
571     if (S_ISSOCK(mode)) return SOCK;
572     if (S_ISFIFO(mode)) return PIPE;
573     return REG;
574 }
575
576 int rpmfiCompare(const rpmfi afi, const rpmfi bfi)
577 {
578     rpmFileTypes awhat = rpmfiWhatis(rpmfiFMode(afi));
579     rpmFileTypes bwhat = rpmfiWhatis(rpmfiFMode(bfi));
580
581     if ((rpmfiFFlags(afi) & RPMFILE_GHOST) ||
582         (rpmfiFFlags(bfi) & RPMFILE_GHOST)) return 0;
583
584     if (awhat != bwhat) return 1;
585
586     if (awhat == LINK) {
587         const char * alink = rpmfiFLink(afi);
588         const char * blink = rpmfiFLink(bfi);
589         if (alink == blink) return 0;
590         if (alink == NULL) return 1;
591         if (blink == NULL) return -1;
592         return strcmp(alink, blink);
593     } else if (awhat == REG) {
594         size_t adiglen, bdiglen;
595         pgpHashAlgo aalgo, balgo;
596         const unsigned char * adigest = rpmfiFDigest(afi, &aalgo, &adiglen);
597         const unsigned char * bdigest = rpmfiFDigest(bfi, &balgo, &bdiglen);
598         if (adigest == bdigest) return 0;
599         if (adigest == NULL) return 1;
600         if (bdigest == NULL) return -1;
601         /* can't meaningfully compare different hash types */
602         if (aalgo != balgo || adiglen != bdiglen) return -1;
603         return memcmp(adigest, bdigest, adiglen);
604     }
605
606     return 0;
607 }
608
609 rpmFileAction rpmfiDecideFate(const rpmfi ofi, rpmfi nfi, int skipMissing)
610 {
611     const char * fn = rpmfiFN(nfi);
612     rpmfileAttrs newFlags = rpmfiFFlags(nfi);
613     char buffer[1024];
614     rpmFileTypes dbWhat, newWhat, diskWhat;
615     struct stat sb;
616     int save = (newFlags & RPMFILE_NOREPLACE) ? FA_ALTNAME : FA_SAVE;
617
618     if (lstat(fn, &sb)) {
619         /*
620          * The file doesn't exist on the disk. Create it unless the new
621          * package has marked it as missingok, or allfiles is requested.
622          */
623         if (skipMissing && (newFlags & RPMFILE_MISSINGOK)) {
624             rpmlog(RPMLOG_DEBUG, "%s skipped due to missingok flag\n",
625                         fn);
626             return FA_SKIP;
627         } else {
628             return FA_CREATE;
629         }
630     }
631
632     diskWhat = rpmfiWhatis((rpm_mode_t)sb.st_mode);
633     dbWhat = rpmfiWhatis(rpmfiFMode(ofi));
634     newWhat = rpmfiWhatis(rpmfiFMode(nfi));
635
636     /*
637      * RPM >= 2.3.10 shouldn't create config directories -- we'll ignore
638      * them in older packages as well.
639      */
640     if (newWhat == XDIR)
641         return FA_CREATE;
642
643     if (diskWhat != newWhat && dbWhat != REG && dbWhat != LINK)
644         return save;
645     else if (newWhat != dbWhat && diskWhat != dbWhat)
646         return save;
647     else if (dbWhat != newWhat)
648         return FA_CREATE;
649     else if (dbWhat != LINK && dbWhat != REG)
650         return FA_CREATE;
651
652     /*
653      * This order matters - we'd prefer to CREATE the file if at all
654      * possible in case something else (like the timestamp) has changed.
655      */
656     memset(buffer, 0, sizeof(buffer));
657     if (dbWhat == REG) {
658         pgpHashAlgo oalgo, nalgo;
659         size_t odiglen, ndiglen;
660         const unsigned char * odigest, * ndigest;
661         odigest = rpmfiFDigest(ofi, &oalgo, &odiglen);
662         if (diskWhat == REG) {
663             if (rpmDoDigest(oalgo, fn, 0, 
664                 (unsigned char *)buffer, NULL))
665                 return FA_CREATE;       /* assume file has been removed */
666             if (odigest && !memcmp(odigest, buffer, odiglen))
667                 return FA_CREATE;       /* unmodified config file, replace. */
668         }
669         ndigest = rpmfiFDigest(nfi, &nalgo, &ndiglen);
670         /* Can't compare different hash types, backup to avoid data loss */
671         if (oalgo != nalgo || odiglen != ndiglen)
672             return save;
673         if (odigest && ndigest && !memcmp(odigest, ndigest, odiglen))
674             return FA_SKIP;     /* identical file, don't bother. */
675     } else /* dbWhat == LINK */ {
676         const char * oFLink, * nFLink;
677         oFLink = rpmfiFLink(ofi);
678         if (diskWhat == LINK) {
679             if (readlink(fn, buffer, sizeof(buffer) - 1) == -1)
680                 return FA_CREATE;       /* assume file has been removed */
681             if (oFLink && !strcmp(oFLink, buffer))
682                 return FA_CREATE;       /* unmodified config file, replace. */
683         }
684         nFLink = rpmfiFLink(nfi);
685         if (oFLink && nFLink && !strcmp(oFLink, nFLink))
686             return FA_SKIP;     /* identical file, don't bother. */
687     }
688
689     /*
690      * The config file on the disk has been modified, but
691      * the ones in the two packages are different. It would
692      * be nice if RPM was smart enough to at least try and
693      * merge the difference ala CVS, but...
694      */
695     return save;
696 }
697
698 int rpmfiConfigConflict(const rpmfi fi)
699 {
700     const char * fn = rpmfiFN(fi);
701     rpmfileAttrs flags = rpmfiFFlags(fi);
702     char buffer[1024];
703     rpmFileTypes newWhat, diskWhat;
704     struct stat sb;
705
706     if (!(flags & RPMFILE_CONFIG) || lstat(fn, &sb)) {
707         return 0;
708     }
709
710     diskWhat = rpmfiWhatis((rpm_mode_t)sb.st_mode);
711     newWhat = rpmfiWhatis(rpmfiFMode(fi));
712
713     if (newWhat != LINK && newWhat != REG)
714         return 1;
715
716     if (diskWhat != newWhat)
717         return 1;
718     
719     memset(buffer, 0, sizeof(buffer));
720     if (newWhat == REG) {
721         pgpHashAlgo algo;
722         size_t diglen;
723         const unsigned char *ndigest = rpmfiFDigest(fi, &algo, &diglen);
724         if (rpmDoDigest(algo, fn, 0, (unsigned char *)buffer, NULL))
725             return 0;   /* assume file has been removed */
726         if (ndigest && !memcmp(ndigest, buffer, diglen))
727             return 0;   /* unmodified config file */
728     } else /* newWhat == LINK */ {
729         const char * nFLink;
730         if (readlink(fn, buffer, sizeof(buffer) - 1) == -1)
731             return 0;   /* assume file has been removed */
732         nFLink = rpmfiFLink(fi);
733         if (nFLink && !strcmp(nFLink, buffer))
734             return 0;   /* unmodified config file */
735     }
736
737     return 1;
738 }
739
740 static char **duparray(char ** src, int size)
741 {
742     char **dest = xmalloc((size+1) * sizeof(*dest));
743     for (int i = 0; i < size; i++) {
744         dest[i] = xstrdup(src[i]);
745     }
746     free(src);
747     return dest;
748 }
749
750 static int addPrefixes(Header h, rpmRelocation *relocations, int numRelocations)
751 {
752     struct rpmtd_s validRelocs;
753     const char *validprefix;
754     const char ** actualRelocations;
755     int numActual = 0;
756
757     headerGet(h, RPMTAG_PREFIXES, &validRelocs, HEADERGET_MINMEM);
758     /*
759      * If no relocations are specified (usually the case), then return the
760      * original header. If there are prefixes, however, then INSTPREFIXES
761      * should be added for RPM_INSTALL_PREFIX environ variables in scriptlets, 
762      * but, since relocateFileList() can be called more than once for 
763      * the same header, don't bother if already present.
764      */
765     if (relocations == NULL || numRelocations == 0) {
766         if (rpmtdCount(&validRelocs) > 0) {
767             if (!headerIsEntry(h, RPMTAG_INSTPREFIXES)) {
768                 rpmtdSetTag(&validRelocs, RPMTAG_INSTPREFIXES);
769                 headerPut(h, &validRelocs, HEADERPUT_DEFAULT);
770             }
771             rpmtdFreeData(&validRelocs);
772         }
773         return 0;
774     }
775
776     actualRelocations = xmalloc(rpmtdCount(&validRelocs) * sizeof(*actualRelocations));
777     rpmtdInit(&validRelocs);
778     while ((validprefix = rpmtdNextString(&validRelocs))) {
779         int j;
780         for (j = 0; j < numRelocations; j++) {
781             if (relocations[j].oldPath == NULL || /* XXX can't happen */
782                 strcmp(validprefix, relocations[j].oldPath))
783                 continue;
784             /* On install, a relocate to NULL means skip the path. */
785             if (relocations[j].newPath) {
786                 actualRelocations[numActual] = relocations[j].newPath;
787                 numActual++;
788             }
789             break;
790         }
791         if (j == numRelocations) {
792             actualRelocations[numActual] = validprefix;
793             numActual++;
794         }
795     }
796     rpmtdFreeData(&validRelocs);
797
798     if (numActual) {
799         headerPutStringArray(h, RPMTAG_INSTPREFIXES, actualRelocations, numActual);
800     }
801     actualRelocations = _free(actualRelocations);
802     return numActual;
803 }
804
805 static void saveRelocs(Header h, rpmtd bnames, rpmtd dnames, rpmtd dindexes)
806 {
807         struct rpmtd_s td;
808         headerGet(h, RPMTAG_BASENAMES, &td, HEADERGET_MINMEM);
809         rpmtdSetTag(&td, RPMTAG_ORIGBASENAMES);
810         headerPut(h, &td, HEADERPUT_DEFAULT);
811         rpmtdFreeData(&td);
812
813         headerGet(h, RPMTAG_DIRNAMES, &td, HEADERGET_MINMEM);
814         rpmtdSetTag(&td, RPMTAG_ORIGDIRNAMES);
815         headerPut(h, &td, HEADERPUT_DEFAULT);
816         rpmtdFreeData(&td);
817
818         headerGet(h, RPMTAG_DIRINDEXES, &td, HEADERGET_MINMEM);
819         rpmtdSetTag(&td, RPMTAG_ORIGDIRINDEXES);
820         headerPut(h, &td, HEADERPUT_DEFAULT);
821         rpmtdFreeData(&td);
822
823         headerMod(h, bnames);
824         headerMod(h, dnames);
825         headerMod(h, dindexes);
826 }
827
828 void rpmRelocateFileList(rpmRelocation *relocations, int numRelocations, 
829                          rpmfs fs, Header h)
830 {
831     static int _printed = 0;
832     char ** baseNames;
833     char ** dirNames;
834     uint32_t * dirIndexes;
835     rpm_count_t fileCount, dirCount;
836     int nrelocated = 0;
837     int fileAlloced = 0;
838     char * fn = NULL;
839     int haveRelocatedBase = 0;
840     size_t maxlen = 0;
841     int i, j;
842     struct rpmtd_s bnames, dnames, dindexes, fmodes;
843
844     if (addPrefixes(h, relocations, numRelocations) == 0)
845         return;
846
847     if (!_printed) {
848         _printed = 1;
849         rpmlog(RPMLOG_DEBUG, "========== relocations\n");
850         for (i = 0; i < numRelocations; i++) {
851             if (relocations[i].oldPath == NULL) continue; /* XXX can't happen */
852             if (relocations[i].newPath == NULL)
853                 rpmlog(RPMLOG_DEBUG, "%5d exclude  %s\n",
854                         i, relocations[i].oldPath);
855             else
856                 rpmlog(RPMLOG_DEBUG, "%5d relocate %s -> %s\n",
857                         i, relocations[i].oldPath, relocations[i].newPath);
858         }
859     }
860
861     for (i = 0; i < numRelocations; i++) {
862         if (relocations[i].newPath == NULL) continue;
863         size_t len = strlen(relocations[i].newPath);
864         if (len > maxlen) maxlen = len;
865     }
866
867     headerGet(h, RPMTAG_BASENAMES, &bnames, HEADERGET_MINMEM);
868     headerGet(h, RPMTAG_DIRINDEXES, &dindexes, HEADERGET_ALLOC);
869     headerGet(h, RPMTAG_DIRNAMES, &dnames, HEADERGET_MINMEM);
870     headerGet(h, RPMTAG_FILEMODES, &fmodes, HEADERGET_MINMEM);
871     /* TODO XXX ugh.. use rpmtd iterators & friends instead */
872     baseNames = bnames.data;
873     dirIndexes = dindexes.data;
874     fileCount = rpmtdCount(&bnames);
875     dirCount = rpmtdCount(&dnames);
876     /* XXX TODO: use rpmtdDup() instead */
877     dirNames = dnames.data = duparray(dnames.data, dirCount);
878     dnames.flags |= RPMTD_PTR_ALLOCED;
879
880     /*
881      * For all relocations, we go through sorted file/relocation lists 
882      * backwards so that /usr/local relocations take precedence over /usr 
883      * ones.
884      */
885
886     /* Relocate individual paths. */
887
888     for (i = fileCount - 1; i >= 0; i--) {
889         rpmFileTypes ft;
890         int fnlen;
891
892         size_t len = maxlen +
893                 strlen(dirNames[dirIndexes[i]]) + strlen(baseNames[i]) + 1;
894         if (len >= fileAlloced) {
895             fileAlloced = len * 2;
896             fn = xrealloc(fn, fileAlloced);
897         }
898
899 assert(fn != NULL);             /* XXX can't happen */
900         *fn = '\0';
901         fnlen = stpcpy( stpcpy(fn, dirNames[dirIndexes[i]]), baseNames[i]) - fn;
902
903         /*
904          * See if this file path needs relocating.
905          */
906         /*
907          * XXX FIXME: Would a bsearch of the (already sorted) 
908          * relocation list be a good idea?
909          */
910         for (j = numRelocations - 1; j >= 0; j--) {
911             if (relocations[j].oldPath == NULL) /* XXX can't happen */
912                 continue;
913             len = strcmp(relocations[j].oldPath, "/")
914                 ? strlen(relocations[j].oldPath)
915                 : 0;
916
917             if (fnlen < len)
918                 continue;
919             /*
920              * Only subdirectories or complete file paths may be relocated. We
921              * don't check for '\0' as our directory names all end in '/'.
922              */
923             if (!(fn[len] == '/' || fnlen == len))
924                 continue;
925
926             if (strncmp(relocations[j].oldPath, fn, len))
927                 continue;
928             break;
929         }
930         if (j < 0) continue;
931
932         rpmtdSetIndex(&fmodes, i);
933         ft = rpmfiWhatis(rpmtdGetNumber(&fmodes));
934
935         /* On install, a relocate to NULL means skip the path. */
936         if (relocations[j].newPath == NULL) {
937             if (ft == XDIR) {
938                 /* Start with the parent, looking for directory to exclude. */
939                 for (j = dirIndexes[i]; j < dirCount; j++) {
940                     len = strlen(dirNames[j]) - 1;
941                     while (len > 0 && dirNames[j][len-1] == '/') len--;
942                     if (fnlen != len)
943                         continue;
944                     if (strncmp(fn, dirNames[j], fnlen))
945                         continue;
946                     break;
947                 }
948             }
949             rpmfsSetAction(fs, i, FA_SKIPNSTATE);
950             rpmlog(RPMLOG_DEBUG, "excluding %s %s\n",
951                    ftstring(ft), fn);
952             continue;
953         }
954
955         /* Relocation on full paths only, please. */
956         if (fnlen != len) continue;
957
958         rpmlog(RPMLOG_DEBUG, "relocating %s to %s\n",
959                fn, relocations[j].newPath);
960         nrelocated++;
961
962         strcpy(fn, relocations[j].newPath);
963         {   char * te = strrchr(fn, '/');
964             if (te) {
965                 if (te > fn) te++;      /* root is special */
966                 fnlen = te - fn;
967             } else
968                 te = fn + strlen(fn);
969             if (strcmp(baseNames[i], te)) { /* basename changed too? */
970                 if (!haveRelocatedBase) {
971                     /* XXX TODO: use rpmtdDup() instead */
972                     bnames.data = baseNames = duparray(baseNames, fileCount);
973                     bnames.flags |= RPMTD_PTR_ALLOCED;
974                     haveRelocatedBase = 1;
975                 }
976                 free(baseNames[i]);
977                 baseNames[i] = xstrdup(te);
978             }
979             *te = '\0';                 /* terminate new directory name */
980         }
981
982         /* Does this directory already exist in the directory list? */
983         for (j = 0; j < dirCount; j++) {
984             if (fnlen != strlen(dirNames[j]))
985                 continue;
986             if (strncmp(fn, dirNames[j], fnlen))
987                 continue;
988             break;
989         }
990         
991         if (j < dirCount) {
992             dirIndexes[i] = j;
993             continue;
994         }
995
996         /* Creating new paths is a pita */
997         dirNames = dnames.data = xrealloc(dnames.data, 
998                                sizeof(*dirNames) * (dirCount + 1));
999
1000         dirNames[dirCount] = xstrdup(fn);
1001         dirIndexes[i] = dirCount;
1002         dirCount++;
1003         dnames.count++;
1004     }
1005
1006     /* Finish off by relocating directories. */
1007     for (i = dirCount - 1; i >= 0; i--) {
1008         for (j = numRelocations - 1; j >= 0; j--) {
1009
1010             if (relocations[j].oldPath == NULL) /* XXX can't happen */
1011                 continue;
1012             size_t len = strcmp(relocations[j].oldPath, "/")
1013                 ? strlen(relocations[j].oldPath)
1014                 : 0;
1015
1016             if (len && strncmp(relocations[j].oldPath, dirNames[i], len))
1017                 continue;
1018
1019             /*
1020              * Only subdirectories or complete file paths may be relocated. We
1021              * don't check for '\0' as our directory names all end in '/'.
1022              */
1023             if (dirNames[i][len] != '/')
1024                 continue;
1025
1026             if (relocations[j].newPath) { /* Relocate the path */
1027                 char *t = NULL;
1028                 rstrscat(&t, relocations[j].newPath, (dirNames[i] + len), NULL);
1029                 /* Unfortunatly rpmCleanPath strips the trailing slash.. */
1030                 (void) rpmCleanPath(t);
1031                 rstrcat(&t, "/");
1032
1033                 rpmlog(RPMLOG_DEBUG,
1034                        "relocating directory %s to %s\n", dirNames[i], t);
1035                 free(dirNames[i]);
1036                 dirNames[i] = t;
1037                 nrelocated++;
1038             }
1039         }
1040     }
1041
1042     /* Save original filenames in header and replace (relocated) filenames. */
1043     if (nrelocated) {
1044         saveRelocs(h, &bnames, &dnames, &dindexes);
1045     }
1046
1047     rpmtdFreeData(&bnames);
1048     rpmtdFreeData(&dnames);
1049     rpmtdFreeData(&dindexes);
1050     rpmtdFreeData(&fmodes);
1051     free(fn);
1052 }
1053
1054 rpmfi rpmfiFree(rpmfi fi)
1055 {
1056     if (fi == NULL) return NULL;
1057
1058     if (fi->nrefs > 1)
1059         return rpmfiUnlink(fi, fi->Type);
1060
1061 if (_rpmfi_debug < 0)
1062 fprintf(stderr, "*** fi %p\t%s[%d]\n", fi, fi->Type, fi->fc);
1063
1064     if (fi->fc > 0) {
1065         fi->bnl = _free(fi->bnl);
1066         fi->dnl = _free(fi->dnl);
1067
1068         fi->flinkcache = strcacheFree(fi->flinkcache);
1069         fi->flinks = _free(fi->flinks);
1070         fi->flangs = _free(fi->flangs);
1071         fi->digests = _free(fi->digests);
1072         fi->fcaps = _free(fi->fcaps);
1073
1074         fi->cdict = _free(fi->cdict);
1075
1076         fi->fuser = _free(fi->fuser);
1077         fi->fgroup = _free(fi->fgroup);
1078
1079         fi->fstates = _free(fi->fstates);
1080         fi->fps = _free(fi->fps);
1081
1082         if (!(fi->fiflags & RPMFI_KEEPHEADER) && fi->h == NULL) {
1083             fi->fmtimes = _constfree(fi->fmtimes);
1084             fi->fmodes = _free(fi->fmodes);
1085             fi->fflags = _constfree(fi->fflags);
1086             fi->vflags = _constfree(fi->vflags);
1087             fi->fsizes = _constfree(fi->fsizes);
1088             fi->frdevs = _constfree(fi->frdevs);
1089             fi->finodes = _constfree(fi->finodes);
1090             fi->dil = _free(fi->dil);
1091
1092             fi->fcolors = _constfree(fi->fcolors);
1093             fi->fcdictx = _constfree(fi->fcdictx);
1094             fi->ddict = _constfree(fi->ddict);
1095             fi->fddictx = _constfree(fi->fddictx);
1096             fi->fddictn = _constfree(fi->fddictn);
1097
1098         }
1099     }
1100
1101     fi->fsm = freeFSM(fi->fsm);
1102
1103     fi->fn = _free(fi->fn);
1104     fi->apath = _free(fi->apath);
1105
1106     fi->replacedSizes = _free(fi->replacedSizes);
1107
1108     fi->h = headerFree(fi->h);
1109
1110     (void) rpmfiUnlink(fi, fi->Type);
1111     memset(fi, 0, sizeof(*fi));         /* XXX trash and burn */
1112     fi = _free(fi);
1113
1114     return NULL;
1115 }
1116
1117 /* Helper to push header tag data into a string cache */
1118 static scidx_t *cacheTag(strcache cache, Header h, rpmTag tag)
1119 {
1120     scidx_t *idx = NULL;
1121     struct rpmtd_s td;
1122     if (headerGet(h, tag, &td, HEADERGET_MINMEM)) {
1123        idx = xmalloc(sizeof(*idx) * rpmtdCount(&td));
1124        int i = 0;
1125        const char *str;
1126        while ((str = rpmtdNextString(&td))) {
1127            idx[i++] = strcachePut(cache, str);
1128        }
1129        rpmtdFreeData(&td);
1130     }
1131     return idx;
1132 }
1133
1134 #define _hgfi(_h, _tag, _td, _flags, _data) \
1135     if (headerGet((_h), (_tag), (_td), (_flags))) \
1136         _data = (td.data)
1137
1138 rpmfi rpmfiNew(const rpmts ts, Header h, rpmTag tagN, rpmfiFlags flags)
1139 {
1140     rpmfi fi = NULL;
1141     const char * Type;
1142     rpm_loff_t *asize = NULL;
1143     unsigned char * t;
1144     int isBuild, isSource;
1145     struct rpmtd_s fdigests, digalgo;
1146     struct rpmtd_s td;
1147     headerGetFlags scareFlags = (flags & RPMFI_KEEPHEADER) ? 
1148                                 HEADERGET_MINMEM : HEADERGET_ALLOC;
1149     headerGetFlags defFlags = HEADERGET_ALLOC;
1150
1151     if (tagN == RPMTAG_BASENAMES) {
1152         Type = "Files";
1153     } else {
1154         Type = "?Type?";
1155         goto exit;
1156     }
1157
1158     fi = xcalloc(1, sizeof(*fi));
1159     if (fi == NULL)     /* XXX can't happen */
1160         goto exit;
1161
1162     fi->magic = RPMFIMAGIC;
1163     fi->Type = Type;
1164     fi->i = -1;
1165     fi->tagN = tagN;
1166
1167     fi->fiflags = flags;
1168     fi->scareFlags = scareFlags;
1169
1170     if (headerGet(h, RPMTAG_LONGARCHIVESIZE, &td, HEADERGET_EXT)) {
1171         asize = rpmtdGetUint64(&td);
1172     }
1173     /* 0 means unknown */
1174     fi->archiveSize = asize ? *asize : 0;
1175     rpmtdFreeData(&td);
1176     
1177     /* Archive size is not set when this gets called from build */
1178     isBuild = (asize == NULL);
1179     isSource = headerIsSource(h);
1180     if (isBuild) fi->fiflags |= RPMFI_ISBUILD;
1181     if (isSource) fi->fiflags |= RPMFI_ISSOURCE;
1182
1183     _hgfi(h, RPMTAG_BASENAMES, &td, defFlags, fi->bnl);
1184     fi->fc = rpmtdCount(&td);
1185     if (fi->fc == 0) {
1186         goto exit;
1187     }
1188
1189     _hgfi(h, RPMTAG_DIRNAMES, &td, defFlags, fi->dnl);
1190     fi->dc = rpmtdCount(&td);
1191     _hgfi(h, RPMTAG_DIRINDEXES, &td, scareFlags, fi->dil);
1192     if (!(flags & RPMFI_NOFILEMODES))
1193         _hgfi(h, RPMTAG_FILEMODES, &td, scareFlags, fi->fmodes);
1194     if (!(flags & RPMFI_NOFILEFLAGS))
1195         _hgfi(h, RPMTAG_FILEFLAGS, &td, scareFlags, fi->fflags);
1196     if (!(flags & RPMFI_NOFILEVERIFYFLAGS))
1197         _hgfi(h, RPMTAG_FILEVERIFYFLAGS, &td, scareFlags, fi->vflags);
1198     if (!(flags & RPMFI_NOFILESIZES))
1199         _hgfi(h, RPMTAG_FILESIZES, &td, scareFlags, fi->fsizes);
1200
1201     if (!(flags & RPMFI_NOFILECOLORS))
1202         _hgfi(h, RPMTAG_FILECOLORS, &td, scareFlags, fi->fcolors);
1203
1204     if (!(flags & RPMFI_NOFILECLASS)) {
1205         _hgfi(h, RPMTAG_CLASSDICT, &td, scareFlags, fi->cdict);
1206         fi->ncdict = rpmtdCount(&td);
1207         _hgfi(h, RPMTAG_FILECLASS, &td, scareFlags, fi->fcdictx);
1208     }
1209     if (!(flags & RPMFI_NOFILEDEPS)) {
1210         _hgfi(h, RPMTAG_DEPENDSDICT, &td, scareFlags, fi->ddict);
1211         fi->nddict = rpmtdCount(&td);
1212         _hgfi(h, RPMTAG_FILEDEPENDSX, &td, scareFlags, fi->fddictx);
1213         _hgfi(h, RPMTAG_FILEDEPENDSN, &td, scareFlags, fi->fddictn);
1214     }
1215
1216     if (!(flags & RPMFI_NOFILESTATES))
1217         _hgfi(h, RPMTAG_FILESTATES, &td, defFlags, fi->fstates);
1218
1219     if (!(flags & RPMFI_NOFILECAPS))
1220         _hgfi(h, RPMTAG_FILECAPS, &td, defFlags, fi->fcaps);
1221
1222     if (!(flags & RPMFI_NOFILELINKTOS)) {
1223         fi->flinkcache = strcacheNew();
1224         fi->flinks = cacheTag(fi->flinkcache, h, RPMTAG_FILELINKTOS);
1225     }
1226     /* FILELANGS are only interesting when installing */
1227     if ((headerGetInstance(h) == 0) && !(flags & RPMFI_NOFILELANGS))
1228         fi->flangs = cacheTag(langcache, h, RPMTAG_FILELANGS);
1229
1230     /* See if the package has non-md5 file digests */
1231     fi->digestalgo = PGPHASHALGO_MD5;
1232     if (headerGet(h, RPMTAG_FILEDIGESTALGO, &digalgo, HEADERGET_MINMEM)) {
1233         pgpHashAlgo *algo = rpmtdGetUint32(&digalgo);
1234         /* Hmm, what to do with unknown digest algorithms? */
1235         if (algo && rpmDigestLength(*algo) != 0) {
1236             fi->digestalgo = *algo;
1237         }
1238     }
1239
1240     fi->digests = NULL;
1241     /* grab hex digests from header and store in binary format */
1242     if (!(flags & RPMFI_NOFILEDIGESTS) &&
1243         headerGet(h, RPMTAG_FILEDIGESTS, &fdigests, HEADERGET_MINMEM)) {
1244         const char *fdigest;
1245         size_t diglen = rpmDigestLength(fi->digestalgo);
1246         fi->digests = t = xmalloc(rpmtdCount(&fdigests) * diglen);
1247
1248         while ((fdigest = rpmtdNextString(&fdigests))) {
1249             if (!(fdigest && *fdigest != '\0')) {
1250                 memset(t, 0, diglen);
1251                 t += diglen;
1252                 continue;
1253             }
1254             for (int j = 0; j < diglen; j++, t++, fdigest += 2)
1255                 *t = (rnibble(fdigest[0]) << 4) | rnibble(fdigest[1]);
1256         }
1257         rpmtdFreeData(&fdigests);
1258     }
1259
1260     /* XXX TR_REMOVED doesn;t need fmtimes, frdevs, finodes */
1261     if (!(flags & RPMFI_NOFILEMTIMES))
1262         _hgfi(h, RPMTAG_FILEMTIMES, &td, scareFlags, fi->fmtimes);
1263     if (!(flags & RPMFI_NOFILERDEVS))
1264         _hgfi(h, RPMTAG_FILERDEVS, &td, scareFlags, fi->frdevs);
1265     if (!(flags & RPMFI_NOFILEINODES))
1266         _hgfi(h, RPMTAG_FILEINODES, &td, scareFlags, fi->finodes);
1267
1268     if (!(flags & RPMFI_NOFILEUSER)) 
1269         fi->fuser = cacheTag(ugcache, h, RPMTAG_FILEUSERNAME);
1270     if (!(flags & RPMFI_NOFILEGROUP)) 
1271         fi->fgroup = cacheTag(ugcache, h, RPMTAG_FILEGROUPNAME);
1272
1273     /* lazily alloced from rpmfiFN() */
1274     fi->fn = NULL;
1275
1276 exit:
1277 if (_rpmfi_debug < 0)
1278 fprintf(stderr, "*** fi %p\t%s[%d]\n", fi, Type, (fi ? fi->fc : 0));
1279
1280     if (fi != NULL) {
1281         fi->h = (fi->fiflags & RPMFI_KEEPHEADER) ? headerLink(h) : NULL;
1282     }
1283
1284     /* FIX: rpmfi null annotations */
1285     return rpmfiLink(fi, (fi ? fi->Type : NULL));
1286 }
1287
1288 void rpmfiSetFReplacedSize(rpmfi fi, rpm_loff_t newsize)
1289 {
1290     if (fi != NULL && fi->i >= 0 && fi->i < fi->fc) {
1291         if (fi->replacedSizes == NULL) {
1292             fi->replacedSizes = xcalloc(fi->fc, sizeof(*fi->replacedSizes));
1293         }
1294         /* XXX watch out, replacedSizes is not rpm_loff_t (yet) */
1295         fi->replacedSizes[fi->i] = (rpm_off_t) newsize;
1296     }
1297 }
1298
1299 rpm_loff_t rpmfiFReplacedSize(rpmfi fi)
1300 {
1301     rpm_loff_t rsize = 0;
1302     if (fi != NULL && fi->i >= 0 && fi->i < fi->fc) {
1303         if (fi->replacedSizes) {
1304             rsize = fi->replacedSizes[fi->i];
1305         }
1306     }
1307     return rsize;
1308 }
1309
1310 void rpmfiFpLookup(rpmfi fi, fingerPrintCache fpc)
1311 {
1312     if (fi->fc > 0 && fi->fps == NULL) {
1313         fi->fps = xcalloc(fi->fc, sizeof(*fi->fps));
1314     }
1315     fpLookupList(fpc, fi->dnl, fi->bnl, fi->dil, fi->fc, fi->fps);
1316 }
1317
1318 FSM_t rpmfiFSM(rpmfi fi)
1319 {
1320     if (fi != NULL && fi->fsm == NULL) {
1321         cpioMapFlags mapflags;
1322         /* Figure out mapflags: 
1323          * - path, mode, uid and gid are used by everything
1324          * - all binary packages get SBIT_CHECK set
1325          * - if archive size is not known, we're only building this package,
1326          *   different rules apply 
1327          */
1328         mapflags = CPIO_MAP_PATH | CPIO_MAP_MODE | CPIO_MAP_UID | CPIO_MAP_GID;
1329         if (fi->fiflags & RPMFI_ISBUILD) {
1330             mapflags |= CPIO_MAP_TYPE;
1331             if (fi->fiflags & RPMFI_ISSOURCE) mapflags |= CPIO_FOLLOW_SYMLINKS;
1332         } else {
1333             if (!(fi->fiflags & RPMFI_ISSOURCE)) mapflags |= CPIO_SBIT_CHECK;
1334         }
1335         fi->fsm = newFSM(mapflags);
1336     }
1337     return (fi != NULL) ? fi->fsm : NULL;
1338 }
1339
1340 /* 
1341  * Generate iterator accessors function wrappers, these do nothing but
1342  * call the corresponding rpmfiFooIndex(fi, fi->[ij])
1343  */
1344
1345 #define RPMFI_ITERFUNC(TYPE, NAME, IXV) \
1346     TYPE rpmfi ## NAME(rpmfi fi) { return rpmfi ## NAME ## Index(fi, fi ? fi->IXV : -1); }
1347
1348 RPMFI_ITERFUNC(const char *, BN, i)
1349 RPMFI_ITERFUNC(const char *, DN, j)
1350 RPMFI_ITERFUNC(const char *, FN, i)
1351 RPMFI_ITERFUNC(const char *, FLink, i)
1352 RPMFI_ITERFUNC(const char *, FUser, i)
1353 RPMFI_ITERFUNC(const char *, FGroup, i)
1354 RPMFI_ITERFUNC(const char *, FCaps, i)
1355 RPMFI_ITERFUNC(const char *, FLangs, i)
1356 RPMFI_ITERFUNC(const char *, FClass, i)
1357 RPMFI_ITERFUNC(rpmfileState, FState, i)
1358 RPMFI_ITERFUNC(rpmfileAttrs, FFlags, i)
1359 RPMFI_ITERFUNC(rpmVerifyAttrs, VFlags, i)
1360 RPMFI_ITERFUNC(rpm_mode_t, FMode, i)
1361 RPMFI_ITERFUNC(rpm_rdev_t, FRdev, i)
1362 RPMFI_ITERFUNC(rpm_time_t, FMtime, i)
1363 RPMFI_ITERFUNC(rpm_ino_t, FInode, i)
1364 RPMFI_ITERFUNC(rpm_loff_t, FSize, i)
1365 RPMFI_ITERFUNC(rpm_color_t, FColor, i)
1366 RPMFI_ITERFUNC(uint32_t, FNlink, i)
1367
1368 const unsigned char * rpmfiFDigest(rpmfi fi, pgpHashAlgo *algo, size_t *len)
1369 {
1370     return rpmfiFDigestIndex(fi, fi ? fi->i : -1, algo, len);
1371 }
1372
1373 uint32_t rpmfiFDepends(rpmfi fi, const uint32_t ** fddictp)
1374 {
1375     return rpmfiFDependsIndex(fi,  fi ? fi->i : -1, fddictp);
1376 }