- hide repodata internals (needed to move repo_write from ext to src for this)
[platform/upstream/libsolv.git] / ext / repo_rpmdb.c
1 /*
2  * Copyright (c) 2007, 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
26 #include <rpm/rpmio.h>
27 #include <rpm/rpmpgp.h>
28 #ifndef RPM5
29 #include <rpm/header.h>
30 #endif
31 #include <rpm/rpmdb.h>
32
33 #ifndef DB_CREATE
34 # ifdef FEDORA
35 #  include <db.h>
36 # else
37 #  include <rpm/db.h>
38 # endif
39 #endif
40
41 #include "pool.h"
42 #include "repo.h"
43 #include "hash.h"
44 #include "util.h"
45 #include "queue.h"
46 #include "chksum.h"
47 #include "repo_rpmdb.h"
48
49 /* 3: added triggers */
50 /* 4: fixed triggers */
51 #define RPMDB_COOKIE_VERSION 4
52
53 #define TAG_NAME                1000
54 #define TAG_VERSION             1001
55 #define TAG_RELEASE             1002
56 #define TAG_EPOCH               1003
57 #define TAG_SUMMARY             1004
58 #define TAG_DESCRIPTION         1005
59 #define TAG_BUILDTIME           1006
60 #define TAG_BUILDHOST           1007
61 #define TAG_INSTALLTIME         1008
62 #define TAG_SIZE                1009
63 #define TAG_DISTRIBUTION        1010
64 #define TAG_VENDOR              1011
65 #define TAG_LICENSE             1014
66 #define TAG_PACKAGER            1015
67 #define TAG_GROUP               1016
68 #define TAG_URL                 1020
69 #define TAG_ARCH                1022
70 #define TAG_FILESIZES           1028
71 #define TAG_FILEMODES           1030
72 #define TAG_FILEMD5S            1035
73 #define TAG_FILELINKTOS         1036
74 #define TAG_FILEFLAGS           1037
75 #define TAG_SOURCERPM           1044
76 #define TAG_PROVIDENAME         1047
77 #define TAG_REQUIREFLAGS        1048
78 #define TAG_REQUIRENAME         1049
79 #define TAG_REQUIREVERSION      1050
80 #define TAG_NOSOURCE            1051
81 #define TAG_NOPATCH             1052
82 #define TAG_CONFLICTFLAGS       1053
83 #define TAG_CONFLICTNAME        1054
84 #define TAG_CONFLICTVERSION     1055
85 #define TAG_TRIGGERNAME         1066
86 #define TAG_TRIGGERVERSION      1067
87 #define TAG_TRIGGERFLAGS        1068
88 #define TAG_OBSOLETENAME        1090
89 #define TAG_FILEDEVICES         1095
90 #define TAG_FILEINODES          1096
91 #define TAG_PROVIDEFLAGS        1112
92 #define TAG_PROVIDEVERSION      1113
93 #define TAG_OBSOLETEFLAGS       1114
94 #define TAG_OBSOLETEVERSION     1115
95 #define TAG_DIRINDEXES          1116
96 #define TAG_BASENAMES           1117
97 #define TAG_DIRNAMES            1118
98 #define TAG_PAYLOADFORMAT       1124
99 #define TAG_PATCHESNAME         1133
100 #define TAG_FILECOLORS          1140
101 #define TAG_SUGGESTSNAME        1156
102 #define TAG_SUGGESTSVERSION     1157
103 #define TAG_SUGGESTSFLAGS       1158
104 #define TAG_ENHANCESNAME        1159
105 #define TAG_ENHANCESVERSION     1160
106 #define TAG_ENHANCESFLAGS       1161
107
108 #define SIGTAG_SIZE             1000
109 #define SIGTAG_PGP              1002    /* RSA signature */
110 #define SIGTAG_MD5              1004    /* header+payload md5 checksum */
111 #define SIGTAG_GPG              1005    /* DSA signature */
112
113 #define DEP_LESS                (1 << 1)
114 #define DEP_GREATER             (1 << 2)
115 #define DEP_EQUAL               (1 << 3)
116 #define DEP_STRONG              (1 << 27)
117 #define DEP_PRE                 ((1 << 6) | (1 << 9) | (1 << 10) | (1 << 11) | (1 << 12))
118
119 #define FILEFLAG_GHOST          (1 <<  6)
120
121
122 #ifdef RPM5
123 # define RPM_INDEX_SIZE 4
124 #else
125 # define RPM_INDEX_SIZE 8
126 #endif
127
128 struct rpmid {
129   unsigned int dbid;
130   char *name;
131 };
132
133 typedef struct rpmhead {
134   int cnt;
135   int dcnt;
136   unsigned char *dp;
137   unsigned char data[1];
138 } RpmHead;
139
140
141 static inline unsigned char *
142 headfindtag(RpmHead *h, int tag)
143 {
144   unsigned int i;
145   unsigned char *d, taga[4];
146   d = h->dp - 16;
147   taga[0] = tag >> 24;
148   taga[1] = tag >> 16;
149   taga[2] = tag >> 8;
150   taga[3] = tag;
151   for (i = 0; i < h->cnt; i++, d -= 16)
152     if (d[3] == taga[3] && d[2] == taga[2] && d[1] == taga[1] && d[0] == taga[0])
153       return d;
154   return 0;
155 }
156
157 static int
158 headexists(RpmHead *h, int tag)
159 {
160   return headfindtag(h, tag) ? 1 : 0;
161 }
162
163 static unsigned int *
164 headint32array(RpmHead *h, int tag, int *cnt)
165 {
166   unsigned int i, o, *r;
167   unsigned char *d = headfindtag(h, tag);
168
169   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || d[7] != 4)
170     return 0;
171   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
172   i = d[12] << 24 | d[13] << 16 | d[14] << 8 | d[15];
173   if (o + 4 * i > h->dcnt)
174     return 0;
175   d = h->dp + o;
176   r = solv_calloc(i ? i : 1, sizeof(unsigned int));
177   if (cnt)
178     *cnt = i;
179   for (o = 0; o < i; o++, d += 4)
180     r[o] = d[0] << 24 | d[1] << 16 | d[2] << 8 | d[3];
181   return r;
182 }
183
184 /* returns the first entry of an integer array */
185 static unsigned int
186 headint32(RpmHead *h, int tag)
187 {
188   unsigned int i, o;
189   unsigned char *d = headfindtag(h, tag);
190
191   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || d[7] != 4)
192     return 0;
193   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
194   i = d[12] << 24 | d[13] << 16 | d[14] << 8 | d[15];
195   if (i == 0 || o + 4 * i > h->dcnt)
196     return 0;
197   d = h->dp + o;
198   return d[0] << 24 | d[1] << 16 | d[2] << 8 | d[3];
199 }
200
201 static unsigned int *
202 headint16array(RpmHead *h, int tag, int *cnt)
203 {
204   unsigned int i, o, *r;
205   unsigned char *d = headfindtag(h, tag);
206
207   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || d[7] != 3)
208     return 0;
209   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
210   i = d[12] << 24 | d[13] << 16 | d[14] << 8 | d[15];
211   if (o + 4 * i > h->dcnt)
212     return 0;
213   d = h->dp + o;
214   r = solv_calloc(i ? i : 1, sizeof(unsigned int));
215   if (cnt)
216     *cnt = i;
217   for (o = 0; o < i; o++, d += 2)
218     r[o] = d[0] << 8 | d[1];
219   return r;
220 }
221
222 static char *
223 headstring(RpmHead *h, int tag)
224 {
225   unsigned int o;
226   unsigned char *d = headfindtag(h, tag);
227   /* 6: STRING, 9: I18NSTRING */
228   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || (d[7] != 6 && d[7] != 9))
229     return 0;
230   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
231   if (o >= h->dcnt)
232     return 0;
233   return (char *)h->dp + o;
234 }
235
236 static char **
237 headstringarray(RpmHead *h, int tag, int *cnt)
238 {
239   unsigned int i, o;
240   unsigned char *d = headfindtag(h, tag);
241   char **r;
242
243   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || d[7] != 8)
244     return 0;
245   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
246   i = d[12] << 24 | d[13] << 16 | d[14] << 8 | d[15];
247   r = solv_calloc(i ? i : 1, sizeof(char *));
248   if (cnt)
249     *cnt = i;
250   d = h->dp + o;
251   for (o = 0; o < i; o++)
252     {
253       r[o] = (char *)d;
254       if (o + 1 < i)
255         d += strlen((char *)d) + 1;
256       if (d >= h->dp + h->dcnt)
257         {
258           solv_free(r);
259           return 0;
260         }
261     }
262   return r;
263 }
264
265 static unsigned char *
266 headbinary(RpmHead *h, int tag, unsigned int *sizep)
267 {
268   unsigned int i, o;
269   unsigned char *d = headfindtag(h, tag);
270   if (!d || d[4] != 0 || d[5] != 0 || d[6] != 0 || d[7] != 7)
271     return 0;
272   o = d[8] << 24 | d[9] << 16 | d[10] << 8 | d[11];
273   i = d[12] << 24 | d[13] << 16 | d[14] << 8 | d[15];
274   if (o > h->dcnt || o + i < o || o + i > h->dcnt)
275     return 0;
276   if (sizep)
277     *sizep = i;
278   return h->dp + o;
279 }
280
281 static char *headtoevr(RpmHead *h)
282 {
283   unsigned int epoch;
284   char *version, *v;
285   char *release;
286   char *evr;
287
288   version  = headstring(h, TAG_VERSION);
289   release  = headstring(h, TAG_RELEASE);
290   epoch = headint32(h, TAG_EPOCH);
291   if (!version || !release)
292     {
293       fprintf(stderr, "headtoevr: bad rpm header\n");
294       exit(1);
295     }
296   for (v = version; *v >= '0' && *v <= '9'; v++)
297     ;
298   if (epoch || (v != version && *v == ':'))
299     {
300       char epochbuf[11];        /* 32bit decimal will fit in */
301       sprintf(epochbuf, "%u", epoch);
302       evr = solv_malloc(strlen(epochbuf) + 1 + strlen(version) + 1 + strlen(release) + 1);
303       sprintf(evr, "%s:%s-%s", epochbuf, version, release);
304     }
305   else
306     {
307       evr = solv_malloc(strlen(version) + 1 + strlen(release) + 1);
308       sprintf(evr, "%s-%s", version, release);
309     }
310   return evr;
311 }
312
313
314 static void
315 setutf8string(Repodata *repodata, Id handle, Id tag, const char *str)
316 {
317   const unsigned char *cp;
318   int state = 0;
319   int c;
320   unsigned char *buf = 0, *bp;
321
322   /* check if it's already utf8, code taken from screen ;-) */
323   cp = (const unsigned char *)str;
324   while ((c = *cp++) != 0)
325     {
326       if (state)
327         {
328           if ((c & 0xc0) != 0x80)
329             break; /* encoding error */
330           c = (c & 0x3f) | (state << 6);
331           if (!(state & 0x40000000))
332             {
333               /* check for overlong sequences */
334               if ((c & 0x820823e0) == 0x80000000)
335                 c = 0xfdffffff;
336               else if ((c & 0x020821f0) == 0x02000000)
337                 c = 0xfff7ffff;
338               else if ((c & 0x000820f8) == 0x00080000)
339                 c = 0xffffd000;
340               else if ((c & 0x0000207c) == 0x00002000)
341                 c = 0xffffff70;
342             }
343         }
344       else
345         {
346           /* new sequence */
347           if (c >= 0xfe)
348             break;
349           else if (c >= 0xfc)
350             c = (c & 0x01) | 0xbffffffc;    /* 5 bytes to follow */
351           else if (c >= 0xf8)
352             c = (c & 0x03) | 0xbfffff00;    /* 4 */
353           else if (c >= 0xf0)
354             c = (c & 0x07) | 0xbfffc000;    /* 3 */
355           else if (c >= 0xe0)
356             c = (c & 0x0f) | 0xbff00000;    /* 2 */
357           else if (c >= 0xc2)
358             c = (c & 0x1f) | 0xfc000000;    /* 1 */
359           else if (c >= 0x80)
360             break;
361         }
362       state = (c & 0x80000000) ? c : 0;
363     }
364   if (c)
365     {
366       /* not utf8, assume latin1 */
367       buf = solv_malloc(2 * strlen(str) + 1);
368       cp = (const unsigned char *)str;
369       str = (char *)buf;
370       bp = buf;
371       while ((c = *cp++) != 0)
372         {
373           if (c >= 0xc0)
374             {
375               *bp++ = 0xc3;
376               c ^= 0x80;
377             }
378           else if (c >= 0x80)
379             *bp++ = 0xc2;
380           *bp++ = c;
381         }
382       *bp++ = 0;
383     }
384   repodata_set_str(repodata, handle, tag, str);
385   if (buf)
386     solv_free(buf);
387 }
388
389
390 #define MAKEDEPS_FILTER_WEAK    (1 << 0)
391 #define MAKEDEPS_FILTER_STRONG  (1 << 1)
392 #define MAKEDEPS_NO_RPMLIB      (1 << 2)
393
394 /*
395  * strong: 0: ignore strongness
396  *         1: filter to strong
397  *         2: filter to weak
398  */
399 static unsigned int
400 makedeps(Pool *pool, Repo *repo, RpmHead *rpmhead, int tagn, int tagv, int tagf, int flags)
401 {
402   char **n, **v;
403   unsigned int *f;
404   int i, cc, nc, vc, fc;
405   int haspre;
406   unsigned int olddeps;
407   Id *ida;
408   int strong;
409
410   strong = flags & (MAKEDEPS_FILTER_STRONG|MAKEDEPS_FILTER_WEAK);
411   n = headstringarray(rpmhead, tagn, &nc);
412   if (!n)
413     return 0;
414   v = headstringarray(rpmhead, tagv, &vc);
415   if (!v)
416     {
417       solv_free(n);
418       return 0;
419     }
420   f = headint32array(rpmhead, tagf, &fc);
421   if (!f)
422     {
423       solv_free(n);
424       free(v);
425       return 0;
426     }
427   if (nc != vc || nc != fc)
428     {
429       fprintf(stderr, "bad dependency entries\n");
430       exit(1);
431     }
432
433   cc = nc;
434   haspre = 0;   /* add no prereq marker */
435   if (flags)
436     {
437       /* we do filtering */
438       cc = 0;
439       for (i = 0; i < nc; i++)
440         {
441           if (strong && (f[i] & DEP_STRONG) != (strong == MAKEDEPS_FILTER_WEAK ? 0 : DEP_STRONG))
442             continue;
443           if ((flags & MAKEDEPS_NO_RPMLIB) != 0)
444             if (!strncmp(n[i], "rpmlib(", 7))
445               continue;
446           if ((f[i] & DEP_PRE) != 0)
447             haspre = 1;
448           cc++;
449         }
450     }
451   else if (tagn == TAG_REQUIRENAME)
452     {
453       /* no filtering, just look for the first prereq */
454       for (i = 0; i < nc; i++)
455         if ((f[i] & DEP_PRE) != 0)
456           {
457             haspre = 1;
458             break;
459           }
460     }
461   if (cc == 0)
462     {
463       solv_free(n);
464       solv_free(v);
465       solv_free(f);
466       return 0;
467     }
468   cc += haspre;
469   olddeps = repo_reserve_ids(repo, 0, cc);
470   ida = repo->idarraydata + olddeps;
471   for (i = 0; ; i++)
472     {
473       if (i == nc)
474         {
475           if (haspre != 1)
476             break;
477           haspre = 2;   /* pass two: prereqs */
478           i = 0;
479           *ida++ = SOLVABLE_PREREQMARKER;
480         }
481       if (strong && (f[i] & DEP_STRONG) != (strong == MAKEDEPS_FILTER_WEAK ? 0 : DEP_STRONG))
482         continue;
483       if (haspre == 1 && (f[i] & DEP_PRE) != 0)
484         continue;
485       if (haspre == 2 && (f[i] & DEP_PRE) == 0)
486         continue;
487       if ((flags & MAKEDEPS_NO_RPMLIB) != 0)
488         if (!strncmp(n[i], "rpmlib(", 7))
489           continue;
490       if (f[i] & (DEP_LESS|DEP_GREATER|DEP_EQUAL))
491         {
492           Id name, evr;
493           int flags = 0;
494           if ((f[i] & DEP_LESS) != 0)
495             flags |= 4;
496           if ((f[i] & DEP_EQUAL) != 0)
497             flags |= 2;
498           if ((f[i] & DEP_GREATER) != 0)
499             flags |= 1;
500           name = pool_str2id(pool, n[i], 1);
501           if (v[i][0] == '0' && v[i][1] == ':' && v[i][2])
502             evr = pool_str2id(pool, v[i] + 2, 1);
503           else
504             evr = pool_str2id(pool, v[i], 1);
505           *ida++ = pool_rel2id(pool, name, evr, flags, 1);
506         }
507       else
508         *ida++ = pool_str2id(pool, n[i], 1);
509     }
510   *ida++ = 0;
511   repo->idarraysize += cc + 1;
512   solv_free(n);
513   solv_free(v);
514   solv_free(f);
515   return olddeps;
516 }
517
518
519 #ifdef USE_FILEFILTER
520
521 #define FILEFILTER_EXACT    0
522 #define FILEFILTER_STARTS   1
523 #define FILEFILTER_CONTAINS 2
524
525 struct filefilter {
526   int dirmatch;
527   char *dir;
528   char *base;
529 };
530
531 static struct filefilter filefilters[] = {
532   { FILEFILTER_CONTAINS, "/bin/", 0},
533   { FILEFILTER_CONTAINS, "/sbin/", 0},
534   { FILEFILTER_CONTAINS, "/lib/", 0},
535   { FILEFILTER_CONTAINS, "/lib64/", 0},
536   { FILEFILTER_CONTAINS, "/etc/", 0},
537   { FILEFILTER_STARTS, "/usr/games/", 0},
538   { FILEFILTER_EXACT, "/usr/share/dict/", "words"},
539   { FILEFILTER_STARTS, "/usr/share/", "magic.mime"},
540   { FILEFILTER_STARTS, "/opt/gnome/games/", 0},
541 };
542
543 #endif
544
545 static void
546 adddudata(Pool *pool, Repo *repo, Repodata *data, Solvable *s, RpmHead *rpmhead, char **dn, unsigned int *di, int fc, int dc)
547 {
548   Id handle, did;
549   int i, fszc;
550   unsigned int *fkb, *fn, *fsz, *fm, *fino;
551   unsigned int inotest[256], inotestok;
552
553   if (!fc)
554     return;
555   fsz = headint32array(rpmhead, TAG_FILESIZES, &fszc);
556   if (!fsz || fc != fszc)
557     {
558       solv_free(fsz);
559       return;
560     }
561   /* stupid rpm records sizes of directories, so we have to check the mode */
562   fm = headint16array(rpmhead, TAG_FILEMODES, &fszc);
563   if (!fm || fc != fszc)
564     {
565       solv_free(fsz);
566       solv_free(fm);
567       return;
568     }
569   fino = headint32array(rpmhead, TAG_FILEINODES, &fszc);
570   if (!fino || fc != fszc)
571     {
572       solv_free(fsz);
573       solv_free(fm);
574       solv_free(fino);
575       return;
576     }
577   inotestok = 0;
578   if (fc < sizeof(inotest))
579     {
580       memset(inotest, 0, sizeof(inotest));
581       for (i = 0; i < fc; i++)
582         {
583           int off, bit;
584           if (fsz[i] == 0 || !S_ISREG(fm[i]))
585             continue;
586           off = (fino[i] >> 5) & (sizeof(inotest)/sizeof(*inotest) - 1);
587           bit = 1 << (fino[i] & 31);
588           if ((inotest[off] & bit) != 0)
589             break;
590           inotest[off] |= bit;
591         }
592       if (i == fc)
593         inotestok = 1;
594     }
595   if (!inotestok)
596     {
597       unsigned int *fdev = headint32array(rpmhead, TAG_FILEDEVICES, &fszc);
598       unsigned int *fx, j;
599       unsigned int mask, hash, hh;
600       if (!fdev || fc != fszc)
601         {
602           solv_free(fsz);
603           solv_free(fm);
604           solv_free(fdev);
605           solv_free(fino);
606           return;
607         }
608       mask = fc;
609       while ((mask & (mask - 1)) != 0)
610         mask = mask & (mask - 1);
611       mask <<= 2;
612       if (mask > sizeof(inotest)/sizeof(*inotest))
613         fx = solv_calloc(mask, sizeof(unsigned int));
614       else
615         {
616           fx = inotest;
617           memset(fx, 0, mask * sizeof(unsigned int));
618         }
619       mask--;
620       for (i = 0; i < fc; i++)
621         {
622           if (fsz[i] == 0 || !S_ISREG(fm[i]))
623             continue;
624           hash = (fino[i] + fdev[i] * 31) & mask;
625           hh = 7;
626           while ((j = fx[hash]) != 0)
627             {
628               if (fino[j - 1] == fino[i] && fdev[j - 1] == fdev[i])
629                 {
630                   fsz[i] = 0;   /* kill entry */
631                   break;
632                 }
633               hash = (hash + hh++) & mask;
634             }
635           if (!j)
636             fx[hash] = i + 1;
637         }
638       if (fx != inotest)
639         solv_free(fx);
640       solv_free(fdev);
641     }
642   solv_free(fino);
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;
649       fn[di[i]]++;
650       if (fsz[i] == 0 || !S_ISREG(fm[i]))
651         continue;
652       fkb[di[i]] += fsz[i] / 1024 + 1;
653     }
654   solv_free(fsz);
655   solv_free(fm);
656   /* commit */
657   handle = s - pool->solvables;
658   for (i = 0; i < dc; i++)
659     {
660       if (!fn[i])
661         continue;
662       if (!*dn[i])
663         {
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 /* assumes last processed array is provides! */
678 static unsigned int
679 addfileprovides(Pool *pool, Repo *repo, Repodata *data, Solvable *s, RpmHead *rpmhead, unsigned int olddeps)
680 {
681   char **bn;
682   char **dn;
683   unsigned int *di;
684   int bnc, dnc, dic;
685   int i;
686 #ifdef USE_FILEFILTER
687   int j;
688   struct filefilter *ff;
689 #endif
690 #if 0
691   char *fn = 0;
692   int fna = 0;
693 #endif
694
695   if (!data)
696     return olddeps;
697   bn = headstringarray(rpmhead, TAG_BASENAMES, &bnc);
698   if (!bn)
699     return olddeps;
700   dn = headstringarray(rpmhead, TAG_DIRNAMES, &dnc);
701   if (!dn)
702     {
703       solv_free(bn);
704       return olddeps;
705     }
706   di = headint32array(rpmhead, TAG_DIRINDEXES, &dic);
707   if (!di)
708     {
709       solv_free(bn);
710       solv_free(dn);
711       return olddeps;
712     }
713   if (bnc != dic)
714     {
715       fprintf(stderr, "bad filelist\n");
716       exit(1);
717     }
718
719   if (data)
720     adddudata(pool, repo, data, s, rpmhead, dn, di, bnc, dnc);
721
722   for (i = 0; i < bnc; i++)
723     {
724 #ifdef USE_FILEFILTER
725       ff = filefilters;
726       for (j = 0; j < sizeof(filefilters)/sizeof(*filefilters); j++, ff++)
727         {
728           if (ff->dir)
729             {
730               switch (ff->dirmatch)
731                 {
732                 case FILEFILTER_STARTS:
733                   if (strncmp(dn[di[i]], ff->dir, strlen(ff->dir)))
734                     continue;
735                   break;
736                 case FILEFILTER_CONTAINS:
737                   if (!strstr(dn[di[i]], ff->dir))
738                     continue;
739                   break;
740                 case FILEFILTER_EXACT:
741                 default:
742                   if (strcmp(dn[di[i]], ff->dir))
743                     continue;
744                   break;
745                 }
746             }
747           if (ff->base)
748             {
749               if (strcmp(bn[i], ff->base))
750                 continue;
751             }
752           break;
753         }
754       if (j == sizeof(filefilters)/sizeof(*filefilters))
755         continue;
756 #endif
757 #if 0
758       j = strlen(bn[i]) + strlen(dn[di[i]]) + 1;
759       if (j > fna)
760         {
761           fna = j + 256;
762           fn = solv_realloc(fn, fna);
763         }
764       strcpy(fn, dn[di[i]]);
765       strcat(fn, bn[i]);
766       olddeps = repo_addid_dep(repo, olddeps, pool_str2id(pool, fn, 1), SOLVABLE_FILEMARKER);
767 #endif
768       if (data)
769         {
770           Id handle, did;
771           char *b = bn[i];
772
773           handle = s - pool->solvables;
774           did = repodata_str2dir(data, dn[di[i]], 1);
775           if (!did)
776             {
777               did = repodata_str2dir(data, "/", 1);
778               if (b && b[0] == '/')
779                 b++;    /* work around rpm bug */
780             }
781           repodata_add_dirstr(data, handle, SOLVABLE_FILELIST, did, b);
782         }
783     }
784 #if 0
785   if (fn)
786     solv_free(fn);
787 #endif
788   solv_free(bn);
789   solv_free(dn);
790   solv_free(di);
791   return olddeps;
792 }
793
794 static void
795 addsourcerpm(Pool *pool, Repodata *data, Id handle, char *sourcerpm, char *name, char *evr)
796 {
797   const char *p, *sevr, *sarch;
798
799   p = strrchr(sourcerpm, '.');
800   if (!p || strcmp(p, ".rpm") != 0)
801     return;
802   p--;
803   while (p > sourcerpm && *p != '.')
804     p--;
805   if (*p != '.' || p == sourcerpm)
806     return;
807   sarch = p-- + 1;
808   while (p > sourcerpm && *p != '-')
809     p--;
810   if (*p != '-' || p == sourcerpm)
811     return;
812   p--;
813   while (p > sourcerpm && *p != '-')
814     p--;
815   if (*p != '-' || p == sourcerpm)
816     return;
817   sevr = p + 1;
818   if (!strcmp(sarch, "src.rpm"))
819     repodata_set_constantid(data, handle, SOLVABLE_SOURCEARCH, ARCH_SRC);
820   else if (!strcmp(sarch, "nosrc.rpm"))
821     repodata_set_constantid(data, handle, SOLVABLE_SOURCEARCH, ARCH_NOSRC);
822   else
823     repodata_set_constantid(data, handle, SOLVABLE_SOURCEARCH, pool_strn2id(pool, sarch, strlen(sarch) - 4, 1));
824   if (evr && !strncmp(sevr, evr, sarch - sevr - 1) && evr[sarch - sevr - 1] == 0)
825     repodata_set_void(data, handle, SOLVABLE_SOURCEEVR);
826   else
827     repodata_set_id(data, handle, SOLVABLE_SOURCEEVR, pool_strn2id(pool, sevr, sarch - sevr - 1, 1));
828   if (name && !strncmp(sourcerpm, name, sevr - sourcerpm - 1) && name[sevr - sourcerpm - 1] == 0)
829     repodata_set_void(data, handle, SOLVABLE_SOURCENAME);
830   else
831     repodata_set_id(data, handle, SOLVABLE_SOURCENAME, pool_strn2id(pool, sourcerpm, sevr - sourcerpm - 1, 1));
832 }
833
834 static int
835 rpm2solv(Pool *pool, Repo *repo, Repodata *data, Solvable *s, RpmHead *rpmhead, int flags)
836 {
837   char *name;
838   char *evr;
839   char *sourcerpm;
840
841   name = headstring(rpmhead, TAG_NAME);
842   if (!strcmp(name, "gpg-pubkey"))
843     return 0;
844   s->name = pool_str2id(pool, name, 1);
845   if (!s->name)
846     {
847       fprintf(stderr, "package has no name\n");
848       exit(1);
849     }
850   sourcerpm = headstring(rpmhead, TAG_SOURCERPM);
851   if (sourcerpm)
852     s->arch = pool_str2id(pool, headstring(rpmhead, TAG_ARCH), 1);
853   else
854     {
855       if (headexists(rpmhead, TAG_NOSOURCE) || headexists(rpmhead, TAG_NOPATCH))
856         s->arch = ARCH_NOSRC;
857       else
858         s->arch = ARCH_SRC;
859     }
860   if (!s->arch)
861     s->arch = ARCH_NOARCH;
862   evr = headtoevr(rpmhead);
863   s->evr = pool_str2id(pool, evr, 1);
864   s->vendor = pool_str2id(pool, headstring(rpmhead, TAG_VENDOR), 1);
865
866   s->provides = makedeps(pool, repo, rpmhead, TAG_PROVIDENAME, TAG_PROVIDEVERSION, TAG_PROVIDEFLAGS, 0);
867   if ((flags & RPM_ADD_NO_FILELIST) == 0)
868     s->provides = addfileprovides(pool, repo, data, s, rpmhead, s->provides);
869   if (s->arch != ARCH_SRC && s->arch != ARCH_NOSRC)
870     s->provides = repo_addid_dep(repo, s->provides, pool_rel2id(pool, s->name, s->evr, REL_EQ, 1), 0);
871   s->requires = makedeps(pool, repo, rpmhead, TAG_REQUIRENAME, TAG_REQUIREVERSION, TAG_REQUIREFLAGS, (flags & RPM_ADD_NO_RPMLIBREQS) ? MAKEDEPS_NO_RPMLIB : 0);
872   s->conflicts = makedeps(pool, repo, rpmhead, TAG_CONFLICTNAME, TAG_CONFLICTVERSION, TAG_CONFLICTFLAGS, 0);
873   s->obsoletes = makedeps(pool, repo, rpmhead, TAG_OBSOLETENAME, TAG_OBSOLETEVERSION, TAG_OBSOLETEFLAGS, 0);
874
875   s->recommends = makedeps(pool, repo, rpmhead, TAG_SUGGESTSNAME, TAG_SUGGESTSVERSION, TAG_SUGGESTSFLAGS, MAKEDEPS_FILTER_STRONG);
876   s->suggests = makedeps(pool, repo, rpmhead, TAG_SUGGESTSNAME, TAG_SUGGESTSVERSION, TAG_SUGGESTSFLAGS, MAKEDEPS_FILTER_WEAK);
877   s->supplements = makedeps(pool, repo, rpmhead, TAG_ENHANCESNAME, TAG_ENHANCESVERSION, TAG_ENHANCESFLAGS, MAKEDEPS_FILTER_STRONG);
878   s->enhances  = makedeps(pool, repo, rpmhead, TAG_ENHANCESNAME, TAG_ENHANCESVERSION, TAG_ENHANCESFLAGS, MAKEDEPS_FILTER_WEAK);
879   s->supplements = repo_fix_supplements(repo, s->provides, s->supplements, 0);
880   s->conflicts = repo_fix_conflicts(repo, s->conflicts);
881
882   if (data)
883     {
884       Id handle;
885       char *str;
886       unsigned int u32;
887
888       handle = s - pool->solvables;
889       str = headstring(rpmhead, TAG_SUMMARY);
890       if (str)
891         setutf8string(data, handle, SOLVABLE_SUMMARY, str);
892       str = headstring(rpmhead, TAG_DESCRIPTION);
893       if (str)
894         {
895           char *aut, *p;
896           for (aut = str; (aut = strchr(aut, '\n')) != 0; aut++)
897             if (!strncmp(aut, "\nAuthors:\n--------\n", 19))
898               break;
899           if (aut)
900             {
901               /* oh my, found SUSE special author section */
902               int l = aut - str;
903               str = solv_strdup(str);
904               aut = str + l;
905               str[l] = 0;
906               while (l > 0 && str[l - 1] == '\n')
907                 str[--l] = 0;
908               if (l)
909                 setutf8string(data, handle, SOLVABLE_DESCRIPTION, str);
910               p = aut + 19;
911               aut = str;        /* copy over */
912               while (*p == ' ' || *p == '\n')
913                 p++;
914               while (*p)
915                 {
916                   if (*p == '\n')
917                     {
918                       *aut++ = *p++;
919                       while (*p == ' ')
920                         p++;
921                       continue;
922                     }
923                   *aut++ = *p++;
924                 }
925               while (aut != str && aut[-1] == '\n')
926                 aut--;
927               *aut = 0;
928               if (*str)
929                 setutf8string(data, handle, SOLVABLE_AUTHORS, str);
930               free(str);
931             }
932           else if (*str)
933             setutf8string(data, handle, SOLVABLE_DESCRIPTION, str);
934         }
935       str = headstring(rpmhead, TAG_GROUP);
936       if (str)
937         repodata_set_poolstr(data, handle, SOLVABLE_GROUP, str);
938       str = headstring(rpmhead, TAG_LICENSE);
939       if (str)
940         repodata_set_poolstr(data, handle, SOLVABLE_LICENSE, str);
941       str = headstring(rpmhead, TAG_URL);
942       if (str)
943         repodata_set_str(data, handle, SOLVABLE_URL, str);
944       str = headstring(rpmhead, TAG_DISTRIBUTION);
945       if (str)
946         repodata_set_poolstr(data, handle, SOLVABLE_DISTRIBUTION, str);
947       str = headstring(rpmhead, TAG_PACKAGER);
948       if (str)
949         repodata_set_poolstr(data, handle, SOLVABLE_PACKAGER, str);
950       u32 = headint32(rpmhead, TAG_BUILDTIME);
951       if (u32)
952         repodata_set_num(data, handle, SOLVABLE_BUILDTIME, u32);
953       u32 = headint32(rpmhead, TAG_INSTALLTIME);
954       if (u32)
955         repodata_set_num(data, handle, SOLVABLE_INSTALLTIME, u32);
956       u32 = headint32(rpmhead, TAG_SIZE);
957       if (u32)
958         repodata_set_num(data, handle, SOLVABLE_INSTALLSIZE, (u32 + 1023) / 1024);
959       if (sourcerpm)
960         addsourcerpm(pool, data, handle, sourcerpm, name, evr);
961       if ((flags & RPM_ADD_TRIGGERS) != 0)
962         {
963           Id id, lastid;
964           unsigned int ida = makedeps(pool, repo, rpmhead, TAG_TRIGGERNAME, TAG_TRIGGERVERSION, TAG_TRIGGERFLAGS, 0);
965
966           lastid = 0;
967           for (; (id = repo->idarraydata[ida]) != 0; ida++)
968             {
969               /* we currently do not support rel ids in incore data, so
970                * strip off versioning information */
971               while (ISRELDEP(id))
972                 {
973                   Reldep *rd = GETRELDEP(pool, id);
974                   id = rd->name;
975                 }
976               if (id == lastid)
977                 continue;
978               repodata_add_idarray(data, handle, SOLVABLE_TRIGGERS, id);
979               lastid = id;
980             }
981         }
982     }
983   solv_free(evr);
984   return 1;
985 }
986
987 static Id
988 copyreldep(Pool *pool, Pool *frompool, Id id)
989 {
990   Reldep *rd = GETRELDEP(frompool, id);
991   Id name = rd->name, evr = rd->evr;
992   if (ISRELDEP(name))
993     name = copyreldep(pool, frompool, name);
994   else
995     name = pool_str2id(pool, pool_id2str(frompool, name), 1);
996   if (ISRELDEP(evr))
997     evr = copyreldep(pool, frompool, evr);
998   else
999     evr = pool_str2id(pool, pool_id2str(frompool, evr), 1);
1000   return pool_rel2id(pool, name, evr, rd->flags, 1);
1001 }
1002
1003 static Offset
1004 copydeps(Pool *pool, Repo *repo, Offset fromoff, Repo *fromrepo)
1005 {
1006   int cc;
1007   Id id, *ida, *from;
1008   Offset ido;
1009   Pool *frompool = fromrepo->pool;
1010
1011   if (!fromoff)
1012     return 0;
1013   from = fromrepo->idarraydata + fromoff;
1014   for (ida = from, cc = 0; *ida; ida++, cc++)
1015     ;
1016   if (cc == 0)
1017     return 0;
1018   ido = repo_reserve_ids(repo, 0, cc);
1019   ida = repo->idarraydata + ido;
1020   if (frompool && pool != frompool)
1021     {
1022       while (*from)
1023         {
1024           id = *from++;
1025           if (ISRELDEP(id))
1026             id = copyreldep(pool, frompool, id);
1027           else
1028             id = pool_str2id(pool, pool_id2str(frompool, id), 1);
1029           *ida++ = id;
1030         }
1031       *ida = 0;
1032     }
1033   else
1034     memcpy(ida, from, (cc + 1) * sizeof(Id));
1035   repo->idarraysize += cc + 1;
1036   return ido;
1037 }
1038
1039 #define COPYDIR_DIRCACHE_SIZE 512
1040
1041 static Id copydir_complex(Pool *pool, Repodata *data, Stringpool *fromspool, Repodata *fromdata, Id did, Id *cache);
1042
1043 static inline Id
1044 copydir(Pool *pool, Repodata *data, Stringpool *fromspool, Repodata *fromdata, Id did, Id *cache)
1045 {
1046   if (cache && cache[did & 255] == did)
1047     return cache[(did & 255) + 256];
1048   return copydir_complex(pool, data, fromspool, fromdata, did, cache);
1049 }
1050
1051 static Id
1052 copydir_complex(Pool *pool, Repodata *data, Stringpool *fromspool, Repodata *fromdata, Id did, Id *cache)
1053 {
1054   Id parent = dirpool_parent(&fromdata->dirpool, did);
1055   Id compid = dirpool_compid(&fromdata->dirpool, did);
1056   if (parent)
1057     parent = copydir(pool, data, fromspool, fromdata, parent, cache);
1058   if (fromspool != &pool->ss)
1059     compid = pool_str2id(pool, stringpool_id2str(fromspool, compid), 1);
1060   compid = dirpool_add_dir(&data->dirpool, parent, compid, 1);
1061   if (cache)
1062     {
1063       cache[did & 255] = did;
1064       cache[(did & 255) + 256] = compid;
1065     }
1066   return compid;
1067 }
1068
1069 struct solvable_copy_cbdata {
1070   Repodata *data;
1071   Id handle;
1072   Id *dircache;
1073 };
1074
1075 static int
1076 solvable_copy_cb(void *vcbdata, Solvable *r, Repodata *fromdata, Repokey *key, KeyValue *kv)
1077 {
1078   struct solvable_copy_cbdata *cbdata = vcbdata;
1079   Id id, keyname;
1080   Repodata *data = cbdata->data;
1081   Id handle = cbdata->handle;
1082   Pool *pool = data->repo->pool, *frompool = fromdata->repo->pool;
1083   Stringpool *fromspool = fromdata->localpool ? &fromdata->spool : &frompool->ss;
1084
1085   keyname = key->name;
1086   if (keyname >= ID_NUM_INTERNAL)
1087     keyname = pool_str2id(pool, pool_id2str(frompool, keyname), 1);
1088   switch(key->type)
1089     {
1090     case REPOKEY_TYPE_ID:
1091     case REPOKEY_TYPE_CONSTANTID:
1092       id = kv->id;
1093       assert(!data->localpool); /* implement me! */
1094       if (pool != frompool || fromdata->localpool)
1095         {
1096           if (ISRELDEP(id))
1097             id = copyreldep(pool, frompool, id);
1098           else
1099             id = pool_str2id(pool, stringpool_id2str(fromspool, id), 1);
1100         }
1101       if (key->type == REPOKEY_TYPE_ID)
1102         repodata_set_id(data, handle, keyname, id);
1103       else
1104         repodata_set_constantid(data, handle, keyname, id);
1105       break;
1106     case REPOKEY_TYPE_STR:
1107       repodata_set_str(data, handle, keyname, kv->str);
1108       break;
1109     case REPOKEY_TYPE_VOID:
1110       repodata_set_void(data, handle, keyname);
1111       break;
1112     case REPOKEY_TYPE_NUM:
1113       repodata_set_num(data, handle, keyname, kv->num);
1114       break;
1115     case REPOKEY_TYPE_CONSTANT:
1116       repodata_set_constant(data, handle, keyname, kv->num);
1117       break;
1118     case REPOKEY_TYPE_DIRNUMNUMARRAY:
1119       id = kv->id;
1120       assert(!data->localpool); /* implement me! */
1121       id = copydir(pool, data, fromspool, fromdata, id, cbdata->dircache);
1122       repodata_add_dirnumnum(data, handle, keyname, id, kv->num, kv->num2);
1123       break;
1124     case REPOKEY_TYPE_DIRSTRARRAY:
1125       id = kv->id;
1126       assert(!data->localpool); /* implement me! */
1127       id = copydir(pool, data, fromspool, fromdata, id, cbdata->dircache);
1128       repodata_add_dirstr(data, handle, keyname, id, kv->str);
1129       break;
1130     case REPOKEY_TYPE_IDARRAY:  /* used for triggers */
1131       id = kv->id;
1132       assert(!data->localpool); /* implement me! */
1133       if (ISRELDEP(id))
1134         break;          /* can't do those at the moment */
1135       if (pool != frompool || fromdata->localpool)
1136         id = pool_str2id(pool, stringpool_id2str(fromspool, id), 1);
1137       repodata_add_idarray(data, handle, keyname, id);
1138       break;
1139     default:
1140       break;
1141     }
1142   return 0;
1143 }
1144
1145 static void
1146 solvable_copy(Solvable *s, Solvable *r, Repodata *data, Id *dircache)
1147 {
1148   Repo *repo = s->repo;
1149   Repo *fromrepo = r->repo;
1150   Pool *pool = repo->pool;
1151   struct solvable_copy_cbdata cbdata;
1152
1153   /* copy solvable data */
1154   if (pool == fromrepo->pool)
1155     {
1156       s->name = r->name;
1157       s->evr = r->evr;
1158       s->arch = r->arch;
1159       s->vendor = r->vendor;
1160     }
1161   else
1162     {
1163       if (r->name)
1164         s->name = pool_str2id(pool, pool_id2str(fromrepo->pool, r->name), 1);
1165       if (r->evr)
1166         s->evr = pool_str2id(pool, pool_id2str(fromrepo->pool, r->evr), 1);
1167       if (r->arch)
1168         s->arch = pool_str2id(pool, pool_id2str(fromrepo->pool, r->arch), 1);
1169       if (r->vendor)
1170         s->vendor = pool_str2id(pool, pool_id2str(fromrepo->pool, r->vendor), 1);
1171     }
1172   s->provides = copydeps(pool, repo, r->provides, fromrepo);
1173   s->requires = copydeps(pool, repo, r->requires, fromrepo);
1174   s->conflicts = copydeps(pool, repo, r->conflicts, fromrepo);
1175   s->obsoletes = copydeps(pool, repo, r->obsoletes, fromrepo);
1176   s->recommends = copydeps(pool, repo, r->recommends, fromrepo);
1177   s->suggests = copydeps(pool, repo, r->suggests, fromrepo);
1178   s->supplements = copydeps(pool, repo, r->supplements, fromrepo);
1179   s->enhances  = copydeps(pool, repo, r->enhances, fromrepo);
1180
1181   /* copy all attributes */
1182   if (!data)
1183     return;
1184   cbdata.data = data;
1185   cbdata.handle = s - pool->solvables;
1186   cbdata.dircache = dircache;
1187   repo_search(fromrepo, (r - fromrepo->pool->solvables), 0, 0, SEARCH_NO_STORAGE_SOLVABLE, solvable_copy_cb, &cbdata);
1188 }
1189
1190 /* used to sort entries returned in some database order */
1191 static int
1192 rpmids_sort_cmp(const void *va, const void *vb, void *dp)
1193 {
1194   struct rpmid const *a = va, *b = vb;
1195   int r;
1196   r = strcmp(a->name, b->name);
1197   if (r)
1198     return r;
1199   return a->dbid - b->dbid;
1200 }
1201
1202 static int
1203 pkgids_sort_cmp(const void *va, const void *vb, void *dp)
1204 {
1205   Repo *repo = dp;
1206   Pool *pool = repo->pool;
1207   Solvable *a = pool->solvables + *(Id *)va;
1208   Solvable *b = pool->solvables + *(Id *)vb;
1209   Id *rpmdbid;
1210
1211   if (a->name != b->name)
1212     return strcmp(pool_id2str(pool, a->name), pool_id2str(pool, b->name));
1213   rpmdbid = repo->rpmdbid;
1214   return rpmdbid[(a - pool->solvables) - repo->start] - rpmdbid[(b - pool->solvables) - repo->start];
1215 }
1216
1217 static void
1218 swap_solvables(Repo *repo, Repodata *data, Id pa, Id pb)
1219 {
1220   Pool *pool = repo->pool;
1221   Solvable tmp;
1222
1223   tmp = pool->solvables[pa];
1224   pool->solvables[pa] = pool->solvables[pb];
1225   pool->solvables[pb] = tmp;
1226   if (repo->rpmdbid)
1227     {
1228       Id tmpid = repo->rpmdbid[pa - repo->start];
1229       repo->rpmdbid[pa - repo->start] = repo->rpmdbid[pb - repo->start];
1230       repo->rpmdbid[pb - repo->start] = tmpid;
1231     }
1232   /* only works if nothing is already internalized! */
1233   if (data)
1234     repodata_swap_attrs(data, pa, pb);
1235 }
1236
1237
1238 static inline Id db2rpmdbid(unsigned char *db, int byteswapped)
1239 {
1240 #ifdef RPM5
1241   return db[0] << 24 | db[1] << 16 | db[2] << 8 | db[3];
1242 #else
1243 # if defined(WORDS_BIGENDIAN)
1244   if (!byteswapped)
1245 # else
1246   if (byteswapped)
1247 # endif
1248     return db[0] << 24 | db[1] << 16 | db[2] << 8 | db[3];
1249   else
1250     return db[3] << 24 | db[2] << 16 | db[1] << 8 | db[0];
1251 #endif
1252 }
1253
1254 static inline void rpmdbid2db(unsigned char *db, Id id, int byteswapped)
1255 {
1256 #ifdef RPM5
1257   db[0] = id >> 24, db[1] = id >> 16, db[2] = id >> 8, db[3] = id;
1258 #else
1259 # if defined(WORDS_BIGENDIAN)
1260   if (!byteswapped)
1261 # else
1262   if (byteswapped)
1263 # endif
1264     db[0] = id >> 24, db[1] = id >> 16, db[2] = id >> 8, db[3] = id;
1265   else
1266     db[3] = id >> 24, db[2] = id >> 16, db[1] = id >> 8, db[0] = id;
1267 #endif
1268 }
1269
1270 static void
1271 mkrpmdbcookie(struct stat *st, unsigned char *cookie)
1272 {
1273   memset(cookie, 0, 32);
1274   cookie[3] = RPMDB_COOKIE_VERSION;
1275   memcpy(cookie + 16, &st->st_ino, sizeof(st->st_ino));
1276   memcpy(cookie + 24, &st->st_dev, sizeof(st->st_dev));
1277 }
1278
1279 /* should look in /usr/lib/rpm/macros instead, but we want speed... */
1280 static DB_ENV *
1281 opendbenv(const char *rootdir)
1282 {
1283   char dbpath[PATH_MAX];
1284   DB_ENV *dbenv = 0;
1285   int r;
1286
1287   if (db_env_create(&dbenv, 0))
1288     {
1289       perror("db_env_create");
1290       return 0;
1291     }
1292 #if defined(FEDORA) && (DB_VERSION_MAJOR >= 5 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 5))
1293   dbenv->set_thread_count(dbenv, 8);
1294 #endif
1295   snprintf(dbpath, PATH_MAX, "%s/var/lib/rpm", rootdir ? rootdir : "");
1296   if (access(dbpath, W_OK) == -1)
1297     {
1298       r = dbenv->open(dbenv, dbpath, DB_CREATE|DB_PRIVATE|DB_INIT_MPOOL, 0);
1299     }
1300   else
1301     {
1302 #ifdef FEDORA
1303       r = dbenv->open(dbenv, dbpath, DB_CREATE|DB_INIT_CDB|DB_INIT_MPOOL, 0644);
1304 #else
1305       r = dbenv->open(dbenv, dbpath, DB_CREATE|DB_PRIVATE|DB_INIT_MPOOL, 0);
1306 #endif
1307     }
1308   if (r)
1309     {
1310       perror("dbenv open");
1311       dbenv->close(dbenv, 0);
1312       return 0;
1313     }
1314   return dbenv;
1315 }
1316
1317
1318 static int
1319 count_headers(const char *rootdir, DB_ENV *dbenv)
1320 {
1321   char dbpath[PATH_MAX];
1322   struct stat statbuf;
1323   DB *db = 0;
1324   DBC *dbc = 0;
1325   int count = 0;
1326   DBT dbkey;
1327   DBT dbdata;
1328
1329   snprintf(dbpath, PATH_MAX, "%s/var/lib/rpm/Name", rootdir);
1330   if (stat(dbpath, &statbuf))
1331     return 0;
1332   memset(&dbkey, 0, sizeof(dbkey));
1333   memset(&dbdata, 0, sizeof(dbdata));
1334   if (db_create(&db, dbenv, 0))
1335     {
1336       perror("db_create");
1337       exit(1);
1338     }
1339   if (db->open(db, 0, "Name", 0, DB_UNKNOWN, DB_RDONLY, 0664))
1340     {
1341       perror("db->open Name index");
1342       exit(1);
1343     }
1344   if (db->cursor(db, NULL, &dbc, 0))
1345     {
1346       perror("db->cursor");
1347       exit(1);
1348     }
1349   while (dbc->c_get(dbc, &dbkey, &dbdata, DB_NEXT) == 0)
1350     count += dbdata.size / RPM_INDEX_SIZE;
1351   dbc->c_close(dbc);
1352   db->close(db, 0);
1353   return count;
1354 }
1355
1356 /*
1357  * read rpm db as repo
1358  *
1359  */
1360
1361 int
1362 repo_add_rpmdb(Repo *repo, Repo *ref, const char *rootdir, int flags)
1363 {
1364   Pool *pool = repo->pool;
1365   unsigned char buf[16];
1366   DB *db = 0;
1367   DBC *dbc = 0;
1368   int byteswapped;
1369   unsigned int dbid;
1370   unsigned char *dp;
1371   int dl, nrpmids;
1372   struct rpmid *rpmids, *rp;
1373   int i;
1374   int rpmheadsize;
1375   RpmHead *rpmhead;
1376   Solvable *s;
1377   Id id, *refhash;
1378   unsigned int refmask, h;
1379   char dbpath[PATH_MAX];
1380   DB_ENV *dbenv = 0;
1381   DBT dbkey;
1382   DBT dbdata;
1383   struct stat packagesstat;
1384   unsigned char newcookie[32];
1385   const unsigned char *oldcookie = 0;
1386   Id oldcookietype = 0;
1387   Repodata *data;
1388   int count = 0, done = 0;
1389   unsigned int now;
1390
1391   now = solv_timems(0);
1392   memset(&dbkey, 0, sizeof(dbkey));
1393   memset(&dbdata, 0, sizeof(dbdata));
1394
1395   if (!rootdir)
1396     rootdir = "";
1397
1398   data = repo_add_repodata(repo, flags);
1399
1400   if (ref && !(ref->nsolvables && ref->rpmdbid))
1401     ref = 0;
1402
1403   if (!(dbenv = opendbenv(rootdir)))
1404     exit(1);
1405
1406   /* XXX: should get ro lock of Packages database! */
1407   snprintf(dbpath, PATH_MAX, "%s/var/lib/rpm/Packages", rootdir);
1408   if (stat(dbpath, &packagesstat))
1409     {
1410       perror(dbpath);
1411       exit(1);
1412     }
1413   mkrpmdbcookie(&packagesstat, newcookie);
1414   repodata_set_bin_checksum(data, SOLVID_META, REPOSITORY_RPMDBCOOKIE, REPOKEY_TYPE_SHA256, newcookie);
1415
1416   if (ref)
1417     oldcookie = repo_lookup_bin_checksum(ref, SOLVID_META, REPOSITORY_RPMDBCOOKIE, &oldcookietype);
1418   if (!ref || !oldcookie || oldcookietype != REPOKEY_TYPE_SHA256 || memcmp(oldcookie, newcookie, 32) != 0)
1419     {
1420       Id *pkgids;
1421       int solvstart = 0, solvend = 0;
1422
1423       if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1424         count = count_headers(rootdir, dbenv);
1425       if (db_create(&db, dbenv, 0))
1426         {
1427           perror("db_create");
1428           exit(1);
1429         }
1430       if (db->open(db, 0, "Packages", 0, DB_UNKNOWN, DB_RDONLY, 0664))
1431         {
1432           perror("db->open Packages index");
1433           exit(1);
1434         }
1435       if (db->get_byteswapped(db, &byteswapped))
1436         {
1437           perror("db->get_byteswapped");
1438           exit(1);
1439         }
1440       if (db->cursor(db, NULL, &dbc, 0))
1441         {
1442           perror("db->cursor");
1443           exit(1);
1444         }
1445       rpmheadsize = 0;
1446       rpmhead = 0;
1447       i = 0;
1448       s = 0;
1449       while (dbc->c_get(dbc, &dbkey, &dbdata, DB_NEXT) == 0)
1450         {
1451           if (!s)
1452             {
1453               s = pool_id2solvable(pool, repo_add_solvable(repo));
1454               if (!solvstart)
1455                 solvstart = s - pool->solvables;
1456               solvend = s - pool->solvables + 1;
1457             }
1458           if (!repo->rpmdbid)
1459             repo->rpmdbid = repo_sidedata_create(repo, sizeof(Id));
1460           if (dbkey.size != 4)
1461             {
1462               fprintf(stderr, "corrupt Packages database (key size)\n");
1463               exit(1);
1464             }
1465           dbid = db2rpmdbid(dbkey.data, byteswapped);
1466           if (dbid == 0)                /* the join key */
1467             continue;
1468           if (dbdata.size < 8)
1469             {
1470               fprintf(stderr, "corrupt rpm database (size %u)\n", dbdata.size);
1471               exit(1);
1472             }
1473           if (dbdata.size > rpmheadsize)
1474             {
1475               rpmheadsize = dbdata.size + 128;
1476               rpmhead = solv_realloc(rpmhead, sizeof(*rpmhead) + rpmheadsize);
1477             }
1478           memcpy(buf, dbdata.data, 8);
1479           rpmhead->cnt = buf[0] << 24  | buf[1] << 16  | buf[2] << 8 | buf[3];
1480           rpmhead->dcnt = buf[4] << 24  | buf[5] << 16  | buf[6] << 8 | buf[7];
1481           if (8 + rpmhead->cnt * 16 + rpmhead->dcnt > dbdata.size)
1482             {
1483               fprintf(stderr, "corrupt rpm database (data size)\n");
1484               exit(1);
1485             }
1486           memcpy(rpmhead->data, (unsigned char *)dbdata.data + 8, rpmhead->cnt * 16 + rpmhead->dcnt);
1487           rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
1488           repo->rpmdbid[(s - pool->solvables) - repo->start] = dbid;
1489           if (rpm2solv(pool, repo, data, s, rpmhead, flags | RPM_ADD_TRIGGERS))
1490             {
1491               i++;
1492               s = 0;
1493             }
1494           else
1495             {
1496               /* We can reuse this solvable, but make sure it's still
1497                  associated with this repo.  */
1498               memset(s, 0, sizeof(*s));
1499               s->repo = repo;
1500             }
1501           if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1502             {
1503               if (done < count)
1504                 done++;
1505               if (done < count && (done - 1) * 100 / count != done * 100 / count)
1506                 pool_debug(pool, SOLV_ERROR, "%%%% %d\n", done * 100 / count);
1507             }
1508         }
1509       if (s)
1510         {
1511           /* oops, could not reuse. free it instead */
1512           repo_free_solvable_block(repo, s - pool->solvables, 1, 1);
1513           solvend--;
1514           s = 0;
1515         }
1516       dbc->c_close(dbc);
1517       db->close(db, 0);
1518       db = 0;
1519       /* now sort all solvables in the new solvstart..solvend block */
1520       if (solvend - solvstart > 1)
1521         {
1522           pkgids = solv_malloc2(solvend - solvstart, sizeof(Id));
1523           for (i = solvstart; i < solvend; i++)
1524             pkgids[i - solvstart] = i;
1525           solv_sort(pkgids, solvend - solvstart, sizeof(Id), pkgids_sort_cmp, repo);
1526           /* adapt order */
1527           for (i = solvstart; i < solvend; i++)
1528             {
1529               int j = pkgids[i - solvstart];
1530               while (j < i)
1531                 j = pkgids[i - solvstart] = pkgids[j - solvstart];
1532               if (j != i)
1533                 swap_solvables(repo, data, i, j);
1534             }
1535           solv_free(pkgids);
1536         }
1537     }
1538   else
1539     {
1540       Id dircache[COPYDIR_DIRCACHE_SIZE];               /* see copydir */
1541
1542       memset(dircache, 0, sizeof(dircache));
1543       if (db_create(&db, dbenv, 0))
1544         {
1545           perror("db_create");
1546           exit(1);
1547         }
1548       if (db->open(db, 0, "Name", 0, DB_UNKNOWN, DB_RDONLY, 0664))
1549         {
1550           perror("db->open Name index");
1551           exit(1);
1552         }
1553       if (db->get_byteswapped(db, &byteswapped))
1554         {
1555           perror("db->get_byteswapped");
1556           exit(1);
1557         }
1558       if (db->cursor(db, NULL, &dbc, 0))
1559         {
1560           perror("db->cursor");
1561           exit(1);
1562         }
1563       nrpmids = 0;
1564       rpmids = 0;
1565       while (dbc->c_get(dbc, &dbkey, &dbdata, DB_NEXT) == 0)
1566         {
1567           if (dbkey.size == 10 && !memcmp(dbkey.data, "gpg-pubkey", 10))
1568             continue;
1569           dl = dbdata.size;
1570           dp = dbdata.data;
1571           while(dl >= RPM_INDEX_SIZE)
1572             {
1573               rpmids = solv_extend(rpmids, nrpmids, 1, sizeof(*rpmids), 255);
1574               rpmids[nrpmids].dbid = db2rpmdbid(dp, byteswapped);
1575               rpmids[nrpmids].name = solv_malloc((int)dbkey.size + 1);
1576               memcpy(rpmids[nrpmids].name, dbkey.data, (int)dbkey.size);
1577               rpmids[nrpmids].name[(int)dbkey.size] = 0;
1578               nrpmids++;
1579               dp += RPM_INDEX_SIZE;
1580               dl -= RPM_INDEX_SIZE;
1581             }
1582         }
1583       dbc->c_close(dbc);
1584       db->close(db, 0);
1585       db = 0;
1586
1587       /* sort rpmids */
1588       solv_sort(rpmids, nrpmids, sizeof(*rpmids), rpmids_sort_cmp, 0);
1589
1590       rpmheadsize = 0;
1591       rpmhead = 0;
1592
1593       /* create hash from dbid to ref */
1594       refmask = mkmask(ref->nsolvables);
1595       refhash = solv_calloc(refmask + 1, sizeof(Id));
1596       for (i = 0; i < ref->end - ref->start; i++)
1597         {
1598           if (!ref->rpmdbid[i])
1599             continue;
1600           h = ref->rpmdbid[i] & refmask;
1601           while (refhash[h])
1602             h = (h + 317) & refmask;
1603           refhash[h] = i + 1;   /* make it non-zero */
1604         }
1605
1606       /* count the misses, they will cost us time */
1607       if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1608         {
1609           for (i = 0, rp = rpmids; i < nrpmids; i++, rp++)
1610             {
1611               dbid = rp->dbid;
1612               if (refhash)
1613                 {
1614                   h = dbid & refmask;
1615                   while ((id = refhash[h]))
1616                     {
1617                       if (ref->rpmdbid[id - 1] == dbid)
1618                         break;
1619                       h = (h + 317) & refmask;
1620                     }
1621                   if (id)
1622                     continue;
1623                 }
1624               count++;
1625             }
1626         }
1627
1628       s = pool_id2solvable(pool, repo_add_solvable_block(repo, nrpmids));
1629       if (!repo->rpmdbid)
1630         repo->rpmdbid = repo_sidedata_create(repo, sizeof(Id));
1631
1632       for (i = 0, rp = rpmids; i < nrpmids; i++, rp++, s++)
1633         {
1634           dbid = rp->dbid;
1635           repo->rpmdbid[(s - pool->solvables) - repo->start] = rp->dbid;
1636           if (refhash)
1637             {
1638               h = dbid & refmask;
1639               while ((id = refhash[h]))
1640                 {
1641                   if (ref->rpmdbid[id - 1] == dbid)
1642                     break;
1643                   h = (h + 317) & refmask;
1644                 }
1645               if (id)
1646                 {
1647                   Solvable *r = ref->pool->solvables + ref->start + (id - 1);
1648                   if (r->repo == ref)
1649                     {
1650                       solvable_copy(s, r, data, dircache);
1651                       continue;
1652                     }
1653                 }
1654             }
1655           if (!db)
1656             {
1657               if (db_create(&db, dbenv, 0))
1658                 {
1659                   perror("db_create");
1660                   exit(1);
1661                 }
1662               if (db->open(db, 0, "Packages", 0, DB_UNKNOWN, DB_RDONLY, 0664))
1663                 {
1664                   perror("db->open var/lib/rpm/Packages");
1665                   exit(1);
1666                 }
1667               if (db->get_byteswapped(db, &byteswapped))
1668                 {
1669                   perror("db->get_byteswapped");
1670                   exit(1);
1671                 }
1672             }
1673           rpmdbid2db(buf, rp->dbid, byteswapped);
1674           dbkey.data = buf;
1675           dbkey.size = 4;
1676           dbdata.data = 0;
1677           dbdata.size = 0;
1678           if (db->get(db, NULL, &dbkey, &dbdata, 0))
1679             {
1680               perror("db->get");
1681               fprintf(stderr, "corrupt rpm database, key %d not found\n", dbid);
1682               fprintf(stderr, "please run 'rpm --rebuilddb' to recreate the database index files\n");
1683               exit(1);
1684             }
1685           if (dbdata.size < 8)
1686             {
1687               fprintf(stderr, "corrupt rpm database (size)\n");
1688               exit(1);
1689             }
1690           if (dbdata.size > rpmheadsize)
1691             {
1692               rpmheadsize = dbdata.size + 128;
1693               rpmhead = solv_realloc(rpmhead, sizeof(*rpmhead) + rpmheadsize);
1694             }
1695           memcpy(buf, dbdata.data, 8);
1696           rpmhead->cnt = buf[0] << 24  | buf[1] << 16  | buf[2] << 8 | buf[3];
1697           rpmhead->dcnt = buf[4] << 24  | buf[5] << 16  | buf[6] << 8 | buf[7];
1698           if (8 + rpmhead->cnt * 16 + rpmhead->dcnt > dbdata.size)
1699             {
1700               fprintf(stderr, "corrupt rpm database (data size)\n");
1701               exit(1);
1702             }
1703           memcpy(rpmhead->data, (unsigned char *)dbdata.data + 8, rpmhead->cnt * 16 + rpmhead->dcnt);
1704           rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
1705
1706           rpm2solv(pool, repo, data, s, rpmhead, flags | RPM_ADD_TRIGGERS);
1707           if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1708             {
1709               if (done < count)
1710                 done++;
1711               if (done < count && (done - 1) * 100 / count != done * 100 / count)
1712                 pool_debug(pool, SOLV_ERROR, "%%%% %d\n", done * 100 / count);
1713             }
1714         }
1715
1716       if (refhash)
1717         solv_free(refhash);
1718       if (rpmids)
1719         {
1720           for (i = 0; i < nrpmids; i++)
1721             solv_free(rpmids[i].name);
1722           solv_free(rpmids);
1723         }
1724     }
1725   if (db)
1726     db->close(db, 0);
1727   dbenv->close(dbenv, 0);
1728   if (rpmhead)
1729     solv_free(rpmhead);
1730   if (!(flags & REPO_NO_INTERNALIZE))
1731     repodata_internalize(data);
1732   if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1733     pool_debug(pool, SOLV_ERROR, "%%%% 100\n");
1734   POOL_DEBUG(SOLV_DEBUG_STATS, "repo_add_rpmdb took %d ms\n", solv_timems(now));
1735   POOL_DEBUG(SOLV_DEBUG_STATS, "repo size: %d solvables\n", repo->nsolvables);
1736   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)));
1737   return 0;
1738 }
1739
1740
1741 static inline unsigned int
1742 getu32(const unsigned char *dp)
1743 {
1744   return dp[0] << 24 | dp[1] << 16 | dp[2] << 8 | dp[3];
1745 }
1746
1747
1748 int
1749 repo_add_rpms(Repo *repo, const char **rpms, int nrpms, int flags)
1750 {
1751   int i, sigdsize, sigcnt, l;
1752   Pool *pool = repo->pool;
1753   Solvable *s;
1754   RpmHead *rpmhead = 0;
1755   int rpmheadsize = 0;
1756   char *payloadformat;
1757   FILE *fp;
1758   unsigned char lead[4096];
1759   int headerstart, headerend;
1760   struct stat stb;
1761   Repodata *data;
1762   unsigned char pkgid[16];
1763   int gotpkgid;
1764   Id chksumtype = 0;
1765   void *chksumh = 0;
1766
1767   data = repo_add_repodata(repo, flags);
1768
1769   if ((flags & RPM_ADD_WITH_SHA256SUM) != 0)
1770     chksumtype = REPOKEY_TYPE_SHA256;
1771   else if ((flags & RPM_ADD_WITH_SHA1SUM) != 0)
1772     chksumtype = REPOKEY_TYPE_SHA1;
1773   for (i = 0; i < nrpms; i++)
1774     {
1775       if ((fp = fopen(rpms[i], "r")) == 0)
1776         {
1777           perror(rpms[i]);
1778           continue;
1779         }
1780       if (fstat(fileno(fp), &stb))
1781         {
1782           perror("stat");
1783           continue;
1784         }
1785       if (chksumh)
1786         chksumh = solv_chksum_free(chksumh, 0);
1787       if (chksumtype)
1788         chksumh = solv_chksum_create(chksumtype);
1789       if (fread(lead, 96 + 16, 1, fp) != 1 || getu32(lead) != 0xedabeedb)
1790         {
1791           fprintf(stderr, "%s: not a rpm\n", rpms[i]);
1792           fclose(fp);
1793           continue;
1794         }
1795       if (chksumh)
1796         solv_chksum_add(chksumh, lead, 96 + 16);
1797       if (lead[78] != 0 || lead[79] != 5)
1798         {
1799           fprintf(stderr, "%s: not a V5 header\n", rpms[i]);
1800           fclose(fp);
1801           continue;
1802         }
1803       if (getu32(lead + 96) != 0x8eade801)
1804         {
1805           fprintf(stderr, "%s: bad signature header\n", rpms[i]);
1806           fclose(fp);
1807           continue;
1808         }
1809       sigcnt = getu32(lead + 96 + 8);
1810       sigdsize = getu32(lead + 96 + 12);
1811       if (sigcnt >= 0x4000000 || sigdsize >= 0x40000000)
1812         {
1813           fprintf(stderr, "%s: bad signature header\n", rpms[i]);
1814           fclose(fp);
1815           continue;
1816         }
1817       sigdsize += sigcnt * 16;
1818       sigdsize = (sigdsize + 7) & ~7;
1819       headerstart = 96 + 16 + sigdsize;
1820       gotpkgid = 0;
1821       if ((flags & RPM_ADD_WITH_PKGID) != 0)
1822         {
1823           unsigned char *chksum;
1824           unsigned int chksumsize;
1825           /* extract pkgid from the signature header */
1826           if (sigdsize > rpmheadsize)
1827             {
1828               rpmheadsize = sigdsize + 128;
1829               rpmhead = solv_realloc(rpmhead, sizeof(*rpmhead) + rpmheadsize);
1830             }
1831           if (fread(rpmhead->data, sigdsize, 1, fp) != 1)
1832             {
1833               fprintf(stderr, "%s: unexpected EOF\n", rpms[i]);
1834               fclose(fp);
1835               continue;
1836             }
1837           if (chksumh)
1838             solv_chksum_add(chksumh, rpmhead->data, sigdsize);
1839           rpmhead->cnt = sigcnt;
1840           rpmhead->dcnt = sigdsize - sigcnt * 16;
1841           rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
1842           chksum = headbinary(rpmhead, SIGTAG_MD5, &chksumsize);
1843           if (chksum && chksumsize == 16)
1844             {
1845               gotpkgid = 1;
1846               memcpy(pkgid, chksum, 16);
1847             }
1848         }
1849       else
1850         {
1851           /* just skip the signature header */
1852           while (sigdsize)
1853             {
1854               l = sigdsize > 4096 ? 4096 : sigdsize;
1855               if (fread(lead, l, 1, fp) != 1)
1856                 {
1857                   fprintf(stderr, "%s: unexpected EOF\n", rpms[i]);
1858                   fclose(fp);
1859                   continue;
1860                 }
1861               if (chksumh)
1862                 solv_chksum_add(chksumh, lead, l);
1863               sigdsize -= l;
1864             }
1865         }
1866       if (fread(lead, 16, 1, fp) != 1)
1867         {
1868           fprintf(stderr, "%s: unexpected EOF\n", rpms[i]);
1869           fclose(fp);
1870           continue;
1871         }
1872       if (chksumh)
1873         solv_chksum_add(chksumh, lead, 16);
1874       if (getu32(lead) != 0x8eade801)
1875         {
1876           fprintf(stderr, "%s: bad header\n", rpms[i]);
1877           fclose(fp);
1878           continue;
1879         }
1880       sigcnt = getu32(lead + 8);
1881       sigdsize = getu32(lead + 12);
1882       if (sigcnt >= 0x4000000 || sigdsize >= 0x40000000)
1883         {
1884           fprintf(stderr, "%s: bad header\n", rpms[i]);
1885           fclose(fp);
1886           continue;
1887         }
1888       l = sigdsize + sigcnt * 16;
1889       headerend = headerstart + 16 + l;
1890       if (l > rpmheadsize)
1891         {
1892           rpmheadsize = l + 128;
1893           rpmhead = solv_realloc(rpmhead, sizeof(*rpmhead) + rpmheadsize);
1894         }
1895       if (fread(rpmhead->data, l, 1, fp) != 1)
1896         {
1897           fprintf(stderr, "%s: unexpected EOF\n", rpms[i]);
1898           fclose(fp);
1899           continue;
1900         }
1901       if (chksumh)
1902         solv_chksum_add(chksumh, rpmhead->data, l);
1903       rpmhead->cnt = sigcnt;
1904       rpmhead->dcnt = sigdsize;
1905       rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
1906       if (headexists(rpmhead, TAG_PATCHESNAME))
1907         {
1908           /* this is a patch rpm, ignore */
1909           fclose(fp);
1910           continue;
1911         }
1912       payloadformat = headstring(rpmhead, TAG_PAYLOADFORMAT);
1913       if (payloadformat && !strcmp(payloadformat, "drpm"))
1914         {
1915           /* this is a delta rpm */
1916           fclose(fp);
1917           continue;
1918         }
1919       if (chksumh)
1920         while ((l = fread(lead, 1, sizeof(lead), fp)) > 0)
1921           solv_chksum_add(chksumh, lead, l);
1922       fclose(fp);
1923       s = pool_id2solvable(pool, repo_add_solvable(repo));
1924       rpm2solv(pool, repo, data, s, rpmhead, flags);
1925       if (data)
1926         {
1927           Id handle = s - pool->solvables;
1928           repodata_set_location(data, handle, 0, 0, rpms[i]);
1929           if (S_ISREG(stb.st_mode))
1930             repodata_set_num(data, handle, SOLVABLE_DOWNLOADSIZE, (unsigned int)((stb.st_size + 1023) / 1024));
1931           repodata_set_num(data, handle, SOLVABLE_HEADEREND, headerend);
1932           if (gotpkgid)
1933             repodata_set_bin_checksum(data, handle, SOLVABLE_PKGID, REPOKEY_TYPE_MD5, pkgid);
1934           if (chksumh)
1935             repodata_set_bin_checksum(data, handle, SOLVABLE_CHECKSUM, chksumtype, solv_chksum_get(chksumh, 0));
1936         }
1937     }
1938   if (chksumh)
1939     chksumh = solv_chksum_free(chksumh, 0);
1940   if (rpmhead)
1941     solv_free(rpmhead);
1942   if (!(flags & REPO_NO_INTERNALIZE))
1943     repodata_internalize(data);
1944   return 0;
1945 }
1946
1947 Id
1948 repo_add_rpm(Repo *repo, const char *rpm, int flags)
1949 {
1950   int end = repo->end;
1951   repo_add_rpms(repo, &rpm, 1, flags);
1952   if (end == repo->end)
1953     return 0;
1954   else
1955     return repo->end - 1;
1956 }
1957
1958 static inline void
1959 linkhash(const char *lt, char *hash)
1960 {
1961   unsigned int r = 0;
1962   const unsigned char *str = (const unsigned char *)lt;
1963   int l, c;
1964
1965   l = strlen(lt);
1966   while ((c = *str++) != 0)
1967     r += (r << 3) + c;
1968   sprintf(hash, "%08x", r);
1969   sprintf(hash + 8, "%08x", l);
1970   sprintf(hash + 16, "%08x", 0);
1971   sprintf(hash + 24, "%08x", 0);
1972 }
1973
1974 void
1975 rpm_iterate_filelist(void *rpmhandle, int flags, void (*cb)(void *, const char *, int, const char *), void *cbdata)
1976 {
1977   RpmHead *rpmhead = rpmhandle;
1978   char **bn;
1979   char **dn;
1980   char **md = 0;
1981   char **lt = 0;
1982   unsigned int *di, diidx;
1983   unsigned int *co = 0;
1984   unsigned int *ff = 0;
1985   unsigned int lastdir;
1986   int lastdirl;
1987   unsigned int *fm;
1988   int cnt, dcnt, cnt2;
1989   int i, l1, l;
1990   char *space = 0;
1991   int spacen = 0;
1992   char md5[33], *md5p = 0;
1993
1994   dn = headstringarray(rpmhead, TAG_DIRNAMES, &dcnt);
1995   if (!dn)
1996     return;
1997   if ((flags & RPM_ITERATE_FILELIST_ONLYDIRS) != 0)
1998     {
1999       for (i = 0; i < dcnt; i++)
2000         (*cb)(cbdata, dn[i], 0, (char *)0);
2001       solv_free(dn);
2002       return;
2003     }
2004   bn = headstringarray(rpmhead, TAG_BASENAMES, &cnt);
2005   if (!bn)
2006     {
2007       solv_free(dn);
2008       return;
2009     }
2010   di = headint32array(rpmhead, TAG_DIRINDEXES, &cnt2);
2011   if (!di || cnt != cnt2)
2012     {
2013       solv_free(di);
2014       solv_free(bn);
2015       solv_free(dn);
2016       return;
2017     }
2018   fm = headint16array(rpmhead, TAG_FILEMODES, &cnt2);
2019   if (!fm || cnt != cnt2)
2020     {
2021       solv_free(fm);
2022       solv_free(di);
2023       solv_free(bn);
2024       solv_free(dn);
2025       return;
2026     }
2027   if ((flags & RPM_ITERATE_FILELIST_WITHMD5) != 0)
2028     {
2029       md = headstringarray(rpmhead, TAG_FILEMD5S, &cnt2);
2030       if (!md || cnt != cnt2)
2031         {
2032           solv_free(md);
2033           solv_free(fm);
2034           solv_free(di);
2035           solv_free(bn);
2036           solv_free(dn);
2037           return;
2038         }
2039     }
2040   if ((flags & RPM_ITERATE_FILELIST_WITHCOL) != 0)
2041     {
2042       co = headint32array(rpmhead, TAG_FILECOLORS, &cnt2);
2043       if (!co || cnt != cnt2)
2044         {
2045           solv_free(co);
2046           solv_free(md);
2047           solv_free(fm);
2048           solv_free(di);
2049           solv_free(bn);
2050           solv_free(dn);
2051           return;
2052         }
2053     }
2054   if ((flags & RPM_ITERATE_FILELIST_NOGHOSTS) != 0)
2055     {
2056       ff = headint32array(rpmhead, TAG_FILEFLAGS, &cnt2);
2057       if (!ff || cnt != cnt2)
2058         {
2059           solv_free(ff);
2060           solv_free(co);
2061           solv_free(md);
2062           solv_free(fm);
2063           solv_free(di);
2064           solv_free(bn);
2065           solv_free(dn);
2066           return;
2067         }
2068     }
2069   lastdir = dcnt;
2070   lastdirl = 0;
2071   for (i = 0; i < cnt; i++)
2072     {
2073       if (ff && (ff[i] & FILEFLAG_GHOST) != 0)
2074         continue;
2075       diidx = di[i];
2076       if (diidx >= dcnt)
2077         continue;
2078       l1 = lastdir == diidx ? lastdirl : strlen(dn[diidx]);
2079       if (l1 == 0)
2080         continue;
2081       l = l1 + strlen(bn[i]) + 1;
2082       if (l > spacen)
2083         {
2084           spacen = l + 16;
2085           space = solv_realloc(space, spacen);
2086         }
2087       if (lastdir != diidx)
2088         {
2089           strcpy(space, dn[diidx]);
2090           lastdir = diidx;
2091           lastdirl = l1;
2092         }
2093       strcpy(space + l1, bn[i]);
2094       if (md)
2095         {
2096           md5p = md[i];
2097           if (S_ISLNK(fm[i]))
2098             {
2099               md5p = 0;
2100               if (!lt)
2101                 {
2102                   lt = headstringarray(rpmhead, TAG_FILELINKTOS, &cnt2);
2103                   if (cnt != cnt2)
2104                     lt = solv_free(lt);
2105                 }
2106               if (lt)
2107                 {
2108                   linkhash(lt[i], md5);
2109                   md5p = md5;
2110                 }
2111             }
2112           if (!md5p)
2113             {
2114               sprintf(md5, "%08x%08x%08x%08x", (fm[i] >> 12) & 65535, 0, 0, 0);
2115               md5p = md5;
2116             }
2117         }
2118       (*cb)(cbdata, space, co ? (fm[i] | co[i] << 24) : fm[i], md5p);
2119     }
2120   solv_free(space);
2121   solv_free(lt);
2122   solv_free(md);
2123   solv_free(fm);
2124   solv_free(di);
2125   solv_free(bn);
2126   solv_free(dn);
2127   solv_free(co);
2128   solv_free(ff);
2129 }
2130
2131 char *
2132 rpm_query(void *rpmhandle, Id what)
2133 {
2134   const char *name, *arch, *sourcerpm;
2135   char *evr, *r;
2136   int l;
2137
2138   RpmHead *rpmhead = rpmhandle;
2139   r = 0;
2140   switch (what)
2141     {
2142     case 0:
2143       name = headstring(rpmhead, TAG_NAME);
2144       if (!name)
2145         name = "";
2146       sourcerpm = headstring(rpmhead, TAG_SOURCERPM);
2147       if (sourcerpm)
2148         arch = headstring(rpmhead, TAG_ARCH);
2149       else
2150         {
2151           if (headexists(rpmhead, TAG_NOSOURCE) || headexists(rpmhead, TAG_NOPATCH))
2152             arch = "nosrc";
2153           else
2154             arch = "src";
2155         }
2156       if (!arch)
2157         arch = "noarch";
2158       evr = headtoevr(rpmhead);
2159       l = strlen(name) + 1 + strlen(evr) + 1 + strlen(arch) + 1;
2160       r = solv_malloc(l);
2161       sprintf(r, "%s-%s.%s", name, evr, arch);
2162       free(evr);
2163       break;
2164     case SOLVABLE_NAME:
2165       name = headstring(rpmhead, TAG_NAME);
2166       r = solv_strdup(name);
2167       break;
2168     case SOLVABLE_EVR:
2169       r = headtoevr(rpmhead);
2170       break;
2171     }
2172   return r;
2173 }
2174
2175
2176 struct rpm_by_state {
2177   RpmHead *rpmhead;
2178   int rpmheadsize;
2179
2180   int dbopened;
2181   DB_ENV *dbenv;
2182   DB *db;
2183   int byteswapped;
2184 };
2185
2186 struct rpmdbentry {
2187   Id rpmdbid;
2188   Id nameoff;
2189 };
2190
2191 #define ENTRIES_BLOCK 255
2192 #define NAMEDATA_BLOCK 1023
2193
2194 static struct rpmdbentry *
2195 getinstalledrpmdbids(struct rpm_by_state *state, const char *index, const char *match, int *nentriesp, char **namedatap)
2196 {
2197   DB_ENV *dbenv = 0;
2198   DB *db = 0;
2199   DBC *dbc = 0;
2200   int byteswapped;
2201   DBT dbkey;
2202   DBT dbdata;
2203   unsigned char *dp;
2204   int dl;
2205
2206   char *namedata = 0;
2207   int namedatal = 0;
2208   struct rpmdbentry *entries = 0;
2209   int nentries = 0;
2210
2211   *nentriesp = 0;
2212   *namedatap = 0;
2213
2214   dbenv = state->dbenv;
2215   if (db_create(&db, dbenv, 0))
2216     {
2217       perror("db_create");
2218       return 0;
2219     }
2220   if (db->open(db, 0, index, 0, DB_UNKNOWN, DB_RDONLY, 0664))
2221     {
2222       perror("db->open index");
2223       db->close(db, 0);
2224       return 0;
2225     }
2226   if (db->get_byteswapped(db, &byteswapped))
2227     {
2228       perror("db->get_byteswapped");
2229       db->close(db, 0);
2230       return 0;
2231     }
2232   if (db->cursor(db, NULL, &dbc, 0))
2233     {
2234       perror("db->cursor");
2235       db->close(db, 0);
2236       return 0;
2237     }
2238   memset(&dbkey, 0, sizeof(dbkey));
2239   memset(&dbdata, 0, sizeof(dbdata));
2240   if (match)
2241     {
2242       dbkey.data = (void *)match;
2243       dbkey.size = strlen(match);
2244     }
2245   while (dbc->c_get(dbc, &dbkey, &dbdata, match ? DB_SET : DB_NEXT) == 0)
2246     {
2247       if (!match && dbkey.size == 10 && !memcmp(dbkey.data, "gpg-pubkey", 10))
2248         continue;
2249       dl = dbdata.size;
2250       dp = dbdata.data;
2251       while(dl >= RPM_INDEX_SIZE)
2252         {
2253           entries = solv_extend(entries, nentries, 1, sizeof(*entries), ENTRIES_BLOCK);
2254           entries[nentries].rpmdbid = db2rpmdbid(dp, byteswapped);
2255           entries[nentries].nameoff = namedatal;
2256           nentries++;
2257           namedata = solv_extend(namedata, namedatal, dbkey.size + 1, 1, NAMEDATA_BLOCK);
2258           memcpy(namedata + namedatal, dbkey.data, dbkey.size);
2259           namedata[namedatal + dbkey.size] = 0;
2260           namedatal += dbkey.size + 1;
2261           dp += RPM_INDEX_SIZE;
2262           dl -= RPM_INDEX_SIZE;
2263         }
2264       if (match)
2265         break;
2266     }
2267   dbc->c_close(dbc);
2268   db->close(db, 0);
2269   *nentriesp = nentries;
2270   *namedatap = namedata;
2271   return entries;
2272 }
2273
2274 static void
2275 freestate(struct rpm_by_state *state)
2276 {
2277   /* close down */
2278   if (!state)
2279     return;
2280   if (state->db)
2281     state->db->close(state->db, 0);
2282   if (state->dbenv)
2283     state->dbenv->close(state->dbenv, 0);
2284   solv_free(state->rpmhead);
2285 }
2286
2287 int
2288 rpm_installedrpmdbids(const char *rootdir, const char *index, const char *match, Queue *rpmdbidq)
2289 {
2290   struct rpm_by_state state;
2291   struct rpmdbentry *entries;
2292   int nentries, i;
2293   char *namedata;
2294
2295   if (!index)
2296     index = "Name";
2297   if (rpmdbidq)
2298     queue_empty(rpmdbidq);
2299   memset(&state, 0, sizeof(state));
2300   if (!(state.dbenv = opendbenv(rootdir)))
2301     return 0;
2302   entries = getinstalledrpmdbids(&state, index, match, &nentries, &namedata);
2303   if (rpmdbidq)
2304     for (i = 0; i < nentries; i++)
2305       queue_push(rpmdbidq, entries[i].rpmdbid);
2306   solv_free(entries);
2307   solv_free(namedata);
2308   freestate(&state);
2309   return nentries;
2310 }
2311
2312 void *
2313 rpm_byrpmdbid(Id rpmdbid, const char *rootdir, void **statep)
2314 {
2315   struct rpm_by_state *state = *statep;
2316   unsigned char buf[16];
2317   DBT dbkey;
2318   DBT dbdata;
2319   RpmHead *rpmhead;
2320
2321   if (!rpmdbid)
2322     {
2323       /* close down */
2324       freestate(state);
2325       solv_free(state);
2326       *statep = (void *)0;
2327       return 0;
2328     }
2329
2330   if (!state)
2331     {
2332       state = solv_calloc(1, sizeof(*state));
2333       *statep = state;
2334     }
2335   if (!state->dbopened)
2336     {
2337       state->dbopened = 1;
2338       if (!state->dbenv && !(state->dbenv = opendbenv(rootdir)))
2339         return 0;
2340       if (db_create(&state->db, state->dbenv, 0))
2341         {
2342           perror("db_create");
2343           state->db = 0;
2344           state->dbenv->close(state->dbenv, 0);
2345           state->dbenv = 0;
2346           return 0;
2347         }
2348       if (state->db->open(state->db, 0, "Packages", 0, DB_UNKNOWN, DB_RDONLY, 0664))
2349         {
2350           perror("db->open var/lib/rpm/Packages");
2351           state->db->close(state->db, 0);
2352           state->db = 0;
2353           state->dbenv->close(state->dbenv, 0);
2354           state->dbenv = 0;
2355           return 0;
2356         }
2357       if (state->db->get_byteswapped(state->db, &state->byteswapped))
2358         {
2359           perror("db->get_byteswapped");
2360           state->db->close(state->db, 0);
2361           state->db = 0;
2362           state->dbenv->close(state->dbenv, 0);
2363           state->dbenv = 0;
2364           return 0;
2365         }
2366     }
2367   rpmdbid2db(buf, rpmdbid, state->byteswapped);
2368   memset(&dbkey, 0, sizeof(dbkey));
2369   memset(&dbdata, 0, sizeof(dbdata));
2370   dbkey.data = buf;
2371   dbkey.size = 4;
2372   dbdata.data = 0;
2373   dbdata.size = 0;
2374   if (state->db->get(state->db, NULL, &dbkey, &dbdata, 0))
2375     {
2376       perror("db->get");
2377       return 0;
2378     }
2379   if (dbdata.size < 8)
2380     {
2381       fprintf(stderr, "corrupt rpm database (size)\n");
2382       return 0;
2383     }
2384   if (dbdata.size > state->rpmheadsize)
2385     {
2386       state->rpmheadsize = dbdata.size + 128;
2387       state->rpmhead = solv_realloc(state->rpmhead, sizeof(*rpmhead) + state->rpmheadsize);
2388     }
2389   rpmhead = state->rpmhead;
2390   memcpy(buf, dbdata.data, 8);
2391   rpmhead->cnt = buf[0] << 24  | buf[1] << 16  | buf[2] << 8 | buf[3];
2392   rpmhead->dcnt = buf[4] << 24  | buf[5] << 16  | buf[6] << 8 | buf[7];
2393   if (8 + rpmhead->cnt * 16 + rpmhead->dcnt > dbdata.size)
2394     {
2395       fprintf(stderr, "corrupt rpm database (data size)\n");
2396       return 0;
2397     }
2398   memcpy(rpmhead->data, (unsigned char *)dbdata.data + 8, rpmhead->cnt * 16 + rpmhead->dcnt);
2399   rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
2400   return rpmhead;
2401 }
2402
2403 void *
2404 rpm_byfp(FILE *fp, const char *name, void **statep)
2405 {
2406   struct rpm_by_state *state = *statep;
2407   /* int headerstart, headerend; */
2408   RpmHead *rpmhead;
2409   int sigdsize, sigcnt, l;
2410   unsigned char lead[4096];
2411
2412   if (!fp)
2413     return rpm_byrpmdbid(0, 0, statep);
2414   if (!state)
2415     {
2416       state = solv_calloc(1, sizeof(*state));
2417       *statep = state;
2418     }
2419   if (fread(lead, 96 + 16, 1, fp) != 1 || getu32(lead) != 0xedabeedb)
2420     {
2421       fprintf(stderr, "%s: not a rpm\n", name);
2422       return 0;
2423     }
2424   if (lead[78] != 0 || lead[79] != 5)
2425     {
2426       fprintf(stderr, "%s: not a V5 header\n", name);
2427       return 0;
2428     }
2429   if (getu32(lead + 96) != 0x8eade801)
2430     {
2431       fprintf(stderr, "%s: bad signature header\n", name);
2432       return 0;
2433     }
2434   sigcnt = getu32(lead + 96 + 8);
2435   sigdsize = getu32(lead + 96 + 12);
2436   if (sigcnt >= 0x4000000 || sigdsize >= 0x40000000)
2437     {
2438       fprintf(stderr, "%s: bad signature header\n", name);
2439       return 0;
2440     }
2441   sigdsize += sigcnt * 16;
2442   sigdsize = (sigdsize + 7) & ~7;
2443   /* headerstart = 96 + 16 + sigdsize; */
2444   while (sigdsize)
2445     {
2446       l = sigdsize > 4096 ? 4096 : sigdsize;
2447       if (fread(lead, l, 1, fp) != 1)
2448         {
2449           fprintf(stderr, "%s: unexpected EOF\n", name);
2450           return 0;
2451         }
2452       sigdsize -= l;
2453     }
2454   if (fread(lead, 16, 1, fp) != 1)
2455     {
2456       fprintf(stderr, "%s: unexpected EOF\n", name);
2457       return 0;
2458     }
2459   if (getu32(lead) != 0x8eade801)
2460     {
2461       fprintf(stderr, "%s: bad header\n", name);
2462       fclose(fp);
2463       return 0;
2464     }
2465   sigcnt = getu32(lead + 8);
2466   sigdsize = getu32(lead + 12);
2467   if (sigcnt >= 0x4000000 || sigdsize >= 0x40000000)
2468     {
2469       fprintf(stderr, "%s: bad header\n", name);
2470       fclose(fp);
2471       return 0;
2472     }
2473   l = sigdsize + sigcnt * 16;
2474   /* headerend = headerstart + 16 + l; */
2475   if (l > state->rpmheadsize)
2476     {
2477       state->rpmheadsize = l + 128;
2478       state->rpmhead = solv_realloc(state->rpmhead, sizeof(*state->rpmhead) + state->rpmheadsize);
2479     }
2480   rpmhead = state->rpmhead;
2481   if (fread(rpmhead->data, l, 1, fp) != 1)
2482     {
2483       fprintf(stderr, "%s: unexpected EOF\n", name);
2484       fclose(fp);
2485       return 0;
2486     }
2487   rpmhead->cnt = sigcnt;
2488   rpmhead->dcnt = sigdsize;
2489   rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
2490   return rpmhead;
2491 }
2492
2493 void *
2494 rpm_byrpmh(Header h, void **statep)
2495 {
2496   struct rpm_by_state *state = *statep;
2497   const unsigned char *uh;
2498   int sigdsize, sigcnt, l;
2499   RpmHead *rpmhead;
2500
2501 #ifndef RPM5
2502   uh = headerUnload(h);
2503 #else
2504   uh = headerUnload(h, NULL);
2505 #endif
2506   if (!uh)
2507     return 0;
2508   sigcnt = getu32(uh);
2509   sigdsize = getu32(uh + 4);
2510   l = sigdsize + sigcnt * 16;
2511   if (!state)
2512     {
2513       state = solv_calloc(1, sizeof(*state));
2514       *statep = state;
2515     }
2516   if (l > state->rpmheadsize)
2517     {
2518       state->rpmheadsize = l + 128;
2519       state->rpmhead = solv_realloc(state->rpmhead, sizeof(*state->rpmhead) + state->rpmheadsize);
2520     }
2521   rpmhead = state->rpmhead;
2522   memcpy(rpmhead->data, uh + 8, l - 8);
2523   free((void *)uh);
2524   rpmhead->cnt = sigcnt;
2525   rpmhead->dcnt = sigdsize;
2526   rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
2527   return rpmhead;
2528 }
2529
2530
2531 static char *
2532 r64dec1(char *p, unsigned int *vp, int *eofp)
2533 {
2534   int i, x;
2535   unsigned int v = 0;
2536
2537   for (i = 0; i < 4; )
2538     {
2539       x = *p++;
2540       if (!x)
2541         return 0;
2542       if (x >= 'A' && x <= 'Z')
2543         x -= 'A';
2544       else if (x >= 'a' && x <= 'z')
2545         x -= 'a' - 26;
2546       else if (x >= '0' && x <= '9')
2547         x -= '0' - 52;
2548       else if (x == '+')
2549         x = 62;
2550       else if (x == '/')
2551         x = 63;
2552       else if (x == '=')
2553         {
2554           x = 0;
2555           if (i == 0)
2556             {
2557               *eofp = 3;
2558               *vp = 0;
2559               return p - 1;
2560             }
2561           *eofp += 1;
2562         }
2563       else
2564         continue;
2565       v = v << 6 | x;
2566       i++;
2567     }
2568   *vp = v;
2569   return p;
2570 }
2571
2572 static unsigned int
2573 crc24(unsigned char *p, int len)
2574 {
2575   unsigned int crc = 0xb704ceL;
2576   int i;
2577
2578   while (len--)
2579     {
2580       crc ^= (*p++) << 16;
2581       for (i = 0; i < 8; i++)
2582         if ((crc <<= 1) & 0x1000000)
2583           crc ^= 0x1864cfbL;
2584     }
2585   return crc & 0xffffffL;
2586 }
2587
2588 static unsigned char *
2589 unarmor(char *pubkey, int *pktlp)
2590 {
2591   char *p;
2592   int l, eof;
2593   unsigned char *buf, *bp;
2594   unsigned int v;
2595
2596   *pktlp = 0;
2597   while (strncmp(pubkey, "-----BEGIN PGP PUBLIC KEY BLOCK-----", 36) != 0)
2598     {
2599       pubkey = strchr(pubkey, '\n');
2600       if (!pubkey)
2601         return 0;
2602       pubkey++;
2603     }
2604   pubkey = strchr(pubkey, '\n');
2605   if (!pubkey++)
2606     return 0;
2607   /* skip header lines */
2608   for (;;)
2609     {
2610       while (*pubkey == ' ' || *pubkey == '\t')
2611         pubkey++;
2612       if (*pubkey == '\n')
2613         break;
2614       pubkey = strchr(pubkey, '\n');
2615       if (!pubkey++)
2616         return 0;
2617     }
2618   pubkey++;
2619   p = strchr(pubkey, '=');
2620   if (!p)
2621     return 0;
2622   l = p - pubkey;
2623   bp = buf = solv_malloc(l * 3 / 4 + 4);
2624   eof = 0;
2625   while (!eof)
2626     {
2627       pubkey = r64dec1(pubkey, &v, &eof);
2628       if (!pubkey)
2629         {
2630           solv_free(buf);
2631           return 0;
2632         }
2633       *bp++ = v >> 16;
2634       *bp++ = v >> 8;
2635       *bp++ = v;
2636     }
2637   while (*pubkey == ' ' || *pubkey == '\t' || *pubkey == '\n' || *pubkey == '\r')
2638     pubkey++;
2639   bp -= eof;
2640   if (*pubkey != '=' || (pubkey = r64dec1(pubkey + 1, &v, &eof)) == 0)
2641     {
2642       solv_free(buf);
2643       return 0;
2644     }
2645   if (v != crc24(buf, bp - buf))
2646     {
2647       solv_free(buf);
2648       return 0;
2649     }
2650   while (*pubkey == ' ' || *pubkey == '\t' || *pubkey == '\n' || *pubkey == '\r')
2651     pubkey++;
2652   if (strncmp(pubkey, "-----END PGP PUBLIC KEY BLOCK-----", 34) != 0)
2653     {
2654       solv_free(buf);
2655       return 0;
2656     }
2657   *pktlp = bp - buf;
2658   return buf;
2659 }
2660
2661 static void
2662 parsekeydata(Solvable *s, Repodata *data, unsigned char *p, int pl)
2663 {
2664   int x, tag, l;
2665   unsigned char keyid[8];
2666   unsigned int kcr = 0, maxex = 0;
2667   unsigned char *pubkey = 0;
2668   unsigned char *userid = 0;
2669 #if 0
2670   int pubkeyl = 0;
2671   int useridl = 0;
2672 #endif
2673
2674   for (; pl; p += l, pl -= l)
2675     {
2676       x = *p++;
2677       pl--;
2678       if (!(x & 128) || pl <= 0)
2679         return;
2680       if ((x & 64) == 0)
2681         {
2682           /* old format */
2683           tag = (x & 0x3c) >> 2;
2684           x &= 3;
2685           if (x == 3)
2686             return;
2687           l = 1 << x;
2688           if (pl < l)
2689             return;
2690           x = 0;
2691           while (l--)
2692             {
2693               x = x << 8 | *p++;
2694               pl--;
2695             }
2696           l = x;
2697         }
2698       else
2699         {
2700           tag = (x & 0x3f);
2701           x = *p++;
2702           pl--;
2703           if (x < 192)
2704             l = x;
2705           else if (x >= 192 && x < 224)
2706             {
2707               if (pl <= 0)
2708                 return;
2709               l = ((x - 192) << 8) + *p++ + 192;
2710               pl--;
2711             }
2712           else if (x == 255)
2713             {
2714               if (pl <= 4)
2715                 return;
2716               l = p[0] << 24 | p[1] << 16 | p[2] << 8 | p[3];
2717               p += 4;
2718               pl -= 4;
2719             }
2720           else
2721             return;
2722         }
2723       if (pl < l)
2724         return;
2725       if (tag == 6)
2726         {
2727           pubkey = solv_realloc(pubkey, l);
2728           if (l)
2729             memcpy(pubkey, p, l);
2730 #if 0
2731           pubkeyl = l;
2732 #endif
2733           kcr = 0;
2734           if (p[0] == 3)
2735             {
2736               unsigned int ex;
2737               void *h;
2738               kcr = p[1] << 24 | p[2] << 16 | p[3] << 8 | p[4];
2739               ex = 0;
2740               if (p[5] || p[6])
2741                 {
2742                   ex = kcr + 24*3600 * (p[5] << 8 | p[6]);
2743                   if (ex > maxex)
2744                     maxex = ex;
2745                 }
2746               memset(keyid, 0, 8);
2747               if (p[7] == 1)    /* RSA */
2748                 {
2749                   int i, ql;
2750                   unsigned char fp[16];
2751                   char fpx[32 + 1];
2752                   unsigned char *q;
2753
2754                   ql = ((p[8] << 8 | p[9]) + 7) / 8;
2755                   memcpy(keyid, p + 10 + ql - 8, 8);
2756                   h = solv_chksum_create(REPOKEY_TYPE_MD5);
2757                   solv_chksum_add(h, p + 10, ql);
2758                   q = p + 10 + ql;
2759                   ql = ((q[0] << 8 | q[1]) + 7) / 8;
2760                   solv_chksum_add(h, q + 2, ql);
2761                   solv_chksum_free(h, fp);
2762                   for (i = 0; i < 16; i++)
2763                     sprintf(fpx + i * 2, "%02x", fp[i]);
2764                   setutf8string(data, s - s->repo->pool->solvables, PUBKEY_FINGERPRINT, fpx);
2765                 }
2766             }
2767           else if (p[0] == 4)
2768             {
2769               int i;
2770               void *h;
2771               unsigned char hdr[3];
2772               unsigned char fp[20];
2773               char fpx[40 + 1];
2774
2775               kcr = p[1] << 24 | p[2] << 16 | p[3] << 8 | p[4];
2776               hdr[0] = 0x99;
2777               hdr[1] = l >> 8;
2778               hdr[2] = l;
2779               h = solv_chksum_create(REPOKEY_TYPE_SHA1);
2780               solv_chksum_add(h, hdr, 3);
2781               solv_chksum_add(h, p, l);
2782               solv_chksum_free(h, fp);
2783               for (i = 0; i < 20; i++)
2784                 sprintf(fpx + i * 2, "%02x", fp[i]);
2785               setutf8string(data, s - s->repo->pool->solvables, PUBKEY_FINGERPRINT, fpx);
2786               memcpy(keyid, fp + 12, 8);
2787             }
2788         }
2789       if (tag == 2)
2790         {
2791           if (p[0] == 3 && p[1] == 5)
2792             {
2793 #if 0
2794               Id htype = 0;
2795 #endif
2796               // printf("V3 signature packet\n");
2797               if (l < 17)
2798                 continue;
2799               if (p[2] != 0x10 && p[2] != 0x11 && p[2] != 0x12 && p[2] != 0x13 && p[2] != 0x1f)
2800                 continue;
2801               if (!memcmp(keyid, p + 6, 8))
2802                 {
2803                   // printf("SELF SIG\n");
2804                 }
2805               else
2806                 {
2807                   // printf("OTHER SIG\n");
2808                 }
2809 #if 0
2810               if (p[16] == 1)
2811                 htype = REPOKEY_TYPE_MD5;
2812               else if (p[16] == 2)
2813                 htype = REPOKEY_TYPE_SHA1;
2814               else if (p[16] == 8)
2815                 htype = REPOKEY_TYPE_SHA256;
2816               if (htype)
2817                 {
2818                   void *h = solv_chksum_create(htype);
2819                   unsigned char b[3], *cs;
2820
2821                   b[0] = 0x99;
2822                   b[1] = pubkeyl >> 8;
2823                   b[2] = pubkeyl;
2824                   solv_chksum_add(h, b, 3);
2825                   solv_chksum_add(h, pubkey, pubkeyl);
2826                   if (p[2] >= 0x10 && p[2] <= 0x13)
2827                     solv_chksum_add(h, userid, useridl);
2828                   solv_chksum_add(h, p + 2, 5);
2829                   cs = solv_chksum_get(h, 0);
2830                   solv_chksum_free(h, 0);
2831                 }
2832 #endif
2833             }
2834           if (p[0] == 4)
2835             {
2836               int j, ql, haveissuer;
2837               unsigned char *q;
2838               unsigned int ex = 0;
2839 #if 0
2840               unsigned int scr = 0;
2841 #endif
2842               unsigned char issuer[8];
2843
2844               // printf("V4 signature packet\n");
2845               if (l < 6)
2846                 continue;
2847               if (p[1] != 0x10 && p[1] != 0x11 && p[1] != 0x12 && p[1] != 0x13 && p[1] != 0x1f)
2848                 continue;
2849               haveissuer = 0;
2850               ex = 0;
2851               q = p + 4;
2852               for (j = 0; q && j < 2; j++)
2853                 {
2854                   if (q + 2 > p + l)
2855                     {
2856                       q = 0;
2857                       break;
2858                     }
2859                   ql = q[0] << 8 | q[1];
2860                   q += 2;
2861                   if (q + ql > p + l)
2862                     {
2863                       q = 0;
2864                       break;
2865                     }
2866                   while (ql)
2867                     {
2868                       int sl;
2869                       x = *q++;
2870                       ql--;
2871                       if (x < 192)
2872                         sl = x;
2873                       else if (x == 255)
2874                         {
2875                           if (ql < 4)
2876                             {
2877                               q = 0;
2878                               break;
2879                             }
2880                           sl = q[0] << 24 | q[1] << 16 | q[2] << 8 | q[3];
2881                           q += 4;
2882                           ql -= 4;
2883                         }
2884                       else
2885                         {
2886                           if (ql < 1)
2887                             {
2888                               q = 0;
2889                               break;
2890                             }
2891                           sl = ((x - 192) << 8) + *q++ + 192;
2892                           ql--;
2893                         }
2894                       if (ql < sl)
2895                         {
2896                           q = 0;
2897                           break;
2898                         }
2899                       x = q[0] & 127;
2900                       // printf("%d SIGSUB %d %d\n", j, x, sl);
2901                       if (x == 16 && sl == 9 && !haveissuer)
2902                         {
2903                           memcpy(issuer, q + 1, 8);
2904                           haveissuer = 1;
2905                         }
2906 #if 0
2907                       if (x == 2 && j == 0)
2908                         scr = q[1] << 24 | q[2] << 16 | q[3] << 8 | q[4];
2909 #endif
2910                       if (x == 9 && j == 0)
2911                         ex = q[1] << 24 | q[2] << 16 | q[3] << 8 | q[4];
2912                       q += sl;
2913                       ql -= sl;
2914                     }
2915                 }
2916               if (ex)
2917                 ex += kcr;
2918               if (haveissuer)
2919                 {
2920 #if 0
2921                   Id htype = 0;
2922                   if (p[3] == 1)
2923                     htype = REPOKEY_TYPE_MD5;
2924                   else if (p[3] == 2)
2925                     htype = REPOKEY_TYPE_SHA1;
2926                   else if (p[3] == 8)
2927                     htype = REPOKEY_TYPE_SHA256;
2928                   if (htype && pubkeyl)
2929                     {
2930                       void *h = solv_chksum_create(htype);
2931                       unsigned char b[6], *cs;
2932                       unsigned int hl;
2933
2934                       b[0] = 0x99;
2935                       b[1] = pubkeyl >> 8;
2936                       b[2] = pubkeyl;
2937                       solv_chksum_add(h, b, 3);
2938                       solv_chksum_add(h, pubkey, pubkeyl);
2939                       if (p[1] >= 0x10 && p[1] <= 0x13)
2940                         {
2941                           b[0] = 0xb4;
2942                           b[1] = useridl >> 24;
2943                           b[2] = useridl >> 16;
2944                           b[3] = useridl >> 8;
2945                           b[4] = useridl;
2946                           solv_chksum_add(h, b, 5);
2947                           solv_chksum_add(h, userid, useridl);
2948                         }
2949                       hl = 6 + (p[4] << 8 | p[5]);
2950                       solv_chksum_add(h, p, hl);
2951                       b[0] = 4;
2952                       b[1] = 0xff;
2953                       b[2] = hl >> 24;
2954                       b[3] = hl >> 16;
2955                       b[4] = hl >> 8;
2956                       b[5] = hl;
2957                       solv_chksum_add(h, b, 6);
2958                       cs = solv_chksum_get(h, 0);
2959                       solv_chksum_free(h, 0);
2960                     }
2961 #endif
2962                   if (!memcmp(keyid, issuer, 8))
2963                     {
2964                       // printf("SELF SIG cr %d ex %d\n", cr, ex);
2965                       if (ex > maxex)
2966                         maxex = ex;
2967                     }
2968                   else
2969                     {
2970                       // printf("OTHER SIG cr %d ex %d\n", cr, ex);
2971                     }
2972                 }
2973             }
2974         }
2975       if (tag == 13)
2976         {
2977           userid = solv_realloc(userid, l);
2978           if (l)
2979             memcpy(userid, p, l);
2980 #if 0
2981           useridl = l;
2982 #endif
2983         }
2984     }
2985   if (maxex)
2986     repodata_set_num(data, s - s->repo->pool->solvables, PUBKEY_EXPIRES, maxex);
2987   solv_free(pubkey);
2988   solv_free(userid);
2989 }
2990
2991 /* this is private to rpm, but rpm lacks an interface to retrieve
2992  * the values. Sigh. */
2993 struct pgpDigParams_s {
2994     const char * userid;
2995     const unsigned char * hash;
2996     const char * params[4];
2997     unsigned char tag;
2998     unsigned char version;               /*!< version number. */
2999     unsigned char time[4];               /*!< time that the key was created. */
3000     unsigned char pubkey_algo;           /*!< public key algorithm. */
3001     unsigned char hash_algo;
3002     unsigned char sigtype;
3003     unsigned char hashlen;
3004     unsigned char signhash16[2];
3005     unsigned char signid[8];
3006     unsigned char saved;
3007 };
3008
3009 struct pgpDig_s {
3010     struct pgpDigParams_s signature;
3011     struct pgpDigParams_s pubkey;
3012 };
3013
3014 static int
3015 pubkey2solvable(Solvable *s, Repodata *data, char *pubkey)
3016 {
3017   Pool *pool = s->repo->pool;
3018   unsigned char *pkts;
3019   unsigned int btime;
3020   int pktsl, i;
3021   pgpDig dig = 0;
3022   char keyid[16 + 1];
3023   char evrbuf[8 + 1 + 8 + 1];
3024
3025   pkts = unarmor(pubkey, &pktsl);
3026   if (!pkts)
3027     return 0;
3028   setutf8string(data, s - s->repo->pool->solvables, SOLVABLE_DESCRIPTION, pubkey);
3029   parsekeydata(s, data, pkts, pktsl);
3030   /* only rpm knows how to do the release calculation, we don't dare
3031    * to recreate all the bugs */
3032 #ifndef RPM5
3033   dig = pgpNewDig();
3034 #else
3035   dig = pgpDigNew(RPMVSF_DEFAULT, 0);
3036 #endif
3037   (void) pgpPrtPkts(pkts, pktsl, dig, 0);
3038   btime = dig->pubkey.time[0] << 24 | dig->pubkey.time[1] << 16 | dig->pubkey.time[2] << 8 | dig->pubkey.signid[3];
3039   sprintf(evrbuf, "%02x%02x%02x%02x-%02x%02x%02x%02x", dig->pubkey.signid[4], dig->pubkey.signid[5], dig->pubkey.signid[6], dig->pubkey.signid[7], dig->pubkey.time[0], dig->pubkey.time[1], dig->pubkey.time[2], dig->pubkey.time[3]);
3040   repodata_set_num(data, s - s->repo->pool->solvables, SOLVABLE_BUILDTIME, btime);
3041
3042   s->name = pool_str2id(pool, "gpg-pubkey", 1);
3043   s->evr = pool_str2id(pool, evrbuf, 1);
3044   s->arch = 1;
3045   for (i = 0; i < 8; i++)
3046     sprintf(keyid + 2 * i, "%02x", dig->pubkey.signid[i]);
3047   repodata_set_str(data, s - s->repo->pool->solvables, PUBKEY_KEYID, keyid);
3048   if (dig->pubkey.userid)
3049     setutf8string(data, s - s->repo->pool->solvables, SOLVABLE_SUMMARY, dig->pubkey.userid);
3050 #ifndef RPM5
3051   (void)pgpFreeDig(dig);
3052 #else
3053   (void)pgpDigFree(dig);
3054 #endif
3055   solv_free((void *)pkts);
3056   return 1;
3057 }
3058
3059 int
3060 repo_add_rpmdb_pubkeys(Repo *repo, const char *rootdir, int flags)
3061 {
3062   Pool *pool = repo->pool;
3063   struct rpm_by_state state;
3064   struct rpmdbentry *entries;
3065   int nentries, i;
3066   char *namedata, *str;
3067   unsigned int u32;
3068   Repodata *data;
3069   Solvable *s;
3070
3071   data = repo_add_repodata(repo, flags);
3072
3073   memset(&state, 0, sizeof(state));
3074   if (!(state.dbenv = opendbenv(rootdir)))
3075     return 0;
3076   entries = getinstalledrpmdbids(&state, "Name", "gpg-pubkey", &nentries, &namedata);
3077   for (i = 0 ; i < nentries; i++)
3078     {
3079       void *statep = &state;
3080       RpmHead *rpmhead = rpm_byrpmdbid(entries[i].rpmdbid, rootdir, &statep);
3081       if (!rpmhead)
3082         continue;
3083       str = headstring(rpmhead, TAG_DESCRIPTION);
3084       if (!str)
3085         continue;
3086       s = pool_id2solvable(pool, repo_add_solvable(repo));
3087       pubkey2solvable(s, data, str);
3088       u32 = headint32(rpmhead, TAG_INSTALLTIME);
3089       if (u32)
3090         repodata_set_num(data, s - pool->solvables, SOLVABLE_INSTALLTIME, u32);
3091       if (!repo->rpmdbid)
3092         repo->rpmdbid = repo_sidedata_create(repo, sizeof(Id));
3093       repo->rpmdbid[s - pool->solvables - repo->start] = entries[i].rpmdbid;
3094     }
3095   solv_free(entries);
3096   solv_free(namedata);
3097   freestate(&state);
3098   if (!(flags & REPO_NO_INTERNALIZE))
3099     repodata_internalize(data);
3100   return 0;
3101 }
3102
3103 int
3104 repo_add_pubkeys(Repo *repo, const char **keys, int nkeys, int flags)
3105 {
3106   Pool *pool = repo->pool;
3107   Repodata *data;
3108   Solvable *s;
3109   char *buf;
3110   int i, bufl, l, ll;
3111   FILE *fp;
3112
3113   data = repo_add_repodata(repo, flags);
3114   buf = 0;
3115   bufl = 0;
3116   for (i = 0; i < nkeys; i++)
3117     {
3118       if ((fp = fopen(keys[i], "r")) == 0)
3119         {
3120           perror(keys[i]);
3121           continue;
3122         }
3123       for (l = 0; ;)
3124         {
3125           if (bufl - l < 4096)
3126             {
3127               bufl += 4096;
3128               buf = solv_realloc(buf, bufl);
3129             }
3130           ll = fread(buf, 1, bufl - l, fp);
3131           if (ll <= 0)
3132             break;
3133           l += ll;
3134         }
3135       buf[l] = 0;
3136       fclose(fp);
3137       s = pool_id2solvable(pool, repo_add_solvable(repo));
3138       pubkey2solvable(s, data, buf);
3139     }
3140   solv_free(buf);
3141   if (!(flags & REPO_NO_INTERNALIZE))
3142     repodata_internalize(data);
3143   return 0;
3144 }