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
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include "pool.h"
#include "repo.h"
#ifdef ENABLE_PUBKEY
#include "repo_pubkey.h"
#endif
#include "checksig.h"
#ifndef DEBIAN
static void
cleanupgpg(char *gpgdir)
{
char cmd[256];
snprintf(cmd, sizeof(cmd), "%s/pubring.gpg", gpgdir);
unlink(cmd);
snprintf(cmd, sizeof(cmd), "%s/pubring.gpg~", gpgdir);
unlink(cmd);
snprintf(cmd, sizeof(cmd), "%s/secring.gpg", gpgdir);
unlink(cmd);
snprintf(cmd, sizeof(cmd), "%s/trustdb.gpg", gpgdir);
unlink(cmd);
snprintf(cmd, sizeof(cmd), "%s/keys", gpgdir);
unlink(cmd);
snprintf(cmd, sizeof(cmd), "%s/pubring.kbx", gpgdir);
unlink(cmd);
snprintf(cmd, sizeof(cmd), "%s/pubring.kbx~", gpgdir);
unlink(cmd);
snprintf(cmd, sizeof(cmd), "%s/private-keys-v1.d", gpgdir);
rmdir(cmd);
rmdir(gpgdir);
}
int
checksig(Pool *sigpool, FILE *fp, FILE *sigfp)
{
char *gpgdir;
char *keysfile;
const char *pubkey, *pubring;
char cmd[256];
FILE *kfp;
Solvable *s;
Id p;
off_t posfp, possigfp;
int r, nkeys;
gpgdir = mkdtemp(pool_tmpjoin(sigpool, "/var/tmp/solvgpg.XXXXXX", 0, 0));
if (!gpgdir)
return 0;
keysfile = pool_tmpjoin(sigpool, gpgdir, "/keys", 0);
if (!(kfp = fopen(keysfile, "w")) )
{
cleanupgpg(gpgdir);
return 0;
}
nkeys = 0;
for (p = 1, s = sigpool->solvables + p; p < sigpool->nsolvables; p++, s++)
{
if (!s->repo)
continue;
pubkey = solvable_lookup_str(s, SOLVABLE_DESCRIPTION);
if (!pubkey || !*pubkey)
continue;
if (fwrite(pubkey, strlen(pubkey), 1, kfp) != 1)
break;
if (fputc('\n', kfp) == EOF) /* Just in case... */
break;
nkeys++;
}
if (fclose(kfp) || !nkeys || p < sigpool->nsolvables)
{
cleanupgpg(gpgdir);
return 0;
}
snprintf(cmd, sizeof(cmd), "gpg2 -q --homedir %s --import %s", gpgdir, keysfile);
if (system(cmd))
{
fprintf(stderr, "key import error\n");
cleanupgpg(gpgdir);
return 0;
}
unlink(keysfile);
posfp = lseek(fileno(fp), 0, SEEK_CUR);
lseek(fileno(fp), 0, SEEK_SET);
possigfp = lseek(fileno(sigfp), 0, SEEK_CUR);
lseek(fileno(sigfp), 0, SEEK_SET);
snprintf(cmd, sizeof(cmd), "%s/pubring.kbx", gpgdir);
pubring = access(cmd, R_OK) == 0 ? "pubring.kbx" : "pubring.gpg";
snprintf(cmd, sizeof(cmd), "gpgv -q --homedir %s --keyring %s/%s /dev/fd/%d /dev/fd/%d >/dev/null 2>&1", gpgdir, gpgdir, pubring, fileno(sigfp), fileno(fp));
fcntl(fileno(fp), F_SETFD, 0); /* clear CLOEXEC */
fcntl(fileno(sigfp), F_SETFD, 0); /* clear CLOEXEC */
r = system(cmd);
lseek(fileno(sigfp), possigfp, SEEK_SET);
lseek(fileno(fp), posfp, SEEK_SET);
fcntl(fileno(fp), F_SETFD, FD_CLOEXEC);
fcntl(fileno(sigfp), F_SETFD, FD_CLOEXEC);
cleanupgpg(gpgdir);
return r == 0 ? 1 : 0;
}
#else
int
checksig(Pool *sigpool, FILE *fp, FILE *sigfp)
{
char cmd[256];
int r;
snprintf(cmd, sizeof(cmd), "gpgv -q --keyring /etc/apt/trusted.gpg /dev/fd/%d /dev/fd/%d >/dev/null 2>&1", fileno(sigfp), fileno(fp));
fcntl(fileno(fp), F_SETFD, 0); /* clear CLOEXEC */
fcntl(fileno(sigfp), F_SETFD, 0); /* clear CLOEXEC */
r = system(cmd);
fcntl(fileno(fp), F_SETFD, FD_CLOEXEC);
fcntl(fileno(sigfp), F_SETFD, FD_CLOEXEC);
return r == 0 ? 1 : 0;
}
#endif
Pool *
read_sigs()
{
Pool *sigpool = pool_create();
#if defined(ENABLE_PUBKEY) && defined(ENABLE_RPMDB)
Repo *repo = repo_create(sigpool, "pubkeys");
repo_add_rpmdb_pubkeys(repo, 0);
#endif
return sigpool;
}
|