rename rpmdb_pubkey to pubkey
[platform/upstream/libsolv.git] / ext / repo_pubkey.c
1 /*
2  * Copyright (c) 2007-2013, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /*
9  * repo_pubkey
10  *
11  * support for pubkey reading
12  *
13  */
14
15 #include <sys/types.h>
16 #include <sys/stat.h>
17 #include <limits.h>
18 #include <fcntl.h>
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <unistd.h>
23 #include <assert.h>
24 #include <stdint.h>
25 #include <errno.h>
26
27 #include <rpm/rpmio.h>
28 #include <rpm/rpmpgp.h>
29 #ifndef RPM5
30 #include <rpm/header.h>
31 #endif
32 #include <rpm/rpmdb.h>
33
34 #include "pool.h"
35 #include "repo.h"
36 #include "hash.h"
37 #include "util.h"
38 #include "queue.h"
39 #include "chksum.h"
40 #include "repo_rpmdb.h"
41 #ifdef ENABLE_PGPVRFY
42 #include "solv_pgpvrfy.h"
43 #endif
44
45 static void 
46 setutf8string(Repodata *repodata, Id handle, Id tag, const char *str)
47 {
48   if (str[solv_validutf8(str)])
49     {    
50       char *ustr = solv_latin1toutf8(str);      /* not utf8, assume latin1 */
51       repodata_set_str(repodata, handle, tag, ustr);
52       solv_free(ustr);
53     }    
54   else 
55     repodata_set_str(repodata, handle, tag, str);
56 }
57
58 static char *
59 r64dec1(char *p, unsigned int *vp, int *eofp)
60 {
61   int i, x;
62   unsigned int v = 0;
63
64   for (i = 0; i < 4; )
65     {
66       x = *p++;
67       if (!x)
68         return 0;
69       if (x >= 'A' && x <= 'Z')
70         x -= 'A';
71       else if (x >= 'a' && x <= 'z')
72         x -= 'a' - 26;
73       else if (x >= '0' && x <= '9')
74         x -= '0' - 52;
75       else if (x == '+')
76         x = 62;
77       else if (x == '/')
78         x = 63;
79       else if (x == '=')
80         {
81           x = 0;
82           if (i == 0)
83             {
84               *eofp = 3;
85               *vp = 0;
86               return p - 1;
87             }
88           *eofp += 1;
89         }
90       else
91         continue;
92       v = v << 6 | x;
93       i++;
94     }
95   *vp = v;
96   return p;
97 }
98
99 static unsigned int
100 crc24(unsigned char *p, int len)
101 {
102   unsigned int crc = 0xb704ceL;
103   int i;
104
105   while (len--)
106     {
107       crc ^= (*p++) << 16;
108       for (i = 0; i < 8; i++)
109         if ((crc <<= 1) & 0x1000000)
110           crc ^= 0x1864cfbL;
111     }
112   return crc & 0xffffffL;
113 }
114
115 static unsigned char *
116 unarmor(char *pubkey, int *pktlp)
117 {
118   char *p;
119   int l, eof;
120   unsigned char *buf, *bp;
121   unsigned int v;
122
123   *pktlp = 0;
124   while (strncmp(pubkey, "-----BEGIN PGP PUBLIC KEY BLOCK-----", 36) != 0)
125     {
126       pubkey = strchr(pubkey, '\n');
127       if (!pubkey)
128         return 0;
129       pubkey++;
130     }
131   pubkey = strchr(pubkey, '\n');
132   if (!pubkey++)
133     return 0;
134   /* skip header lines */
135   for (;;)
136     {
137       while (*pubkey == ' ' || *pubkey == '\t')
138         pubkey++;
139       if (*pubkey == '\n')
140         break;
141       pubkey = strchr(pubkey, '\n');
142       if (!pubkey++)
143         return 0;
144     }
145   pubkey++;
146   p = strchr(pubkey, '=');
147   if (!p)
148     return 0;
149   l = p - pubkey;
150   bp = buf = solv_malloc(l * 3 / 4 + 4);
151   eof = 0;
152   while (!eof)
153     {
154       pubkey = r64dec1(pubkey, &v, &eof);
155       if (!pubkey)
156         {
157           solv_free(buf);
158           return 0;
159         }
160       *bp++ = v >> 16;
161       *bp++ = v >> 8;
162       *bp++ = v;
163     }
164   while (*pubkey == ' ' || *pubkey == '\t' || *pubkey == '\n' || *pubkey == '\r')
165     pubkey++;
166   bp -= eof;
167   if (*pubkey != '=' || (pubkey = r64dec1(pubkey + 1, &v, &eof)) == 0)
168     {
169       solv_free(buf);
170       return 0;
171     }
172   if (v != crc24(buf, bp - buf))
173     {
174       solv_free(buf);
175       return 0;
176     }
177   while (*pubkey == ' ' || *pubkey == '\t' || *pubkey == '\n' || *pubkey == '\r')
178     pubkey++;
179   if (strncmp(pubkey, "-----END PGP PUBLIC KEY BLOCK-----", 34) != 0)
180     {
181       solv_free(buf);
182       return 0;
183     }
184   *pktlp = bp - buf;
185   return buf;
186 }
187
188 struct gpgsig {
189   int type;
190   unsigned char issuer[8];
191   int haveissuer;
192   unsigned int created;
193   unsigned int expires;
194   unsigned int keyexpires;
195   unsigned char *sigdata;
196   int sigdatal;
197 };
198
199 static void
200 parsesigpacket(struct gpgsig *sig, unsigned char *p, int l, unsigned char *pubkey, int pubkeyl, unsigned char *userid, int useridl)
201 {
202   sig->type = -1;
203   if (p[0] == 3)
204     {
205       Id htype = 0;
206       /* printf("V3 signature packet\n"); */
207       if (l <= 19 || p[1] != 5)
208         return;
209       if (p[2] != 0x10 && p[2] != 0x11 && p[2] != 0x12 && p[2] != 0x13 && p[2] != 0x1f)
210         return;
211       sig->type = p[2];
212       sig->haveissuer = 1;
213       memcpy(sig->issuer, p + 7, 8);
214       sig->created = p[3] << 24 | p[4] << 16 | p[5] << 8 | p[6];
215       if (p[16] == 1)
216         htype = REPOKEY_TYPE_MD5;
217       else if (p[16] == 2)
218         htype = REPOKEY_TYPE_SHA1;
219       else if (p[16] == 8)
220         htype = REPOKEY_TYPE_SHA256;
221       if (htype && pubkey)
222         {
223           void *h = solv_chksum_create(htype);
224           const unsigned char *cs;
225           unsigned char b[3];
226           int csl;
227
228           if ((p[2] >= 0x10 && p[2] <= 0x13) || p[2] == 0x1f || p[2] == 0x18 || p[2] == 0x20 || p[2] == 0x28)
229             {
230               b[0] = 0x99;
231               b[1] = pubkeyl >> 8;
232               b[2] = pubkeyl;
233               solv_chksum_add(h, b, 3);
234               solv_chksum_add(h, pubkey, pubkeyl);
235             }
236           if (p[2] >= 0x10 && p[2] <= 0x13)
237             solv_chksum_add(h, userid, useridl);
238           solv_chksum_add(h, p + 2, 5);
239           cs = solv_chksum_get(h, &csl);
240           if (cs[0] == p[17] && cs[1] == p[18])
241             {
242               sig->sigdata = solv_malloc(2 + csl + l - 19);
243               sig->sigdatal = 2 + csl + l - 19;
244               sig->sigdata[0] = p[15];
245               sig->sigdata[1] = p[16];
246               memcpy(sig->sigdata + 2, cs, csl);
247               memcpy(sig->sigdata + 2 + csl, p + 19, l - 19);
248             }
249           solv_chksum_free(h, 0);
250         }
251     }
252   else if (p[0] == 4)
253     {
254       int j, ql, x;
255       unsigned char *q;
256       Id htype = 0;
257
258       /* printf("V4 signature packet\n"); */
259       if (l < 6)
260         return;
261       if (p[1] != 0x10 && p[1] != 0x11 && p[1] != 0x12 && p[1] != 0x13 && p[1] != 0x1f)
262         return;
263       sig->type = p[1];
264       q = p + 4;
265       for (j = 0; q && j < 2; j++)
266         {
267           if (q + 2 > p + l)
268             {
269               q = 0;
270               break;
271             }
272           ql = q[0] << 8 | q[1];
273           q += 2;
274           if (q + ql > p + l)
275             {
276               q = 0;
277               break;
278             }
279           while (ql)
280             {
281               int sl;
282               /* decode sub-packet length */
283               x = *q++;
284               ql--;
285               if (x < 192)
286                 sl = x;
287               else if (x == 255)
288                 {
289                   if (ql < 4 || q[0] != 0)
290                     {
291                       q = 0;
292                       break;
293                     }
294                   sl = q[1] << 16 | q[2] << 8 | q[3];
295                   q += 4;
296                   ql -= 4;
297                 }
298               else
299                 {
300                   if (ql < 1)
301                     {
302                       q = 0;
303                       break;
304                     }
305                   sl = ((x - 192) << 8) + *q++ + 192;
306                   ql--;
307                 }
308               if (ql < sl)
309                 {
310                   q = 0;
311                   break;
312                 }
313               x = q[0] & 127;
314               /* printf("%d SIGSUB %d %d\n", j, x, sl); */
315               if (x == 16 && sl == 9 && !sig->haveissuer)
316                 {
317                   sig->haveissuer = 1;
318                   memcpy(sig->issuer, q + 1, 8);
319                 }
320               if (x == 2 && j == 0)
321                 sig->created = q[1] << 24 | q[2] << 16 | q[3] << 8 | q[4];
322               if (x == 3 && j == 0)
323                 sig->expires = q[1] << 24 | q[2] << 16 | q[3] << 8 | q[4];
324               if (x == 9 && j == 0)
325                 sig->keyexpires = q[1] << 24 | q[2] << 16 | q[3] << 8 | q[4];
326               q += sl;
327               ql -= sl;
328             }
329         }
330       if (p[3] == 1)
331         htype = REPOKEY_TYPE_MD5;
332       else if (p[3] == 2)
333         htype = REPOKEY_TYPE_SHA1;
334       else if (p[3] == 8)
335         htype = REPOKEY_TYPE_SHA256;
336       if (sig->haveissuer && htype && pubkey && q && q - p + 2 < l)
337         {
338           void *h = solv_chksum_create(htype);
339           unsigned char b[6];
340           const unsigned char *cs;
341           unsigned int hl;
342           int csl, ml = l - (q - p + 2);
343
344           if ((p[1] >= 0x10 && p[1] <= 0x13) || p[1] == 0x1f || p[1] == 0x18 || p[1] == 0x20 || p[1] == 0x28)
345             {
346               b[0] = 0x99;
347               b[1] = pubkeyl >> 8;
348               b[2] = pubkeyl;
349               solv_chksum_add(h, b, 3);
350               solv_chksum_add(h, pubkey, pubkeyl);
351             }
352           if (p[1] >= 0x10 && p[1] <= 0x13)
353             {
354               b[0] = 0xb4;
355               b[1] = useridl >> 24;
356               b[2] = useridl >> 16;
357               b[3] = useridl >> 8;
358               b[4] = useridl;
359               solv_chksum_add(h, b, 5);
360               solv_chksum_add(h, userid, useridl);
361             }
362           hl = 6 + (p[4] << 8 | p[5]);
363           solv_chksum_add(h, p, hl);
364           b[0] = 4;
365           b[1] = 0xff;
366           b[2] = hl >> 24;
367           b[3] = hl >> 16;
368           b[4] = hl >> 8;
369           b[5] = hl;
370           solv_chksum_add(h, b, 6);
371           cs = solv_chksum_get(h, &csl);
372           if (cs[0] == q[0] && cs[1] == q[1])
373             {
374               sig->sigdata = solv_malloc(2 + csl + ml);
375               sig->sigdatal = 2 + csl + ml;
376               sig->sigdata[0] = p[2];
377               sig->sigdata[1] = p[3];
378               memcpy(sig->sigdata + 2, cs, csl);
379               memcpy(sig->sigdata + 2 + csl, q + 2, ml);
380             }
381           solv_chksum_free(h, 0);
382         }
383     }
384 }
385
386 static void
387 parsekeydata(Solvable *s, Repodata *data, unsigned char *p, int pl)
388 {
389   int x, tag, l;
390   unsigned char keyid[8];
391   unsigned int kcr = 0, maxex = 0, maxsigcr = 0;
392   unsigned char *pubkey = 0;
393   int pubkeyl = 0;
394   unsigned char *userid = 0;
395   int useridl = 0;
396   unsigned char *pubdata = 0;
397   int pubdatal = 0;
398
399   for (; pl; p += l, pl -= l)
400     {
401       x = *p++;
402       pl--;
403       if (!(x & 128) || pl <= 0)
404         return;
405       if ((x & 64) == 0)
406         {
407           /* old format */
408           tag = (x & 0x3c) >> 2;
409           x &= 3;
410           if (x == 3)
411             return;
412           l = 1 << x;
413           if (pl < l)
414             return;
415           x = 0;
416           while (l--)
417             {
418               x = x << 8 | *p++;
419               pl--;
420             }
421           l = x;
422         }
423       else
424         {
425           tag = (x & 0x3f);
426           x = *p++;
427           pl--;
428           if (x < 192)
429             l = x;
430           else if (x >= 192 && x < 224)
431             {
432               if (pl <= 0)
433                 return;
434               l = ((x - 192) << 8) + *p++ + 192;
435               pl--;
436             }
437           else if (x == 255)
438             {
439               /* sanity: p[0] must be zero */
440               if (pl <= 4 || p[0] != 0)
441                 return;
442               l = p[1] << 16 | p[2] << 8 | p[3];
443               p += 4;
444               pl -= 4;
445             }
446           else
447             return;
448         }
449       if (pl < l)
450         return;
451       if (tag == 6)
452         {
453           if (pubkey)
454             break;      /* one key at a time, please */
455           pubkey = solv_malloc(l);
456           if (l)
457             memcpy(pubkey, p, l);
458           pubkeyl = l;
459           if (p[0] == 3 && l >= 10)
460             {
461               unsigned int ex;
462               void *h;
463               maxsigcr = kcr = p[1] << 24 | p[2] << 16 | p[3] << 8 | p[4];
464               ex = 0;
465               if (p[5] || p[6])
466                 {
467                   ex = kcr + 24*3600 * (p[5] << 8 | p[6]);
468                   if (ex > maxex)
469                     maxex = ex;
470                 }
471               memset(keyid, 0, 8);
472               if (p[7] == 1)    /* RSA */
473                 {
474                   int ql, ql2;
475                   unsigned char fp[16];
476                   char fpx[32 + 1];
477                   unsigned char *q;
478
479                   ql = ((p[8] << 8 | p[9]) + 7) / 8;            /* length of public modulus */
480                   if (ql >= 8 && 10 + ql + 2 <= l)
481                     {
482                       memcpy(keyid, p + 10 + ql - 8, 8);        /* keyid is last 64 bits of public modulus */
483                       q = p + 10 + ql;
484                       ql2 = ((q[0] << 8 | q[1]) + 7) / 8;       /* length of encryption exponent */
485                       if (10 + ql + 2 + ql2 <= l)
486                         {
487                           /* fingerprint is the md5 over the two MPI bodies */
488                           h = solv_chksum_create(REPOKEY_TYPE_MD5);
489                           solv_chksum_add(h, p + 10, ql);
490                           solv_chksum_add(h, q + 2, ql2);
491                           solv_chksum_free(h, fp);
492                           solv_bin2hex(fp, 16, fpx);
493                           repodata_set_str(data, s - s->repo->pool->solvables, PUBKEY_FINGERPRINT, fpx);
494                         }
495                     }
496                   pubdata = p + 7;
497                   pubdatal = l - 7;
498                 }
499             }
500           else if (p[0] == 4 && l >= 6)
501             {
502               void *h;
503               unsigned char hdr[3];
504               unsigned char fp[20];
505               char fpx[40 + 1];
506
507               maxsigcr = kcr = p[1] << 24 | p[2] << 16 | p[3] << 8 | p[4];
508               hdr[0] = 0x99;
509               hdr[1] = l >> 8;
510               hdr[2] = l;
511               /* fingerprint is the sha1 over the packet */
512               h = solv_chksum_create(REPOKEY_TYPE_SHA1);
513               solv_chksum_add(h, hdr, 3);
514               solv_chksum_add(h, p, l);
515               solv_chksum_free(h, fp);
516               solv_bin2hex(fp, 20, fpx);
517               repodata_set_str(data, s - s->repo->pool->solvables, PUBKEY_FINGERPRINT, fpx);
518               memcpy(keyid, fp + 12, 8);        /* keyid is last 64 bits of fingerprint */
519               pubdata = p + 5;
520               pubdatal = l - 5;
521             }
522         }
523       if (tag == 2)
524         {
525           struct gpgsig sig;
526           if (!pubdata)
527             continue;
528           memset(&sig, 0, sizeof(sig));
529           parsesigpacket(&sig, p, l, pubkey, pubkeyl, userid, useridl);
530           if (!sig.haveissuer || !((sig.type >= 0x10 && sig.type <= 0x13) || sig.type == 0x1f))
531             {
532               solv_free(sig.sigdata);
533               continue;
534             }
535           if (!memcmp(keyid, sig.issuer, 8))
536             {
537 #ifdef ENABLE_PGPVRFY
538               /* found self sig, verify */
539               if (solv_pgpvrfy(pubdata, pubdatal, sig.sigdata, sig.sigdatal))
540 #endif
541                 {
542                   if (!maxex && sig.keyexpires)
543                     maxex = sig.keyexpires + kcr;
544                   if (sig.created > maxsigcr)
545                     maxsigcr = sig.created;
546                 }
547             }
548           else
549             {
550               char issuerstr[17];
551               Id shandle = repodata_new_handle(data);
552               solv_bin2hex(sig.issuer, 8, issuerstr);
553               repodata_set_str(data, shandle, SIGNATURE_ISSUER, issuerstr);
554               if (sig.created)
555                 repodata_set_num(data, shandle, SIGNATURE_TIME, sig.created);
556               if (sig.expires)
557                 repodata_set_num(data, shandle, SIGNATURE_EXPIRES, sig.created + sig.expires);
558               if (sig.sigdata)
559                 repodata_set_binary(data, shandle, SIGNATURE_DATA, sig.sigdata, sig.sigdatal);
560               repodata_add_flexarray(data, s - s->repo->pool->solvables, PUBKEY_SIGNATURES, shandle);
561             }
562           solv_free(sig.sigdata);
563         }
564       if (tag == 13)
565         {
566           userid = solv_realloc(userid, l);
567           if (l)
568             memcpy(userid, p, l);
569           useridl = l;
570         }
571     }
572   if (kcr)
573     repodata_set_num(data, s - s->repo->pool->solvables, SOLVABLE_BUILDTIME, kcr);
574   if (maxex)
575     repodata_set_num(data, s - s->repo->pool->solvables, PUBKEY_EXPIRES, maxex);
576   s->name = pool_str2id(s->repo->pool, "gpg-pubkey", 1);
577   s->evr = 1;
578   s->arch = 1;
579   if (userid && useridl)
580     {
581       char *useridstr = solv_malloc(useridl + 1);
582       memcpy(useridstr, userid, useridl);
583       useridstr[useridl] = 0;
584       setutf8string(data, s - s->repo->pool->solvables, SOLVABLE_SUMMARY, useridstr);
585       free(useridstr);
586     }
587   if (pubdata)
588     {
589       char keyidstr[17];
590       solv_bin2hex(keyid, 8, keyidstr);
591       repodata_set_str(data, s - s->repo->pool->solvables, PUBKEY_KEYID, keyidstr);
592     }
593   if (pubdata)
594     {
595       /* build rpm-style evr */
596       char evr[8 + 1 + 8 + 1];
597       solv_bin2hex(keyid + 4, 4, evr);
598       sprintf(evr + 8, "-%08x", maxsigcr);
599       s->evr = pool_str2id(s->repo->pool, evr, 1);
600       /* set data blob */
601       repodata_set_binary(data, s - s->repo->pool->solvables, PUBKEY_DATA, pubdata, pubdatal);
602     }
603   solv_free(pubkey);
604   solv_free(userid);
605 }
606
607
608 #ifdef ENABLE_RPMDB
609
610 /* this is private to rpm, but rpm lacks an interface to retrieve
611  * the values. Sigh. */
612 struct pgpDigParams_s {
613     const char * userid;
614     const unsigned char * hash;
615 #ifndef HAVE_PGPDIGGETPARAMS
616     const char * params[4];
617 #endif
618     unsigned char tag;
619     unsigned char version;               /*!< version number. */
620     unsigned char time[4];               /*!< time that the key was created. */
621     unsigned char pubkey_algo;           /*!< public key algorithm. */
622     unsigned char hash_algo;
623     unsigned char sigtype;
624     unsigned char hashlen;
625     unsigned char signhash16[2];
626     unsigned char signid[8];
627     unsigned char saved;
628 };
629
630 #ifndef HAVE_PGPDIGGETPARAMS
631 struct pgpDig_s {
632     struct pgpDigParams_s signature;
633     struct pgpDigParams_s pubkey;
634 };
635 #endif
636
637
638 /* only rpm knows how to do the release calculation, we don't dare
639  * to recreate all the bugs in libsolv */
640 static void
641 parsekeydata_rpm(Solvable *s, Repodata *data, unsigned char *pkts, int pktsl)
642 {
643   Pool *pool = s->repo->pool;
644   struct pgpDigParams_s *digpubkey;
645   pgpDig dig = 0;
646   char keyid[16 + 1];
647   char evrbuf[8 + 1 + 8 + 1];
648   unsigned int btime;
649
650 #ifndef RPM5
651   dig = pgpNewDig();
652 #else
653   dig = pgpDigNew(RPMVSF_DEFAULT, 0);
654 #endif
655   (void) pgpPrtPkts(pkts, pktsl, dig, 0);
656 #ifdef HAVE_PGPDIGGETPARAMS
657   digpubkey = pgpDigGetParams(dig, PGPTAG_PUBLIC_KEY);
658 #else
659   digpubkey = &dig->pubkey;
660 #endif
661   if (digpubkey)
662     {
663       btime = digpubkey->time[0] << 24 | digpubkey->time[1] << 16 | digpubkey->time[2] << 8 | digpubkey->time[3];
664       solv_bin2hex(digpubkey->signid, 8, keyid);
665       solv_bin2hex(digpubkey->signid + 4, 4, evrbuf);
666       evrbuf[8] = '-';
667       solv_bin2hex(digpubkey->time, 4, evrbuf + 9);
668       s->evr = pool_str2id(pool, evrbuf, 1);
669       repodata_set_str(data, s - s->repo->pool->solvables, PUBKEY_KEYID, keyid);
670       if (digpubkey->userid)
671         setutf8string(data, s - s->repo->pool->solvables, SOLVABLE_SUMMARY, digpubkey->userid);
672       if (btime)
673         repodata_set_num(data, s - s->repo->pool->solvables, SOLVABLE_BUILDTIME, btime);
674     }
675 #ifndef RPM5
676   (void)pgpFreeDig(dig);
677 #else
678   (void)pgpDigFree(dig);
679 #endif
680 }
681
682 #endif  /* ENABLE_RPMDB */
683
684 static int
685 pubkey2solvable(Solvable *s, Repodata *data, char *pubkey)
686 {
687   unsigned char *pkts;
688   int pktsl;
689
690   pkts = unarmor(pubkey, &pktsl);
691   if (!pkts)
692     {
693       pool_error(s->repo->pool, 0, "unarmor failure");
694       return 0;
695     }
696   setutf8string(data, s - s->repo->pool->solvables, SOLVABLE_DESCRIPTION, pubkey);
697   parsekeydata(s, data, pkts, pktsl);
698 #ifdef ENABLE_RPMDB
699   parsekeydata_rpm(s, data, pkts, pktsl);
700 #endif
701   solv_free((void *)pkts);
702   return 1;
703 }
704
705 #ifdef ENABLE_RPMDB
706
707 int
708 repo_add_rpmdb_pubkeys(Repo *repo, int flags)
709 {
710   Pool *pool = repo->pool;
711   Queue q;
712   int i;
713   char *str;
714   Repodata *data;
715   Solvable *s;
716   const char *rootdir = 0;
717   void *state;
718
719   data = repo_add_repodata(repo, flags);
720   if (flags & REPO_USE_ROOTDIR)
721     rootdir = pool_get_rootdir(pool);
722   state = rpm_state_create(repo->pool, rootdir);
723   queue_init(&q);
724   rpm_installedrpmdbids(state, "Name", "gpg-pubkey", &q);
725   for (i = 0; i < q.count; i++)
726     {
727       void *handle;
728       unsigned long long itime;
729
730       handle = rpm_byrpmdbid(state, q.elements[i]);
731       if (!handle)
732         continue;
733       str = rpm_query(handle, SOLVABLE_DESCRIPTION);
734       if (!str)
735         continue;
736       s = pool_id2solvable(pool, repo_add_solvable(repo));
737       pubkey2solvable(s, data, str);
738       solv_free(str);
739       itime = rpm_query_num(handle, SOLVABLE_INSTALLTIME, 0);
740       if (itime)
741         repodata_set_num(data, s - pool->solvables, SOLVABLE_INSTALLTIME, itime);
742       if (!repo->rpmdbid)
743         repo->rpmdbid = repo_sidedata_create(repo, sizeof(Id));
744       repo->rpmdbid[s - pool->solvables - repo->start] = q.elements[i];
745     }
746   queue_free(&q);
747   rpm_state_free(state);
748   if (!(flags & REPO_NO_INTERNALIZE))
749     repodata_internalize(data);
750   return 0;
751 }
752
753 #endif
754
755 Id
756 repo_add_pubkey(Repo *repo, const char *key, int flags)
757 {
758   Pool *pool = repo->pool;
759   Repodata *data;
760   Solvable *s;
761   char *buf;
762   int bufl, l, ll;
763   FILE *fp;
764
765   data = repo_add_repodata(repo, flags);
766   buf = 0;
767   bufl = 0;
768   if ((fp = fopen(flags & REPO_USE_ROOTDIR ? pool_prepend_rootdir_tmp(pool, key) : key, "r")) == 0)
769     {
770       pool_error(pool, -1, "%s: %s", key, strerror(errno));
771       return 0;
772     }
773   for (l = 0; ;)
774     {
775       if (bufl - l < 4096)
776         {
777           bufl += 4096;
778           buf = solv_realloc(buf, bufl);
779         }
780       ll = fread(buf + l, 1, bufl - l, fp);
781       if (ll < 0)
782         {
783           fclose(fp);
784           pool_error(pool, -1, "%s: %s", key, strerror(errno));
785           return 0;
786         }
787       if (ll == 0)
788         break;
789       l += ll;
790     }
791   buf[l] = 0;
792   fclose(fp);
793   s = pool_id2solvable(pool, repo_add_solvable(repo));
794   if (!pubkey2solvable(s, data, buf))
795     {
796       repo_free_solvable(repo, s - pool->solvables, 1);
797       solv_free(buf);
798       return 0;
799     }
800   solv_free(buf);
801   if (!(flags & REPO_NO_INTERNALIZE))
802     repodata_internalize(data);
803   return s - pool->solvables;
804 }
805