Handle RPM_INT64_TYPE in header functions
[platform/upstream/rpm.git] / lib / header.c
1 /** \ingroup header
2  * \file lib/header.c
3  */
4
5 /* RPM - Copyright (C) 1995-2002 Red Hat Software */
6
7 /* Data written to file descriptors is in network byte order.    */
8 /* Data read from file descriptors is expected to be in          */
9 /* network byte order and is converted on the fly to host order. */
10
11 #include "system.h"
12
13 #include <rpm/rpmtypes.h>
14 #include <rpm/rpmstring.h>
15 #include "lib/header_internal.h"
16
17 #include "debug.h"
18
19 int _hdr_debug = 0;
20
21 /** \ingroup header
22  */
23 static unsigned char const header_magic[8] = {
24         0x8e, 0xad, 0xe8, 0x01, 0x00, 0x00, 0x00, 0x00
25 };
26
27 /** \ingroup header
28  * Alignment needed for header data types.
29  */
30 static const int typeAlign[16] =  {
31     1,  /*!< RPM_NULL_TYPE */
32     1,  /*!< RPM_CHAR_TYPE */
33     1,  /*!< RPM_INT8_TYPE */
34     2,  /*!< RPM_INT16_TYPE */
35     4,  /*!< RPM_INT32_TYPE */
36     8,  /*!< RPM_INT64_TYPE */
37     1,  /*!< RPM_STRING_TYPE */
38     1,  /*!< RPM_BIN_TYPE */
39     1,  /*!< RPM_STRING_ARRAY_TYPE */
40     1,  /*!< RPM_I18NSTRING_TYPE */
41     0,
42     0,
43     0,
44     0,
45     0,
46     0
47 };
48
49 /** \ingroup header
50  * Size of header data types.
51  */
52 static const int typeSizes[16] =  { 
53     0,  /*!< RPM_NULL_TYPE */
54     1,  /*!< RPM_CHAR_TYPE */
55     1,  /*!< RPM_INT8_TYPE */
56     2,  /*!< RPM_INT16_TYPE */
57     4,  /*!< RPM_INT32_TYPE */
58     8,  /*!< RPM_INT64_TYPE */
59     -1, /*!< RPM_STRING_TYPE */
60     1,  /*!< RPM_BIN_TYPE */
61     -1, /*!< RPM_STRING_ARRAY_TYPE */
62     -1, /*!< RPM_I18NSTRING_TYPE */
63     0,
64     0,
65     0,
66     0,
67     0,
68     0
69 };
70
71 /* dumb macro to avoid 50 copies of this code while converting... */
72 #define TDWRAP() \
73     if (type) \
74         *type = td.type; \
75     if (p) \
76         *p = td.data; \
77     else \
78         rpmtdFreeData(&td); \
79     if (c) \
80         *c = td.count
81
82 /** \ingroup header
83  * Maximum no. of bytes permitted in a header.
84  */
85 static const size_t headerMaxbytes = (32*1024*1024);
86
87 /** \ingroup header
88  * HEADER_EXT_TAG format function prototype.
89  * This is allowed to fail, which indicates the tag doesn't exist.
90  *
91  * @param h             header
92  * @retval td           tag data container
93  * @return              0 on success
94  */
95 typedef int (*headerTagTagFunction) (Header h, rpmtd td);
96
97 extern void *rpmHeaderTagFunc(rpmTag tag);
98
99 Header headerLink(Header h)
100 {
101     if (h == NULL) return NULL;
102
103     h->nrefs++;
104 if (_hdr_debug)
105 fprintf(stderr, "--> h  %p ++ %d at %s:%u\n", h, h->nrefs, __FILE__, __LINE__);
106
107     return h;
108 }
109
110 Header headerUnlink(Header h)
111 {
112     if (h == NULL) return NULL;
113 if (_hdr_debug)
114 fprintf(stderr, "--> h  %p -- %d at %s:%u\n", h, h->nrefs, __FILE__, __LINE__);
115     h->nrefs--;
116     return NULL;
117 }
118
119 Header headerFree(Header h)
120 {
121     (void) headerUnlink(h);
122
123     if (h == NULL || h->nrefs > 0)
124         return NULL;    /* XXX return previous header? */
125
126     if (h->index) {
127         indexEntry entry = h->index;
128         int i;
129         for (i = 0; i < h->indexUsed; i++, entry++) {
130             if ((h->flags & HEADERFLAG_ALLOCATED) && ENTRY_IS_REGION(entry)) {
131                 if (entry->length > 0) {
132                     int32_t * ei = entry->data;
133                     if ((ei - 2) == h->blob) h->blob = _free(h->blob);
134                     entry->data = NULL;
135                 }
136             } else if (!ENTRY_IN_REGION(entry)) {
137                 entry->data = _free(entry->data);
138             }
139             entry->data = NULL;
140         }
141         h->index = _free(h->index);
142     }
143
144     h = _free(h);
145     return h;
146 }
147
148 Header headerNew(void)
149 {
150     Header h = xcalloc(1, sizeof(*h));
151
152     h->blob = NULL;
153     h->indexAlloced = INDEX_MALLOC_SIZE;
154     h->indexUsed = 0;
155     h->flags |= HEADERFLAG_SORTED;
156
157     h->index = (h->indexAlloced
158         ? xcalloc(h->indexAlloced, sizeof(*h->index))
159         : NULL);
160
161     h->nrefs = 0;
162     return headerLink(h);
163 }
164
165 int headerVerifyInfo(int il, int dl, const void * pev, void * iv, int negate)
166 {
167     entryInfo pe = (entryInfo) pev;
168     entryInfo info = iv;
169     int i;
170
171     for (i = 0; i < il; i++) {
172         info->tag = ntohl(pe[i].tag);
173         info->type = ntohl(pe[i].type);
174         info->offset = ntohl(pe[i].offset);
175         if (negate)
176             info->offset = -info->offset;
177         info->count = ntohl(pe[i].count);
178
179         if (hdrchkType(info->type))
180             return i;
181         if (hdrchkAlign(info->type, info->offset))
182             return i;
183         if (!negate && hdrchkRange(dl, info->offset))
184             return i;
185         if (hdrchkData(info->count))
186             return i;
187
188     }
189     return -1;
190 }
191
192 /**
193  */
194 static int indexCmp(const void * avp, const void * bvp)
195 {
196     indexEntry ap = (indexEntry) avp, bp = (indexEntry) bvp;
197     return (ap->info.tag - bp->info.tag);
198 }
199
200 void headerSort(Header h)
201 {
202     if (!(h->flags & HEADERFLAG_SORTED)) {
203         qsort(h->index, h->indexUsed, sizeof(*h->index), indexCmp);
204         h->flags |= HEADERFLAG_SORTED;
205     }
206 }
207
208 /**
209  */
210 static int offsetCmp(const void * avp, const void * bvp) 
211 {
212     indexEntry ap = (indexEntry) avp, bp = (indexEntry) bvp;
213     int rc = (ap->info.offset - bp->info.offset);
214
215     if (rc == 0) {
216         /* Within a region, entries sort by address. Added drips sort by tag. */
217         if (ap->info.offset < 0)
218             rc = (((char *)ap->data) - ((char *)bp->data));
219         else
220             rc = (ap->info.tag - bp->info.tag);
221     }
222     return rc;
223 }
224
225 /** \ingroup header
226  * Restore tags in header to original ordering.
227  * @param h             header
228  */
229 void headerUnsort(Header h)
230 {
231     qsort(h->index, h->indexUsed, sizeof(*h->index), offsetCmp);
232 }
233
234 unsigned headerSizeof(Header h, enum hMagic magicp)
235 {
236     indexEntry entry;
237     unsigned int size = 0;
238     unsigned int pad = 0;
239     int i;
240
241     if (h == NULL)
242         return size;
243
244     headerSort(h);
245
246     switch (magicp) {
247     case HEADER_MAGIC_YES:
248         size += sizeof(header_magic);
249         break;
250     case HEADER_MAGIC_NO:
251         break;
252     }
253
254     size += 2 * sizeof(int32_t);        /* count of index entries */
255
256     for (i = 0, entry = h->index; i < h->indexUsed; i++, entry++) {
257         unsigned diff;
258         rpmTagType type;
259
260         /* Regions go in as is ... */
261         if (ENTRY_IS_REGION(entry)) {
262             size += entry->length;
263             /* XXX Legacy regions do not include the region tag and data. */
264             if (i == 0 && (h->flags & HEADERFLAG_LEGACY))
265                 size += sizeof(struct entryInfo_s) + entry->info.count;
266             continue;
267         }
268
269         /* ... and region elements are skipped. */
270         if (entry->info.offset < 0)
271             continue;
272
273         /* Alignment */
274         type = entry->info.type;
275         if (typeSizes[type] > 1) {
276             diff = typeSizes[type] - (size % typeSizes[type]);
277             if (diff != typeSizes[type]) {
278                 size += diff;
279                 pad += diff;
280             }
281         }
282
283         size += sizeof(struct entryInfo_s) + entry->length;
284     }
285
286     return size;
287 }
288
289 /**
290  * Return length of entry data.
291  * @param type          entry data type
292  * @param p             entry data
293  * @param count         entry item count
294  * @param onDisk        data is concatenated strings (with NUL's))?
295  * @param pend          pointer to end of data (or NULL)
296  * @return              no. bytes in data, -1 on failure
297  */
298 static int dataLength(rpmTagType type, rpm_constdata_t p, rpm_count_t count,
299                          int onDisk, rpm_constdata_t pend)
300 {
301     const unsigned char * s = p;
302     const unsigned char * se = pend;
303     int length = 0;
304
305     switch (type) {
306     case RPM_STRING_TYPE:
307         if (count != 1)
308             return -1;
309         while (*s++) {
310             if (se && s > se)
311                 return -1;
312             length++;
313         }
314         length++;       /* count nul terminator too. */
315         break;
316
317     case RPM_STRING_ARRAY_TYPE:
318     case RPM_I18NSTRING_TYPE:
319         /* These are like RPM_STRING_TYPE, except they're *always* an array */
320         /* Compute sum of length of all strings, including nul terminators */
321
322         if (onDisk) {
323             while (count--) {
324                 length++;       /* count nul terminator too */
325                while (*s++) {
326                     if (se && s > se)
327                         return -1;
328                     length++;
329                 }
330             }
331         } else {
332             const char ** av = (const char **)p;
333             while (count--) {
334                 /* add one for null termination */
335                 length += strlen(*av++) + 1;
336             }
337         }
338         break;
339
340     default:
341         if (typeSizes[type] == -1)
342             return -1;
343         length = typeSizes[(type & 0xf)] * count;
344         if (length < 0 || (se && (s + length) > se))
345             return -1;
346         break;
347     }
348
349     return length;
350 }
351
352 /** \ingroup header
353  * Swap int32_t and int16_t arrays within header region.
354  *
355  * This code is way more twisty than I would like.
356  *
357  * A bug with RPM_I18NSTRING_TYPE in rpm-2.5.x (fixed in August 1998)
358  * causes the offset and length of elements in a header region to disagree
359  * regarding the total length of the region data.
360  *
361  * The "fix" is to compute the size using both offset and length and
362  * return the larger of the two numbers as the size of the region.
363  * Kinda like computing left and right Riemann sums of the data elements
364  * to determine the size of a data structure, go figger :-).
365  *
366  * There's one other twist if a header region tag is in the set to be swabbed,
367  * as the data for a header region is located after all other tag data.
368  *
369  * @param entry         header entry
370  * @param il            no. of entries
371  * @param dl            start no. bytes of data
372  * @param pe            header physical entry pointer (swapped)
373  * @param dataStart     header data start
374  * @param dataEnd       header data end
375  * @param regionid      region offset
376  * @return              no. bytes of data in region, -1 on error
377  */
378 static int regionSwab(indexEntry entry, int il, int dl,
379                 entryInfo pe,
380                 unsigned char * dataStart,
381                 const unsigned char * dataEnd,
382                 int regionid)
383 {
384     unsigned char * tprev = NULL;
385     unsigned char * t = NULL;
386     int tdel = 0;
387     int tl = dl;
388     struct indexEntry_s ieprev;
389
390     memset(&ieprev, 0, sizeof(ieprev));
391     for (; il > 0; il--, pe++) {
392         struct indexEntry_s ie;
393         rpmTagType type;
394
395         ie.info.tag = ntohl(pe->tag);
396         ie.info.type = ntohl(pe->type);
397         ie.info.count = ntohl(pe->count);
398         ie.info.offset = ntohl(pe->offset);
399
400         if (hdrchkType(ie.info.type))
401             return -1;
402         if (hdrchkData(ie.info.count))
403             return -1;
404         if (hdrchkData(ie.info.offset))
405             return -1;
406         if (hdrchkAlign(ie.info.type, ie.info.offset))
407             return -1;
408
409         ie.data = t = dataStart + ie.info.offset;
410         if (dataEnd && t >= dataEnd)
411             return -1;
412
413         ie.length = dataLength(ie.info.type, ie.data, ie.info.count, 1, dataEnd);
414         if (ie.length < 0 || hdrchkData(ie.length))
415             return -1;
416
417         ie.rdlen = 0;
418
419         if (entry) {
420             ie.info.offset = regionid;
421             *entry = ie;        /* structure assignment */
422             entry++;
423         }
424
425         /* Alignment */
426         type = ie.info.type;
427         if (typeSizes[type] > 1) {
428             unsigned diff;
429             diff = typeSizes[type] - (dl % typeSizes[type]);
430             if (diff != typeSizes[type]) {
431                 dl += diff;
432                 if (ieprev.info.type == RPM_I18NSTRING_TYPE)
433                     ieprev.length += diff;
434             }
435         }
436         tdel = (tprev ? (t - tprev) : 0);
437         if (ieprev.info.type == RPM_I18NSTRING_TYPE)
438             tdel = ieprev.length;
439
440         if (ie.info.tag >= HEADER_I18NTABLE) {
441             tprev = t;
442         } else {
443             tprev = dataStart;
444             /* XXX HEADER_IMAGE tags don't include region sub-tag. */
445             if (ie.info.tag == HEADER_IMAGE)
446                 tprev -= REGION_TAG_COUNT;
447         }
448
449         /* Perform endian conversions */
450         switch (ntohl(pe->type)) {
451         case RPM_INT64_TYPE:
452         {   uint64_t * it = (uint64_t *)t;
453             for (; ie.info.count > 0; ie.info.count--, it += 1) {
454                 if (dataEnd && ((unsigned char *)it) >= dataEnd)
455                     return -1;
456                 *it = htonll(*it);
457             }
458             t = (unsigned char *) it;
459         }   break;
460         case RPM_INT32_TYPE:
461         {   int32_t * it = (int32_t *)t;
462             for (; ie.info.count > 0; ie.info.count--, it += 1) {
463                 if (dataEnd && ((unsigned char *)it) >= dataEnd)
464                     return -1;
465                 *it = htonl(*it);
466             }
467             t = (unsigned char *) it;
468         }   break;
469         case RPM_INT16_TYPE:
470         {   int16_t * it = (int16_t *) t;
471             for (; ie.info.count > 0; ie.info.count--, it += 1) {
472                 if (dataEnd && ((unsigned char *)it) >= dataEnd)
473                     return -1;
474                 *it = htons(*it);
475             }
476             t = (unsigned char *) it;
477         }   break;
478         default:
479             t += ie.length;
480             break;
481         }
482
483         dl += ie.length;
484         tl += tdel;
485         ieprev = ie;    /* structure assignment */
486
487     }
488     tdel = (tprev ? (t - tprev) : 0);
489     tl += tdel;
490
491     /* XXX
492      * There are two hacks here:
493      *  1) tl is 16b (i.e. REGION_TAG_COUNT) short while doing headerReload().
494      *  2) the 8/98 rpm bug with inserting i18n tags needs to use tl, not dl.
495      */
496     if (tl+REGION_TAG_COUNT == dl)
497         tl += REGION_TAG_COUNT;
498
499     return dl;
500 }
501
502 /** \ingroup header
503  * doHeaderUnload.
504  * @param h             header
505  * @retval *lengthPtr   no. bytes in unloaded header blob
506  * @return              unloaded header blob (NULL on error)
507  */
508 static void * doHeaderUnload(Header h,
509                 size_t * lengthPtr)
510 {
511     int32_t * ei = NULL;
512     entryInfo pe;
513     char * dataStart;
514     char * te;
515     unsigned pad;
516     unsigned len;
517     int32_t il = 0;
518     int32_t dl = 0;
519     indexEntry entry; 
520     rpmTagType type;
521     int i;
522     int drlen, ndribbles;
523     int driplen, ndrips;
524     int legacy = 0;
525
526     /* Sort entries by (offset,tag). */
527     headerUnsort(h);
528
529     /* Compute (il,dl) for all tags, including those deleted in region. */
530     pad = 0;
531     drlen = ndribbles = driplen = ndrips = 0;
532     for (i = 0, entry = h->index; i < h->indexUsed; i++, entry++) {
533         if (ENTRY_IS_REGION(entry)) {
534             int32_t rdl = -entry->info.offset;  /* negative offset */
535             int32_t ril = rdl/sizeof(*pe);
536             int rid = entry->info.offset;
537
538             il += ril;
539             dl += entry->rdlen + entry->info.count;
540             /* XXX Legacy regions do not include the region tag and data. */
541             if (i == 0 && (h->flags & HEADERFLAG_LEGACY))
542                 il += 1;
543
544             /* Skip rest of entries in region, but account for dribbles. */
545             for (; i < h->indexUsed && entry->info.offset <= rid+1; i++, entry++) {
546                 if (entry->info.offset <= rid)
547                     continue;
548
549                 /* Alignment */
550                 type = entry->info.type;
551                 if (typeSizes[type] > 1) {
552                     unsigned diff;
553                     diff = typeSizes[type] - (dl % typeSizes[type]);
554                     if (diff != typeSizes[type]) {
555                         drlen += diff;
556                         pad += diff;
557                         dl += diff;
558                     }
559                 }
560
561                 ndribbles++;
562                 il++;
563                 drlen += entry->length;
564                 dl += entry->length;
565             }
566             i--;
567             entry--;
568             continue;
569         }
570
571         /* Ignore deleted drips. */
572         if (entry->data == NULL || entry->length <= 0)
573             continue;
574
575         /* Alignment */
576         type = entry->info.type;
577         if (typeSizes[type] > 1) {
578             unsigned diff;
579             diff = typeSizes[type] - (dl % typeSizes[type]);
580             if (diff != typeSizes[type]) {
581                 driplen += diff;
582                 pad += diff;
583                 dl += diff;
584             } else
585                 diff = 0;
586         }
587
588         ndrips++;
589         il++;
590         driplen += entry->length;
591         dl += entry->length;
592     }
593
594     /* Sanity checks on header intro. */
595     if (hdrchkTags(il) || hdrchkData(dl))
596         goto errxit;
597
598     len = sizeof(il) + sizeof(dl) + (il * sizeof(*pe)) + dl;
599
600     ei = xmalloc(len);
601     ei[0] = htonl(il);
602     ei[1] = htonl(dl);
603
604     pe = (entryInfo) &ei[2];
605     dataStart = te = (char *) (pe + il);
606
607     pad = 0;
608     for (i = 0, entry = h->index; i < h->indexUsed; i++, entry++) {
609         const char * src;
610         unsigned char *t;
611         int count;
612         int rdlen;
613
614         if (entry->data == NULL || entry->length <= 0)
615             continue;
616
617         t = (unsigned char*)te;
618         pe->tag = htonl(entry->info.tag);
619         pe->type = htonl(entry->info.type);
620         pe->count = htonl(entry->info.count);
621
622         if (ENTRY_IS_REGION(entry)) {
623             int32_t rdl = -entry->info.offset;  /* negative offset */
624             int32_t ril = rdl/sizeof(*pe) + ndribbles;
625             int rid = entry->info.offset;
626
627             src = (char *)entry->data;
628             rdlen = entry->rdlen;
629
630             /* XXX Legacy regions do not include the region tag and data. */
631             if (i == 0 && (h->flags & HEADERFLAG_LEGACY)) {
632                 int32_t stei[4];
633
634                 legacy = 1;
635                 memcpy(pe+1, src, rdl);
636                 memcpy(te, src + rdl, rdlen);
637                 te += rdlen;
638
639                 pe->offset = htonl(te - dataStart);
640                 stei[0] = pe->tag;
641                 stei[1] = pe->type;
642                 stei[2] = htonl(-rdl-entry->info.count);
643                 stei[3] = pe->count;
644                 memcpy(te, stei, entry->info.count);
645                 te += entry->info.count;
646                 ril++;
647                 rdlen += entry->info.count;
648
649                 count = regionSwab(NULL, ril, 0, pe, t, NULL, 0);
650                 if (count != rdlen)
651                     goto errxit;
652
653             } else {
654
655                 memcpy(pe+1, src + sizeof(*pe), ((ril-1) * sizeof(*pe)));
656                 memcpy(te, src + (ril * sizeof(*pe)), rdlen+entry->info.count+drlen);
657                 te += rdlen;
658                 {  
659                     entryInfo se = (entryInfo)src;
660                     int off = ntohl(se->offset);
661                     pe->offset = (off) ? htonl(te - dataStart) : htonl(off);
662                 }
663                 te += entry->info.count + drlen;
664
665                 count = regionSwab(NULL, ril, 0, pe, t, NULL, 0);
666                 if (count != (rdlen + entry->info.count + drlen))
667                     goto errxit;
668             }
669
670             /* Skip rest of entries in region. */
671             while (i < h->indexUsed && entry->info.offset <= rid+1) {
672                 i++;
673                 entry++;
674             }
675             i--;
676             entry--;
677             pe += ril;
678             continue;
679         }
680
681         /* Ignore deleted drips. */
682         if (entry->data == NULL || entry->length <= 0)
683             continue;
684
685         /* Alignment */
686         type = entry->info.type;
687         if (typeSizes[type] > 1) {
688             unsigned diff;
689             diff = typeSizes[type] - ((te - dataStart) % typeSizes[type]);
690             if (diff != typeSizes[type]) {
691                 memset(te, 0, diff);
692                 te += diff;
693                 pad += diff;
694             }
695         }
696
697         pe->offset = htonl(te - dataStart);
698
699         /* copy data w/ endian conversions */
700         switch (entry->info.type) {
701         case RPM_INT64_TYPE:
702             count = entry->info.count;
703             src = entry->data;
704             while (count--) {
705                 *((uint64_t *)te) = htonll(*((uint64_t *)src));
706                 te += sizeof(uint64_t);
707                 src += sizeof(uint64_t);
708             }
709             break;
710
711         case RPM_INT32_TYPE:
712             count = entry->info.count;
713             src = entry->data;
714             while (count--) {
715                 *((int32_t *)te) = htonl(*((int32_t *)src));
716                 te += sizeof(int32_t);
717                 src += sizeof(int32_t);
718             }
719             break;
720
721         case RPM_INT16_TYPE:
722             count = entry->info.count;
723             src = entry->data;
724             while (count--) {
725                 *((int16_t *)te) = htons(*((int16_t *)src));
726                 te += sizeof(int16_t);
727                 src += sizeof(int16_t);
728             }
729             break;
730
731         default:
732             memcpy(te, entry->data, entry->length);
733             te += entry->length;
734             break;
735         }
736         pe++;
737     }
738    
739     /* Insure that there are no memcpy underruns/overruns. */
740     if (((char *)pe) != dataStart)
741         goto errxit;
742     if ((((char *)ei)+len) != te)
743         goto errxit;
744
745     if (lengthPtr)
746         *lengthPtr = len;
747
748     h->flags &= ~HEADERFLAG_SORTED;
749     headerSort(h);
750
751     return (void *) ei;
752
753 errxit:
754     ei = _free(ei);
755     return (void *) ei;
756 }
757
758 void * headerUnload(Header h)
759 {
760     size_t length;
761     void * uh = doHeaderUnload(h, &length);
762     return uh;
763 }
764
765 /**
766  * Find matching (tag,type) entry in header.
767  * @param h             header
768  * @param tag           entry tag
769  * @param type          entry type
770  * @return              header entry
771  */
772 static
773 indexEntry findEntry(Header h, rpmTag tag, rpmTagType type)
774 {
775     indexEntry entry, entry2, last;
776     struct indexEntry_s key;
777
778     if (h == NULL) return NULL;
779     if (!(h->flags & HEADERFLAG_SORTED)) headerSort(h);
780
781     key.info.tag = tag;
782
783     entry2 = entry = 
784         bsearch(&key, h->index, h->indexUsed, sizeof(*h->index), indexCmp);
785     if (entry == NULL)
786         return NULL;
787
788     if (type == RPM_NULL_TYPE)
789         return entry;
790
791     /* look backwards */
792     while (entry->info.tag == tag && entry->info.type != type &&
793            entry > h->index) entry--;
794
795     if (entry->info.tag == tag && entry->info.type == type)
796         return entry;
797
798     last = h->index + h->indexUsed;
799     /* FIX: entry2 = entry. Code looks bogus as well. */
800     while (entry2->info.tag == tag && entry2->info.type != type &&
801            entry2 < last) entry2++;
802
803     if (entry->info.tag == tag && entry->info.type == type)
804         return entry;
805
806     return NULL;
807 }
808
809 int headerRemoveEntry(Header h, rpmTag tag)
810 {
811     indexEntry last = h->index + h->indexUsed;
812     indexEntry entry, first;
813     int ne;
814
815     entry = findEntry(h, tag, RPM_NULL_TYPE);
816     if (!entry) return 1;
817
818     /* Make sure entry points to the first occurence of this tag. */
819     while (entry > h->index && (entry - 1)->info.tag == tag)  
820         entry--;
821
822     /* Free data for tags being removed. */
823     for (first = entry; first < last; first++) {
824         rpm_data_t data;
825         if (first->info.tag != tag)
826             break;
827         data = first->data;
828         first->data = NULL;
829         first->length = 0;
830         if (ENTRY_IN_REGION(first))
831             continue;
832         data = _free(data);
833     }
834
835     ne = (first - entry);
836     if (ne > 0) {
837         h->indexUsed -= ne;
838         ne = last - first;
839         if (ne > 0)
840             memmove(entry, first, (ne * sizeof(*entry)));
841     }
842
843     return 0;
844 }
845
846 Header headerLoad(void * uh)
847 {
848     int32_t * ei = (int32_t *) uh;
849     int32_t il = ntohl(ei[0]);          /* index length */
850     int32_t dl = ntohl(ei[1]);          /* data length */
851     size_t pvlen = sizeof(il) + sizeof(dl) +
852                (il * sizeof(struct entryInfo_s)) + dl;
853     void * pv = uh;
854     Header h = NULL;
855     entryInfo pe;
856     unsigned char * dataStart;
857     unsigned char * dataEnd;
858     indexEntry entry; 
859     int rdlen;
860     int i;
861
862     /* Sanity checks on header intro. */
863     if (hdrchkTags(il) || hdrchkData(dl))
864         goto errxit;
865
866     ei = (int32_t *) pv;
867     pe = (entryInfo) &ei[2];
868     dataStart = (unsigned char *) (pe + il);
869     dataEnd = dataStart + dl;
870
871     h = xcalloc(1, sizeof(*h));
872     h->blob = uh;
873     h->indexAlloced = il + 1;
874     h->indexUsed = il;
875     h->index = xcalloc(h->indexAlloced, sizeof(*h->index));
876     h->flags |= HEADERFLAG_SORTED;
877     h->nrefs = 0;
878     h = headerLink(h);
879
880     entry = h->index;
881     i = 0;
882     if (!(htonl(pe->tag) < HEADER_I18NTABLE)) {
883         h->flags |= HEADERFLAG_LEGACY;
884         entry->info.type = REGION_TAG_TYPE;
885         entry->info.tag = HEADER_IMAGE;
886         entry->info.count = REGION_TAG_COUNT;
887         entry->info.offset = ((unsigned char *)pe - dataStart); /* negative offset */
888
889         entry->data = pe;
890         entry->length = pvlen - sizeof(il) - sizeof(dl);
891         rdlen = regionSwab(entry+1, il, 0, pe, dataStart, dataEnd, entry->info.offset);
892 #if 0   /* XXX don't check, the 8/98 i18n bug fails here. */
893         if (rdlen != dl)
894             goto errxit;
895 #endif
896         entry->rdlen = rdlen;
897         entry++;
898         h->indexUsed++;
899     } else {
900         int32_t rdl;
901         int32_t ril;
902
903         h->flags &= ~HEADERFLAG_LEGACY;
904
905         entry->info.type = htonl(pe->type);
906         entry->info.count = htonl(pe->count);
907
908         if (hdrchkType(entry->info.type))
909             goto errxit;
910         if (hdrchkTags(entry->info.count))
911             goto errxit;
912
913         {   int off = ntohl(pe->offset);
914
915             if (hdrchkData(off))
916                 goto errxit;
917             if (off) {
918                 size_t nb = REGION_TAG_COUNT;
919                 int32_t stei[nb];
920                 /* XXX Hmm, why the copy? */
921                 memcpy(&stei, dataStart + off, nb);
922                 rdl = -ntohl(stei[2]);  /* negative offset */
923                 ril = rdl/sizeof(*pe);
924                 if (hdrchkTags(ril) || hdrchkData(rdl))
925                     goto errxit;
926                 entry->info.tag = htonl(pe->tag);
927             } else {
928                 ril = il;
929                 rdl = (ril * sizeof(struct entryInfo_s));
930                 entry->info.tag = HEADER_IMAGE;
931             }
932         }
933         entry->info.offset = -rdl;      /* negative offset */
934
935         entry->data = pe;
936         entry->length = pvlen - sizeof(il) - sizeof(dl);
937         rdlen = regionSwab(entry+1, ril-1, 0, pe+1, dataStart, dataEnd, entry->info.offset);
938         if (rdlen < 0)
939             goto errxit;
940         entry->rdlen = rdlen;
941
942         if (ril < h->indexUsed) {
943             indexEntry newEntry = entry + ril;
944             int ne = (h->indexUsed - ril);
945             int rid = entry->info.offset+1;
946             int rc;
947
948             /* Load dribble entries from region. */
949             rc = regionSwab(newEntry, ne, 0, pe+ril, dataStart, dataEnd, rid);
950             if (rc < 0)
951                 goto errxit;
952             rdlen += rc;
953
954           { indexEntry firstEntry = newEntry;
955             int save = h->indexUsed;
956             int j;
957
958             /* Dribble entries replace duplicate region entries. */
959             h->indexUsed -= ne;
960             for (j = 0; j < ne; j++, newEntry++) {
961                 (void) headerRemoveEntry(h, newEntry->info.tag);
962                 if (newEntry->info.tag == HEADER_BASENAMES)
963                     (void) headerRemoveEntry(h, HEADER_OLDFILENAMES);
964             }
965
966             /* If any duplicate entries were replaced, move new entries down. */
967             if (h->indexUsed < (save - ne)) {
968                 memmove(h->index + h->indexUsed, firstEntry,
969                         (ne * sizeof(*entry)));
970             }
971             h->indexUsed += ne;
972           }
973         }
974     }
975
976     h->flags &= ~HEADERFLAG_SORTED;
977     headerSort(h);
978
979     return h;
980
981 errxit:
982     if (h) {
983         h->index = _free(h->index);
984         h = _free(h);
985     }
986     return h;
987 }
988
989 Header headerReload(Header h, rpmTag tag)
990 {
991     Header nh;
992     size_t length;
993     void * uh = doHeaderUnload(h, &length);
994
995     h = headerFree(h);
996     if (uh == NULL)
997         return NULL;
998     nh = headerLoad(uh);
999     if (nh == NULL) {
1000         uh = _free(uh);
1001         return NULL;
1002     }
1003     if (nh->flags & HEADERFLAG_ALLOCATED)
1004         uh = _free(uh);
1005     nh->flags |= HEADERFLAG_ALLOCATED;
1006     if (ENTRY_IS_REGION(nh->index)) {
1007         if (tag == HEADER_SIGNATURES || tag == HEADER_IMMUTABLE)
1008             nh->index[0].info.tag = tag;
1009     }
1010     return nh;
1011 }
1012
1013 Header headerCopyLoad(const void * uh)
1014 {
1015     int32_t * ei = (int32_t *) uh;
1016     int32_t il = ntohl(ei[0]);          /* index length */
1017     int32_t dl = ntohl(ei[1]);          /* data length */
1018     size_t pvlen = sizeof(il) + sizeof(dl) +
1019                         (il * sizeof(struct entryInfo_s)) + dl;
1020     void * nuh = NULL;
1021     Header h = NULL;
1022
1023     /* Sanity checks on header intro. */
1024     if (!(hdrchkTags(il) || hdrchkData(dl)) && pvlen < headerMaxbytes) {
1025         nuh = memcpy(xmalloc(pvlen), uh, pvlen);
1026         if ((h = headerLoad(nuh)) != NULL)
1027             h->flags |= HEADERFLAG_ALLOCATED;
1028     }
1029     if (h == NULL)
1030         nuh = _free(nuh);
1031     return h;
1032 }
1033
1034 /** \ingroup header
1035  * Read (and load) header from file handle.
1036  * @param fd            file handle
1037  * @param magicp        read (and verify) 8 bytes of (magic, 0)?
1038  * @return              header (or NULL on error)
1039  */
1040 Header headerRead(FD_t fd, enum hMagic magicp)
1041 {
1042     int32_t block[4];
1043     int32_t reserved;
1044     int32_t * ei = NULL;
1045     int32_t il;
1046     int32_t dl;
1047     int32_t magic;
1048     Header h = NULL;
1049     size_t len;
1050     int i;
1051
1052     memset(block, 0, sizeof(block));
1053     i = 2;
1054     if (magicp == HEADER_MAGIC_YES)
1055         i += 2;
1056
1057     /* FIX: cast? */
1058     if (timedRead(fd, (char *)block, i*sizeof(*block)) != (i * sizeof(*block)))
1059         goto exit;
1060
1061     i = 0;
1062
1063     if (magicp == HEADER_MAGIC_YES) {
1064         magic = block[i++];
1065         if (memcmp(&magic, header_magic, sizeof(magic)))
1066             goto exit;
1067         reserved = block[i++];
1068     }
1069     
1070     il = ntohl(block[i]);       i++;
1071     dl = ntohl(block[i]);       i++;
1072
1073     len = sizeof(il) + sizeof(dl) + (il * sizeof(struct entryInfo_s)) + dl;
1074
1075     /* Sanity checks on header intro. */
1076     if (hdrchkTags(il) || hdrchkData(dl) || len > headerMaxbytes)
1077         goto exit;
1078
1079     ei = xmalloc(len);
1080     ei[0] = htonl(il);
1081     ei[1] = htonl(dl);
1082     len -= sizeof(il) + sizeof(dl);
1083
1084     /* FIX: cast? */
1085     if (timedRead(fd, (char *)&ei[2], len) != len)
1086         goto exit;
1087     
1088     h = headerLoad(ei);
1089
1090 exit:
1091     if (h) {
1092         if (h->flags & HEADERFLAG_ALLOCATED)
1093             ei = _free(ei);
1094         h->flags |= HEADERFLAG_ALLOCATED;
1095     } else if (ei)
1096         ei = _free(ei);
1097         /* FIX: timedRead macro obscures annotation */
1098     return h;
1099 }
1100
1101 int headerWrite(FD_t fd, Header h, enum hMagic magicp)
1102 {
1103     ssize_t nb;
1104     size_t length;
1105     void * uh;
1106
1107     if (h == NULL)
1108         return 1;
1109     uh = doHeaderUnload(h, &length);
1110     if (uh == NULL)
1111         return 1;
1112     switch (magicp) {
1113     case HEADER_MAGIC_YES:
1114         nb = Fwrite(header_magic, sizeof(char), sizeof(header_magic), fd);
1115         if (nb != sizeof(header_magic))
1116             goto exit;
1117         break;
1118     case HEADER_MAGIC_NO:
1119         break;
1120     }
1121
1122     nb = Fwrite(uh, sizeof(char), length, fd);
1123
1124 exit:
1125     uh = _free(uh);
1126     return (nb == length ? 0 : 1);
1127 }
1128
1129 int headerIsEntry(Header h, rpmTag tag)
1130 {
1131                 /* FIX: h modified by sort. */
1132     return (findEntry(h, tag, RPM_NULL_TYPE) ? 1 : 0);
1133         
1134 }
1135
1136 /** \ingroup header
1137  * Retrieve data from header entry.
1138  * @todo Permit retrieval of regions other than HEADER_IMUTABLE.
1139  * @param entry         header entry
1140  * @param td            tag data container
1141  * @param minMem        string pointers refer to header memory?
1142  * @return              1 on success, otherwise error.
1143  */
1144 static int copyTdEntry(const indexEntry entry, rpmtd td, int minMem)
1145 {
1146     rpm_count_t count = entry->info.count;
1147     int rc = 1;         /* XXX 1 on success. */
1148
1149     assert(td != NULL);
1150     switch (entry->info.type) {
1151     case RPM_BIN_TYPE:
1152         /*
1153          * XXX This only works for
1154          * XXX  "sealed" HEADER_IMMUTABLE/HEADER_SIGNATURES/HEADER_IMAGE.
1155          * XXX This will *not* work for unsealed legacy HEADER_IMAGE (i.e.
1156          * XXX a legacy header freshly read, but not yet unloaded to the rpmdb).
1157          */
1158         if (ENTRY_IS_REGION(entry)) {
1159             int32_t * ei = ((int32_t *)entry->data) - 2;
1160             entryInfo pe = (entryInfo) (ei + 2);
1161             unsigned char * dataStart = (unsigned char *) (pe + ntohl(ei[0]));
1162             int32_t rdl = -entry->info.offset;  /* negative offset */
1163             int32_t ril = rdl/sizeof(*pe);
1164
1165             rdl = entry->rdlen;
1166             count = 2 * sizeof(*ei) + (ril * sizeof(*pe)) + rdl;
1167             if (entry->info.tag == HEADER_IMAGE) {
1168                 ril -= 1;
1169                 pe += 1;
1170             } else {
1171                 count += REGION_TAG_COUNT;
1172                 rdl += REGION_TAG_COUNT;
1173             }
1174
1175             td->data = xmalloc(count);
1176             ei = (int32_t *) td->data;
1177             ei[0] = htonl(ril);
1178             ei[1] = htonl(rdl);
1179
1180             pe = (entryInfo) memcpy(ei + 2, pe, (ril * sizeof(*pe)));
1181
1182             dataStart = (unsigned char *) memcpy(pe + ril, dataStart, rdl);
1183
1184             rc = regionSwab(NULL, ril, 0, pe, dataStart, dataStart + rdl, 0);
1185             /* XXX 1 on success. */
1186             rc = (rc < 0) ? 0 : 1;
1187         } else {
1188             count = entry->length;
1189             td->data = (!minMem
1190                 ? memcpy(xmalloc(count), entry->data, count)
1191                 : entry->data);
1192         }
1193         break;
1194     case RPM_STRING_TYPE:
1195         if (count == 1) {
1196             td->data = entry->data;
1197             break;
1198         }
1199     case RPM_STRING_ARRAY_TYPE:
1200     case RPM_I18NSTRING_TYPE:
1201     {   const char ** ptrEntry;
1202         int tableSize = count * sizeof(char *);
1203         char * t;
1204         int i;
1205
1206         if (minMem) {
1207             td->data = xmalloc(tableSize);
1208             ptrEntry = (const char **) td->data;
1209             t = entry->data;
1210         } else {
1211             t = xmalloc(tableSize + entry->length);
1212             td->data = (void *)t;
1213             ptrEntry = (const char **) td->data;
1214             t += tableSize;
1215             memcpy(t, entry->data, entry->length);
1216         }
1217         for (i = 0; i < count; i++) {
1218             *ptrEntry++ = t;
1219             t = strchr(t, 0);
1220             t++;
1221         }
1222     }   break;
1223
1224     default:
1225         td->data = entry->data;
1226         break;
1227     }
1228     td->type = entry->info.type;
1229     td->count = count;
1230
1231     td->flags = RPMTD_IMMUTABLE;
1232     if (entry->data != td->data) {
1233         td->flags |= RPMTD_ALLOCED;
1234     }
1235
1236     return rc;
1237 }
1238
1239 /** \ingroup header
1240  * Retrieve data from header entry.
1241  * Just a compat wrapper around copyTdEntry() until everything's converted
1242  * to new interface.
1243  * @param entry         header entry
1244  * @retval type         address of type (or NULL)
1245  * @retval p            address of data (or NULL)
1246  * @retval c            address of count (or NULL)
1247  * @param minMem        string pointers refer to header memory?
1248  * @return              1 on success, otherwise error.
1249  */
1250 static int copyEntry(const indexEntry entry,
1251                 rpmTagType * type,
1252                 rpm_data_t * p,
1253                 rpm_count_t * c,
1254                 int minMem)
1255 {
1256     struct rpmtd_s td;
1257     int rc;
1258
1259     rpmtdReset(&td);
1260     rc = copyTdEntry(entry, &td, minMem);
1261     TDWRAP();
1262     return rc;
1263 }
1264
1265 /**
1266  * Does locale match entry in header i18n table?
1267  * 
1268  * \verbatim
1269  * The range [l,le) contains the next locale to match:
1270  *    ll[_CC][.EEEEE][@dddd]
1271  * where
1272  *    ll        ISO language code (in lowercase).
1273  *    CC        (optional) ISO coutnry code (in uppercase).
1274  *    EEEEE     (optional) encoding (not really standardized).
1275  *    dddd      (optional) dialect.
1276  * \endverbatim
1277  *
1278  * @param td            header i18n table data, NUL terminated
1279  * @param l             start of locale to match
1280  * @param le            end of locale to match
1281  * @return              1 on good match, 2 on weak match, 0 on no match
1282  */
1283 static int headerMatchLocale(const char *td, const char *l, const char *le)
1284 {
1285     const char *fe;
1286
1287     /* First try a complete match. */
1288     if (strlen(td) == (le-l) && !strncmp(td, l, (le - l)))
1289         return 1;
1290
1291     /* Next, try stripping optional dialect and matching.  */
1292     for (fe = l; fe < le && *fe != '@'; fe++)
1293         {};
1294     if (fe < le && !strncmp(td, l, (fe - l)))
1295         return 1;
1296
1297     /* Next, try stripping optional codeset and matching.  */
1298     for (fe = l; fe < le && *fe != '.'; fe++)
1299         {};
1300     if (fe < le && !strncmp(td, l, (fe - l)))
1301         return 1;
1302
1303     /* Finally, try stripping optional country code and matching. */
1304     for (fe = l; fe < le && *fe != '_'; fe++)
1305         {};
1306     if (fe < le && !strncmp(td, l, (fe - l)))
1307         return 2;
1308
1309     return 0;
1310 }
1311
1312 /**
1313  * Return i18n string from header that matches locale.
1314  * @param h             header
1315  * @param entry         i18n string data
1316  * @retval td           tag data container
1317  * @return              1 always
1318  */
1319 static int copyI18NEntry(Header h, indexEntry entry, rpmtd td)
1320 {
1321     const char *lang, *l, *le;
1322     indexEntry table;
1323
1324     td->type = RPM_STRING_TYPE;
1325     td->count = 1;
1326     /* if no match, just return the first string */
1327     td->data = entry->data;
1328
1329     /* XXX Drepper sez' this is the order. */
1330     if ((lang = getenv("LANGUAGE")) == NULL &&
1331         (lang = getenv("LC_ALL")) == NULL &&
1332         (lang = getenv("LC_MESSAGES")) == NULL &&
1333         (lang = getenv("LANG")) == NULL)
1334             goto exit;
1335     
1336     if ((table = findEntry(h, HEADER_I18NTABLE, RPM_STRING_ARRAY_TYPE)) == NULL)
1337         goto exit;
1338
1339     for (l = lang; *l != '\0'; l = le) {
1340         const char *t;
1341         char *ed, *ed_weak = NULL;
1342         int langNum;
1343
1344         while (*l && *l == ':')                 /* skip leading colons */
1345             l++;
1346         if (*l == '\0')
1347             break;
1348         for (le = l; *le && *le != ':'; le++)   /* find end of this locale */
1349             {};
1350
1351         /* For each entry in the header ... */
1352         for (langNum = 0, t = table->data, ed = entry->data;
1353              langNum < entry->info.count;
1354              langNum++, t += strlen(t) + 1, ed += strlen(ed) + 1) {
1355
1356             int match = headerMatchLocale(t, l, le);
1357             if (match == 1) {
1358                 td->data = ed;
1359                 goto exit;
1360             } else if (match == 2) { 
1361                 ed_weak = ed;
1362             }
1363         }
1364         if (ed_weak) {
1365             td->data = ed_weak;
1366             goto exit;
1367         }
1368     }
1369
1370 exit:
1371     return 1;
1372 }
1373
1374 /**
1375  * Retrieve tag data from header.
1376  * @param h             header
1377  * @param tag           tag to retrieve
1378  * @retval td           tag data container
1379  * @param flags         flags to control retrieval
1380  * @return              1 on success, 0 on not found
1381  */
1382 static int intGetTdEntry(Header h, rpmTag tag, rpmtd td, headerGetFlags flags)
1383 {
1384     indexEntry entry;
1385     int rc;
1386
1387     assert(td != NULL);
1388     /* ensure clean state */
1389     rpmtdReset(td);
1390     td->tag = tag;
1391     /* First find the tag */
1392     /* FIX: h modified by sort. */
1393     entry = findEntry(h, tag, RPM_NULL_TYPE);
1394     if (entry == NULL) {
1395         /* Td is zeroed above, just return... */
1396         return 0;
1397     }
1398
1399     if (flags & HEADERGET_RAW) {
1400         rc = copyTdEntry(entry, td, (flags & HEADERGET_MINMEM));
1401     } else {
1402         switch (entry->info.type) {
1403         case RPM_I18NSTRING_TYPE:
1404             rc = copyI18NEntry(h, entry, td);
1405             break;
1406         default:
1407             rc = copyTdEntry(entry, td, (flags & HEADERGET_MINMEM));
1408             break;
1409         }
1410     }
1411
1412     /* XXX 1 on success */
1413     return ((rc == 1) ? 1 : 0);
1414 }
1415
1416 void * headerFreeTag(Header h, rpm_data_t data, rpmTagType type)
1417 {
1418     if (data) {
1419         if (type == RPM_FORCEFREE_TYPE ||
1420             type == RPM_STRING_ARRAY_TYPE ||
1421             type == RPM_I18NSTRING_TYPE ||
1422             type == RPM_BIN_TYPE)
1423                 data = _free(data);
1424     }
1425     return NULL;
1426 }
1427
1428 /* 
1429  * XXX temporary kludgery until tag extensions have been converted to 
1430  * take rpmtd as argument
1431  */
1432 static int intGetTagExt(Header h, rpmTag tag, rpmtd td, headerTagTagFunction tagfunc)
1433 {
1434     int rc;
1435     rpmtdReset(td);
1436     rc = tagfunc(h, td);
1437     td->tag = tag;
1438     /* XXX extension returns are reversed, ugh */
1439     return rc ? 0 : 1; 
1440 }
1441
1442 int headerGet(Header h, rpmTag tag, rpmtd td, headerGetFlags flags)
1443 {
1444     int rc;
1445     headerTagTagFunction tagfunc = NULL;
1446
1447     assert(td != NULL);
1448
1449     if (flags & HEADERGET_EXT) {
1450         tagfunc = rpmHeaderTagFunc(tag);
1451     }
1452         
1453     if (tagfunc) {
1454         rc = intGetTagExt(h, tag, td, tagfunc);
1455     } else {
1456         rc = intGetTdEntry(h, tag, td, flags);
1457     }
1458
1459     assert(tag == td->tag);
1460     return rc;
1461 }
1462
1463 static int headerGetWrap(Header h, rpmTag tag,
1464                 rpmTagType * type,
1465                 rpm_data_t * p,
1466                 rpm_count_t * c,
1467                 headerGetFlags flags)
1468 {
1469     struct rpmtd_s td;
1470     int rc;
1471
1472     rc = headerGet(h, tag, &td, flags);
1473     TDWRAP();
1474     return rc;
1475 }
1476
1477 int headerGetEntry(Header h, rpmTag tag,
1478                         rpmTagType * type,
1479                         rpm_data_t * p,
1480                         rpm_count_t * c)
1481 {
1482     return headerGetWrap(h, tag, type, p, c, HEADERGET_DEFAULT);
1483 }
1484
1485 int headerGetEntryMinMemory(Header h, rpmTag tag,
1486                         rpmTagType * type,
1487                         rpm_data_t * p,
1488                         rpm_count_t * c)
1489 {
1490     return headerGetWrap(h, tag, type, (rpm_data_t) p, c, HEADERGET_MINMEM);
1491 }
1492
1493 int headerGetRawEntry(Header h, rpmTag tag, rpmTagType * type, rpm_data_t * p,
1494                 rpm_count_t * c)
1495 {
1496     indexEntry entry;
1497     int rc;
1498
1499     if (p == NULL) return headerIsEntry(h, tag);
1500
1501     /* First find the tag */
1502                 /* FIX: h modified by sort. */
1503     entry = findEntry(h, tag, RPM_NULL_TYPE);
1504     if (!entry) {
1505         if (p) *p = NULL;
1506         if (c) *c = 0;
1507         return 0;
1508     }
1509
1510     rc = copyEntry(entry, type, p, c, 0);
1511
1512     /* XXX 1 on success */
1513     return ((rc == 1) ? 1 : 0);
1514 }
1515
1516 /**
1517  */
1518 static void copyData(rpmTagType type, rpm_data_t dstPtr, 
1519                 rpm_constdata_t srcPtr, rpm_count_t cnt, int dataLength)
1520 {
1521     switch (type) {
1522     case RPM_STRING_ARRAY_TYPE:
1523     case RPM_I18NSTRING_TYPE:
1524     {   const char ** av = (const char **) srcPtr;
1525         char * t = dstPtr;
1526
1527         while (cnt-- > 0 && dataLength > 0) {
1528             const char * s;
1529             if ((s = *av++) == NULL)
1530                 continue;
1531             do {
1532                 *t++ = *s++;
1533             } while (s[-1] && --dataLength > 0);
1534         }
1535     }   break;
1536
1537     default:
1538         memmove(dstPtr, srcPtr, dataLength);
1539         break;
1540     }
1541 }
1542
1543 /**
1544  * Return (malloc'ed) copy of entry data.
1545  * @param type          entry data type
1546  * @param p             entry data
1547  * @param c             entry item count
1548  * @retval lengthPtr    no. bytes in returned data
1549  * @return              (malloc'ed) copy of entry data, NULL on error
1550  */
1551 static void *
1552 grabData(rpmTagType type, rpm_constdata_t p, rpm_count_t c, int * lengthPtr)
1553 {
1554     rpm_data_t data = NULL;
1555     int length;
1556
1557     length = dataLength(type, p, c, 0, NULL);
1558     if (length > 0) {
1559         data = xmalloc(length);
1560         copyData(type, data, p, c, length);
1561     }
1562
1563     if (lengthPtr)
1564         *lengthPtr = length;
1565     return data;
1566 }
1567
1568 int headerAddEntry(Header h, rpmTag tag, rpmTagType type, 
1569                         rpm_constdata_t p, rpm_count_t c)
1570 {
1571     indexEntry entry;
1572     rpm_data_t data;
1573     int length;
1574
1575     /* Count must always be >= 1 for headerAddEntry. */
1576     if (c <= 0)
1577         return 0;
1578
1579     if (hdrchkType(type))
1580         return 0;
1581     if (hdrchkData(c))
1582         return 0;
1583
1584     length = 0;
1585     data = grabData(type, p, c, &length);
1586     if (data == NULL || length <= 0)
1587         return 0;
1588
1589     /* Allocate more index space if necessary */
1590     if (h->indexUsed == h->indexAlloced) {
1591         h->indexAlloced += INDEX_MALLOC_SIZE;
1592         h->index = xrealloc(h->index, h->indexAlloced * sizeof(*h->index));
1593     }
1594
1595     /* Fill in the index */
1596     entry = h->index + h->indexUsed;
1597     entry->info.tag = tag;
1598     entry->info.type = type;
1599     entry->info.count = c;
1600     entry->info.offset = 0;
1601     entry->data = data;
1602     entry->length = length;
1603
1604     if (h->indexUsed > 0 && tag < h->index[h->indexUsed-1].info.tag)
1605         h->flags &= ~HEADERFLAG_SORTED;
1606     h->indexUsed++;
1607
1608     return 1;
1609 }
1610
1611 int headerAppendEntry(Header h, rpmTag tag, rpmTagType type,
1612                 rpm_constdata_t p, rpm_count_t c)
1613 {
1614     indexEntry entry;
1615     int length;
1616
1617     if (type == RPM_STRING_TYPE || type == RPM_I18NSTRING_TYPE) {
1618         /* we can't do this */
1619         return 0;
1620     }
1621
1622     /* Find the tag entry in the header. */
1623     entry = findEntry(h, tag, type);
1624     if (!entry)
1625         return 0;
1626
1627     length = dataLength(type, p, c, 0, NULL);
1628     if (length < 0)
1629         return 0;
1630
1631     if (ENTRY_IN_REGION(entry)) {
1632         char * t = xmalloc(entry->length + length);
1633         memcpy(t, entry->data, entry->length);
1634         entry->data = t;
1635         entry->info.offset = 0;
1636     } else
1637         entry->data = xrealloc(entry->data, entry->length + length);
1638
1639     copyData(type, ((char *) entry->data) + entry->length, p, c, length);
1640
1641     entry->length += length;
1642
1643     entry->info.count += c;
1644
1645     return 1;
1646 }
1647
1648 int headerAddOrAppendEntry(Header h, rpmTag tag, rpmTagType type,
1649                 rpm_constdata_t p, rpm_count_t c)
1650 {
1651     return (findEntry(h, tag, type)
1652         ? headerAppendEntry(h, tag, type, p, c)
1653         : headerAddEntry(h, tag, type, p, c));
1654 }
1655
1656 int headerPut(Header h, rpmtd td, headerPutFlags flags)
1657 {
1658     int rc;
1659     
1660     assert(td != NULL);
1661     if (flags & HEADERPUT_APPEND) {
1662         rc = headerAddOrAppendEntry(h, td->tag, td->type, td->data, td->count);
1663     } else {
1664         rc = headerAddEntry(h, td->tag, td->type, td->data, td->count);
1665     }
1666     return rc;
1667 }
1668
1669 int headerAddI18NString(Header h, rpmTag tag, const char * string,
1670                 const char * lang)
1671 {
1672     indexEntry table, entry;
1673     const char ** strArray;
1674     int length;
1675     int ghosts;
1676     rpm_count_t i, langNum;
1677     char * buf;
1678
1679     table = findEntry(h, HEADER_I18NTABLE, RPM_STRING_ARRAY_TYPE);
1680     entry = findEntry(h, tag, RPM_I18NSTRING_TYPE);
1681
1682     if (!table && entry)
1683         return 0;               /* this shouldn't ever happen!! */
1684
1685     if (!table && !entry) {
1686         const char * charArray[2];
1687         rpm_count_t count = 0;
1688         if (!lang || (lang[0] == 'C' && lang[1] == '\0')) {
1689             charArray[count++] = "C";
1690         } else {
1691             charArray[count++] = "C";
1692             charArray[count++] = lang;
1693         }
1694         if (!headerAddEntry(h, HEADER_I18NTABLE, RPM_STRING_ARRAY_TYPE, 
1695                         &charArray, count))
1696             return 0;
1697         table = findEntry(h, HEADER_I18NTABLE, RPM_STRING_ARRAY_TYPE);
1698     }
1699
1700     if (!table)
1701         return 0;
1702     if (!lang) lang = "C";
1703
1704     {   const char * l = table->data;
1705         for (langNum = 0; langNum < table->info.count; langNum++) {
1706             if (!strcmp(l, lang)) break;
1707             l += strlen(l) + 1;
1708         }
1709     }
1710
1711     if (langNum >= table->info.count) {
1712         length = strlen(lang) + 1;
1713         if (ENTRY_IN_REGION(table)) {
1714             char * t = xmalloc(table->length + length);
1715             memcpy(t, table->data, table->length);
1716             table->data = t;
1717             table->info.offset = 0;
1718         } else
1719             table->data = xrealloc(table->data, table->length + length);
1720         memmove(((char *)table->data) + table->length, lang, length);
1721         table->length += length;
1722         table->info.count++;
1723     }
1724
1725     if (!entry) {
1726         int rc;
1727         strArray = xmalloc(sizeof(*strArray) * (langNum + 1));
1728         for (i = 0; i < langNum; i++)
1729             strArray[i] = "";
1730         strArray[langNum] = string;
1731         rc = headerAddEntry(h, tag, RPM_I18NSTRING_TYPE, strArray, langNum + 1);
1732         free(strArray);
1733         return rc;
1734     } else if (langNum >= entry->info.count) {
1735         ghosts = langNum - entry->info.count;
1736         
1737         length = strlen(string) + 1 + ghosts;
1738         if (ENTRY_IN_REGION(entry)) {
1739             char * t = xmalloc(entry->length + length);
1740             memcpy(t, entry->data, entry->length);
1741             entry->data = t;
1742             entry->info.offset = 0;
1743         } else
1744             entry->data = xrealloc(entry->data, entry->length + length);
1745
1746         memset(((char *)entry->data) + entry->length, '\0', ghosts);
1747         memmove(((char *)entry->data) + entry->length + ghosts, string, strlen(string)+1);
1748
1749         entry->length += length;
1750         entry->info.count = langNum + 1;
1751     } else {
1752         char *b, *be, *e, *ee, *t;
1753         size_t bn, sn, en;
1754
1755         /* Set beginning/end pointers to previous data */
1756         b = be = e = ee = entry->data;
1757         for (i = 0; i < table->info.count; i++) {
1758             if (i == langNum)
1759                 be = ee;
1760             ee += strlen(ee) + 1;
1761             if (i == langNum)
1762                 e  = ee;
1763         }
1764
1765         /* Get storage for new buffer */
1766         bn = (be-b);
1767         sn = strlen(string) + 1;
1768         en = (ee-e);
1769         length = bn + sn + en;
1770         t = buf = xmalloc(length);
1771
1772         /* Copy values into new storage */
1773         memcpy(t, b, bn);
1774         t += bn;
1775         memcpy(t, string, sn);
1776         t += sn;
1777         memcpy(t, e, en);
1778         t += en;
1779
1780         /* Replace i18N string array */
1781         entry->length -= strlen(be) + 1;
1782         entry->length += sn;
1783         
1784         if (ENTRY_IN_REGION(entry)) {
1785             entry->info.offset = 0;
1786         } else
1787             entry->data = _free(entry->data);
1788         entry->data = buf;
1789     }
1790
1791     return 0;
1792 }
1793
1794 int headerModifyEntry(Header h, rpmTag tag, rpmTagType type,
1795                         rpm_constdata_t p, rpm_count_t c)
1796 {
1797     indexEntry entry;
1798     rpm_data_t oldData;
1799     rpm_data_t data;
1800     int length;
1801
1802     /* First find the tag */
1803     entry = findEntry(h, tag, type);
1804     if (!entry)
1805         return 0;
1806
1807     length = 0;
1808     data = grabData(type, p, c, &length);
1809     if (data == NULL || length <= 0)
1810         return 0;
1811
1812     /* make sure entry points to the first occurence of this tag */
1813     while (entry > h->index && (entry - 1)->info.tag == tag)  
1814         entry--;
1815
1816     /* free after we've grabbed the new data in case the two are intertwined;
1817        that's a bad idea but at least we won't break */
1818     oldData = entry->data;
1819
1820     entry->info.count = c;
1821     entry->info.type = type;
1822     entry->data = data;
1823     entry->length = length;
1824
1825     if (ENTRY_IN_REGION(entry)) {
1826         entry->info.offset = 0;
1827     } else
1828         oldData = _free(oldData);
1829
1830     return 1;
1831 }
1832
1833 /**
1834  * Header tag iterator data structure.
1835  */
1836 struct headerIterator_s {
1837     Header h;           /*!< Header being iterated. */
1838     int next_index;     /*!< Next tag index. */
1839 };
1840
1841 HeaderIterator headerFreeIterator(HeaderIterator hi)
1842 {
1843     if (hi != NULL) {
1844         hi->h = headerFree(hi->h);
1845         hi = _free(hi);
1846     }
1847     return hi;
1848 }
1849
1850 HeaderIterator headerInitIterator(Header h)
1851 {
1852     HeaderIterator hi = xmalloc(sizeof(*hi));
1853
1854     headerSort(h);
1855
1856     hi->h = headerLink(h);
1857     hi->next_index = 0;
1858     return hi;
1859 }
1860
1861 int headerNext(HeaderIterator hi, rpmtd td)
1862 {
1863     Header h = hi->h;
1864     int slot = hi->next_index;
1865     indexEntry entry = NULL;
1866     int rc;
1867
1868     assert(td != NULL);
1869     rpmtdReset(td);
1870
1871     for (slot = hi->next_index; slot < h->indexUsed; slot++) {
1872         entry = h->index + slot;
1873         if (!ENTRY_IS_REGION(entry))
1874             break;
1875     }
1876     hi->next_index = slot;
1877     if (entry == NULL || slot >= h->indexUsed)
1878         return 0;
1879
1880         /* LCL: no clue */
1881     hi->next_index++;
1882
1883     td->tag = entry->info.tag;
1884
1885     rc = copyTdEntry(entry, td, 0);
1886
1887     /* XXX 1 on success */
1888     return ((rc == 1) ? 1 : 0);
1889 }
1890
1891 int headerNextIterator(HeaderIterator hi,
1892                 rpmTag * tag,
1893                 rpmTagType * type,
1894                 rpm_data_t * p,
1895                 rpm_count_t * c)
1896 {
1897     struct rpmtd_s td;
1898     int rc;
1899
1900     rc = headerNext(hi, &td);
1901     if (tag)
1902         *tag = td.tag;
1903     TDWRAP();
1904     return rc;
1905 }
1906
1907 /** \ingroup header
1908  * Duplicate a header.
1909  * @param h             header
1910  * @return              new header instance
1911  */
1912 Header headerCopy(Header h)
1913 {
1914     Header nh = headerNew();
1915     HeaderIterator hi;
1916     struct rpmtd_s td;
1917    
1918     hi = headerInitIterator(h);
1919     while (headerNext(hi, &td)) {
1920         if (rpmtdCount(&td) > 0) {
1921             (void) headerPut(nh, &td, HEADERPUT_DEFAULT);
1922         }
1923         rpmtdFreeData(&td);
1924     }
1925     hi = headerFreeIterator(hi);
1926
1927     return headerReload(nh, HEADER_IMAGE);
1928 }
1929
1930 void headerCopyTags(Header headerFrom, Header headerTo, 
1931                     const rpmTag * tagstocopy)
1932 {
1933     const rpmTag * p;
1934     struct rpmtd_s td;
1935
1936     if (headerFrom == headerTo)
1937         return;
1938
1939     for (p = tagstocopy; *p != 0; p++) {
1940         if (headerIsEntry(headerTo, *p))
1941             continue;
1942         if (!headerGet(headerFrom, *p, &td, HEADERGET_MINMEM))
1943             continue;
1944         (void) headerPut(headerTo, &td, HEADERPUT_DEFAULT);
1945         rpmtdFreeData(&td);
1946     }
1947 }
1948
1949 void * headerFreeData(rpm_data_t data, rpmTagType type)
1950 {
1951     if (data) {
1952         if (type == RPM_FORCEFREE_TYPE ||
1953             type == RPM_STRING_ARRAY_TYPE ||
1954             type == RPM_I18NSTRING_TYPE ||
1955             type == RPM_BIN_TYPE)
1956                 free(data); /* XXX _free() */
1957     }
1958     return NULL;
1959 }