- make findfileconflicts ignore ghost files, like rpm does
[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 = sat_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 = sat_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 = sat_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           sat_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 = sat_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 = sat_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 = sat_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     sat_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       sat_free(n);
418       return 0;
419     }
420   f = headint32array(rpmhead, tagf, &fc);
421   if (!f)
422     {
423       sat_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       sat_free(n);
464       sat_free(v);
465       sat_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   sat_free(n);
513   sat_free(v);
514   sat_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       sat_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       sat_free(fsz);
566       sat_free(fm);
567       return;
568     }
569   fino = headint32array(rpmhead, TAG_FILEINODES, &fszc);
570   if (!fino || fc != fszc)
571     {
572       sat_free(fsz);
573       sat_free(fm);
574       sat_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           sat_free(fsz);
603           sat_free(fm);
604           sat_free(fdev);
605           sat_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 = sat_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         sat_free(fx);
640       sat_free(fdev);
641     }
642   sat_free(fino);
643   fn = sat_calloc(dc, sizeof(unsigned int));
644   fkb = sat_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   sat_free(fsz);
655   sat_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   sat_free(fn);
674   sat_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       sat_free(bn);
704       return olddeps;
705     }
706   di = headint32array(rpmhead, TAG_DIRINDEXES, &dic);
707   if (!di)
708     {
709       sat_free(bn);
710       sat_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 = sat_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     sat_free(fn);
787 #endif
788   sat_free(bn);
789   sat_free(dn);
790   sat_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 = 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   sat_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 && data->attrs)
1234     {
1235       Id *tmpattrs = data->attrs[pa - data->start];
1236       data->attrs[pa - data->start] = data->attrs[pb - data->start];
1237       data->attrs[pb - data->start] = tmpattrs;
1238     }
1239 }
1240
1241
1242 static inline Id db2rpmdbid(unsigned char *db, int byteswapped)
1243 {
1244 #ifdef RPM5
1245   return db[0] << 24 | db[1] << 16 | db[2] << 8 | db[3];
1246 #else
1247 # if defined(WORDS_BIGENDIAN)
1248   if (!byteswapped)
1249 # else
1250   if (byteswapped)
1251 # endif
1252     return db[0] << 24 | db[1] << 16 | db[2] << 8 | db[3];
1253   else
1254     return db[3] << 24 | db[2] << 16 | db[1] << 8 | db[0];
1255 #endif
1256 }
1257
1258 static inline void rpmdbid2db(unsigned char *db, Id id, int byteswapped)
1259 {
1260 #ifdef RPM5
1261   db[0] = id >> 24, db[1] = id >> 16, db[2] = id >> 8, db[3] = id;
1262 #else
1263 # if defined(WORDS_BIGENDIAN)
1264   if (!byteswapped)
1265 # else
1266   if (byteswapped)
1267 # endif
1268     db[0] = id >> 24, db[1] = id >> 16, db[2] = id >> 8, db[3] = id;
1269   else
1270     db[3] = id >> 24, db[2] = id >> 16, db[1] = id >> 8, db[0] = id;
1271 #endif
1272 }
1273
1274 static void
1275 mkrpmdbcookie(struct stat *st, unsigned char *cookie)
1276 {
1277   memset(cookie, 0, 32);
1278   cookie[3] = RPMDB_COOKIE_VERSION;
1279   memcpy(cookie + 16, &st->st_ino, sizeof(st->st_ino));
1280   memcpy(cookie + 24, &st->st_dev, sizeof(st->st_dev));
1281 }
1282
1283 /* should look in /usr/lib/rpm/macros instead, but we want speed... */
1284 static DB_ENV *
1285 opendbenv(const char *rootdir)
1286 {
1287   char dbpath[PATH_MAX];
1288   DB_ENV *dbenv = 0;
1289   int r;
1290
1291   if (db_env_create(&dbenv, 0))
1292     {
1293       perror("db_env_create");
1294       return 0;
1295     }
1296 #if defined(FEDORA) && (DB_VERSION_MAJOR >= 5 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 5))
1297   dbenv->set_thread_count(dbenv, 8);
1298 #endif
1299   snprintf(dbpath, PATH_MAX, "%s/var/lib/rpm", rootdir ? rootdir : "");
1300   if (access(dbpath, W_OK) == -1)
1301     {
1302       r = dbenv->open(dbenv, dbpath, DB_CREATE|DB_PRIVATE|DB_INIT_MPOOL, 0);
1303     }
1304   else
1305     {
1306 #ifdef FEDORA
1307       r = dbenv->open(dbenv, dbpath, DB_CREATE|DB_INIT_CDB|DB_INIT_MPOOL, 0644);
1308 #else
1309       r = dbenv->open(dbenv, dbpath, DB_CREATE|DB_PRIVATE|DB_INIT_MPOOL, 0);
1310 #endif
1311     }
1312   if (r)
1313     {
1314       perror("dbenv open");
1315       dbenv->close(dbenv, 0);
1316       return 0;
1317     }
1318   return dbenv;
1319 }
1320
1321
1322 static int
1323 count_headers(const char *rootdir, DB_ENV *dbenv)
1324 {
1325   char dbpath[PATH_MAX];
1326   struct stat statbuf;
1327   DB *db = 0;
1328   DBC *dbc = 0;
1329   int count = 0;
1330   DBT dbkey;
1331   DBT dbdata;
1332
1333   snprintf(dbpath, PATH_MAX, "%s/var/lib/rpm/Name", rootdir);
1334   if (stat(dbpath, &statbuf))
1335     return 0;
1336   memset(&dbkey, 0, sizeof(dbkey));
1337   memset(&dbdata, 0, sizeof(dbdata));
1338   if (db_create(&db, dbenv, 0))
1339     {
1340       perror("db_create");
1341       exit(1);
1342     }
1343   if (db->open(db, 0, "Name", 0, DB_UNKNOWN, DB_RDONLY, 0664))
1344     {
1345       perror("db->open Name index");
1346       exit(1);
1347     }
1348   if (db->cursor(db, NULL, &dbc, 0))
1349     {
1350       perror("db->cursor");
1351       exit(1);
1352     }
1353   while (dbc->c_get(dbc, &dbkey, &dbdata, DB_NEXT) == 0)
1354     count += dbdata.size / RPM_INDEX_SIZE;
1355   dbc->c_close(dbc);
1356   db->close(db, 0);
1357   return count;
1358 }
1359
1360 /*
1361  * read rpm db as repo
1362  *
1363  */
1364
1365 void
1366 repo_add_rpmdb(Repo *repo, Repo *ref, const char *rootdir, int flags)
1367 {
1368   Pool *pool = repo->pool;
1369   unsigned char buf[16];
1370   DB *db = 0;
1371   DBC *dbc = 0;
1372   int byteswapped;
1373   unsigned int dbid;
1374   unsigned char *dp;
1375   int dl, nrpmids;
1376   struct rpmid *rpmids, *rp;
1377   int i;
1378   int rpmheadsize;
1379   RpmHead *rpmhead;
1380   Solvable *s;
1381   Id id, *refhash;
1382   unsigned int refmask, h;
1383   char dbpath[PATH_MAX];
1384   DB_ENV *dbenv = 0;
1385   DBT dbkey;
1386   DBT dbdata;
1387   struct stat packagesstat;
1388   unsigned char newcookie[32];
1389   const unsigned char *oldcookie = 0;
1390   Id oldcookietype = 0;
1391   Repodata *data;
1392   int count = 0, done = 0;
1393   unsigned int now;
1394
1395   now = sat_timems(0);
1396   memset(&dbkey, 0, sizeof(dbkey));
1397   memset(&dbdata, 0, sizeof(dbdata));
1398
1399   if (!rootdir)
1400     rootdir = "";
1401
1402   data = repo_add_repodata(repo, flags);
1403
1404   if (ref && !(ref->nsolvables && ref->rpmdbid))
1405     ref = 0;
1406
1407   if (!(dbenv = opendbenv(rootdir)))
1408     exit(1);
1409
1410   /* XXX: should get ro lock of Packages database! */
1411   snprintf(dbpath, PATH_MAX, "%s/var/lib/rpm/Packages", rootdir);
1412   if (stat(dbpath, &packagesstat))
1413     {
1414       perror(dbpath);
1415       exit(1);
1416     }
1417   mkrpmdbcookie(&packagesstat, newcookie);
1418   repodata_set_bin_checksum(data, SOLVID_META, REPOSITORY_RPMDBCOOKIE, REPOKEY_TYPE_SHA256, newcookie);
1419
1420   if (ref)
1421     oldcookie = repo_lookup_bin_checksum(ref, SOLVID_META, REPOSITORY_RPMDBCOOKIE, &oldcookietype);
1422   if (!ref || !oldcookie || oldcookietype != REPOKEY_TYPE_SHA256 || memcmp(oldcookie, newcookie, 32) != 0)
1423     {
1424       Id *pkgids;
1425       int solvstart = 0, solvend = 0;
1426
1427       if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1428         count = count_headers(rootdir, dbenv);
1429       if (db_create(&db, dbenv, 0))
1430         {
1431           perror("db_create");
1432           exit(1);
1433         }
1434       if (db->open(db, 0, "Packages", 0, DB_UNKNOWN, DB_RDONLY, 0664))
1435         {
1436           perror("db->open Packages index");
1437           exit(1);
1438         }
1439       if (db->get_byteswapped(db, &byteswapped))
1440         {
1441           perror("db->get_byteswapped");
1442           exit(1);
1443         }
1444       if (db->cursor(db, NULL, &dbc, 0))
1445         {
1446           perror("db->cursor");
1447           exit(1);
1448         }
1449       rpmheadsize = 0;
1450       rpmhead = 0;
1451       i = 0;
1452       s = 0;
1453       while (dbc->c_get(dbc, &dbkey, &dbdata, DB_NEXT) == 0)
1454         {
1455           if (!s)
1456             {
1457               s = pool_id2solvable(pool, repo_add_solvable(repo));
1458               if (!solvstart)
1459                 solvstart = s - pool->solvables;
1460               solvend = s - pool->solvables + 1;
1461             }
1462           if (!repo->rpmdbid)
1463             repo->rpmdbid = repo_sidedata_create(repo, sizeof(Id));
1464           if (dbkey.size != 4)
1465             {
1466               fprintf(stderr, "corrupt Packages database (key size)\n");
1467               exit(1);
1468             }
1469           dbid = db2rpmdbid(dbkey.data, byteswapped);
1470           if (dbid == 0)                /* the join key */
1471             continue;
1472           if (dbdata.size < 8)
1473             {
1474               fprintf(stderr, "corrupt rpm database (size %u)\n", dbdata.size);
1475               exit(1);
1476             }
1477           if (dbdata.size > rpmheadsize)
1478             {
1479               rpmheadsize = dbdata.size + 128;
1480               rpmhead = sat_realloc(rpmhead, sizeof(*rpmhead) + rpmheadsize);
1481             }
1482           memcpy(buf, dbdata.data, 8);
1483           rpmhead->cnt = buf[0] << 24  | buf[1] << 16  | buf[2] << 8 | buf[3];
1484           rpmhead->dcnt = buf[4] << 24  | buf[5] << 16  | buf[6] << 8 | buf[7];
1485           if (8 + rpmhead->cnt * 16 + rpmhead->dcnt > dbdata.size)
1486             {
1487               fprintf(stderr, "corrupt rpm database (data size)\n");
1488               exit(1);
1489             }
1490           memcpy(rpmhead->data, (unsigned char *)dbdata.data + 8, rpmhead->cnt * 16 + rpmhead->dcnt);
1491           rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
1492           repo->rpmdbid[(s - pool->solvables) - repo->start] = dbid;
1493           if (rpm2solv(pool, repo, data, s, rpmhead, flags | RPM_ADD_TRIGGERS))
1494             {
1495               i++;
1496               s = 0;
1497             }
1498           else
1499             {
1500               /* We can reuse this solvable, but make sure it's still
1501                  associated with this repo.  */
1502               memset(s, 0, sizeof(*s));
1503               s->repo = repo;
1504             }
1505           if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1506             {
1507               if (done < count)
1508                 done++;
1509               if (done < count && (done - 1) * 100 / count != done * 100 / count)
1510                 pool_debug(pool, SAT_ERROR, "%%%% %d\n", done * 100 / count);
1511             }
1512         }
1513       if (s)
1514         {
1515           /* oops, could not reuse. free it instead */
1516           repo_free_solvable_block(repo, s - pool->solvables, 1, 1);
1517           solvend--;
1518           s = 0;
1519         }
1520       dbc->c_close(dbc);
1521       db->close(db, 0);
1522       db = 0;
1523       /* now sort all solvables in the new solvstart..solvend block */
1524       if (solvend - solvstart > 1)
1525         {
1526           pkgids = sat_malloc2(solvend - solvstart, sizeof(Id));
1527           for (i = solvstart; i < solvend; i++)
1528             pkgids[i - solvstart] = i;
1529           sat_sort(pkgids, solvend - solvstart, sizeof(Id), pkgids_sort_cmp, repo);
1530           /* adapt order */
1531           for (i = solvstart; i < solvend; i++)
1532             {
1533               int j = pkgids[i - solvstart];
1534               while (j < i)
1535                 j = pkgids[i - solvstart] = pkgids[j - solvstart];
1536               if (j != i)
1537                 swap_solvables(repo, data, i, j);
1538             }
1539           sat_free(pkgids);
1540         }
1541     }
1542   else
1543     {
1544       Id dircache[COPYDIR_DIRCACHE_SIZE];               /* see copydir */
1545
1546       memset(dircache, 0, sizeof(dircache));
1547       if (db_create(&db, dbenv, 0))
1548         {
1549           perror("db_create");
1550           exit(1);
1551         }
1552       if (db->open(db, 0, "Name", 0, DB_UNKNOWN, DB_RDONLY, 0664))
1553         {
1554           perror("db->open Name index");
1555           exit(1);
1556         }
1557       if (db->get_byteswapped(db, &byteswapped))
1558         {
1559           perror("db->get_byteswapped");
1560           exit(1);
1561         }
1562       if (db->cursor(db, NULL, &dbc, 0))
1563         {
1564           perror("db->cursor");
1565           exit(1);
1566         }
1567       nrpmids = 0;
1568       rpmids = 0;
1569       while (dbc->c_get(dbc, &dbkey, &dbdata, DB_NEXT) == 0)
1570         {
1571           if (dbkey.size == 10 && !memcmp(dbkey.data, "gpg-pubkey", 10))
1572             continue;
1573           dl = dbdata.size;
1574           dp = dbdata.data;
1575           while(dl >= RPM_INDEX_SIZE)
1576             {
1577               rpmids = sat_extend(rpmids, nrpmids, 1, sizeof(*rpmids), 255);
1578               rpmids[nrpmids].dbid = db2rpmdbid(dp, byteswapped);
1579               rpmids[nrpmids].name = sat_malloc((int)dbkey.size + 1);
1580               memcpy(rpmids[nrpmids].name, dbkey.data, (int)dbkey.size);
1581               rpmids[nrpmids].name[(int)dbkey.size] = 0;
1582               nrpmids++;
1583               dp += RPM_INDEX_SIZE;
1584               dl -= RPM_INDEX_SIZE;
1585             }
1586         }
1587       dbc->c_close(dbc);
1588       db->close(db, 0);
1589       db = 0;
1590
1591       /* sort rpmids */
1592       sat_sort(rpmids, nrpmids, sizeof(*rpmids), rpmids_sort_cmp, 0);
1593
1594       rpmheadsize = 0;
1595       rpmhead = 0;
1596
1597       /* create hash from dbid to ref */
1598       refmask = mkmask(ref->nsolvables);
1599       refhash = sat_calloc(refmask + 1, sizeof(Id));
1600       for (i = 0; i < ref->end - ref->start; i++)
1601         {
1602           if (!ref->rpmdbid[i])
1603             continue;
1604           h = ref->rpmdbid[i] & refmask;
1605           while (refhash[h])
1606             h = (h + 317) & refmask;
1607           refhash[h] = i + 1;   /* make it non-zero */
1608         }
1609
1610       /* count the misses, they will cost us time */
1611       if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1612         {
1613           for (i = 0, rp = rpmids; i < nrpmids; i++, rp++)
1614             {
1615               dbid = rp->dbid;
1616               if (refhash)
1617                 {
1618                   h = dbid & refmask;
1619                   while ((id = refhash[h]))
1620                     {
1621                       if (ref->rpmdbid[id - 1] == dbid)
1622                         break;
1623                       h = (h + 317) & refmask;
1624                     }
1625                   if (id)
1626                     continue;
1627                 }
1628               count++;
1629             }
1630         }
1631
1632       s = pool_id2solvable(pool, repo_add_solvable_block(repo, nrpmids));
1633       if (!repo->rpmdbid)
1634         repo->rpmdbid = repo_sidedata_create(repo, sizeof(Id));
1635
1636       for (i = 0, rp = rpmids; i < nrpmids; i++, rp++, s++)
1637         {
1638           dbid = rp->dbid;
1639           repo->rpmdbid[(s - pool->solvables) - repo->start] = rp->dbid;
1640           if (refhash)
1641             {
1642               h = dbid & refmask;
1643               while ((id = refhash[h]))
1644                 {
1645                   if (ref->rpmdbid[id - 1] == dbid)
1646                     break;
1647                   h = (h + 317) & refmask;
1648                 }
1649               if (id)
1650                 {
1651                   Solvable *r = ref->pool->solvables + ref->start + (id - 1);
1652                   if (r->repo == ref)
1653                     {
1654                       solvable_copy(s, r, data, dircache);
1655                       continue;
1656                     }
1657                 }
1658             }
1659           if (!db)
1660             {
1661               if (db_create(&db, dbenv, 0))
1662                 {
1663                   perror("db_create");
1664                   exit(1);
1665                 }
1666               if (db->open(db, 0, "Packages", 0, DB_UNKNOWN, DB_RDONLY, 0664))
1667                 {
1668                   perror("db->open var/lib/rpm/Packages");
1669                   exit(1);
1670                 }
1671               if (db->get_byteswapped(db, &byteswapped))
1672                 {
1673                   perror("db->get_byteswapped");
1674                   exit(1);
1675                 }
1676             }
1677           rpmdbid2db(buf, rp->dbid, byteswapped);
1678           dbkey.data = buf;
1679           dbkey.size = 4;
1680           dbdata.data = 0;
1681           dbdata.size = 0;
1682           if (db->get(db, NULL, &dbkey, &dbdata, 0))
1683             {
1684               perror("db->get");
1685               fprintf(stderr, "corrupt rpm database, key %d not found\n", dbid);
1686               fprintf(stderr, "please run 'rpm --rebuilddb' to recreate the database index files\n");
1687               exit(1);
1688             }
1689           if (dbdata.size < 8)
1690             {
1691               fprintf(stderr, "corrupt rpm database (size)\n");
1692               exit(1);
1693             }
1694           if (dbdata.size > rpmheadsize)
1695             {
1696               rpmheadsize = dbdata.size + 128;
1697               rpmhead = sat_realloc(rpmhead, sizeof(*rpmhead) + rpmheadsize);
1698             }
1699           memcpy(buf, dbdata.data, 8);
1700           rpmhead->cnt = buf[0] << 24  | buf[1] << 16  | buf[2] << 8 | buf[3];
1701           rpmhead->dcnt = buf[4] << 24  | buf[5] << 16  | buf[6] << 8 | buf[7];
1702           if (8 + rpmhead->cnt * 16 + rpmhead->dcnt > dbdata.size)
1703             {
1704               fprintf(stderr, "corrupt rpm database (data size)\n");
1705               exit(1);
1706             }
1707           memcpy(rpmhead->data, (unsigned char *)dbdata.data + 8, rpmhead->cnt * 16 + rpmhead->dcnt);
1708           rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
1709
1710           rpm2solv(pool, repo, data, s, rpmhead, flags | RPM_ADD_TRIGGERS);
1711           if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1712             {
1713               if (done < count)
1714                 done++;
1715               if (done < count && (done - 1) * 100 / count != done * 100 / count)
1716                 pool_debug(pool, SAT_ERROR, "%%%% %d\n", done * 100 / count);
1717             }
1718         }
1719
1720       if (refhash)
1721         sat_free(refhash);
1722       if (rpmids)
1723         {
1724           for (i = 0; i < nrpmids; i++)
1725             sat_free(rpmids[i].name);
1726           sat_free(rpmids);
1727         }
1728     }
1729   if (db)
1730     db->close(db, 0);
1731   dbenv->close(dbenv, 0);
1732   if (rpmhead)
1733     sat_free(rpmhead);
1734   if (!(flags & REPO_NO_INTERNALIZE))
1735     repodata_internalize(data);
1736   if ((flags & RPMDB_REPORT_PROGRESS) != 0)
1737     pool_debug(pool, SAT_ERROR, "%%%% 100\n");
1738   POOL_DEBUG(SAT_DEBUG_STATS, "repo_add_rpmdb took %d ms\n", sat_timems(now));
1739   POOL_DEBUG(SAT_DEBUG_STATS, "repo size: %d solvables\n", repo->nsolvables);
1740   POOL_DEBUG(SAT_DEBUG_STATS, "repo memory used: %d K incore, %d K idarray\n", data->incoredatalen/1024, repo->idarraysize / (int)(1024/sizeof(Id)));
1741 }
1742
1743
1744 static inline unsigned int
1745 getu32(const unsigned char *dp)
1746 {
1747   return dp[0] << 24 | dp[1] << 16 | dp[2] << 8 | dp[3];
1748 }
1749
1750
1751 void
1752 repo_add_rpms(Repo *repo, const char **rpms, int nrpms, int flags)
1753 {
1754   int i, sigdsize, sigcnt, l;
1755   Pool *pool = repo->pool;
1756   Solvable *s;
1757   RpmHead *rpmhead = 0;
1758   int rpmheadsize = 0;
1759   char *payloadformat;
1760   FILE *fp;
1761   unsigned char lead[4096];
1762   int headerstart, headerend;
1763   struct stat stb;
1764   Repodata *data;
1765   unsigned char pkgid[16];
1766   int gotpkgid;
1767   Id chksumtype = 0;
1768   void *chksumh = 0;
1769
1770   data = repo_add_repodata(repo, flags);
1771
1772   if ((flags & RPM_ADD_WITH_SHA256SUM) != 0)
1773     chksumtype = REPOKEY_TYPE_SHA256;
1774   else if ((flags & RPM_ADD_WITH_SHA1SUM) != 0)
1775     chksumtype = REPOKEY_TYPE_SHA1;
1776   for (i = 0; i < nrpms; i++)
1777     {
1778       if ((fp = fopen(rpms[i], "r")) == 0)
1779         {
1780           perror(rpms[i]);
1781           continue;
1782         }
1783       if (fstat(fileno(fp), &stb))
1784         {
1785           perror("stat");
1786           continue;
1787         }
1788       if (chksumh)
1789         chksumh = sat_chksum_free(chksumh, 0);
1790       if (chksumtype)
1791         chksumh = sat_chksum_create(chksumtype);
1792       if (fread(lead, 96 + 16, 1, fp) != 1 || getu32(lead) != 0xedabeedb)
1793         {
1794           fprintf(stderr, "%s: not a rpm\n", rpms[i]);
1795           fclose(fp);
1796           continue;
1797         }
1798       if (chksumh)
1799         sat_chksum_add(chksumh, lead, 96 + 16);
1800       if (lead[78] != 0 || lead[79] != 5)
1801         {
1802           fprintf(stderr, "%s: not a V5 header\n", rpms[i]);
1803           fclose(fp);
1804           continue;
1805         }
1806       if (getu32(lead + 96) != 0x8eade801)
1807         {
1808           fprintf(stderr, "%s: bad signature header\n", rpms[i]);
1809           fclose(fp);
1810           continue;
1811         }
1812       sigcnt = getu32(lead + 96 + 8);
1813       sigdsize = getu32(lead + 96 + 12);
1814       if (sigcnt >= 0x4000000 || sigdsize >= 0x40000000)
1815         {
1816           fprintf(stderr, "%s: bad signature header\n", rpms[i]);
1817           fclose(fp);
1818           continue;
1819         }
1820       sigdsize += sigcnt * 16;
1821       sigdsize = (sigdsize + 7) & ~7;
1822       headerstart = 96 + 16 + sigdsize;
1823       gotpkgid = 0;
1824       if ((flags & RPM_ADD_WITH_PKGID) != 0)
1825         {
1826           unsigned char *chksum;
1827           unsigned int chksumsize;
1828           /* extract pkgid from the signature header */
1829           if (sigdsize > rpmheadsize)
1830             {
1831               rpmheadsize = sigdsize + 128;
1832               rpmhead = sat_realloc(rpmhead, sizeof(*rpmhead) + rpmheadsize);
1833             }
1834           if (fread(rpmhead->data, sigdsize, 1, fp) != 1)
1835             {
1836               fprintf(stderr, "%s: unexpected EOF\n", rpms[i]);
1837               fclose(fp);
1838               continue;
1839             }
1840           if (chksumh)
1841             sat_chksum_add(chksumh, rpmhead->data, sigdsize);
1842           rpmhead->cnt = sigcnt;
1843           rpmhead->dcnt = sigdsize - sigcnt * 16;
1844           rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
1845           chksum = headbinary(rpmhead, SIGTAG_MD5, &chksumsize);
1846           if (chksum && chksumsize == 16)
1847             {
1848               gotpkgid = 1;
1849               memcpy(pkgid, chksum, 16);
1850             }
1851         }
1852       else
1853         {
1854           /* just skip the signature header */
1855           while (sigdsize)
1856             {
1857               l = sigdsize > 4096 ? 4096 : sigdsize;
1858               if (fread(lead, l, 1, fp) != 1)
1859                 {
1860                   fprintf(stderr, "%s: unexpected EOF\n", rpms[i]);
1861                   fclose(fp);
1862                   continue;
1863                 }
1864               if (chksumh)
1865                 sat_chksum_add(chksumh, lead, l);
1866               sigdsize -= l;
1867             }
1868         }
1869       if (fread(lead, 16, 1, fp) != 1)
1870         {
1871           fprintf(stderr, "%s: unexpected EOF\n", rpms[i]);
1872           fclose(fp);
1873           continue;
1874         }
1875       if (chksumh)
1876         sat_chksum_add(chksumh, lead, 16);
1877       if (getu32(lead) != 0x8eade801)
1878         {
1879           fprintf(stderr, "%s: bad header\n", rpms[i]);
1880           fclose(fp);
1881           continue;
1882         }
1883       sigcnt = getu32(lead + 8);
1884       sigdsize = getu32(lead + 12);
1885       if (sigcnt >= 0x4000000 || sigdsize >= 0x40000000)
1886         {
1887           fprintf(stderr, "%s: bad header\n", rpms[i]);
1888           fclose(fp);
1889           continue;
1890         }
1891       l = sigdsize + sigcnt * 16;
1892       headerend = headerstart + 16 + l;
1893       if (l > rpmheadsize)
1894         {
1895           rpmheadsize = l + 128;
1896           rpmhead = sat_realloc(rpmhead, sizeof(*rpmhead) + rpmheadsize);
1897         }
1898       if (fread(rpmhead->data, l, 1, fp) != 1)
1899         {
1900           fprintf(stderr, "%s: unexpected EOF\n", rpms[i]);
1901           fclose(fp);
1902           continue;
1903         }
1904       if (chksumh)
1905         sat_chksum_add(chksumh, rpmhead->data, l);
1906       rpmhead->cnt = sigcnt;
1907       rpmhead->dcnt = sigdsize;
1908       rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
1909       if (headexists(rpmhead, TAG_PATCHESNAME))
1910         {
1911           /* this is a patch rpm, ignore */
1912           fclose(fp);
1913           continue;
1914         }
1915       payloadformat = headstring(rpmhead, TAG_PAYLOADFORMAT);
1916       if (payloadformat && !strcmp(payloadformat, "drpm"))
1917         {
1918           /* this is a delta rpm */
1919           fclose(fp);
1920           continue;
1921         }
1922       if (chksumh)
1923         while ((l = fread(lead, 1, sizeof(lead), fp)) > 0)
1924           sat_chksum_add(chksumh, lead, l);
1925       fclose(fp);
1926       s = pool_id2solvable(pool, repo_add_solvable(repo));
1927       rpm2solv(pool, repo, data, s, rpmhead, flags);
1928       if (data)
1929         {
1930           Id handle = s - pool->solvables;
1931           repodata_set_location(data, handle, 0, 0, rpms[i]);
1932           if (S_ISREG(stb.st_mode))
1933             repodata_set_num(data, handle, SOLVABLE_DOWNLOADSIZE, (unsigned int)((stb.st_size + 1023) / 1024));
1934           repodata_set_num(data, handle, SOLVABLE_HEADEREND, headerend);
1935           if (gotpkgid)
1936             repodata_set_bin_checksum(data, handle, SOLVABLE_PKGID, REPOKEY_TYPE_MD5, pkgid);
1937           if (chksumh)
1938             repodata_set_bin_checksum(data, handle, SOLVABLE_CHECKSUM, chksumtype, sat_chksum_get(chksumh, 0));
1939         }
1940     }
1941   if (chksumh)
1942     chksumh = sat_chksum_free(chksumh, 0);
1943   if (rpmhead)
1944     sat_free(rpmhead);
1945   if (!(flags & REPO_NO_INTERNALIZE))
1946     repodata_internalize(data);
1947 }
1948
1949 Id
1950 repo_add_rpm(Repo *repo, const char *rpm, int flags)
1951 {
1952   int end = repo->end;
1953   repo_add_rpms(repo, &rpm, 1, flags);
1954   if (end == repo->end)
1955     return 0;
1956   else
1957     return repo->end - 1;
1958 }
1959
1960 static inline void
1961 linkhash(const char *lt, char *hash)
1962 {
1963   unsigned int r = 0;
1964   const unsigned char *str = (const unsigned char *)lt;
1965   int l, c;
1966
1967   l = strlen(lt);
1968   while ((c = *str++) != 0)
1969     r += (r << 3) + c;
1970   sprintf(hash, "%08x", r);
1971   sprintf(hash + 8, "%08x", l);
1972   sprintf(hash + 16, "%08x", 0);
1973   sprintf(hash + 24, "%08x", 0);
1974 }
1975
1976 void
1977 rpm_iterate_filelist(void *rpmhandle, int flags, void (*cb)(void *, const char *, int, const char *), void *cbdata)
1978 {
1979   RpmHead *rpmhead = rpmhandle;
1980   char **bn;
1981   char **dn;
1982   char **md = 0;
1983   char **lt = 0;
1984   unsigned int *di, diidx;
1985   unsigned int *co = 0;
1986   unsigned int *ff = 0;
1987   unsigned int lastdir;
1988   int lastdirl;
1989   unsigned int *fm;
1990   int cnt, dcnt, cnt2;
1991   int i, l1, l;
1992   char *space = 0;
1993   int spacen = 0;
1994   char md5[33], *md5p = 0;
1995
1996   dn = headstringarray(rpmhead, TAG_DIRNAMES, &dcnt);
1997   if (!dn)
1998     return;
1999   if ((flags & RPM_ITERATE_FILELIST_ONLYDIRS) != 0)
2000     {
2001       for (i = 0; i < dcnt; i++)
2002         (*cb)(cbdata, dn[i], 0, (char *)0);
2003       sat_free(dn);
2004       return;
2005     }
2006   bn = headstringarray(rpmhead, TAG_BASENAMES, &cnt);
2007   if (!bn)
2008     {
2009       sat_free(dn);
2010       return;
2011     }
2012   di = headint32array(rpmhead, TAG_DIRINDEXES, &cnt2);
2013   if (!di || cnt != cnt2)
2014     {
2015       sat_free(di);
2016       sat_free(bn);
2017       sat_free(dn);
2018       return;
2019     }
2020   fm = headint16array(rpmhead, TAG_FILEMODES, &cnt2);
2021   if (!fm || cnt != cnt2)
2022     {
2023       sat_free(fm);
2024       sat_free(di);
2025       sat_free(bn);
2026       sat_free(dn);
2027       return;
2028     }
2029   if ((flags & RPM_ITERATE_FILELIST_WITHMD5) != 0)
2030     {
2031       md = headstringarray(rpmhead, TAG_FILEMD5S, &cnt2);
2032       if (!md || cnt != cnt2)
2033         {
2034           sat_free(md);
2035           sat_free(fm);
2036           sat_free(di);
2037           sat_free(bn);
2038           sat_free(dn);
2039           return;
2040         }
2041     }
2042   if ((flags & RPM_ITERATE_FILELIST_WITHCOL) != 0)
2043     {
2044       co = headint32array(rpmhead, TAG_FILECOLORS, &cnt2);
2045       if (!co || cnt != cnt2)
2046         {
2047           sat_free(co);
2048           sat_free(md);
2049           sat_free(fm);
2050           sat_free(di);
2051           sat_free(bn);
2052           sat_free(dn);
2053           return;
2054         }
2055     }
2056   if ((flags & RPM_ITERATE_FILELIST_NOGHOSTS) != 0)
2057     {
2058       ff = headint32array(rpmhead, TAG_FILEFLAGS, &cnt2);
2059       if (!ff || cnt != cnt2)
2060         {
2061           sat_free(ff);
2062           sat_free(co);
2063           sat_free(md);
2064           sat_free(fm);
2065           sat_free(di);
2066           sat_free(bn);
2067           sat_free(dn);
2068           return;
2069         }
2070     }
2071   lastdir = dcnt;
2072   lastdirl = 0;
2073   for (i = 0; i < cnt; i++)
2074     {
2075       if (ff && (ff[i] & FILEFLAG_GHOST) != 0)
2076         continue;
2077       diidx = di[i];
2078       if (diidx >= dcnt)
2079         continue;
2080       l1 = lastdir == diidx ? lastdirl : strlen(dn[diidx]);
2081       if (l1 == 0)
2082         continue;
2083       l = l1 + strlen(bn[i]) + 1;
2084       if (l > spacen)
2085         {
2086           spacen = l + 16;
2087           space = sat_realloc(space, spacen);
2088         }
2089       if (lastdir != diidx)
2090         {
2091           strcpy(space, dn[diidx]);
2092           lastdir = diidx;
2093           lastdirl = l1;
2094         }
2095       strcpy(space + l1, bn[i]);
2096       if (md)
2097         {
2098           md5p = md[i];
2099           if (S_ISLNK(fm[i]))
2100             {
2101               md5p = 0;
2102               if (!lt)
2103                 {
2104                   lt = headstringarray(rpmhead, TAG_FILELINKTOS, &cnt2);
2105                   if (cnt != cnt2)
2106                     lt = sat_free(lt);
2107                 }
2108               if (lt)
2109                 {
2110                   linkhash(lt[i], md5);
2111                   md5p = md5;
2112                 }
2113             }
2114           if (!md5p)
2115             {
2116               sprintf(md5, "%08x%08x%08x%08x", (fm[i] >> 12) & 65535, 0, 0, 0);
2117               md5p = md5;
2118             }
2119         }
2120       (*cb)(cbdata, space, co ? (fm[i] | co[i] << 24) : fm[i], md5p);
2121     }
2122   sat_free(space);
2123   sat_free(lt);
2124   sat_free(md);
2125   sat_free(fm);
2126   sat_free(di);
2127   sat_free(bn);
2128   sat_free(dn);
2129   sat_free(co);
2130   sat_free(ff);
2131 }
2132
2133 char *
2134 rpm_query(void *rpmhandle, Id what)
2135 {
2136   const char *name, *arch, *sourcerpm;
2137   char *evr, *r;
2138   int l;
2139
2140   RpmHead *rpmhead = rpmhandle;
2141   r = 0;
2142   switch (what)
2143     {
2144     case 0:
2145       name = headstring(rpmhead, TAG_NAME);
2146       if (!name)
2147         name = "";
2148       sourcerpm = headstring(rpmhead, TAG_SOURCERPM);
2149       if (sourcerpm)
2150         arch = headstring(rpmhead, TAG_ARCH);
2151       else
2152         {
2153           if (headexists(rpmhead, TAG_NOSOURCE) || headexists(rpmhead, TAG_NOPATCH))
2154             arch = "nosrc";
2155           else
2156             arch = "src";
2157         }
2158       if (!arch)
2159         arch = "noarch";
2160       evr = headtoevr(rpmhead);
2161       l = strlen(name) + 1 + strlen(evr) + 1 + strlen(arch) + 1;
2162       r = sat_malloc(l);
2163       sprintf(r, "%s-%s.%s", name, evr, arch);
2164       free(evr);
2165       break;
2166     case SOLVABLE_NAME:
2167       name = headstring(rpmhead, TAG_NAME);
2168       r = strdup(name);
2169       break;
2170     case SOLVABLE_EVR:
2171       r = headtoevr(rpmhead);
2172       break;
2173     }
2174   return r;
2175 }
2176
2177
2178 struct rpm_by_state {
2179   RpmHead *rpmhead;
2180   int rpmheadsize;
2181
2182   int dbopened;
2183   DB_ENV *dbenv;
2184   DB *db;
2185   int byteswapped;
2186 };
2187
2188 struct rpmdbentry {
2189   Id rpmdbid;
2190   Id nameoff;
2191 };
2192
2193 #define ENTRIES_BLOCK 255
2194 #define NAMEDATA_BLOCK 1023
2195
2196 static struct rpmdbentry *
2197 getinstalledrpmdbids(struct rpm_by_state *state, const char *index, const char *match, int *nentriesp, char **namedatap)
2198 {
2199   DB_ENV *dbenv = 0;
2200   DB *db = 0;
2201   DBC *dbc = 0;
2202   int byteswapped;
2203   DBT dbkey;
2204   DBT dbdata;
2205   unsigned char *dp;
2206   int dl;
2207
2208   char *namedata = 0;
2209   int namedatal = 0;
2210   struct rpmdbentry *entries = 0;
2211   int nentries = 0;
2212
2213   *nentriesp = 0;
2214   *namedatap = 0;
2215
2216   dbenv = state->dbenv;
2217   if (db_create(&db, dbenv, 0))
2218     {
2219       perror("db_create");
2220       return 0;
2221     }
2222   if (db->open(db, 0, index, 0, DB_UNKNOWN, DB_RDONLY, 0664))
2223     {
2224       perror("db->open index");
2225       db->close(db, 0);
2226       return 0;
2227     }
2228   if (db->get_byteswapped(db, &byteswapped))
2229     {
2230       perror("db->get_byteswapped");
2231       db->close(db, 0);
2232       return 0;
2233     }
2234   if (db->cursor(db, NULL, &dbc, 0))
2235     {
2236       perror("db->cursor");
2237       db->close(db, 0);
2238       return 0;
2239     }
2240   memset(&dbkey, 0, sizeof(dbkey));
2241   memset(&dbdata, 0, sizeof(dbdata));
2242   if (match)
2243     {
2244       dbkey.data = (void *)match;
2245       dbkey.size = strlen(match);
2246     }
2247   while (dbc->c_get(dbc, &dbkey, &dbdata, match ? DB_SET : DB_NEXT) == 0)
2248     {
2249       if (!match && dbkey.size == 10 && !memcmp(dbkey.data, "gpg-pubkey", 10))
2250         continue;
2251       dl = dbdata.size;
2252       dp = dbdata.data;
2253       while(dl >= RPM_INDEX_SIZE)
2254         {
2255           entries = sat_extend(entries, nentries, 1, sizeof(*entries), ENTRIES_BLOCK);
2256           entries[nentries].rpmdbid = db2rpmdbid(dp, byteswapped);
2257           entries[nentries].nameoff = namedatal;
2258           nentries++;
2259           namedata = sat_extend(namedata, namedatal, dbkey.size + 1, 1, NAMEDATA_BLOCK);
2260           memcpy(namedata + namedatal, dbkey.data, dbkey.size);
2261           namedata[namedatal + dbkey.size] = 0;
2262           namedatal += dbkey.size + 1;
2263           dp += RPM_INDEX_SIZE;
2264           dl -= RPM_INDEX_SIZE;
2265         }
2266       if (match)
2267         break;
2268     }
2269   dbc->c_close(dbc);
2270   db->close(db, 0);
2271   *nentriesp = nentries;
2272   *namedatap = namedata;
2273   return entries;
2274 }
2275
2276 static void
2277 freestate(struct rpm_by_state *state)
2278 {
2279   /* close down */
2280   if (!state)
2281     return;
2282   if (state->db)
2283     state->db->close(state->db, 0);
2284   if (state->dbenv)
2285     state->dbenv->close(state->dbenv, 0);
2286   sat_free(state->rpmhead);
2287 }
2288
2289 int
2290 rpm_installedrpmdbids(const char *rootdir, const char *index, const char *match, Queue *rpmdbidq)
2291 {
2292   struct rpm_by_state state;
2293   struct rpmdbentry *entries;
2294   int nentries, i;
2295   char *namedata;
2296
2297   if (!index)
2298     index = "Name";
2299   if (rpmdbidq)
2300     queue_empty(rpmdbidq);
2301   memset(&state, 0, sizeof(state));
2302   if (!(state.dbenv = opendbenv(rootdir)))
2303     return 0;
2304   entries = getinstalledrpmdbids(&state, index, match, &nentries, &namedata);
2305   if (rpmdbidq)
2306     for (i = 0; i < nentries; i++)
2307       queue_push(rpmdbidq, entries[i].rpmdbid);
2308   sat_free(entries);
2309   sat_free(namedata);
2310   freestate(&state);
2311   return nentries;
2312 }
2313
2314 void *
2315 rpm_byrpmdbid(Id rpmdbid, const char *rootdir, void **statep)
2316 {
2317   struct rpm_by_state *state = *statep;
2318   unsigned char buf[16];
2319   DBT dbkey;
2320   DBT dbdata;
2321   RpmHead *rpmhead;
2322
2323   if (!rpmdbid)
2324     {
2325       /* close down */
2326       freestate(state);
2327       sat_free(state);
2328       *statep = (void *)0;
2329       return 0;
2330     }
2331
2332   if (!state)
2333     {
2334       state = sat_calloc(1, sizeof(*state));
2335       *statep = state;
2336     }
2337   if (!state->dbopened)
2338     {
2339       state->dbopened = 1;
2340       if (!state->dbenv && !(state->dbenv = opendbenv(rootdir)))
2341         return 0;
2342       if (db_create(&state->db, state->dbenv, 0))
2343         {
2344           perror("db_create");
2345           state->db = 0;
2346           state->dbenv->close(state->dbenv, 0);
2347           state->dbenv = 0;
2348           return 0;
2349         }
2350       if (state->db->open(state->db, 0, "Packages", 0, DB_UNKNOWN, DB_RDONLY, 0664))
2351         {
2352           perror("db->open var/lib/rpm/Packages");
2353           state->db->close(state->db, 0);
2354           state->db = 0;
2355           state->dbenv->close(state->dbenv, 0);
2356           state->dbenv = 0;
2357           return 0;
2358         }
2359       if (state->db->get_byteswapped(state->db, &state->byteswapped))
2360         {
2361           perror("db->get_byteswapped");
2362           state->db->close(state->db, 0);
2363           state->db = 0;
2364           state->dbenv->close(state->dbenv, 0);
2365           state->dbenv = 0;
2366           return 0;
2367         }
2368     }
2369   rpmdbid2db(buf, rpmdbid, state->byteswapped);
2370   memset(&dbkey, 0, sizeof(dbkey));
2371   memset(&dbdata, 0, sizeof(dbdata));
2372   dbkey.data = buf;
2373   dbkey.size = 4;
2374   dbdata.data = 0;
2375   dbdata.size = 0;
2376   if (state->db->get(state->db, NULL, &dbkey, &dbdata, 0))
2377     {
2378       perror("db->get");
2379       return 0;
2380     }
2381   if (dbdata.size < 8)
2382     {
2383       fprintf(stderr, "corrupt rpm database (size)\n");
2384       return 0;
2385     }
2386   if (dbdata.size > state->rpmheadsize)
2387     {
2388       state->rpmheadsize = dbdata.size + 128;
2389       state->rpmhead = sat_realloc(state->rpmhead, sizeof(*rpmhead) + state->rpmheadsize);
2390     }
2391   rpmhead = state->rpmhead;
2392   memcpy(buf, dbdata.data, 8);
2393   rpmhead->cnt = buf[0] << 24  | buf[1] << 16  | buf[2] << 8 | buf[3];
2394   rpmhead->dcnt = buf[4] << 24  | buf[5] << 16  | buf[6] << 8 | buf[7];
2395   if (8 + rpmhead->cnt * 16 + rpmhead->dcnt > dbdata.size)
2396     {
2397       fprintf(stderr, "corrupt rpm database (data size)\n");
2398       return 0;
2399     }
2400   memcpy(rpmhead->data, (unsigned char *)dbdata.data + 8, rpmhead->cnt * 16 + rpmhead->dcnt);
2401   rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
2402   return rpmhead;
2403 }
2404
2405 void *
2406 rpm_byfp(FILE *fp, const char *name, void **statep)
2407 {
2408   struct rpm_by_state *state = *statep;
2409   /* int headerstart, headerend; */
2410   RpmHead *rpmhead;
2411   int sigdsize, sigcnt, l;
2412   unsigned char lead[4096];
2413
2414   if (!fp)
2415     return rpm_byrpmdbid(0, 0, statep);
2416   if (!state)
2417     {
2418       state = sat_calloc(1, sizeof(*state));
2419       *statep = state;
2420     }
2421   if (fread(lead, 96 + 16, 1, fp) != 1 || getu32(lead) != 0xedabeedb)
2422     {
2423       fprintf(stderr, "%s: not a rpm\n", name);
2424       return 0;
2425     }
2426   if (lead[78] != 0 || lead[79] != 5)
2427     {
2428       fprintf(stderr, "%s: not a V5 header\n", name);
2429       return 0;
2430     }
2431   if (getu32(lead + 96) != 0x8eade801)
2432     {
2433       fprintf(stderr, "%s: bad signature header\n", name);
2434       return 0;
2435     }
2436   sigcnt = getu32(lead + 96 + 8);
2437   sigdsize = getu32(lead + 96 + 12);
2438   if (sigcnt >= 0x4000000 || sigdsize >= 0x40000000)
2439     {
2440       fprintf(stderr, "%s: bad signature header\n", name);
2441       return 0;
2442     }
2443   sigdsize += sigcnt * 16;
2444   sigdsize = (sigdsize + 7) & ~7;
2445   /* headerstart = 96 + 16 + sigdsize; */
2446   while (sigdsize)
2447     {
2448       l = sigdsize > 4096 ? 4096 : sigdsize;
2449       if (fread(lead, l, 1, fp) != 1)
2450         {
2451           fprintf(stderr, "%s: unexpected EOF\n", name);
2452           return 0;
2453         }
2454       sigdsize -= l;
2455     }
2456   if (fread(lead, 16, 1, fp) != 1)
2457     {
2458       fprintf(stderr, "%s: unexpected EOF\n", name);
2459       return 0;
2460     }
2461   if (getu32(lead) != 0x8eade801)
2462     {
2463       fprintf(stderr, "%s: bad header\n", name);
2464       fclose(fp);
2465       return 0;
2466     }
2467   sigcnt = getu32(lead + 8);
2468   sigdsize = getu32(lead + 12);
2469   if (sigcnt >= 0x4000000 || sigdsize >= 0x40000000)
2470     {
2471       fprintf(stderr, "%s: bad header\n", name);
2472       fclose(fp);
2473       return 0;
2474     }
2475   l = sigdsize + sigcnt * 16;
2476   /* headerend = headerstart + 16 + l; */
2477   if (l > state->rpmheadsize)
2478     {
2479       state->rpmheadsize = l + 128;
2480       state->rpmhead = sat_realloc(state->rpmhead, sizeof(*state->rpmhead) + state->rpmheadsize);
2481     }
2482   rpmhead = state->rpmhead;
2483   if (fread(rpmhead->data, l, 1, fp) != 1)
2484     {
2485       fprintf(stderr, "%s: unexpected EOF\n", name);
2486       fclose(fp);
2487       return 0;
2488     }
2489   rpmhead->cnt = sigcnt;
2490   rpmhead->dcnt = sigdsize;
2491   rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
2492   return rpmhead;
2493 }
2494
2495 void *
2496 rpm_byrpmh(Header h, void **statep)
2497 {
2498   struct rpm_by_state *state = *statep;
2499   const unsigned char *uh;
2500   int sigdsize, sigcnt, l;
2501   RpmHead *rpmhead;
2502
2503 #ifndef RPM5
2504   uh = headerUnload(h);
2505 #else
2506   uh = headerUnload(h, NULL);
2507 #endif
2508   if (!uh)
2509     return 0;
2510   sigcnt = getu32(uh);
2511   sigdsize = getu32(uh + 4);
2512   l = sigdsize + sigcnt * 16;
2513   if (!state)
2514     {
2515       state = sat_calloc(1, sizeof(*state));
2516       *statep = state;
2517     }
2518   if (l > state->rpmheadsize)
2519     {
2520       state->rpmheadsize = l + 128;
2521       state->rpmhead = sat_realloc(state->rpmhead, sizeof(*state->rpmhead) + state->rpmheadsize);
2522     }
2523   rpmhead = state->rpmhead;
2524   memcpy(rpmhead->data, uh + 8, l - 8);
2525   free((void *)uh);
2526   rpmhead->cnt = sigcnt;
2527   rpmhead->dcnt = sigdsize;
2528   rpmhead->dp = rpmhead->data + rpmhead->cnt * 16;
2529   return rpmhead;
2530 }
2531
2532
2533 static char *
2534 r64dec1(char *p, unsigned int *vp, int *eofp)
2535 {
2536   int i, x;
2537   unsigned int v = 0;
2538
2539   for (i = 0; i < 4; )
2540     {
2541       x = *p++;
2542       if (!x)
2543         return 0;
2544       if (x >= 'A' && x <= 'Z')
2545         x -= 'A';
2546       else if (x >= 'a' && x <= 'z')
2547         x -= 'a' - 26;
2548       else if (x >= '0' && x <= '9')
2549         x -= '0' - 52;
2550       else if (x == '+')
2551         x = 62;
2552       else if (x == '/')
2553         x = 63;
2554       else if (x == '=')
2555         {
2556           x = 0;
2557           if (i == 0)
2558             {
2559               *eofp = 3;
2560               *vp = 0;
2561               return p - 1;
2562             }
2563           *eofp += 1;
2564         }
2565       else
2566         continue;
2567       v = v << 6 | x;
2568       i++;
2569     }
2570   *vp = v;
2571   return p;
2572 }
2573
2574 static unsigned int
2575 crc24(unsigned char *p, int len)
2576 {
2577   unsigned int crc = 0xb704ceL;
2578   int i;
2579
2580   while (len--)
2581     {
2582       crc ^= (*p++) << 16;
2583       for (i = 0; i < 8; i++)
2584         if ((crc <<= 1) & 0x1000000)
2585           crc ^= 0x1864cfbL;
2586     }
2587   return crc & 0xffffffL;
2588 }
2589
2590 static unsigned char *
2591 unarmor(char *pubkey, int *pktlp)
2592 {
2593   char *p;
2594   int l, eof;
2595   unsigned char *buf, *bp;
2596   unsigned int v;
2597
2598   *pktlp = 0;
2599   while (strncmp(pubkey, "-----BEGIN PGP PUBLIC KEY BLOCK-----", 36) != 0)
2600     {
2601       pubkey = strchr(pubkey, '\n');
2602       if (!pubkey)
2603         return 0;
2604       pubkey++;
2605     }
2606   pubkey = strchr(pubkey, '\n');
2607   if (!pubkey++)
2608     return 0;
2609   /* skip header lines */
2610   for (;;)
2611     {
2612       while (*pubkey == ' ' || *pubkey == '\t')
2613         pubkey++;
2614       if (*pubkey == '\n')
2615         break;
2616       pubkey = strchr(pubkey, '\n');
2617       if (!pubkey++)
2618         return 0;
2619     }
2620   pubkey++;
2621   p = strchr(pubkey, '=');
2622   if (!p)
2623     return 0;
2624   l = p - pubkey;
2625   bp = buf = sat_malloc(l * 3 / 4 + 4);
2626   eof = 0;
2627   while (!eof)
2628     {
2629       pubkey = r64dec1(pubkey, &v, &eof);
2630       if (!pubkey)
2631         {
2632           sat_free(buf);
2633           return 0;
2634         }
2635       *bp++ = v >> 16;
2636       *bp++ = v >> 8;
2637       *bp++ = v;
2638     }
2639   while (*pubkey == ' ' || *pubkey == '\t' || *pubkey == '\n' || *pubkey == '\r')
2640     pubkey++;
2641   bp -= eof;
2642   if (*pubkey != '=' || (pubkey = r64dec1(pubkey + 1, &v, &eof)) == 0)
2643     {
2644       sat_free(buf);
2645       return 0;
2646     }
2647   if (v != crc24(buf, bp - buf))
2648     {
2649       sat_free(buf);
2650       return 0;
2651     }
2652   while (*pubkey == ' ' || *pubkey == '\t' || *pubkey == '\n' || *pubkey == '\r')
2653     pubkey++;
2654   if (strncmp(pubkey, "-----END PGP PUBLIC KEY BLOCK-----", 34) != 0)
2655     {
2656       sat_free(buf);
2657       return 0;
2658     }
2659   *pktlp = bp - buf;
2660   return buf;
2661 }
2662
2663 static void
2664 parsekeydata(Solvable *s, Repodata *data, unsigned char *p, int pl)
2665 {
2666   int x, tag, l;
2667   unsigned char keyid[8];
2668   unsigned int kcr = 0, maxex = 0;
2669   unsigned char *pubkey = 0;
2670   unsigned char *userid = 0;
2671 #if 0
2672   int pubkeyl = 0;
2673   int useridl = 0;
2674 #endif
2675
2676   for (; pl; p += l, pl -= l)
2677     {
2678       x = *p++;
2679       pl--;
2680       if (!(x & 128) || pl <= 0)
2681         return;
2682       if ((x & 64) == 0)
2683         {
2684           /* old format */
2685           tag = (x & 0x3c) >> 2;
2686           x &= 3;
2687           if (x == 3)
2688             return;
2689           l = 1 << x;
2690           if (pl < l)
2691             return;
2692           x = 0;
2693           while (l--)
2694             {
2695               x = x << 8 | *p++;
2696               pl--;
2697             }
2698           l = x;
2699         }
2700       else
2701         {
2702           tag = (x & 0x3f);
2703           x = *p++;
2704           pl--;
2705           if (x < 192)
2706             l = x;
2707           else if (x >= 192 && x < 224)
2708             {
2709               if (pl <= 0)
2710                 return;
2711               l = ((x - 192) << 8) + *p++ + 192;
2712               pl--;
2713             }
2714           else if (x == 255)
2715             {
2716               if (pl <= 4)
2717                 return;
2718               l = p[0] << 24 | p[1] << 16 | p[2] << 8 | p[3];
2719               p += 4;
2720               pl -= 4;
2721             }
2722           else
2723             return;
2724         }
2725       if (pl < l)
2726         return;
2727       if (tag == 6)
2728         {
2729           pubkey = sat_realloc(pubkey, l);
2730           if (l)
2731             memcpy(pubkey, p, l);
2732 #if 0
2733           pubkeyl = l;
2734 #endif
2735           kcr = 0;
2736           if (p[0] == 3)
2737             {
2738               unsigned int ex;
2739               void *h;
2740               kcr = p[1] << 24 | p[2] << 16 | p[3] << 8 | p[4];
2741               ex = 0;
2742               if (p[5] || p[6])
2743                 {
2744                   ex = kcr + 24*3600 * (p[5] << 8 | p[6]);
2745                   if (ex > maxex)
2746                     maxex = ex;
2747                 }
2748               memset(keyid, 0, 8);
2749               if (p[7] == 1)    /* RSA */
2750                 {
2751                   int i, ql;
2752                   unsigned char fp[16];
2753                   char fpx[32 + 1];
2754                   unsigned char *q;
2755
2756                   ql = ((p[8] << 8 | p[9]) + 7) / 8;
2757                   memcpy(keyid, p + 10 + ql - 8, 8);
2758                   h = sat_chksum_create(REPOKEY_TYPE_MD5);
2759                   sat_chksum_add(h, p + 10, ql);
2760                   q = p + 10 + ql;
2761                   ql = ((q[0] << 8 | q[1]) + 7) / 8;
2762                   sat_chksum_add(h, q + 2, ql);
2763                   sat_chksum_free(h, fp);
2764                   for (i = 0; i < 16; i++)
2765                     sprintf(fpx + i * 2, "%02x", fp[i]);
2766                   setutf8string(data, s - s->repo->pool->solvables, PUBKEY_FINGERPRINT, fpx);
2767                 }
2768             }
2769           else if (p[0] == 4)
2770             {
2771               int i;
2772               void *h;
2773               unsigned char hdr[3];
2774               unsigned char fp[20];
2775               char fpx[40 + 1];
2776
2777               kcr = p[1] << 24 | p[2] << 16 | p[3] << 8 | p[4];
2778               hdr[0] = 0x99;
2779               hdr[1] = l >> 8;
2780               hdr[2] = l;
2781               h = sat_chksum_create(REPOKEY_TYPE_SHA1);
2782               sat_chksum_add(h, hdr, 3);
2783               sat_chksum_add(h, p, l);
2784               sat_chksum_free(h, fp);
2785               for (i = 0; i < 20; i++)
2786                 sprintf(fpx + i * 2, "%02x", fp[i]);
2787               setutf8string(data, s - s->repo->pool->solvables, PUBKEY_FINGERPRINT, fpx);
2788               memcpy(keyid, fp + 12, 8);
2789             }
2790         }
2791       if (tag == 2)
2792         {
2793           if (p[0] == 3 && p[1] == 5)
2794             {
2795 #if 0
2796               Id htype = 0;
2797 #endif
2798               // printf("V3 signature packet\n");
2799               if (l < 17)
2800                 continue;
2801               if (p[2] != 0x10 && p[2] != 0x11 && p[2] != 0x12 && p[2] != 0x13 && p[2] != 0x1f)
2802                 continue;
2803               if (!memcmp(keyid, p + 6, 8))
2804                 {
2805                   // printf("SELF SIG\n");
2806                 }
2807               else
2808                 {
2809                   // printf("OTHER SIG\n");
2810                 }
2811 #if 0
2812               if (p[16] == 1)
2813                 htype = REPOKEY_TYPE_MD5;
2814               else if (p[16] == 2)
2815                 htype = REPOKEY_TYPE_SHA1;
2816               else if (p[16] == 8)
2817                 htype = REPOKEY_TYPE_SHA256;
2818               if (htype)
2819                 {
2820                   void *h = sat_chksum_create(htype);
2821                   unsigned char b[3], *cs;
2822
2823                   b[0] = 0x99;
2824                   b[1] = pubkeyl >> 8;
2825                   b[2] = pubkeyl;
2826                   sat_chksum_add(h, b, 3);
2827                   sat_chksum_add(h, pubkey, pubkeyl);
2828                   if (p[2] >= 0x10 && p[2] <= 0x13)
2829                     sat_chksum_add(h, userid, useridl);
2830                   sat_chksum_add(h, p + 2, 5);
2831                   cs = sat_chksum_get(h, 0);
2832                   sat_chksum_free(h, 0);
2833                 }
2834 #endif
2835             }
2836           if (p[0] == 4)
2837             {
2838               int j, ql, haveissuer;
2839               unsigned char *q;
2840               unsigned int ex = 0;
2841 #if 0
2842               unsigned int scr = 0;
2843 #endif
2844               unsigned char issuer[8];
2845
2846               // printf("V4 signature packet\n");
2847               if (l < 6)
2848                 continue;
2849               if (p[1] != 0x10 && p[1] != 0x11 && p[1] != 0x12 && p[1] != 0x13 && p[1] != 0x1f)
2850                 continue;
2851               haveissuer = 0;
2852               ex = 0;
2853               q = p + 4;
2854               for (j = 0; q && j < 2; j++)
2855                 {
2856                   if (q + 2 > p + l)
2857                     {
2858                       q = 0;
2859                       break;
2860                     }
2861                   ql = q[0] << 8 | q[1];
2862                   q += 2;
2863                   if (q + ql > p + l)
2864                     {
2865                       q = 0;
2866                       break;
2867                     }
2868                   while (ql)
2869                     {
2870                       int sl;
2871                       x = *q++;
2872                       ql--;
2873                       if (x < 192)
2874                         sl = x;
2875                       else if (x == 255)
2876                         {
2877                           if (ql < 4)
2878                             {
2879                               q = 0;
2880                               break;
2881                             }
2882                           sl = q[0] << 24 | q[1] << 16 | q[2] << 8 | q[3];
2883                           q += 4;
2884                           ql -= 4;
2885                         }
2886                       else
2887                         {
2888                           if (ql < 1)
2889                             {
2890                               q = 0;
2891                               break;
2892                             }
2893                           sl = ((x - 192) << 8) + *q++ + 192;
2894                           ql--;
2895                         }
2896                       if (ql < sl)
2897                         {
2898                           q = 0;
2899                           break;
2900                         }
2901                       x = q[0] & 127;
2902                       // printf("%d SIGSUB %d %d\n", j, x, sl);
2903                       if (x == 16 && sl == 9 && !haveissuer)
2904                         {
2905                           memcpy(issuer, q + 1, 8);
2906                           haveissuer = 1;
2907                         }
2908 #if 0
2909                       if (x == 2 && j == 0)
2910                         scr = q[1] << 24 | q[2] << 16 | q[3] << 8 | q[4];
2911 #endif
2912                       if (x == 9 && j == 0)
2913                         ex = q[1] << 24 | q[2] << 16 | q[3] << 8 | q[4];
2914                       q += sl;
2915                       ql -= sl;
2916                     }
2917                 }
2918               if (ex)
2919                 ex += kcr;
2920               if (haveissuer)
2921                 {
2922 #if 0
2923                   Id htype = 0;
2924                   if (p[3] == 1)
2925                     htype = REPOKEY_TYPE_MD5;
2926                   else if (p[3] == 2)
2927                     htype = REPOKEY_TYPE_SHA1;
2928                   else if (p[3] == 8)
2929                     htype = REPOKEY_TYPE_SHA256;
2930                   if (htype && pubkeyl)
2931                     {
2932                       void *h = sat_chksum_create(htype);
2933                       unsigned char b[6], *cs;
2934                       unsigned int hl;
2935
2936                       b[0] = 0x99;
2937                       b[1] = pubkeyl >> 8;
2938                       b[2] = pubkeyl;
2939                       sat_chksum_add(h, b, 3);
2940                       sat_chksum_add(h, pubkey, pubkeyl);
2941                       if (p[1] >= 0x10 && p[1] <= 0x13)
2942                         {
2943                           b[0] = 0xb4;
2944                           b[1] = useridl >> 24;
2945                           b[2] = useridl >> 16;
2946                           b[3] = useridl >> 8;
2947                           b[4] = useridl;
2948                           sat_chksum_add(h, b, 5);
2949                           sat_chksum_add(h, userid, useridl);
2950                         }
2951                       hl = 6 + (p[4] << 8 | p[5]);
2952                       sat_chksum_add(h, p, hl);
2953                       b[0] = 4;
2954                       b[1] = 0xff;
2955                       b[2] = hl >> 24;
2956                       b[3] = hl >> 16;
2957                       b[4] = hl >> 8;
2958                       b[5] = hl;
2959                       sat_chksum_add(h, b, 6);
2960                       cs = sat_chksum_get(h, 0);
2961                       sat_chksum_free(h, 0);
2962                     }
2963 #endif
2964                   if (!memcmp(keyid, issuer, 8))
2965                     {
2966                       // printf("SELF SIG cr %d ex %d\n", cr, ex);
2967                       if (ex > maxex)
2968                         maxex = ex;
2969                     }
2970                   else
2971                     {
2972                       // printf("OTHER SIG cr %d ex %d\n", cr, ex);
2973                     }
2974                 }
2975             }
2976         }
2977       if (tag == 13)
2978         {
2979           userid = sat_realloc(userid, l);
2980           if (l)
2981             memcpy(userid, p, l);
2982 #if 0
2983           useridl = l;
2984 #endif
2985         }
2986     }
2987   if (maxex)
2988     repodata_set_num(data, s - s->repo->pool->solvables, PUBKEY_EXPIRES, maxex);
2989   sat_free(pubkey);
2990   sat_free(userid);
2991 }
2992
2993 /* this is private to rpm, but rpm lacks an interface to retrieve
2994  * the values. Sigh. */
2995 struct pgpDigParams_s {
2996     const char * userid;
2997     const unsigned char * hash;
2998     const char * params[4];
2999     unsigned char tag;
3000     unsigned char version;               /*!< version number. */
3001     unsigned char time[4];               /*!< time that the key was created. */
3002     unsigned char pubkey_algo;           /*!< public key algorithm. */
3003     unsigned char hash_algo;
3004     unsigned char sigtype;
3005     unsigned char hashlen;
3006     unsigned char signhash16[2];
3007     unsigned char signid[8];
3008     unsigned char saved;
3009 };
3010
3011 struct pgpDig_s {
3012     struct pgpDigParams_s signature;
3013     struct pgpDigParams_s pubkey;
3014 };
3015
3016 static int
3017 pubkey2solvable(Solvable *s, Repodata *data, char *pubkey)
3018 {
3019   Pool *pool = s->repo->pool;
3020   unsigned char *pkts;
3021   unsigned int btime;
3022   int pktsl, i;
3023   pgpDig dig = 0;
3024   char keyid[16 + 1];
3025   char evrbuf[8 + 1 + 8 + 1];
3026
3027   pkts = unarmor(pubkey, &pktsl);
3028   if (!pkts)
3029     return 0;
3030   setutf8string(data, s - s->repo->pool->solvables, SOLVABLE_DESCRIPTION, pubkey);
3031   parsekeydata(s, data, pkts, pktsl);
3032   /* only rpm knows how to do the release calculation, we don't dare
3033    * to recreate all the bugs */
3034 #ifndef RPM5
3035   dig = pgpNewDig();
3036 #else
3037   dig = pgpDigNew(RPMVSF_DEFAULT, 0);
3038 #endif
3039   (void) pgpPrtPkts(pkts, pktsl, dig, 0);
3040   btime = dig->pubkey.time[0] << 24 | dig->pubkey.time[1] << 16 | dig->pubkey.time[2] << 8 | dig->pubkey.signid[3];
3041   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]);
3042   repodata_set_num(data, s - s->repo->pool->solvables, SOLVABLE_BUILDTIME, btime);
3043
3044   s->name = pool_str2id(pool, "gpg-pubkey", 1);
3045   s->evr = pool_str2id(pool, evrbuf, 1);
3046   s->arch = 1;
3047   for (i = 0; i < 8; i++)
3048     sprintf(keyid + 2 * i, "%02x", dig->pubkey.signid[i]);
3049   repodata_set_str(data, s - s->repo->pool->solvables, PUBKEY_KEYID, keyid);
3050   if (dig->pubkey.userid)
3051     setutf8string(data, s - s->repo->pool->solvables, SOLVABLE_SUMMARY, dig->pubkey.userid);
3052   (void)pgpFreeDig(dig);
3053   sat_free((void *)pkts);
3054   return 1;
3055 }
3056
3057 void
3058 repo_add_rpmdb_pubkeys(Repo *repo, const char *rootdir, int flags)
3059 {
3060   Pool *pool = repo->pool;
3061   struct rpm_by_state state;
3062   struct rpmdbentry *entries;
3063   int nentries, i;
3064   char *namedata, *str;
3065   unsigned int u32;
3066   Repodata *data;
3067   Solvable *s;
3068
3069   data = repo_add_repodata(repo, flags);
3070
3071   memset(&state, 0, sizeof(state));
3072   if (!(state.dbenv = opendbenv(rootdir)))
3073     return;
3074   entries = getinstalledrpmdbids(&state, "Name", "gpg-pubkey", &nentries, &namedata);
3075   for (i = 0 ; i < nentries; i++)
3076     {
3077       void *statep = &state;
3078       RpmHead *rpmhead = rpm_byrpmdbid(entries[i].rpmdbid, rootdir, &statep);
3079       if (!rpmhead)
3080         continue;
3081       str = headstring(rpmhead, TAG_DESCRIPTION);
3082       if (!str)
3083         continue;
3084       s = pool_id2solvable(pool, repo_add_solvable(repo));
3085       pubkey2solvable(s, data, str);
3086       u32 = headint32(rpmhead, TAG_INSTALLTIME);
3087       if (u32)
3088         repodata_set_num(data, s - pool->solvables, SOLVABLE_INSTALLTIME, u32);
3089       if (!repo->rpmdbid)
3090         repo->rpmdbid = repo_sidedata_create(repo, sizeof(Id));
3091       repo->rpmdbid[s - pool->solvables - repo->start] = entries[i].rpmdbid;
3092     }
3093   sat_free(entries);
3094   sat_free(namedata);
3095   freestate(&state);
3096   if (!(flags & REPO_NO_INTERNALIZE))
3097     repodata_internalize(data);
3098 }
3099
3100 void
3101 repo_add_pubkeys(Repo *repo, const char **keys, int nkeys, int flags)
3102 {
3103   Pool *pool = repo->pool;
3104   Repodata *data;
3105   Solvable *s;
3106   char *buf;
3107   int i, bufl, l, ll;
3108   FILE *fp;
3109
3110   data = repo_add_repodata(repo, flags);
3111   buf = 0;
3112   bufl = 0;
3113   for (i = 0; i < nkeys; i++)
3114     {
3115       if ((fp = fopen(keys[i], "r")) == 0)
3116         {
3117           perror(keys[i]);
3118           continue;
3119         }
3120       for (l = 0; ;)
3121         {
3122           if (bufl - l < 4096)
3123             {
3124               bufl += 4096;
3125               buf = sat_realloc(buf, bufl);
3126             }
3127           ll = fread(buf, 1, bufl - l, fp);
3128           if (ll <= 0)
3129             break;
3130           l += ll;
3131         }
3132       buf[l] = 0;
3133       fclose(fp);
3134       s = pool_id2solvable(pool, repo_add_solvable(repo));
3135       pubkey2solvable(s, data, buf);
3136     }
3137   sat_free(buf);
3138   if (!(flags & REPO_NO_INTERNALIZE))
3139     repodata_internalize(data);
3140 }