Merge pull request #41 from dmacvicar/master
[platform/upstream/libsolv.git] / ext / repo_rpmdb.c
1 /*
2  * Copyright (c) 2007-2012, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /*
9  * repo_rpmdb
10  *
11  * convert rpm db to repo
12  *
13  */
14
15 #include <sys/types.h>
16 #include <sys/stat.h>
17 #include <limits.h>
18 #include <fcntl.h>
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <unistd.h>
23 #include <assert.h>
24 #include <stdint.h>
25 #include <errno.h>
26
27 #include <rpm/rpmio.h>
28 #include <rpm/rpmpgp.h>
29 #ifndef RPM5
30 #include <rpm/header.h>
31 #endif
32 #include <rpm/rpmdb.h>
33
34 #ifndef DB_CREATE
35 # if defined(SUSE) || defined(HAVE_RPM_DB_H)
36 #  include <rpm/db.h>
37 # else
38 #  include <db.h>
39 # endif
40 #endif
41
42 #include "pool.h"
43 #include "repo.h"
44 #include "hash.h"
45 #include "util.h"
46 #include "queue.h"
47 #include "chksum.h"
48 #include "repo_rpmdb.h"
49 #include "repo_solv.h"
50
51 /* 3: added triggers */
52 /* 4: fixed triggers */
53 /* 5: fixed checksum copying */
54 #define RPMDB_COOKIE_VERSION 5
55
56 #define TAG_NAME                1000
57 #define TAG_VERSION             1001
58 #define TAG_RELEASE             1002
59 #define TAG_EPOCH               1003
60 #define TAG_SUMMARY             1004
61 #define TAG_DESCRIPTION         1005
62 #define TAG_BUILDTIME           1006
63 #define TAG_BUILDHOST           1007
64 #define TAG_INSTALLTIME         1008
65 #define TAG_SIZE                1009
66 #define TAG_DISTRIBUTION        1010
67 #define TAG_VENDOR              1011
68 #define TAG_LICENSE             1014
69 #define TAG_PACKAGER            1015
70 #define TAG_GROUP               1016
71 #define TAG_URL                 1020
72 #define TAG_ARCH                1022
73 #define TAG_FILESIZES           1028
74 #define TAG_FILEMODES           1030
75 #define TAG_FILEMD5S            1035
76 #define TAG_FILELINKTOS         1036
77 #define TAG_FILEFLAGS           1037
78 #define TAG_SOURCERPM           1044
79 #define TAG_PROVIDENAME         1047
80 #define TAG_REQUIREFLAGS        1048
81 #define TAG_REQUIRENAME         1049
82 #define TAG_REQUIREVERSION      1050
83 #define TAG_NOSOURCE            1051
84 #define TAG_NOPATCH             1052
85 #define TAG_CONFLICTFLAGS       1053
86 #define TAG_CONFLICTNAME        1054
87 #define TAG_CONFLICTVERSION     1055
88 #define TAG_TRIGGERNAME         1066
89 #define TAG_TRIGGERVERSION      1067
90 #define TAG_TRIGGERFLAGS        1068
91 #define TAG_CHANGELOGTIME       1080
92 #define TAG_CHANGELOGNAME       1081
93 #define TAG_CHANGELOGTEXT       1082
94 #define TAG_OBSOLETENAME        1090
95 #define TAG_FILEDEVICES         1095
96 #define TAG_FILEINODES          1096
97 #define TAG_SOURCEPACKAGE       1106
98 #define TAG_PROVIDEFLAGS        1112
99 #define TAG_PROVIDEVERSION      1113
100 #define TAG_OBSOLETEFLAGS       1114
101 #define TAG_OBSOLETEVERSION     1115
102 #define TAG_DIRINDEXES          1116
103 #define TAG_BASENAMES           1117
104 #define TAG_DIRNAMES            1118
105 #define TAG_PAYLOADFORMAT       1124
106 #define TAG_PATCHESNAME         1133
107 #define TAG_FILECOLORS          1140
108 #define TAG_SUGGESTSNAME        1156
109 #define TAG_SUGGESTSVERSION     1157
110 #define TAG_SUGGESTSFLAGS       1158
111 #define TAG_ENHANCESNAME        1159
112 #define TAG_ENHANCESVERSION     1160
113 #define TAG_ENHANCESFLAGS       1161
114
115 /* rpm5 tags */
116 #define TAG_DISTEPOCH           1218
117
118 /* rpm4 tags */
119 #define TAG_LONGFILESIZES       5008
120 #define TAG_LONGSIZE            5009
121
122 /* signature tags */
123 #define TAG_SIGBASE             256
124 #define TAG_SIGMD5              (TAG_SIGBASE + 5)
125 #define TAG_SHA1HEADER          (TAG_SIGBASE + 13)
126
127 #define SIGTAG_SIZE             1000
128 #define SIGTAG_PGP              1002    /* RSA signature */
129 #define SIGTAG_MD5              1004    /* header+payload md5 checksum */
130 #define SIGTAG_GPG              1005    /* DSA signature */
131
132 #define DEP_LESS                (1 << 1)
133 #define DEP_GREATER             (1 << 2)
134 #define DEP_EQUAL               (1 << 3)
135 #define DEP_STRONG              (1 << 27)
136 #define DEP_PRE_IN              ((1 << 6) | (1 << 9) | (1 << 10))
137 #define DEP_PRE_UN              ((1 << 6) | (1 << 11) | (1 << 12))
138
139 #define FILEFLAG_GHOST          (1 <<  6)
140
141
142 #ifdef RPM5
143 # define RPM_INDEX_SIZE 4
144 #else
145 # define RPM_INDEX_SIZE 8
146 #endif
147
148
149 typedef struct rpmhead {
150   int cnt;
151   int dcnt;
152   unsigned char *dp;
153   int forcebinary;              /* sigh, see rh#478907 */
154   unsigned char data[1];
155 } RpmHead;
156
157
158 static inline unsigned char *
159 headfindtag(RpmHead *h, int tag)
160 {
161   unsigned int i;
162   unsigned char *d, taga[4];
163   d = h->dp - 16;
164   taga[0] = tag >> 24;
165   taga[1] = tag >> 16;
166   taga[2] = tag >> 8;
167   taga[3] = tag;
168   for (i = 0; i < h->cnt; i++, d -= 16)
169     if (d[3] == taga[3] && d[2] == taga[2] && d[1] == taga[1] && d[0] == taga[0])
170       return d;
171   return 0;
172 }
173
174 static int
175 headexists(RpmHead *h, int tag)
176 {
177   return headfindtag(h, tag) ? 1 : 0;
178 }
179
180 static unsigned int *
181 headint32array(RpmHead *h, int tag, int *cnt)
182 {
183   unsigned int i, o, *r;
184   unsigned char *d = headfindtag(h, tag);
185
186   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || d[7] != 4)
187     return 0;
188   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
189   i = d[12] << 24 | d[13] << 16 | d[14] << 8 | d[15];
190   if (o + 4 * i > h->dcnt)
191     return 0;
192   d = h->dp + o;
193   r = solv_calloc(i ? i : 1, sizeof(unsigned int));
194   if (cnt)
195     *cnt = i;
196   for (o = 0; o < i; o++, d += 4)
197     r[o] = d[0] << 24 | d[1] << 16 | d[2] << 8 | d[3];
198   return r;
199 }
200
201 /* returns the first entry of an integer array */
202 static unsigned int
203 headint32(RpmHead *h, int tag)
204 {
205   unsigned int i, o;
206   unsigned char *d = headfindtag(h, tag);
207
208   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || d[7] != 4)
209     return 0;
210   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
211   i = d[12] << 24 | d[13] << 16 | d[14] << 8 | d[15];
212   if (i == 0 || o + 4 * i > h->dcnt)
213     return 0;
214   d = h->dp + o;
215   return d[0] << 24 | d[1] << 16 | d[2] << 8 | d[3];
216 }
217
218 static unsigned long long *
219 headint64array(RpmHead *h, int tag, int *cnt)
220 {
221   unsigned int i, o;
222   unsigned long long *r;
223   unsigned char *d = headfindtag(h, tag);
224
225   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || d[7] != 5)
226     return 0;
227   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
228   i = d[12] << 24 | d[13] << 16 | d[14] << 8 | d[15];
229   if (o + 8 * i > h->dcnt)
230     return 0;
231   d = h->dp + o;
232   r = solv_calloc(i ? i : 1, sizeof(unsigned long long));
233   if (cnt)
234     *cnt = i;
235   for (o = 0; o < i; o++, d += 8)
236     {
237       unsigned int x = d[0] << 24 | d[1] << 16 | d[2] << 8 | d[3];
238       r[o] = (unsigned long long)x << 32 | (d[4] << 24 | d[5] << 16 | d[6] << 8 | d[7]);
239     }
240   return r;
241 }
242
243 /* returns the first entry of an 64bit integer array */
244 static unsigned long long
245 headint64(RpmHead *h, int tag)
246 {
247   unsigned int i, o;
248   unsigned char *d = headfindtag(h, tag);
249   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || d[7] != 5)
250     return 0;
251   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
252   i = d[12] << 24 | d[13] << 16 | d[14] << 8 | d[15];
253   if (i == 0 || o + 8 * i > h->dcnt)
254     return 0;
255   d = h->dp + o;
256   i = d[0] << 24 | d[1] << 16 | d[2] << 8 | d[3];
257   return (unsigned long long)i << 32 | (d[4] << 24 | d[5] << 16 | d[6] << 8 | d[7]);
258 }
259
260 static unsigned int *
261 headint16array(RpmHead *h, int tag, int *cnt)
262 {
263   unsigned int i, o, *r;
264   unsigned char *d = headfindtag(h, tag);
265
266   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || d[7] != 3)
267     return 0;
268   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
269   i = d[12] << 24 | d[13] << 16 | d[14] << 8 | d[15];
270   if (o + 4 * i > h->dcnt)
271     return 0;
272   d = h->dp + o;
273   r = solv_calloc(i ? i : 1, sizeof(unsigned int));
274   if (cnt)
275     *cnt = i;
276   for (o = 0; o < i; o++, d += 2)
277     r[o] = d[0] << 8 | d[1];
278   return r;
279 }
280
281 static char *
282 headstring(RpmHead *h, int tag)
283 {
284   unsigned int o;
285   unsigned char *d = headfindtag(h, tag);
286   /* 6: STRING, 9: I18NSTRING */
287   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || (d[7] != 6 && d[7] != 9))
288     return 0;
289   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
290   if (o >= h->dcnt)
291     return 0;
292   return (char *)h->dp + o;
293 }
294
295 static char **
296 headstringarray(RpmHead *h, int tag, int *cnt)
297 {
298   unsigned int i, o;
299   unsigned char *d = headfindtag(h, tag);
300   char **r;
301
302   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || d[7] != 8)
303     return 0;
304   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
305   i = d[12] << 24 | d[13] << 16 | d[14] << 8 | d[15];
306   r = solv_calloc(i ? i : 1, sizeof(char *));
307   if (cnt)
308     *cnt = i;
309   d = h->dp + o;
310   for (o = 0; o < i; o++)
311     {
312       r[o] = (char *)d;
313       if (o + 1 < i)
314         d += strlen((char *)d) + 1;
315       if (d >= h->dp + h->dcnt)
316         {
317           solv_free(r);
318           return 0;
319         }
320     }
321   return r;
322 }
323
324 static unsigned char *
325 headbinary(RpmHead *h, int tag, unsigned int *sizep)
326 {
327   unsigned int i, o;
328   unsigned char *d = headfindtag(h, tag);
329   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || d[7] != 7)
330     return 0;
331   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
332   i = d[12] << 24 | d[13] << 16 | d[14] << 8 | d[15];
333   if (o > h->dcnt || o + i < o || o + i > h->dcnt)
334     return 0;
335   if (sizep)
336     *sizep = i;
337   return h->dp + o;
338 }
339
340 static char *headtoevr(RpmHead *h)
341 {
342   unsigned int epoch;
343   char *version, *v;
344   char *release;
345   char *evr;
346   char *distepoch;
347
348   version  = headstring(h, TAG_VERSION);
349   release  = headstring(h, TAG_RELEASE);
350   epoch = headint32(h, TAG_EPOCH);
351   if (!version || !release)
352     {
353       fprintf(stderr, "headtoevr: bad rpm header\n");
354       return 0;
355     }
356   for (v = version; *v >= '0' && *v <= '9'; v++)
357     ;
358   if (epoch || (v != version && *v == ':'))
359     {
360       char epochbuf[11];        /* 32bit decimal will fit in */
361       sprintf(epochbuf, "%u", epoch);
362       evr = solv_malloc(strlen(epochbuf) + 1 + strlen(version) + 1 + strlen(release) + 1);
363       sprintf(evr, "%s:%s-%s", epochbuf, version, release);
364     }
365   else
366     {
367       evr = solv_malloc(strlen(version) + 1 + strlen(release) + 1);
368       sprintf(evr, "%s-%s", version, release);
369     }
370   distepoch = headstring(h, TAG_DISTEPOCH);
371   if (distepoch && *distepoch)
372     {
373       int l = strlen(evr);
374       evr = solv_realloc(evr, l + strlen(distepoch) + 2);
375       evr[l++] = ':';
376       strcpy(evr + l, distepoch);
377     }
378   return evr;
379 }
380
381
382 static void
383 setutf8string(Repodata *repodata, Id handle, Id tag, const char *str)
384 {
385   if (str[solv_validutf8(str)])
386     {
387       char *ustr = solv_latin1toutf8(str);      /* not utf8, assume latin1 */
388       repodata_set_str(repodata, handle, tag, ustr);
389       solv_free(ustr);
390     }
391   else
392     repodata_set_str(repodata, handle, tag, str);
393 }
394
395
396 #define MAKEDEPS_FILTER_WEAK    (1 << 0)
397 #define MAKEDEPS_FILTER_STRONG  (1 << 1)
398 #define MAKEDEPS_NO_RPMLIB      (1 << 2)
399
400 /*
401  * strong: 0: ignore strongness
402  *         1: filter to strong
403  *         2: filter to weak
404  */
405 static unsigned int
406 makedeps(Pool *pool, Repo *repo, RpmHead *rpmhead, int tagn, int tagv, int tagf, int flags)
407 {
408   char **n, **v;
409   unsigned int *f;
410   int i, cc, nc, vc, fc;
411   int haspre, premask;
412   unsigned int olddeps;
413   Id *ida;
414   int strong;
415
416   strong = flags & (MAKEDEPS_FILTER_STRONG|MAKEDEPS_FILTER_WEAK);
417   n = headstringarray(rpmhead, tagn, &nc);
418   if (!n || !nc)
419     return 0;
420   vc = fc = 0;
421   v = headstringarray(rpmhead, tagv, &vc);
422   f = headint32array(rpmhead, tagf, &fc);
423   if (!v || !f || nc != vc || nc != fc)
424     {
425       char *pkgname = rpm_query(rpmhead, 0);
426       pool_error(pool, 0, "bad dependency entries for %s: %d %d %d", pkgname ? pkgname : "<NULL>", nc, vc, fc);
427       solv_free(pkgname);
428       solv_free(n);
429       solv_free(v);
430       solv_free(f);
431       return 0;
432     }
433
434   cc = nc;
435   haspre = 0;   /* add no prereq marker */
436   premask = DEP_PRE_IN | DEP_PRE_UN;
437   if (flags)
438     {
439       /* we do filtering */
440       cc = 0;
441       for (i = 0; i < nc; i++)
442         {
443           if (strong && (f[i] & DEP_STRONG) != (strong == MAKEDEPS_FILTER_WEAK ? 0 : DEP_STRONG))
444             continue;
445           if ((flags & MAKEDEPS_NO_RPMLIB) != 0)
446             if (!strncmp(n[i], "rpmlib(", 7))
447               continue;
448           if ((f[i] & premask) != 0)
449             haspre = 1;
450           cc++;
451         }
452     }
453   else if (tagn == TAG_REQUIRENAME)
454     {
455       /* no filtering, just look for the first prereq */
456       for (i = 0; i < nc; i++)
457         if ((f[i] & premask) != 0)
458           {
459             haspre = 1;
460             break;
461           }
462     }
463   if (cc == 0)
464     {
465       solv_free(n);
466       solv_free(v);
467       solv_free(f);
468       return 0;
469     }
470   cc += haspre;         /* add slot for the prereq marker */
471   olddeps = repo_reserve_ids(repo, 0, cc);
472   ida = repo->idarraydata + olddeps;
473   for (i = 0; ; i++)
474     {
475       if (i == nc)
476         {
477           if (haspre != 1)
478             break;
479           haspre = 2;   /* pass two: prereqs */
480           i = 0;
481           *ida++ = SOLVABLE_PREREQMARKER;
482         }
483       if (strong && (f[i] & DEP_STRONG) != (strong == MAKEDEPS_FILTER_WEAK ? 0 : DEP_STRONG))
484         continue;
485       if (haspre == 1 && (f[i] & premask) != 0)
486         continue;
487       if (haspre == 2 && (f[i] & premask) == 0)
488         continue;
489       if ((flags & MAKEDEPS_NO_RPMLIB) != 0)
490         if (!strncmp(n[i], "rpmlib(", 7))
491           continue;
492       if (f[i] & (DEP_LESS|DEP_GREATER|DEP_EQUAL))
493         {
494           Id name, evr;
495           int flags = 0;
496           if ((f[i] & DEP_LESS) != 0)
497             flags |= REL_LT;
498           if ((f[i] & DEP_EQUAL) != 0)
499             flags |= REL_EQ;
500           if ((f[i] & DEP_GREATER) != 0)
501             flags |= REL_GT;
502           name = pool_str2id(pool, n[i], 1);
503           if (v[i][0] == '0' && v[i][1] == ':' && v[i][2])
504             evr = pool_str2id(pool, v[i] + 2, 1);
505           else
506             evr = pool_str2id(pool, v[i], 1);
507           *ida++ = pool_rel2id(pool, name, evr, flags, 1);
508         }
509       else
510         *ida++ = pool_str2id(pool, n[i], 1);
511     }
512   *ida++ = 0;
513   repo->idarraysize += cc + 1;
514   solv_free(n);
515   solv_free(v);
516   solv_free(f);
517   return olddeps;
518 }
519
520
521 static void
522 adddudata(Repodata *data, Id handle, RpmHead *rpmhead, char **dn, unsigned int *di, int fc, int dc)
523 {
524   Id did;
525   int i, fszc;
526   unsigned int *fkb, *fn, *fsz, *fm, *fino;
527   unsigned long long *fsz64;
528   unsigned int inotest[256], inotestok;
529
530   if (!fc)
531     return;
532   if ((fsz64 = headint64array(rpmhead, TAG_LONGFILESIZES, &fszc)) != 0)
533     {
534       /* convert to kbyte */
535       fsz = solv_malloc2(fszc, sizeof(*fsz));
536       for (i = 0; i < fszc; i++)
537         fsz[i] = fsz64[i] ? fsz64[i] / 1024 + 1 : 0;
538       solv_free(fsz64);
539     }
540   else if ((fsz = headint32array(rpmhead, TAG_FILESIZES, &fszc)) != 0)
541     {
542       /* convert to kbyte */
543       for (i = 0; i < fszc; i++)
544         if (fsz[i])
545           fsz[i] = fsz[i] / 1024 + 1;
546     }
547   else
548     return;
549   if (fc != fszc)
550     {
551       solv_free(fsz);
552       return;
553     }
554
555   /* stupid rpm records sizes of directories, so we have to check the mode */
556   fm = headint16array(rpmhead, TAG_FILEMODES, &fszc);
557   if (!fm || fc != fszc)
558     {
559       solv_free(fsz);
560       solv_free(fm);
561       return;
562     }
563   fino = headint32array(rpmhead, TAG_FILEINODES, &fszc);
564   if (!fino || fc != fszc)
565     {
566       solv_free(fsz);
567       solv_free(fm);
568       solv_free(fino);
569       return;
570     }
571
572   /* kill hardlinked entries */
573   inotestok = 0;
574   if (fc < sizeof(inotest))
575     {
576       /* quick test just hashing the inode numbers */
577       memset(inotest, 0, sizeof(inotest));
578       for (i = 0; i < fc; i++)
579         {
580           int off, bit;
581           if (fsz[i] == 0 || !S_ISREG(fm[i]))
582             continue;   /* does not matter */
583           off = (fino[i] >> 5) & (sizeof(inotest)/sizeof(*inotest) - 1);
584           bit = 1 << (fino[i] & 31);
585           if ((inotest[off] & bit) != 0)
586             break;
587           inotest[off] |= bit;
588         }
589       if (i == fc)
590         inotestok = 1;  /* no conflict found */
591     }
592   if (!inotestok)
593     {
594       /* hardlinked files are possible, check ino/dev pairs */
595       unsigned int *fdev = headint32array(rpmhead, TAG_FILEDEVICES, &fszc);
596       unsigned int *fx, j;
597       unsigned int mask, hash, hh;
598       if (!fdev || fc != fszc)
599         {
600           solv_free(fsz);
601           solv_free(fm);
602           solv_free(fdev);
603           solv_free(fino);
604           return;
605         }
606       mask = fc;
607       while ((mask & (mask - 1)) != 0)
608         mask = mask & (mask - 1);
609       mask <<= 2;
610       if (mask > sizeof(inotest)/sizeof(*inotest))
611         fx = solv_calloc(mask, sizeof(unsigned int));
612       else
613         {
614           fx = inotest;
615           memset(fx, 0, mask * sizeof(unsigned int));
616         }
617       mask--;
618       for (i = 0; i < fc; i++)
619         {
620           if (fsz[i] == 0 || !S_ISREG(fm[i]))
621             continue;
622           hash = (fino[i] + fdev[i] * 31) & mask;
623           hh = 7;
624           while ((j = fx[hash]) != 0)
625             {
626               if (fino[j - 1] == fino[i] && fdev[j - 1] == fdev[i])
627                 {
628                   fsz[i] = 0;   /* kill entry */
629                   break;
630                 }
631               hash = (hash + hh++) & mask;
632             }
633           if (!j)
634             fx[hash] = i + 1;
635         }
636       if (fx != inotest)
637         solv_free(fx);
638       solv_free(fdev);
639     }
640   solv_free(fino);
641
642   /* sum up inode count and kbytes for each directory */
643   fn = solv_calloc(dc, sizeof(unsigned int));
644   fkb = solv_calloc(dc, sizeof(unsigned int));
645   for (i = 0; i < fc; i++)
646     {
647       if (di[i] >= dc)
648         continue;       /* corrupt entry */
649       fn[di[i]]++;
650       if (fsz[i] == 0 || !S_ISREG(fm[i]))
651         continue;
652       fkb[di[i]] += fsz[i];
653     }
654   solv_free(fsz);
655   solv_free(fm);
656   /* commit */
657   for (i = 0; i < dc; i++)
658     {
659       if (!fn[i])
660         continue;
661       if (!*dn[i])
662         {
663           Solvable *s = data->repo->pool->solvables + handle;
664           if (s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
665             did = repodata_str2dir(data, "/usr/src", 1);
666           else
667             continue;   /* work around rpm bug */
668         }
669       else
670         did = repodata_str2dir(data, dn[i], 1);
671       repodata_add_dirnumnum(data, handle, SOLVABLE_DISKUSAGE, did, fkb[i], fn[i]);
672     }
673   solv_free(fn);
674   solv_free(fkb);
675 }
676
677 static void
678 addfilelist(Repodata *data, Id handle, RpmHead *rpmhead)
679 {
680   char **bn;
681   char **dn;
682   unsigned int *di;
683   int bnc, dnc, dic;
684   int i;
685   Id lastdid = 0;
686   unsigned int lastdii = -1;
687
688   if (!data)
689     return;
690   bn = headstringarray(rpmhead, TAG_BASENAMES, &bnc);
691   if (!bn)
692     return;
693   dn = headstringarray(rpmhead, TAG_DIRNAMES, &dnc);
694   if (!dn)
695     {
696       solv_free(bn);
697       return;
698     }
699   di = headint32array(rpmhead, TAG_DIRINDEXES, &dic);
700   if (!di)
701     {
702       solv_free(bn);
703       solv_free(dn);
704       return;
705     }
706   if (bnc != dic)
707     {
708       pool_error(data->repo->pool, 0, "bad filelist");
709       return;
710     }
711
712   adddudata(data, handle, rpmhead, dn, di, bnc, dnc);
713
714   for (i = 0; i < bnc; i++)
715     {
716       Id did;
717       char *b = bn[i];
718
719       if (di[i] == lastdii)
720         did = lastdid;
721       else
722         {
723           if (di[i] >= dnc)
724             continue;   /* corrupt entry */
725           did = repodata_str2dir(data, dn[di[i]], 1);
726           if (!did)
727             did = repodata_str2dir(data, "/", 1);
728           lastdid = did;
729           lastdii = di[i];
730         }
731       if (b && *b == '/')       /* work around rpm bug */
732         b++;
733       repodata_add_dirstr(data, handle, SOLVABLE_FILELIST, did, b);
734     }
735   solv_free(bn);
736   solv_free(dn);
737   solv_free(di);
738 }
739
740 static void
741 addchangelog(Repodata *data, Id handle, RpmHead *rpmhead)
742 {
743   char **cn;
744   char **cx;
745   unsigned int *ct;
746   int i, cnc, cxc, ctc;
747   Queue hq;
748
749   ct = headint32array(rpmhead, TAG_CHANGELOGTIME, &ctc);
750   cx = headstringarray(rpmhead, TAG_CHANGELOGTEXT, &cxc);
751   cn = headstringarray(rpmhead, TAG_CHANGELOGNAME, &cnc);
752   if (!ct || !cx || !cn || !ctc || ctc != cxc || ctc != cnc)
753     {
754       solv_free(ct);
755       solv_free(cx);
756       solv_free(cn);
757       return;
758     }
759   queue_init(&hq);
760   for (i = 0; i < ctc; i++)
761     {
762       Id h = repodata_new_handle(data);
763       if (ct[i])
764         repodata_set_num(data, h, SOLVABLE_CHANGELOG_TIME, ct[i]);
765       if (cn[i])
766         setutf8string(data, h, SOLVABLE_CHANGELOG_AUTHOR, cn[i]);
767       if (cx[i])
768         setutf8string(data, h, SOLVABLE_CHANGELOG_TEXT, cx[i]);
769       queue_push(&hq, h);
770     }
771   for (i = 0; i < hq.count; i++)
772     repodata_add_flexarray(data, handle, SOLVABLE_CHANGELOG, hq.elements[i]);
773   queue_free(&hq);
774   solv_free(ct);
775   solv_free(cx);
776   solv_free(cn);
777 }
778
779 static void
780 set_description_author(Repodata *data, Id handle, char *str)
781 {
782   char *aut, *p;
783   for (aut = str; (aut = strchr(aut, '\n')) != 0; aut++)
784     if (!strncmp(aut, "\nAuthors:\n--------\n", 19))
785       break;
786   if (aut)
787     {
788       /* oh my, found SUSE special author section */
789       int l = aut - str;
790       str = solv_strdup(str);
791       aut = str + l;
792       str[l] = 0;
793       while (l > 0 && str[l - 1] == '\n')
794         str[--l] = 0;
795       if (l)
796         setutf8string(data, handle, SOLVABLE_DESCRIPTION, str);
797       p = aut + 19;
798       aut = str;        /* copy over */
799       while (*p == ' ' || *p == '\n')
800         p++;
801       while (*p)
802         {
803           if (*p == '\n')
804             {
805               *aut++ = *p++;
806               while (*p == ' ')
807                 p++;
808               continue;
809             }
810           *aut++ = *p++;
811         }
812       while (aut != str && aut[-1] == '\n')
813         aut--;
814       *aut = 0;
815       if (*str)
816         setutf8string(data, handle, SOLVABLE_AUTHORS, str);
817       free(str);
818     }
819   else if (*str)
820     setutf8string(data, handle, SOLVABLE_DESCRIPTION, str);
821 }
822
823 static int
824 rpm2solv(Pool *pool, Repo *repo, Repodata *data, Solvable *s, RpmHead *rpmhead, int flags)
825 {
826   char *name;
827   char *evr;
828   char *sourcerpm;
829
830   name = headstring(rpmhead, TAG_NAME);
831   if (!name)
832     {
833       pool_error(pool, 0, "package has no name");
834       return 0;
835     }
836   if (!strcmp(name, "gpg-pubkey"))
837     return 0;
838   s->name = pool_str2id(pool, name, 1);
839   sourcerpm = headstring(rpmhead, TAG_SOURCERPM);
840   if (sourcerpm || (rpmhead->forcebinary && !headexists(rpmhead, TAG_SOURCEPACKAGE)))
841     s->arch = pool_str2id(pool, headstring(rpmhead, TAG_ARCH), 1);
842   else
843     {
844       if (headexists(rpmhead, TAG_NOSOURCE) || headexists(rpmhead, TAG_NOPATCH))
845         s->arch = ARCH_NOSRC;
846       else
847         s->arch = ARCH_SRC;
848     }
849   if (!s->arch)
850     s->arch = ARCH_NOARCH;
851   evr = headtoevr(rpmhead);
852   s->evr = pool_str2id(pool, evr, 1);
853   s->vendor = pool_str2id(pool, headstring(rpmhead, TAG_VENDOR), 1);
854
855   s->provides = makedeps(pool, repo, rpmhead, TAG_PROVIDENAME, TAG_PROVIDEVERSION, TAG_PROVIDEFLAGS, 0);
856   if (s->arch != ARCH_SRC && s->arch != ARCH_NOSRC)
857     s->provides = repo_addid_dep(repo, s->provides, pool_rel2id(pool, s->name, s->evr, REL_EQ, 1), 0);
858   s->requires = makedeps(pool, repo, rpmhead, TAG_REQUIRENAME, TAG_REQUIREVERSION, TAG_REQUIREFLAGS, (flags & RPM_ADD_NO_RPMLIBREQS) ? MAKEDEPS_NO_RPMLIB : 0);
859   s->conflicts = makedeps(pool, repo, rpmhead, TAG_CONFLICTNAME, TAG_CONFLICTVERSION, TAG_CONFLICTFLAGS, 0);
860   s->obsoletes = makedeps(pool, repo, rpmhead, TAG_OBSOLETENAME, TAG_OBSOLETEVERSION, TAG_OBSOLETEFLAGS, 0);
861
862   s->recommends = makedeps(pool, repo, rpmhead, TAG_SUGGESTSNAME, TAG_SUGGESTSVERSION, TAG_SUGGESTSFLAGS, MAKEDEPS_FILTER_STRONG);
863   s->suggests = makedeps(pool, repo, rpmhead, TAG_SUGGESTSNAME, TAG_SUGGESTSVERSION, TAG_SUGGESTSFLAGS, MAKEDEPS_FILTER_WEAK);
864   s->supplements = makedeps(pool, repo, rpmhead, TAG_ENHANCESNAME, TAG_ENHANCESVERSION, TAG_ENHANCESFLAGS, MAKEDEPS_FILTER_STRONG);
865   s->enhances  = makedeps(pool, repo, rpmhead, TAG_ENHANCESNAME, TAG_ENHANCESVERSION, TAG_ENHANCESFLAGS, MAKEDEPS_FILTER_WEAK);
866   s->supplements = repo_fix_supplements(repo, s->provides, s->supplements, 0);
867   s->conflicts = repo_fix_conflicts(repo, s->conflicts);
868
869   if (data)
870     {
871       Id handle;
872       char *str;
873       unsigned int u32;
874       unsigned long long u64;
875
876       handle = s - pool->solvables;
877       str = headstring(rpmhead, TAG_SUMMARY);
878       if (str)
879         setutf8string(data, handle, SOLVABLE_SUMMARY, str);
880       str = headstring(rpmhead, TAG_DESCRIPTION);
881       if (str)
882         set_description_author(data, handle, str);
883       str = headstring(rpmhead, TAG_GROUP);
884       if (str)
885         repodata_set_poolstr(data, handle, SOLVABLE_GROUP, str);
886       str = headstring(rpmhead, TAG_LICENSE);
887       if (str)
888         repodata_set_poolstr(data, handle, SOLVABLE_LICENSE, str);
889       str = headstring(rpmhead, TAG_URL);
890       if (str)
891         repodata_set_str(data, handle, SOLVABLE_URL, str);
892       str = headstring(rpmhead, TAG_DISTRIBUTION);
893       if (str)
894         repodata_set_poolstr(data, handle, SOLVABLE_DISTRIBUTION, str);
895       str = headstring(rpmhead, TAG_PACKAGER);
896       if (str)
897         repodata_set_poolstr(data, handle, SOLVABLE_PACKAGER, str);
898       if ((flags & RPM_ADD_WITH_PKGID) != 0)
899         {
900           unsigned char *chksum;
901           unsigned int chksumsize;
902           chksum = headbinary(rpmhead, TAG_SIGMD5, &chksumsize);
903           if (chksum && chksumsize == 16)
904             repodata_set_bin_checksum(data, handle, SOLVABLE_PKGID, REPOKEY_TYPE_MD5, chksum);
905         }
906       if ((flags & RPM_ADD_WITH_HDRID) != 0)
907         {
908           str = headstring(rpmhead, TAG_SHA1HEADER);
909           if (str && strlen(str) == 40)
910             repodata_set_checksum(data, handle, SOLVABLE_HDRID, REPOKEY_TYPE_SHA1, str);
911           else if (str && strlen(str) == 64)
912             repodata_set_checksum(data, handle, SOLVABLE_HDRID, REPOKEY_TYPE_SHA256, str);
913         }
914       u32 = headint32(rpmhead, TAG_BUILDTIME);
915       if (u32)
916         repodata_set_num(data, handle, SOLVABLE_BUILDTIME, u32);
917       u32 = headint32(rpmhead, TAG_INSTALLTIME);
918       if (u32)
919         repodata_set_num(data, handle, SOLVABLE_INSTALLTIME, u32);
920       u64 = headint64(rpmhead, TAG_LONGSIZE);
921       if (u64)
922         repodata_set_num(data, handle, SOLVABLE_INSTALLSIZE, u64);
923       else
924         {
925           u32 = headint32(rpmhead, TAG_SIZE);
926           if (u32)
927             repodata_set_num(data, handle, SOLVABLE_INSTALLSIZE, u32);
928         }
929       if (sourcerpm)
930         repodata_set_sourcepkg(data, handle, sourcerpm);
931       if ((flags & RPM_ADD_TRIGGERS) != 0)
932         {
933           Id id, lastid;
934           unsigned int ida = makedeps(pool, repo, rpmhead, TAG_TRIGGERNAME, TAG_TRIGGERVERSION, TAG_TRIGGERFLAGS, 0);
935
936           lastid = 0;
937           for (; (id = repo->idarraydata[ida]) != 0; ida++)
938             {
939               /* we currently do not support rel ids in incore data, so
940                * strip off versioning information */
941               while (ISRELDEP(id))
942                 {
943                   Reldep *rd = GETRELDEP(pool, id);
944                   id = rd->name;
945                 }
946               if (id == lastid)
947                 continue;
948               repodata_add_idarray(data, handle, SOLVABLE_TRIGGERS, id);
949               lastid = id;
950             }
951         }
952       if ((flags & RPM_ADD_NO_FILELIST) == 0)
953         addfilelist(data, handle, rpmhead);
954       if ((flags & RPM_ADD_WITH_CHANGELOG) != 0)
955         addchangelog(data, handle, rpmhead);
956     }
957   solv_free(evr);
958   return 1;
959 }
960
961
962 /******************************************************************/
963 /*  Rpm Database stuff
964  */
965
966 struct rpmdbstate {
967   Pool *pool;
968   char *rootdir;
969
970   RpmHead *rpmhead;     /* header storage space */
971   int rpmheadsize;
972
973   int dbopened;
974   DB_ENV *dbenv;        /* database environment */
975   DB *db;               /* packages database */
976   int byteswapped;      /* endianess of packages database */
977 };
978
979 struct rpmdbentry {
980   Id rpmdbid;
981   Id nameoff;
982 };
983
984 #define ENTRIES_BLOCK 255
985 #define NAMEDATA_BLOCK 1023
986
987
988 static inline Id db2rpmdbid(unsigned char *db, int byteswapped)
989 {
990 #ifdef RPM5
991   return db[0] << 24 | db[1] << 16 | db[2] << 8 | db[3];
992 #else
993 # if defined(WORDS_BIGENDIAN)
994   if (!byteswapped)
995 # else
996   if (byteswapped)
997 # endif
998     return db[0] << 24 | db[1] << 16 | db[2] << 8 | db[3];
999   else
1000     return db[3] << 24 | db[2] << 16 | db[1] << 8 | db[0];
1001 #endif
1002 }
1003
1004 static inline void rpmdbid2db(unsigned char *db, Id id, int byteswapped)
1005 {
1006 #ifdef RPM5
1007   db[0] = id >> 24, db[1] = id >> 16, db[2] = id >> 8, db[3] = id;
1008 #else
1009 # if defined(WORDS_BIGENDIAN)
1010   if (!byteswapped)
1011 # else
1012   if (byteswapped)
1013 # endif
1014     db[0] = id >> 24, db[1] = id >> 16, db[2] = id >> 8, db[3] = id;
1015   else
1016     db[3] = id >> 24, db[2] = id >> 16, db[1] = id >> 8, db[0] = id;
1017 #endif
1018 }
1019
1020 /* should look in /usr/lib/rpm/macros instead, but we want speed... */
1021 static int
1022 opendbenv(struct rpmdbstate *state, const char *rootdir)
1023 {
1024   char dbpath[PATH_MAX];
1025   DB_ENV *dbenv = 0;
1026   int r;
1027
1028   if (db_env_create(&dbenv, 0))
1029     return pool_error(state->pool, 0, "db_env_create: %s", strerror(errno));
1030 #if defined(FEDORA) && (DB_VERSION_MAJOR >= 5 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 5))
1031   dbenv->set_thread_count(dbenv, 8);
1032 #endif
1033   snprintf(dbpath, PATH_MAX, "%s/var/lib/rpm", rootdir ? rootdir : "");
1034   if (access(dbpath, W_OK) == -1)
1035     {
1036       r = dbenv->open(dbenv, dbpath, DB_CREATE|DB_PRIVATE|DB_INIT_MPOOL, 0);
1037     }
1038   else
1039     {
1040 #ifdef FEDORA
1041       r = dbenv->open(dbenv, dbpath, DB_CREATE|DB_INIT_CDB|DB_INIT_MPOOL, 0644);
1042 #else
1043       r = dbenv->open(dbenv, dbpath, DB_CREATE|DB_PRIVATE|DB_INIT_MPOOL, 0);
1044 #endif
1045     }
1046   if (r)
1047     {
1048       pool_error(state->pool, 0, "dbenv->open: %s", strerror(errno));
1049       dbenv->close(dbenv, 0);
1050       return 0;
1051     }
1052   state->dbenv = dbenv;
1053   return 1;
1054 }
1055
1056 static int
1057 openpkgdb(struct rpmdbstate *state)
1058 {
1059   if (state->dbopened)
1060     return state->dbopened > 0 ? 1 : 0;
1061   state->dbopened = -1;
1062   if (!state->dbenv && !opendbenv(state, state->rootdir))
1063     return 0;
1064   if (db_create(&state->db, state->dbenv, 0))
1065     {
1066       pool_error(state->pool, 0, "db_create: %s", strerror(errno));
1067       state->db = 0;
1068       state->dbenv->close(state->dbenv, 0);
1069       state->dbenv = 0;
1070       return 0;
1071     }
1072   if (state->db->open(state->db, 0, "Packages", 0, DB_UNKNOWN, DB_RDONLY, 0664))
1073     {
1074       pool_error(state->pool, 0, "db->open Packages: %s", strerror(errno));
1075       state->db->close(state->db, 0);
1076       state->db = 0;
1077       state->dbenv->close(state->dbenv, 0);
1078       state->dbenv = 0;
1079       return 0;
1080     }
1081   if (state->db->get_byteswapped(state->db, &state->byteswapped))
1082     {
1083       pool_error(state->pool, 0, "db->get_byteswapped: %s", strerror(errno));
1084       state->db->close(state->db, 0);
1085       state->db = 0;
1086       state->dbenv->close(state->dbenv, 0);
1087       state->dbenv = 0;
1088       return 0;
1089     }
1090   state->dbopened = 1;
1091   return 1;
1092 }
1093
1094 /* get the rpmdbids of all installed packages from the Name index database.
1095  * This is much faster then querying the big Packages database */
1096 static struct rpmdbentry *
1097 getinstalledrpmdbids(struct rpmdbstate *state, const char *index, const char *match, int *nentriesp, char **namedatap)
1098 {
1099   DB_ENV *dbenv = 0;
1100   DB *db = 0;
1101   DBC *dbc = 0;
1102   int byteswapped;
1103   DBT dbkey;
1104   DBT dbdata;
1105   unsigned char *dp;
1106   int dl;
1107   Id nameoff;
1108
1109   char *namedata = 0;
1110   int namedatal = 0;
1111   struct rpmdbentry *entries = 0;
1112   int nentries = 0;
1113
1114   *nentriesp = 0;
1115   if (namedatap)
1116     *namedatap = 0;
1117
1118   if (!state->dbenv && !opendbenv(state, state->rootdir))
1119     return 0;
1120   dbenv = state->dbenv;
1121   if (db_create(&db, dbenv, 0))
1122     {
1123       pool_error(state->pool, 0, "db_create: %s", strerror(errno));
1124       return 0;
1125     }
1126   if (db->open(db, 0, index, 0, DB_UNKNOWN, DB_RDONLY, 0664))
1127     {
1128       pool_error(state->pool, 0, "db->open %s: %s", index, strerror(errno));
1129       db->close(db, 0);
1130       return 0;
1131     }
1132   if (db->get_byteswapped(db, &byteswapped))
1133     {
1134       pool_error(state->pool, 0, "db->get_byteswapped: %s", strerror(errno));
1135       db->close(db, 0);
1136       return 0;
1137     }
1138   if (db->cursor(db, NULL, &dbc, 0))
1139     {
1140       pool_error(state->pool, 0, "db->cursor: %s", strerror(errno));
1141       db->close(db, 0);
1142       return 0;
1143     }
1144   memset(&dbkey, 0, sizeof(dbkey));
1145   memset(&dbdata, 0, sizeof(dbdata));
1146   if (match)
1147     {
1148       dbkey.data = (void *)match;
1149       dbkey.size = strlen(match);
1150     }
1151   while (dbc->c_get(dbc, &dbkey, &dbdata, match ? DB_SET : DB_NEXT) == 0)
1152     {
1153       if (!match && dbkey.size == 10 && !memcmp(dbkey.data, "gpg-pubkey", 10))
1154         continue;
1155       dl = dbdata.size;
1156       dp = dbdata.data;
1157       nameoff = namedatal;
1158       if (namedatap)
1159         {
1160           namedata = solv_extend(namedata, namedatal, dbkey.size + 1, 1, NAMEDATA_BLOCK);
1161           memcpy(namedata + namedatal, dbkey.data, dbkey.size);
1162           namedata[namedatal + dbkey.size] = 0;
1163           namedatal += dbkey.size + 1;
1164         }
1165       while(dl >= RPM_INDEX_SIZE)
1166         {
1167           entries = solv_extend(entries, nentries, 1, sizeof(*entries), ENTRIES_BLOCK);
1168           entries[nentries].rpmdbid = db2rpmdbid(dp, byteswapped);
1169           entries[nentries].nameoff = nameoff;
1170           nentries++;
1171           dp += RPM_INDEX_SIZE;
1172           dl -= RPM_INDEX_SIZE;
1173         }
1174       if (match)
1175         break;
1176     }
1177   dbc->c_close(dbc);
1178   db->close(db, 0);
1179   /* make sure that enteries is != 0 if there was no error */
1180   if (!entries)
1181     entries = solv_extend(entries, 1, 1, sizeof(*entries), ENTRIES_BLOCK);
1182   *nentriesp = nentries;
1183   if (namedatap)
1184     *namedatap = namedata;
1185   return entries;
1186 }
1187
1188 /* retrive header by rpmdbid */
1189 static int
1190 getrpmdbid(struct rpmdbstate *state, Id rpmdbid)
1191 {
1192   unsigned char buf[16];
1193   DBT dbkey;
1194   DBT dbdata;
1195   RpmHead *rpmhead;
1196
1197   if (!rpmdbid)
1198     {
1199       pool_error(state->pool, 0, "illegal rpmdbid");
1200       return -1;
1201     }
1202   if (state->dbopened != 1 && !openpkgdb(state))
1203     return -1;
1204   rpmdbid2db(buf, rpmdbid, state->byteswapped);
1205   memset(&dbkey, 0, sizeof(dbkey));
1206   memset(&dbdata, 0, sizeof(dbdata));
1207   dbkey.data = buf;
1208   dbkey.size = 4;
1209   dbdata.data = 0;
1210   dbdata.size = 0;
1211   if (state->db->get(state->db, NULL, &dbkey, &dbdata, 0))
1212     return 0;
1213   if (dbdata.size < 8)
1214     {
1215       pool_error(state->pool, 0, "corrupt rpm database (size)");
1216       return -1;
1217     }
1218   if (dbdata.size > state->rpmheadsize)
1219     {
1220       state->rpmheadsize = dbdata.size + 128;
1221       state->rpmhead = solv_realloc(state->rpmhead, sizeof(*rpmhead) + state->rpmheadsize);
1222     }
1223   rpmhead = state->rpmhead;
1224   memcpy(buf, dbdata.data, 8);
1225   rpmhead->forcebinary = 1;
1226   rpmhead->cnt = buf[0] << 24  | buf[1] << 16  | buf[2] << 8 | buf[3];
1227   rpmhead->dcnt = buf[4] << 24  | buf[5] << 16  | buf[6] << 8 | buf[7];
1228   if (8 + rpmhead->cnt * 16 + rpmhead->dcnt > dbdata.size)
1229     {
1230       pool_error(state->pool, 0, "corrupt rpm database (data size)");
1231       return -1;
1232     }
1233   memcpy(rpmhead->data, (unsigned char *)dbdata.data + 8, rpmhead->cnt * 16 + rpmhead->dcnt);
1234   rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
1235   return 1;
1236 }
1237
1238 /* retrive header by berkeleydb cursor */
1239 static Id
1240 getrpmcursor(struct rpmdbstate *state, DBC *dbc)
1241 {
1242   unsigned char buf[16];
1243   DBT dbkey;
1244   DBT dbdata;
1245   RpmHead *rpmhead;
1246   Id dbid;
1247
1248   memset(&dbkey, 0, sizeof(dbkey));
1249   memset(&dbdata, 0, sizeof(dbdata));
1250   while (dbc->c_get(dbc, &dbkey, &dbdata, DB_NEXT) == 0)
1251     {
1252       if (dbkey.size != 4)
1253         return pool_error(state->pool, -1, "corrupt Packages database (key size)");
1254       dbid = db2rpmdbid(dbkey.data, state->byteswapped);
1255       if (dbid == 0)            /* the join key */
1256         continue;
1257       if (dbdata.size < 8)
1258         return pool_error(state->pool, -1, "corrupt rpm database (size %u)\n", dbdata.size);
1259       if (dbdata.size > state->rpmheadsize)
1260         {
1261           state->rpmheadsize = dbdata.size + 128;
1262           state->rpmhead = solv_realloc(state->rpmhead, sizeof(*state->rpmhead) + state->rpmheadsize);
1263         }
1264       rpmhead = state->rpmhead;
1265       memcpy(buf, dbdata.data, 8);
1266       rpmhead->forcebinary = 1;
1267       rpmhead->cnt = buf[0] << 24  | buf[1] << 16  | buf[2] << 8 | buf[3];
1268       rpmhead->dcnt = buf[4] << 24  | buf[5] << 16  | buf[6] << 8 | buf[7];
1269       if (8 + rpmhead->cnt * 16 + rpmhead->dcnt > dbdata.size)
1270         return pool_error(state->pool, -1, "corrupt rpm database (data size)\n");
1271       memcpy(rpmhead->data, (unsigned char *)dbdata.data + 8, rpmhead->cnt * 16 + rpmhead->dcnt);
1272       rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
1273       return dbid;
1274     }
1275   return 0;
1276 }
1277
1278 static void
1279 freestate(struct rpmdbstate *state)
1280 {
1281   /* close down */
1282   if (!state)
1283     return;
1284   if (state->rootdir)
1285     solv_free(state->rootdir);
1286   if (state->db)
1287     state->db->close(state->db, 0);
1288   if (state->dbenv)
1289     state->dbenv->close(state->dbenv, 0);
1290   solv_free(state->rpmhead);
1291 }
1292
1293 void *
1294 rpm_state_create(Pool *pool, const char *rootdir)
1295 {
1296   struct rpmdbstate *state;
1297   state = solv_calloc(1, sizeof(*state));
1298   state->pool = pool;
1299   if (rootdir)
1300     state->rootdir = solv_strdup(rootdir);
1301   return state;
1302 }
1303
1304 void *
1305 rpm_state_free(void *state)
1306 {
1307   freestate(state);
1308   return solv_free(state);
1309 }
1310
1311 static int
1312 count_headers(Pool *pool, const char *rootdir, DB_ENV *dbenv)
1313 {
1314   char dbpath[PATH_MAX];
1315   struct stat statbuf;
1316   DB *db = 0;
1317   DBC *dbc = 0;
1318   int count = 0;
1319   DBT dbkey;
1320   DBT dbdata;
1321
1322   snprintf(dbpath, PATH_MAX, "%s/var/lib/rpm/Name", rootdir ? rootdir : "");
1323   if (stat(dbpath, &statbuf))
1324     return 0;
1325   memset(&dbkey, 0, sizeof(dbkey));
1326   memset(&dbdata, 0, sizeof(dbdata));
1327   if (db_create(&db, dbenv, 0))
1328     {
1329       pool_error(pool, 0, "db_create: %s", strerror(errno));
1330       return 0;
1331     }
1332   if (db->open(db, 0, "Name", 0, DB_UNKNOWN, DB_RDONLY, 0664))
1333     {
1334       pool_error(pool, 0, "db->open Name: %s", strerror(errno));
1335       db->close(db, 0);
1336       return 0;
1337     }
1338   if (db->cursor(db, NULL, &dbc, 0))
1339     {
1340       db->close(db, 0);
1341       pool_error(pool, 0, "db->cursor: %s", strerror(errno));
1342       return 0;
1343     }
1344   while (dbc->c_get(dbc, &dbkey, &dbdata, DB_NEXT) == 0)
1345     count += dbdata.size / RPM_INDEX_SIZE;
1346   dbc->c_close(dbc);
1347   db->close(db, 0);
1348   return count;
1349 }
1350
1351 /******************************************************************/
1352
1353 static Offset
1354 copydeps(Pool *pool, Repo *repo, Offset fromoff, Repo *fromrepo)
1355 {
1356   int cc;
1357   Id *ida, *from;
1358   Offset ido;
1359
1360   if (!fromoff)
1361     return 0;
1362   from = fromrepo->idarraydata + fromoff;
1363   for (ida = from, cc = 0; *ida; ida++, cc++)
1364     ;
1365   if (cc == 0)
1366     return 0;
1367   ido = repo_reserve_ids(repo, 0, cc);
1368   ida = repo->idarraydata + ido;
1369   memcpy(ida, from, (cc + 1) * sizeof(Id));
1370   repo->idarraysize += cc + 1;
1371   return ido;
1372 }
1373
1374 #define COPYDIR_DIRCACHE_SIZE 512
1375
1376 static Id copydir_complex(Pool *pool, Repodata *data, Repodata *fromdata, Id did, Id *cache);
1377
1378 static inline Id
1379 copydir(Pool *pool, Repodata *data, Repodata *fromdata, Id did, Id *cache)
1380 {
1381   if (cache && cache[did & 255] == did)
1382     return cache[(did & 255) + 256];
1383   return copydir_complex(pool, data, fromdata, did, cache);
1384 }
1385
1386 static Id
1387 copydir_complex(Pool *pool, Repodata *data, Repodata *fromdata, Id did, Id *cache)
1388 {
1389   Id parent = dirpool_parent(&fromdata->dirpool, did);
1390   Id compid = dirpool_compid(&fromdata->dirpool, did);
1391   if (parent)
1392     parent = copydir(pool, data, fromdata, parent, cache);
1393   if (data->localpool || fromdata->localpool)
1394     compid = repodata_translate_id(data, fromdata, compid, 1);
1395   compid = dirpool_add_dir(&data->dirpool, parent, compid, 1);
1396   if (cache)
1397     {
1398       cache[did & 255] = did;
1399       cache[(did & 255) + 256] = compid;
1400     }
1401   return compid;
1402 }
1403
1404 struct solvable_copy_cbdata {
1405   Repodata *data;
1406   Id handle;
1407   Id subhandle;
1408   Id *dircache;
1409 };
1410
1411 static int
1412 solvable_copy_cb(void *vcbdata, Solvable *r, Repodata *fromdata, Repokey *key, KeyValue *kv)
1413 {
1414   struct solvable_copy_cbdata *cbdata = vcbdata;
1415   Id id, keyname;
1416   Repodata *data = cbdata->data;
1417   Id handle = cbdata->handle;
1418   Pool *pool = data->repo->pool;
1419
1420   keyname = key->name;
1421   switch(key->type)
1422     {
1423     case REPOKEY_TYPE_ID:
1424     case REPOKEY_TYPE_CONSTANTID:
1425     case REPOKEY_TYPE_IDARRAY:  /* used for triggers */
1426       id = kv->id;
1427       if (data->localpool || fromdata->localpool)
1428         id = repodata_translate_id(data, fromdata, id, 1);
1429       if (key->type == REPOKEY_TYPE_ID)
1430         repodata_set_id(data, handle, keyname, id);
1431       else if (key->type == REPOKEY_TYPE_CONSTANTID)
1432         repodata_set_constantid(data, handle, keyname, id);
1433       else
1434         repodata_add_idarray(data, handle, keyname, id);
1435       break;
1436     case REPOKEY_TYPE_STR:
1437       repodata_set_str(data, handle, keyname, kv->str);
1438       break;
1439     case REPOKEY_TYPE_VOID:
1440       repodata_set_void(data, handle, keyname);
1441       break;
1442     case REPOKEY_TYPE_NUM:
1443       repodata_set_num(data, handle, keyname, SOLV_KV_NUM64(kv));
1444       break;
1445     case REPOKEY_TYPE_CONSTANT:
1446       repodata_set_constant(data, handle, keyname, kv->num);
1447       break;
1448     case REPOKEY_TYPE_DIRNUMNUMARRAY:
1449       id = kv->id;
1450       id = copydir(pool, data, fromdata, id, cbdata->dircache);
1451       repodata_add_dirnumnum(data, handle, keyname, id, kv->num, kv->num2);
1452       break;
1453     case REPOKEY_TYPE_DIRSTRARRAY:
1454       id = kv->id;
1455       id = copydir(pool, data, fromdata, id, cbdata->dircache);
1456       repodata_add_dirstr(data, handle, keyname, id, kv->str);
1457       break;
1458     case REPOKEY_TYPE_FLEXARRAY:
1459       if (kv->eof == 2)
1460         {
1461           assert(cbdata->subhandle);
1462           cbdata->handle = cbdata->subhandle;
1463           cbdata->subhandle = 0;
1464           break;
1465         }
1466       if (!kv->entry)
1467         {
1468           assert(!cbdata->subhandle);
1469           cbdata->subhandle = cbdata->handle;
1470         }
1471       cbdata->handle = repodata_new_handle(data);
1472       repodata_add_flexarray(data, cbdata->subhandle, keyname, cbdata->handle);
1473       break;
1474     case REPOKEY_TYPE_MD5:
1475     case REPOKEY_TYPE_SHA1:
1476     case REPOKEY_TYPE_SHA256:
1477       repodata_set_bin_checksum(data, handle, keyname, key->type, (const unsigned char *)kv->str);
1478       break;
1479     default:
1480       break;
1481     }
1482   return 0;
1483 }
1484
1485 static void
1486 solvable_copy(Solvable *s, Solvable *r, Repodata *data, Id *dircache)
1487 {
1488   int p, i;
1489   Repo *repo = s->repo;
1490   Pool *pool = repo->pool;
1491   Repo *fromrepo = r->repo;
1492   struct solvable_copy_cbdata cbdata;
1493
1494   /* copy solvable data */
1495   s->name = r->name;
1496   s->evr = r->evr;
1497   s->arch = r->arch;
1498   s->vendor = r->vendor;
1499   s->provides = copydeps(pool, repo, r->provides, fromrepo);
1500   s->requires = copydeps(pool, repo, r->requires, fromrepo);
1501   s->conflicts = copydeps(pool, repo, r->conflicts, fromrepo);
1502   s->obsoletes = copydeps(pool, repo, r->obsoletes, fromrepo);
1503   s->recommends = copydeps(pool, repo, r->recommends, fromrepo);
1504   s->suggests = copydeps(pool, repo, r->suggests, fromrepo);
1505   s->supplements = copydeps(pool, repo, r->supplements, fromrepo);
1506   s->enhances  = copydeps(pool, repo, r->enhances, fromrepo);
1507
1508   /* copy all attributes */
1509   if (!data)
1510     return;
1511   cbdata.data = data;
1512   cbdata.handle = s - pool->solvables;
1513   cbdata.subhandle = 0;
1514   cbdata.dircache = dircache;
1515   p = r - fromrepo->pool->solvables;
1516 #if 0
1517   repo_search(fromrepo, p, 0, 0, SEARCH_NO_STORAGE_SOLVABLE | SEARCH_SUB | SEARCH_ARRAYSENTINEL, solvable_copy_cb, &cbdata);
1518 #else
1519   FOR_REPODATAS(fromrepo, i, data)
1520     {
1521       if (p >= data->start && p < data->end)
1522         repodata_search(data, p, 0, SEARCH_SUB | SEARCH_ARRAYSENTINEL, solvable_copy_cb, &cbdata);
1523       cbdata.dircache = 0;      /* only for first repodata */
1524     }
1525 #endif
1526 }
1527
1528 /* used to sort entries by package name that got returned in some database order */
1529 static int
1530 rpmids_sort_cmp(const void *va, const void *vb, void *dp)
1531 {
1532   struct rpmdbentry const *a = va, *b = vb;
1533   char *namedata = dp;
1534   int r;
1535   r = strcmp(namedata + a->nameoff, namedata + b->nameoff);
1536   if (r)
1537     return r;
1538   return a->rpmdbid - b->rpmdbid;
1539 }
1540
1541 static int
1542 pkgids_sort_cmp(const void *va, const void *vb, void *dp)
1543 {
1544   Repo *repo = dp;
1545   Pool *pool = repo->pool;
1546   Solvable *a = pool->solvables + *(Id *)va;
1547   Solvable *b = pool->solvables + *(Id *)vb;
1548   Id *rpmdbid;
1549
1550   if (a->name != b->name)
1551     return strcmp(pool_id2str(pool, a->name), pool_id2str(pool, b->name));
1552   rpmdbid = repo->rpmdbid;
1553   return rpmdbid[(a - pool->solvables) - repo->start] - rpmdbid[(b - pool->solvables) - repo->start];
1554 }
1555
1556 static void
1557 swap_solvables(Repo *repo, Repodata *data, Id pa, Id pb)
1558 {
1559   Pool *pool = repo->pool;
1560   Solvable tmp;
1561
1562   tmp = pool->solvables[pa];
1563   pool->solvables[pa] = pool->solvables[pb];
1564   pool->solvables[pb] = tmp;
1565   if (repo->rpmdbid)
1566     {
1567       Id tmpid = repo->rpmdbid[pa - repo->start];
1568       repo->rpmdbid[pa - repo->start] = repo->rpmdbid[pb - repo->start];
1569       repo->rpmdbid[pb - repo->start] = tmpid;
1570     }
1571   /* only works if nothing is already internalized! */
1572   if (data)
1573     repodata_swap_attrs(data, pa, pb);
1574 }
1575
1576 static void
1577 mkrpmdbcookie(struct stat *st, unsigned char *cookie, int flags)
1578 {
1579   int f = 0;
1580   memset(cookie, 0, 32);
1581   cookie[3] = RPMDB_COOKIE_VERSION;
1582   memcpy(cookie + 16, &st->st_ino, sizeof(st->st_ino));
1583   memcpy(cookie + 24, &st->st_dev, sizeof(st->st_dev));
1584   if ((flags & RPM_ADD_WITH_PKGID) != 0)
1585     f |= 1;
1586   if ((flags & RPM_ADD_WITH_HDRID) != 0)
1587     f |= 2;
1588   if ((flags & RPM_ADD_WITH_CHANGELOG) != 0)
1589     f |= 4;
1590   if ((flags & RPM_ADD_NO_FILELIST) == 0)
1591     f |= 8;
1592   if ((flags & RPM_ADD_NO_RPMLIBREQS) != 0)
1593     cookie[1] = 1;
1594   cookie[0] = f;
1595 }
1596
1597 /*
1598  * read rpm db as repo
1599  *
1600  */
1601
1602 int
1603 repo_add_rpmdb(Repo *repo, Repo *ref, int flags)
1604 {
1605   Pool *pool = repo->pool;
1606   char dbpath[PATH_MAX];
1607   struct stat packagesstat;
1608   unsigned char newcookie[32];
1609   const unsigned char *oldcookie = 0;
1610   Id oldcookietype = 0;
1611   Repodata *data;
1612   int count = 0, done = 0;
1613   const char *rootdir = 0;
1614   struct rpmdbstate state;
1615   int i;
1616   Solvable *s;
1617   unsigned int now;
1618
1619   now = solv_timems(0);
1620   memset(&state, 0, sizeof(state));
1621   state.pool = pool;
1622
1623   data = repo_add_repodata(repo, flags);
1624
1625   if (ref && !(ref->nsolvables && ref->rpmdbid && ref->pool == repo->pool))
1626     {
1627       if ((flags & RPMDB_EMPTY_REFREPO) != 0)
1628         repo_empty(ref, 1);
1629       ref = 0;
1630     }
1631
1632   if (flags & REPO_USE_ROOTDIR)
1633     rootdir = pool_get_rootdir(pool);
1634   if (!opendbenv(&state, rootdir))
1635     return -1;
1636
1637   /* XXX: should get ro lock of Packages database! */
1638   snprintf(dbpath, PATH_MAX, "%s/var/lib/rpm/Packages", rootdir ? rootdir : "");
1639   if (stat(dbpath, &packagesstat))
1640     {
1641       pool_error(pool, -1, "%s: %s", dbpath, strerror(errno));
1642       freestate(&state);
1643       return -1;
1644     }
1645   mkrpmdbcookie(&packagesstat, newcookie, flags);
1646   repodata_set_bin_checksum(data, SOLVID_META, REPOSITORY_RPMDBCOOKIE, REPOKEY_TYPE_SHA256, newcookie);
1647
1648   if (ref)
1649     oldcookie = repo_lookup_bin_checksum(ref, SOLVID_META, REPOSITORY_RPMDBCOOKIE, &oldcookietype);
1650   if (!ref || !oldcookie || oldcookietype != REPOKEY_TYPE_SHA256 || memcmp(oldcookie, newcookie, 32) != 0)
1651     {
1652       int solvstart = 0, solvend = 0;
1653       Id dbid;
1654       DBC *dbc = 0;
1655
1656       if (ref && (flags & RPMDB_EMPTY_REFREPO) != 0)
1657         repo_empty(ref, 1);     /* get it out of the way */
1658       if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1659         count = count_headers(pool, rootdir, state.dbenv);
1660       if (!openpkgdb(&state))
1661         {
1662           freestate(&state);
1663           return -1;
1664         }
1665       if (state.db->cursor(state.db, NULL, &dbc, 0))
1666         {
1667           freestate(&state);
1668           return pool_error(pool, -1, "db->cursor failed");
1669         }
1670       i = 0;
1671       s = 0;
1672       while ((dbid = getrpmcursor(&state, dbc)) != 0)
1673         {
1674           if (dbid == -1)
1675             {
1676               dbc->c_close(dbc);
1677               freestate(&state);
1678               return -1;
1679             }
1680           if (!s)
1681             {
1682               s = pool_id2solvable(pool, repo_add_solvable(repo));
1683               if (!solvstart)
1684                 solvstart = s - pool->solvables;
1685               solvend = s - pool->solvables + 1;
1686             }
1687           if (!repo->rpmdbid)
1688             repo->rpmdbid = repo_sidedata_create(repo, sizeof(Id));
1689           repo->rpmdbid[(s - pool->solvables) - repo->start] = dbid;
1690           if (rpm2solv(pool, repo, data, s, state.rpmhead, flags | RPM_ADD_TRIGGERS))
1691             {
1692               i++;
1693               s = 0;
1694             }
1695           else
1696             {
1697               /* We can reuse this solvable, but make sure it's still
1698                  associated with this repo.  */
1699               memset(s, 0, sizeof(*s));
1700               s->repo = repo;
1701             }
1702           if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1703             {
1704               if (done < count)
1705                 done++;
1706               if (done < count && (done - 1) * 100 / count != done * 100 / count)
1707                 pool_debug(pool, SOLV_ERROR, "%%%% %d\n", done * 100 / count);
1708             }
1709         }
1710       dbc->c_close(dbc);
1711       if (s)
1712         {
1713           /* oops, could not reuse. free it instead */
1714           repo_free_solvable(repo, s - pool->solvables, 1);
1715           solvend--;
1716           s = 0;
1717         }
1718       /* now sort all solvables in the new solvstart..solvend block */
1719       if (solvend - solvstart > 1)
1720         {
1721           Id *pkgids = solv_malloc2(solvend - solvstart, sizeof(Id));
1722           for (i = solvstart; i < solvend; i++)
1723             pkgids[i - solvstart] = i;
1724           solv_sort(pkgids, solvend - solvstart, sizeof(Id), pkgids_sort_cmp, repo);
1725           /* adapt order */
1726           for (i = solvstart; i < solvend; i++)
1727             {
1728               int j = pkgids[i - solvstart];
1729               while (j < i)
1730                 j = pkgids[i - solvstart] = pkgids[j - solvstart];
1731               if (j != i)
1732                 swap_solvables(repo, data, i, j);
1733             }
1734           solv_free(pkgids);
1735         }
1736     }
1737   else
1738     {
1739       Id dircache[COPYDIR_DIRCACHE_SIZE];               /* see copydir */
1740       struct rpmdbentry *entries = 0, *rp;
1741       int nentries = 0;
1742       char *namedata = 0;
1743       unsigned int refmask, h;
1744       Id id, *refhash;
1745       int res;
1746
1747       memset(dircache, 0, sizeof(dircache));
1748
1749       /* get ids of installed rpms */
1750       entries = getinstalledrpmdbids(&state, "Name", 0, &nentries, &namedata);
1751       if (!entries)
1752         {
1753           freestate(&state);
1754           return -1;
1755         }
1756
1757       /* sort by name */
1758       if (nentries > 1)
1759         solv_sort(entries, nentries, sizeof(*entries), rpmids_sort_cmp, namedata);
1760
1761       /* create hash from dbid to ref */
1762       refmask = mkmask(ref->nsolvables);
1763       refhash = solv_calloc(refmask + 1, sizeof(Id));
1764       for (i = 0; i < ref->end - ref->start; i++)
1765         {
1766           if (!ref->rpmdbid[i])
1767             continue;
1768           h = ref->rpmdbid[i] & refmask;
1769           while (refhash[h])
1770             h = (h + 317) & refmask;
1771           refhash[h] = i + 1;   /* make it non-zero */
1772         }
1773
1774       /* count the misses, they will cost us time */
1775       if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1776         {
1777           for (i = 0, rp = entries; i < nentries; i++, rp++)
1778             {
1779               if (refhash)
1780                 {
1781                   Id dbid = rp->rpmdbid;
1782                   h = dbid & refmask;
1783                   while ((id = refhash[h]))
1784                     {
1785                       if (ref->rpmdbid[id - 1] == dbid)
1786                         break;
1787                       h = (h + 317) & refmask;
1788                     }
1789                   if (id)
1790                     continue;
1791                 }
1792               count++;
1793             }
1794         }
1795
1796       if (ref && (flags & RPMDB_EMPTY_REFREPO) != 0)
1797         s = pool_id2solvable(pool, repo_add_solvable_block_before(repo, nentries, ref));
1798       else
1799         s = pool_id2solvable(pool, repo_add_solvable_block(repo, nentries));
1800       if (!repo->rpmdbid)
1801         repo->rpmdbid = repo_sidedata_create(repo, sizeof(Id));
1802
1803       for (i = 0, rp = entries; i < nentries; i++, rp++, s++)
1804         {
1805           Id dbid = rp->rpmdbid;
1806           repo->rpmdbid[(s - pool->solvables) - repo->start] = rp->rpmdbid;
1807           if (refhash)
1808             {
1809               h = dbid & refmask;
1810               while ((id = refhash[h]))
1811                 {
1812                   if (ref->rpmdbid[id - 1] == dbid)
1813                     break;
1814                   h = (h + 317) & refmask;
1815                 }
1816               if (id)
1817                 {
1818                   Solvable *r = ref->pool->solvables + ref->start + (id - 1);
1819                   if (r->repo == ref)
1820                     {
1821                       solvable_copy(s, r, data, dircache);
1822                       continue;
1823                     }
1824                 }
1825             }
1826           res = getrpmdbid(&state, dbid);
1827           if (res <= 0)
1828             {
1829               if (!res)
1830                 pool_error(pool, -1, "inconsistent rpm database, key %d not found. run 'rpm --rebuilddb' to fix.", dbid);
1831               freestate(&state);
1832               solv_free(entries);
1833               solv_free(namedata);
1834               solv_free(refhash);
1835               return -1;
1836             }
1837           rpm2solv(pool, repo, data, s, state.rpmhead, flags | RPM_ADD_TRIGGERS);
1838           if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1839             {
1840               if (done < count)
1841                 done++;
1842               if (done < count && (done - 1) * 100 / count != done * 100 / count)
1843                 pool_debug(pool, SOLV_ERROR, "%%%% %d\n", done * 100 / count);
1844             }
1845         }
1846
1847       solv_free(entries);
1848       solv_free(namedata);
1849       solv_free(refhash);
1850       if (ref && (flags & RPMDB_EMPTY_REFREPO) != 0)
1851         repo_empty(ref, 1);
1852     }
1853
1854   freestate(&state);
1855   if (!(flags & REPO_NO_INTERNALIZE))
1856     repodata_internalize(data);
1857   if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1858     pool_debug(pool, SOLV_ERROR, "%%%% 100\n");
1859   POOL_DEBUG(SOLV_DEBUG_STATS, "repo_add_rpmdb took %d ms\n", solv_timems(now));
1860   POOL_DEBUG(SOLV_DEBUG_STATS, "repo size: %d solvables\n", repo->nsolvables);
1861   POOL_DEBUG(SOLV_DEBUG_STATS, "repo memory used: %d K incore, %d K idarray\n", repodata_memused(data)/1024, repo->idarraysize / (int)(1024/sizeof(Id)));
1862   return 0;
1863 }
1864
1865 int
1866 repo_add_rpmdb_reffp(Repo *repo, FILE *fp, int flags)
1867 {
1868   int res;
1869   Repo *ref = 0;
1870
1871   if (!fp)
1872     return repo_add_rpmdb(repo, 0, flags);
1873   ref = repo_create(repo->pool, "add_rpmdb_reffp");
1874   if (repo_add_solv(ref, fp, 0) != 0)
1875     {
1876       repo_free(ref, 1);
1877       ref = 0;
1878     }
1879   if (ref && ref->start == ref->end)
1880     {
1881       repo_free(ref, 1);
1882       ref = 0;
1883     }
1884   if (ref)
1885     repo_disable_paging(ref);
1886   res = repo_add_rpmdb(repo, ref, flags | RPMDB_EMPTY_REFREPO);
1887   if (ref)
1888     repo_free(ref, 1);
1889   return res;
1890 }
1891
1892 static inline unsigned int
1893 getu32(const unsigned char *dp)
1894 {
1895   return dp[0] << 24 | dp[1] << 16 | dp[2] << 8 | dp[3];
1896 }
1897
1898
1899 Id
1900 repo_add_rpm(Repo *repo, const char *rpm, int flags)
1901 {
1902   unsigned int sigdsize, sigcnt, l;
1903   Pool *pool = repo->pool;
1904   Solvable *s;
1905   RpmHead *rpmhead = 0;
1906   int rpmheadsize = 0;
1907   char *payloadformat;
1908   FILE *fp;
1909   unsigned char lead[4096];
1910   int headerstart, headerend;
1911   struct stat stb;
1912   Repodata *data;
1913   unsigned char pkgid[16];
1914   unsigned char leadsigid[16];
1915   unsigned char hdrid[32];
1916   int pkgidtype, leadsigidtype, hdridtype;
1917   Id chksumtype = 0;
1918   Chksum *chksumh = 0;
1919   Chksum *leadsigchksumh = 0;
1920   int forcebinary = 0;
1921
1922   data = repo_add_repodata(repo, flags);
1923
1924   if ((flags & RPM_ADD_WITH_SHA256SUM) != 0)
1925     chksumtype = REPOKEY_TYPE_SHA256;
1926   else if ((flags & RPM_ADD_WITH_SHA1SUM) != 0)
1927     chksumtype = REPOKEY_TYPE_SHA1;
1928
1929   if ((fp = fopen(flags & REPO_USE_ROOTDIR ? pool_prepend_rootdir_tmp(pool, rpm) : rpm, "r")) == 0)
1930     {
1931       pool_error(pool, -1, "%s: %s", rpm, strerror(errno));
1932       return 0;
1933     }
1934   if (fstat(fileno(fp), &stb))
1935     {
1936       pool_error(pool, -1, "fstat: %s", strerror(errno));
1937       fclose(fp);
1938       return 0;
1939     }
1940   if (chksumtype)
1941     chksumh = solv_chksum_create(chksumtype);
1942   if ((flags & RPM_ADD_WITH_LEADSIGID) != 0)
1943     leadsigchksumh = solv_chksum_create(REPOKEY_TYPE_MD5);
1944   if (fread(lead, 96 + 16, 1, fp) != 1 || getu32(lead) != 0xedabeedb)
1945     {
1946       pool_error(pool, -1, "%s: not a rpm", rpm);
1947       fclose(fp);
1948       return 0;
1949     }
1950   forcebinary = lead[6] != 0 || lead[7] != 1;
1951   if (chksumh)
1952     solv_chksum_add(chksumh, lead, 96 + 16);
1953   if (leadsigchksumh)
1954     solv_chksum_add(leadsigchksumh, lead, 96 + 16);
1955   if (lead[78] != 0 || lead[79] != 5)
1956     {
1957       pool_error(pool, -1, "%s: not a rpm v5 header", rpm);
1958       fclose(fp);
1959       return 0;
1960     }
1961   if (getu32(lead + 96) != 0x8eade801)
1962     {
1963       pool_error(pool, -1, "%s: bad signature header", rpm);
1964       fclose(fp);
1965       return 0;
1966     }
1967   sigcnt = getu32(lead + 96 + 8);
1968   sigdsize = getu32(lead + 96 + 12);
1969   if (sigcnt >= 0x100000 || sigdsize >= 0x100000)
1970     {
1971       pool_error(pool, -1, "%s: bad signature header", rpm);
1972       fclose(fp);
1973       return 0;
1974     }
1975   sigdsize += sigcnt * 16;
1976   sigdsize = (sigdsize + 7) & ~7;
1977   headerstart = 96 + 16 + sigdsize;
1978   pkgidtype = leadsigidtype = hdridtype = 0;
1979   if ((flags & (RPM_ADD_WITH_PKGID | RPM_ADD_WITH_HDRID)) != 0)
1980     {
1981       /* extract pkgid or hdrid from the signature header */
1982       if (sigdsize > rpmheadsize)
1983         {
1984           rpmheadsize = sigdsize + 128;
1985           rpmhead = solv_realloc(rpmhead, sizeof(*rpmhead) + rpmheadsize);
1986         }
1987       if (fread(rpmhead->data, sigdsize, 1, fp) != 1)
1988         {
1989           pool_error(pool, -1, "%s: unexpected EOF", rpm);
1990           fclose(fp);
1991           return 0;
1992         }
1993       if (chksumh)
1994         solv_chksum_add(chksumh, rpmhead->data, sigdsize);
1995       if (leadsigchksumh)
1996         solv_chksum_add(leadsigchksumh, rpmhead->data, sigdsize);
1997       rpmhead->forcebinary = 0;
1998       rpmhead->cnt = sigcnt;
1999       rpmhead->dcnt = sigdsize - sigcnt * 16;
2000       rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
2001       if ((flags & RPM_ADD_WITH_PKGID) != 0)
2002         {
2003           unsigned char *chksum;
2004           unsigned int chksumsize;
2005           chksum = headbinary(rpmhead, SIGTAG_MD5, &chksumsize);
2006           if (chksum && chksumsize == 16)
2007             {
2008               pkgidtype = REPOKEY_TYPE_MD5;
2009               memcpy(pkgid, chksum, 16);
2010             }
2011         }
2012       if ((flags & RPM_ADD_WITH_HDRID) != 0)
2013         {
2014           const char *str = headstring(rpmhead, TAG_SHA1HEADER);
2015           if (str && strlen(str) == 40)
2016             {
2017               if (solv_hex2bin(&str, hdrid, 20) == 20)
2018                 hdridtype = REPOKEY_TYPE_SHA1;
2019             }
2020           else if (str && strlen(str) == 64)
2021             {
2022               if (solv_hex2bin(&str, hdrid, 32) == 32)
2023                 hdridtype = REPOKEY_TYPE_SHA256;
2024             }
2025         }
2026     }
2027   else
2028     {
2029       /* just skip the signature header */
2030       while (sigdsize)
2031         {
2032           l = sigdsize > 4096 ? 4096 : sigdsize;
2033           if (fread(lead, l, 1, fp) != 1)
2034             {
2035               pool_error(pool, -1, "%s: unexpected EOF", rpm);
2036               fclose(fp);
2037               return 0;
2038             }
2039           if (chksumh)
2040             solv_chksum_add(chksumh, lead, l);
2041           if (leadsigchksumh)
2042             solv_chksum_add(leadsigchksumh, lead, l);
2043           sigdsize -= l;
2044         }
2045     }
2046   if (leadsigchksumh)
2047     {
2048       leadsigchksumh = solv_chksum_free(leadsigchksumh, leadsigid);
2049       leadsigidtype = REPOKEY_TYPE_MD5;
2050     }
2051   if (fread(lead, 16, 1, fp) != 1)
2052     {
2053       pool_error(pool, -1, "%s: unexpected EOF", rpm);
2054       fclose(fp);
2055       return 0;
2056     }
2057   if (chksumh)
2058     solv_chksum_add(chksumh, lead, 16);
2059   if (getu32(lead) != 0x8eade801)
2060     {
2061       pool_error(pool, -1, "%s: bad header", rpm);
2062       fclose(fp);
2063       return 0;
2064     }
2065   sigcnt = getu32(lead + 8);
2066   sigdsize = getu32(lead + 12);
2067   if (sigcnt >= 0x100000 || sigdsize >= 0x2000000)
2068     {
2069       pool_error(pool, -1, "%s: bad header", rpm);
2070       fclose(fp);
2071       return 0;
2072     }
2073   l = sigdsize + sigcnt * 16;
2074   headerend = headerstart + 16 + l;
2075   if (l > rpmheadsize)
2076     {
2077       rpmheadsize = l + 128;
2078       rpmhead = solv_realloc(rpmhead, sizeof(*rpmhead) + rpmheadsize);
2079     }
2080   if (fread(rpmhead->data, l, 1, fp) != 1)
2081     {
2082       pool_error(pool, -1, "%s: unexpected EOF", rpm);
2083       fclose(fp);
2084       return 0;
2085     }
2086   if (chksumh)
2087     solv_chksum_add(chksumh, rpmhead->data, l);
2088   rpmhead->forcebinary = forcebinary;
2089   rpmhead->cnt = sigcnt;
2090   rpmhead->dcnt = sigdsize;
2091   rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
2092   if (headexists(rpmhead, TAG_PATCHESNAME))
2093     {
2094       /* this is a patch rpm, ignore */
2095       pool_error(pool, -1, "%s: is patch rpm", rpm);
2096       fclose(fp);
2097       solv_chksum_free(chksumh, 0);
2098       solv_free(rpmhead);
2099       return 0;
2100     }
2101   payloadformat = headstring(rpmhead, TAG_PAYLOADFORMAT);
2102   if (payloadformat && !strcmp(payloadformat, "drpm"))
2103     {
2104       /* this is a delta rpm */
2105       pool_error(pool, -1, "%s: is delta rpm", rpm);
2106       fclose(fp);
2107       solv_chksum_free(chksumh, 0);
2108       solv_free(rpmhead);
2109       return 0;
2110     }
2111   if (chksumh)
2112     while ((l = fread(lead, 1, sizeof(lead), fp)) > 0)
2113       solv_chksum_add(chksumh, lead, l);
2114   fclose(fp);
2115   s = pool_id2solvable(pool, repo_add_solvable(repo));
2116   if (!rpm2solv(pool, repo, data, s, rpmhead, flags & ~(RPM_ADD_WITH_HDRID | RPM_ADD_WITH_PKGID)))
2117     {
2118       repo_free_solvable(repo, s - pool->solvables, 1);
2119       solv_chksum_free(chksumh, 0);
2120       solv_free(rpmhead);
2121       return 0;
2122     }
2123   if (!(flags & REPO_NO_LOCATION))
2124     repodata_set_location(data, s - pool->solvables, 0, 0, rpm);
2125   if (S_ISREG(stb.st_mode))
2126     repodata_set_num(data, s - pool->solvables, SOLVABLE_DOWNLOADSIZE, (unsigned long long)stb.st_size);
2127   repodata_set_num(data, s - pool->solvables, SOLVABLE_HEADEREND, headerend);
2128   if (pkgidtype)
2129     repodata_set_bin_checksum(data, s - pool->solvables, SOLVABLE_PKGID, pkgidtype, pkgid);
2130   if (hdridtype)
2131     repodata_set_bin_checksum(data, s - pool->solvables, SOLVABLE_HDRID, hdridtype, hdrid);
2132   if (leadsigidtype)
2133     repodata_set_bin_checksum(data, s - pool->solvables, SOLVABLE_LEADSIGID, leadsigidtype, leadsigid);
2134   if (chksumh)
2135     {
2136       repodata_set_bin_checksum(data, s - pool->solvables, SOLVABLE_CHECKSUM, chksumtype, solv_chksum_get(chksumh, 0));
2137       chksumh = solv_chksum_free(chksumh, 0);
2138     }
2139   solv_free(rpmhead);
2140   if (!(flags & REPO_NO_INTERNALIZE))
2141     repodata_internalize(data);
2142   return s - pool->solvables;
2143 }
2144
2145 Id
2146 repo_add_rpm_handle(Repo *repo, void *rpmhandle, int flags)
2147 {
2148   Pool *pool = repo->pool;
2149   Repodata *data;
2150   RpmHead *rpmhead = rpmhandle;
2151   Solvable *s;
2152   char *payloadformat;
2153
2154   data = repo_add_repodata(repo, flags);
2155   if (headexists(rpmhead, TAG_PATCHESNAME))
2156     {
2157       pool_error(pool, -1, "is a patch rpm");
2158       return 0;
2159     }
2160   payloadformat = headstring(rpmhead, TAG_PAYLOADFORMAT);
2161   if (payloadformat && !strcmp(payloadformat, "drpm"))
2162     {
2163       /* this is a delta rpm */
2164       pool_error(pool, -1, "is a delta rpm");
2165       return 0;
2166     }
2167   s = pool_id2solvable(pool, repo_add_solvable(repo));
2168   if (!rpm2solv(pool, repo, data, s, rpmhead, flags))
2169     {
2170       repo_free_solvable(repo, s - pool->solvables, 1);
2171       return 0;
2172     }
2173   if (!(flags & REPO_NO_INTERNALIZE))
2174     repodata_internalize(data);
2175   return s - pool->solvables;
2176 }
2177
2178 static inline void
2179 linkhash(const char *lt, char *hash)
2180 {
2181   unsigned int r = 0;
2182   const unsigned char *str = (const unsigned char *)lt;
2183   int l, c;
2184
2185   l = strlen(lt);
2186   while ((c = *str++) != 0)
2187     r += (r << 3) + c;
2188   sprintf(hash, "%08x%08x%08x%08x", r, l, 0, 0);
2189 }
2190
2191 void
2192 rpm_iterate_filelist(void *rpmhandle, int flags, void (*cb)(void *, const char *, struct filelistinfo *), void *cbdata)
2193 {
2194   RpmHead *rpmhead = rpmhandle;
2195   char **bn;
2196   char **dn;
2197   char **md = 0;
2198   char **lt = 0;
2199   unsigned int *di, diidx;
2200   unsigned int *co = 0;
2201   unsigned int *ff = 0;
2202   unsigned int lastdir;
2203   int lastdirl;
2204   unsigned int *fm;
2205   int cnt, dcnt, cnt2;
2206   int i, l1, l;
2207   char *space = 0;
2208   int spacen = 0;
2209   char md5[33];
2210   struct filelistinfo info;
2211
2212   dn = headstringarray(rpmhead, TAG_DIRNAMES, &dcnt);
2213   if (!dn)
2214     return;
2215   if ((flags & RPM_ITERATE_FILELIST_ONLYDIRS) != 0)
2216     {
2217       for (i = 0; i < dcnt; i++)
2218         (*cb)(cbdata, dn[i], 0);
2219       solv_free(dn);
2220       return;
2221     }
2222   bn = headstringarray(rpmhead, TAG_BASENAMES, &cnt);
2223   if (!bn)
2224     {
2225       solv_free(dn);
2226       return;
2227     }
2228   di = headint32array(rpmhead, TAG_DIRINDEXES, &cnt2);
2229   if (!di || cnt != cnt2)
2230     {
2231       solv_free(di);
2232       solv_free(bn);
2233       solv_free(dn);
2234       return;
2235     }
2236   fm = headint16array(rpmhead, TAG_FILEMODES, &cnt2);
2237   if (!fm || cnt != cnt2)
2238     {
2239       solv_free(fm);
2240       solv_free(di);
2241       solv_free(bn);
2242       solv_free(dn);
2243       return;
2244     }
2245   if ((flags & RPM_ITERATE_FILELIST_WITHMD5) != 0)
2246     {
2247       md = headstringarray(rpmhead, TAG_FILEMD5S, &cnt2);
2248       if (!md || cnt != cnt2)
2249         {
2250           solv_free(md);
2251           solv_free(fm);
2252           solv_free(di);
2253           solv_free(bn);
2254           solv_free(dn);
2255           return;
2256         }
2257     }
2258   if ((flags & RPM_ITERATE_FILELIST_WITHCOL) != 0)
2259     {
2260       co = headint32array(rpmhead, TAG_FILECOLORS, &cnt2);
2261       if (!co || cnt != cnt2)
2262         {
2263           solv_free(co);
2264           solv_free(md);
2265           solv_free(fm);
2266           solv_free(di);
2267           solv_free(bn);
2268           solv_free(dn);
2269           return;
2270         }
2271     }
2272   if ((flags & RPM_ITERATE_FILELIST_NOGHOSTS) != 0)
2273     {
2274       ff = headint32array(rpmhead, TAG_FILEFLAGS, &cnt2);
2275       if (!ff || cnt != cnt2)
2276         {
2277           solv_free(ff);
2278           solv_free(co);
2279           solv_free(md);
2280           solv_free(fm);
2281           solv_free(di);
2282           solv_free(bn);
2283           solv_free(dn);
2284           return;
2285         }
2286     }
2287   lastdir = dcnt;
2288   lastdirl = 0;
2289   memset(&info, 0, sizeof(info));
2290   for (i = 0; i < cnt; i++)
2291     {
2292       if (ff && (ff[i] & FILEFLAG_GHOST) != 0)
2293         continue;
2294       diidx = di[i];
2295       if (diidx >= dcnt)
2296         continue;
2297       l1 = lastdir == diidx ? lastdirl : strlen(dn[diidx]);
2298       l = l1 + strlen(bn[i]) + 1;
2299       if (l > spacen)
2300         {
2301           spacen = l + 16;
2302           space = solv_realloc(space, spacen);
2303         }
2304       if (lastdir != diidx)
2305         {
2306           strcpy(space, dn[diidx]);
2307           lastdir = diidx;
2308           lastdirl = l1;
2309         }
2310       strcpy(space + l1, bn[i]);
2311       info.diridx = diidx;
2312       info.dirlen = l1;
2313       if (fm)
2314         info.mode = fm[i];
2315       if (md)
2316         {
2317           info.digest = md[i];
2318           if (fm && S_ISLNK(fm[i]))
2319             {
2320               info.digest = 0;
2321               if (!lt)
2322                 {
2323                   lt = headstringarray(rpmhead, TAG_FILELINKTOS, &cnt2);
2324                   if (cnt != cnt2)
2325                     lt = solv_free(lt);
2326                 }
2327               if (lt)
2328                 {
2329                   linkhash(lt[i], md5);
2330                   info.digest = md5;
2331                 }
2332             }
2333           if (!info.digest)
2334             {
2335               sprintf(md5, "%08x%08x%08x%08x", (fm[i] >> 12) & 65535, 0, 0, 0);
2336               info.digest = md5;
2337             }
2338         }
2339       if (co)
2340         info.color = co[i];
2341       (*cb)(cbdata, space, &info);
2342     }
2343   solv_free(space);
2344   solv_free(lt);
2345   solv_free(md);
2346   solv_free(fm);
2347   solv_free(di);
2348   solv_free(bn);
2349   solv_free(dn);
2350   solv_free(co);
2351   solv_free(ff);
2352 }
2353
2354 char *
2355 rpm_query(void *rpmhandle, Id what)
2356 {
2357   const char *name, *arch, *sourcerpm;
2358   char *evr, *r;
2359   int l;
2360
2361   RpmHead *rpmhead = rpmhandle;
2362   r = 0;
2363   switch (what)
2364     {
2365     case 0:
2366       name = headstring(rpmhead, TAG_NAME);
2367       if (!name)
2368         name = "";
2369       sourcerpm = headstring(rpmhead, TAG_SOURCERPM);
2370       if (sourcerpm || (rpmhead->forcebinary && !headexists(rpmhead, TAG_SOURCEPACKAGE)))
2371         arch = headstring(rpmhead, TAG_ARCH);
2372       else
2373         {
2374           if (headexists(rpmhead, TAG_NOSOURCE) || headexists(rpmhead, TAG_NOPATCH))
2375             arch = "nosrc";
2376           else
2377             arch = "src";
2378         }
2379       if (!arch)
2380         arch = "noarch";
2381       evr = headtoevr(rpmhead);
2382       l = strlen(name) + 1 + strlen(evr ? evr : "") + 1 + strlen(arch) + 1;
2383       r = solv_malloc(l);
2384       sprintf(r, "%s-%s.%s", name, evr ? evr : "", arch);
2385       solv_free(evr);
2386       break;
2387     case SOLVABLE_NAME:
2388       name = headstring(rpmhead, TAG_NAME);
2389       r = solv_strdup(name);
2390       break;
2391     case SOLVABLE_SUMMARY:
2392       name = headstring(rpmhead, TAG_SUMMARY);
2393       r = solv_strdup(name);
2394       break;
2395     case SOLVABLE_DESCRIPTION:
2396       name = headstring(rpmhead, TAG_DESCRIPTION);
2397       r = solv_strdup(name);
2398       break;
2399     case SOLVABLE_EVR:
2400       r = headtoevr(rpmhead);
2401       break;
2402     }
2403   return r;
2404 }
2405
2406 unsigned long long
2407 rpm_query_num(void *rpmhandle, Id what, unsigned long long notfound)
2408 {
2409   RpmHead *rpmhead = rpmhandle;
2410   unsigned int u32;
2411
2412   switch (what)
2413     {
2414     case SOLVABLE_INSTALLTIME:
2415       u32 = headint32(rpmhead, TAG_INSTALLTIME);
2416       return u32 ? u32 : notfound;
2417     }
2418   return notfound;
2419 }
2420
2421 int
2422 rpm_installedrpmdbids(void *rpmstate, const char *index, const char *match, Queue *rpmdbidq)
2423 {
2424   struct rpmdbentry *entries;
2425   int nentries, i;
2426
2427   entries = getinstalledrpmdbids(rpmstate, index ? index : "Name", match, &nentries, 0);
2428   if (rpmdbidq)
2429     {
2430       queue_empty(rpmdbidq);
2431       for (i = 0; i < nentries; i++)
2432         queue_push(rpmdbidq, entries[i].rpmdbid);
2433     }
2434   solv_free(entries);
2435   return nentries;
2436 }
2437
2438 void *
2439 rpm_byrpmdbid(void *rpmstate, Id rpmdbid)
2440 {
2441   struct rpmdbstate *state = rpmstate;
2442   int r;
2443
2444   r = getrpmdbid(state, rpmdbid);
2445   if (!r)
2446     pool_error(state->pool, 0, "header #%d not in database", rpmdbid);
2447   return r <= 0 ? 0 : state->rpmhead;
2448 }
2449
2450 void *
2451 rpm_byfp(void *rpmstate, FILE *fp, const char *name)
2452 {
2453   struct rpmdbstate *state = rpmstate;
2454   /* int headerstart, headerend; */
2455   RpmHead *rpmhead;
2456   unsigned int sigdsize, sigcnt, l;
2457   unsigned char lead[4096];
2458   int forcebinary = 0;
2459
2460   if (fread(lead, 96 + 16, 1, fp) != 1 || getu32(lead) != 0xedabeedb)
2461     {
2462       pool_error(state->pool, 0, "%s: not a rpm", name);
2463       return 0;
2464     }
2465   forcebinary = lead[6] != 0 || lead[7] != 1;
2466   if (lead[78] != 0 || lead[79] != 5)
2467     {
2468       pool_error(state->pool, 0, "%s: not a V5 header", name);
2469       return 0;
2470     }
2471   if (getu32(lead + 96) != 0x8eade801)
2472     {
2473       pool_error(state->pool, 0, "%s: bad signature header", name);
2474       return 0;
2475     }
2476   sigcnt = getu32(lead + 96 + 8);
2477   sigdsize = getu32(lead + 96 + 12);
2478   if (sigcnt >= 0x100000 || sigdsize >= 0x100000)
2479     {
2480       pool_error(state->pool, 0, "%s: bad signature header", name);
2481       return 0;
2482     }
2483   sigdsize += sigcnt * 16;
2484   sigdsize = (sigdsize + 7) & ~7;
2485   /* headerstart = 96 + 16 + sigdsize; */
2486   while (sigdsize)
2487     {
2488       l = sigdsize > 4096 ? 4096 : sigdsize;
2489       if (fread(lead, l, 1, fp) != 1)
2490         {
2491           pool_error(state->pool, 0, "%s: unexpected EOF", name);
2492           return 0;
2493         }
2494       sigdsize -= l;
2495     }
2496   if (fread(lead, 16, 1, fp) != 1)
2497     {
2498       pool_error(state->pool, 0, "%s: unexpected EOF", name);
2499       return 0;
2500     }
2501   if (getu32(lead) != 0x8eade801)
2502     {
2503       pool_error(state->pool, 0, "%s: bad header", name);
2504       return 0;
2505     }
2506   sigcnt = getu32(lead + 8);
2507   sigdsize = getu32(lead + 12);
2508   if (sigcnt >= 0x100000 || sigdsize >= 0x2000000)
2509     {
2510       pool_error(state->pool, 0, "%s: bad header", name);
2511       return 0;
2512     }
2513   l = sigdsize + sigcnt * 16;
2514   /* headerend = headerstart + 16 + l; */
2515   if (l > state->rpmheadsize)
2516     {
2517       state->rpmheadsize = l + 128;
2518       state->rpmhead = solv_realloc(state->rpmhead, sizeof(*state->rpmhead) + state->rpmheadsize);
2519     }
2520   rpmhead = state->rpmhead;
2521   if (fread(rpmhead->data, l, 1, fp) != 1)
2522     {
2523       pool_error(state->pool, 0, "%s: unexpected EOF", name);
2524       return 0;
2525     }
2526   rpmhead->forcebinary = forcebinary;
2527   rpmhead->cnt = sigcnt;
2528   rpmhead->dcnt = sigdsize;
2529   rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
2530   return rpmhead;
2531 }
2532
2533 #ifdef ENABLE_RPMDB_BYRPMHEADER
2534
2535 void *
2536 rpm_byrpmh(void *rpmstate, Header h)
2537 {
2538   struct rpmdbstate *state = rpmstate;
2539   const unsigned char *uh;
2540   unsigned int sigdsize, sigcnt, l;
2541   RpmHead *rpmhead;
2542
2543 #ifndef RPM5
2544   uh = headerUnload(h);
2545 #else
2546   uh = headerUnload(h, NULL);
2547 #endif
2548   if (!uh)
2549     return 0;
2550   sigcnt = getu32(uh);
2551   sigdsize = getu32(uh + 4);
2552   l = sigdsize + sigcnt * 16;
2553   if (l > state->rpmheadsize)
2554     {
2555       state->rpmheadsize = l + 128;
2556       state->rpmhead = solv_realloc(state->rpmhead, sizeof(*state->rpmhead) + state->rpmheadsize);
2557     }
2558   rpmhead = state->rpmhead;
2559   memcpy(rpmhead->data, uh + 8, l - 8);
2560   free((void *)uh);
2561   rpmhead->forcebinary = 0;
2562   rpmhead->cnt = sigcnt;
2563   rpmhead->dcnt = sigdsize;
2564   rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
2565   return rpmhead;
2566 }
2567
2568 #endif
2569