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