]>
git.saurik.com Git - apt.git/blob - methods/gpgv.cc
1 #include <apt-pkg/error.h>
2 #include <apt-pkg/acquire-method.h>
3 #include <apt-pkg/strutl.h>
4 #include <apt-pkg/fileutl.h>
15 #define GNUPGPREFIX "[GNUPG:]"
16 #define GNUPGBADSIG "[GNUPG:] BADSIG"
17 #define GNUPGNOPUBKEY "[GNUPG:] NO_PUBKEY"
18 #define GNUPGVALIDSIG "[GNUPG:] VALIDSIG"
19 #define GNUPGGOODSIG "[GNUPG:] GOODSIG"
20 #define GNUPGKEYEXPIRED "[GNUPG:] KEYEXPIRED"
21 #define GNUPGREVKEYSIG "[GNUPG:] REVKEYSIG"
22 #define GNUPGNODATA "[GNUPG:] NODATA"
24 class GPGVMethod
: public pkgAcqMethod
27 string
VerifyGetSigners(const char *file
, const char *outfile
,
28 vector
<string
> &GoodSigners
,
29 vector
<string
> &BadSigners
,
30 vector
<string
> &WorthlessSigners
,
31 vector
<string
> &NoPubKeySigners
);
34 virtual bool Fetch(FetchItem
*Itm
);
38 GPGVMethod() : pkgAcqMethod("1.0",SingleInstance
| SendConfig
) {};
41 string
GPGVMethod::VerifyGetSigners(const char *file
, const char *outfile
,
42 vector
<string
> &GoodSigners
,
43 vector
<string
> &BadSigners
,
44 vector
<string
> &WorthlessSigners
,
45 vector
<string
> &NoPubKeySigners
)
47 bool const Debug
= _config
->FindB("Debug::Acquire::gpgv", false);
48 // setup a (empty) stringstream for formating the return value
49 std::stringstream ret
;
53 std::clog
<< "inside VerifyGetSigners" << std::endl
;
59 string
const gpgvpath
= _config
->Find("Dir::Bin::gpg", "/usr/bin/gpgv");
60 // FIXME: remove support for deprecated APT::GPGV setting
61 string
const trustedFile
= _config
->FindFile("Dir::Etc::Trusted",
62 _config
->Find("APT::GPGV::TrustedKeyring", "/etc/apt/trusted.gpg").c_str());
63 string
const trustedPath
= _config
->FindDir("Dir::Etc::TrustedParts", "/etc/apt/trusted.gpg.d");
66 std::clog
<< "gpgv path: " << gpgvpath
<< std::endl
;
67 std::clog
<< "Keyring file: " << trustedFile
<< std::endl
;
68 std::clog
<< "Keyring path: " << trustedPath
<< std::endl
;
71 vector
<string
> keyrings
= GetListOfFilesInDir(trustedPath
, "gpg", false);
72 if (FileExists(trustedFile
) == true)
73 keyrings
.push_back(trustedFile
);
75 if (keyrings
.empty() == true)
77 // TRANSLATOR: %s is the trusted keyring parts directory
78 ioprintf(ret
, _("No keyring installed in %s."), trustedPath
.c_str());
83 return "Couldn't create pipe";
87 return string("Couldn't spawn new process") + strerror(errno
);
90 const char *Args
[400];
93 Args
[i
++] = gpgvpath
.c_str();
94 Args
[i
++] = "--status-fd";
96 Args
[i
++] = "--ignore-time-conflict";
97 for (vector
<string
>::const_iterator K
= keyrings
.begin();
98 K
!= keyrings
.end(); ++K
)
100 Args
[i
++] = "--keyring";
101 Args
[i
++] = K
->c_str();
103 std::clog
<< _("E: Too many keyrings should be passed to gpgv. Exiting.") << std::endl
;
108 Configuration::Item
const *Opts
;
109 Opts
= _config
->Tree("Acquire::gpgv::Options");
113 for (; Opts
!= 0; Opts
= Opts
->Next
)
115 if (Opts
->Value
.empty() == true)
117 Args
[i
++] = Opts
->Value
.c_str();
119 std::clog
<< _("E: Argument list from Acquire::gpgv::Options too long. Exiting.") << std::endl
;
130 std::clog
<< "Preparing to exec: " << gpgvpath
;
131 for(unsigned int j
=0;Args
[j
] != NULL
; j
++)
132 std::clog
<< " " << Args
[j
];
133 std::clog
<< std::endl
;
135 int const nullfd
= open("/dev/null", O_RDONLY
);
137 // Redirect output to /dev/null; we read from the status fd
138 dup2(nullfd
, STDOUT_FILENO
);
139 dup2(nullfd
, STDERR_FILENO
);
140 // Redirect the pipe to the status fd (3)
143 putenv((char *)"LANG=");
144 putenv((char *)"LC_ALL=");
145 putenv((char *)"LC_MESSAGES=");
146 execvp(gpgvpath
.c_str(), (char **)Args
);
152 pipein
= fdopen(fd
[0], "r");
154 // Loop over the output of gpgv, and check the signatures.
155 size_t buffersize
= 64;
156 char *buffer
= (char *) malloc(buffersize
);
157 size_t bufferoff
= 0;
162 // Read a line. Sigh.
163 while ((c
= getc(pipein
)) != EOF
&& c
!= '\n')
165 if (bufferoff
== buffersize
)
166 buffer
= (char *) realloc(buffer
, buffersize
*= 2);
167 *(buffer
+bufferoff
) = c
;
170 if (bufferoff
== 0 && c
== EOF
)
172 *(buffer
+bufferoff
) = '\0';
175 std::clog
<< "Read: " << buffer
<< std::endl
;
177 // Push the data into three separate vectors, which
178 // we later concatenate. They're kept separate so
179 // if we improve the apt method communication stuff later
180 // it will be better.
181 if (strncmp(buffer
, GNUPGBADSIG
, sizeof(GNUPGBADSIG
)-1) == 0)
184 std::clog
<< "Got BADSIG! " << std::endl
;
185 BadSigners
.push_back(string(buffer
+sizeof(GNUPGPREFIX
)));
188 if (strncmp(buffer
, GNUPGNOPUBKEY
, sizeof(GNUPGNOPUBKEY
)-1) == 0)
191 std::clog
<< "Got NO_PUBKEY " << std::endl
;
192 NoPubKeySigners
.push_back(string(buffer
+sizeof(GNUPGPREFIX
)));
194 if (strncmp(buffer
, GNUPGNODATA
, sizeof(GNUPGBADSIG
)-1) == 0)
197 std::clog
<< "Got NODATA! " << std::endl
;
198 BadSigners
.push_back(string(buffer
+sizeof(GNUPGPREFIX
)));
200 if (strncmp(buffer
, GNUPGKEYEXPIRED
, sizeof(GNUPGKEYEXPIRED
)-1) == 0)
203 std::clog
<< "Got KEYEXPIRED! " << std::endl
;
204 WorthlessSigners
.push_back(string(buffer
+sizeof(GNUPGPREFIX
)));
206 if (strncmp(buffer
, GNUPGREVKEYSIG
, sizeof(GNUPGREVKEYSIG
)-1) == 0)
209 std::clog
<< "Got REVKEYSIG! " << std::endl
;
210 WorthlessSigners
.push_back(string(buffer
+sizeof(GNUPGPREFIX
)));
212 if (strncmp(buffer
, GNUPGGOODSIG
, sizeof(GNUPGGOODSIG
)-1) == 0)
214 char *sig
= buffer
+ sizeof(GNUPGPREFIX
);
215 char *p
= sig
+ sizeof("GOODSIG");
216 while (*p
&& isxdigit(*p
))
220 std::clog
<< "Got GOODSIG, key ID:" << sig
<< std::endl
;
221 GoodSigners
.push_back(string(sig
));
226 waitpid(pid
, &status
, 0);
229 std::clog
<< "gpgv exited\n";
232 if (WEXITSTATUS(status
) == 0)
234 if (GoodSigners
.empty())
235 return _("Internal error: Good signature, but could not determine key fingerprint?!");
238 else if (WEXITSTATUS(status
) == 1)
240 return _("At least one invalid signature was encountered.");
242 else if (WEXITSTATUS(status
) == 111)
244 ioprintf(ret
, _("Could not execute '%s' to verify signature (is gpgv installed?)"), gpgvpath
.c_str());
249 return _("Unknown error executing gpgv");
253 bool GPGVMethod::Fetch(FetchItem
*Itm
)
256 string Path
= Get
.Host
+ Get
.Path
; // To account for relative paths
258 vector
<string
> GoodSigners
;
259 vector
<string
> BadSigners
;
260 // a worthless signature is a expired or revoked one
261 vector
<string
> WorthlessSigners
;
262 vector
<string
> NoPubKeySigners
;
265 Res
.Filename
= Itm
->DestFile
;
268 // Run gpgv on file, extract contents and get the key ID of the signer
269 string msg
= VerifyGetSigners(Path
.c_str(), Itm
->DestFile
.c_str(),
270 GoodSigners
, BadSigners
, WorthlessSigners
,
272 if (GoodSigners
.empty() || !BadSigners
.empty() || !NoPubKeySigners
.empty())
275 // In this case, something bad probably happened, so we just go
276 // with what the other method gave us for an error message.
277 if (BadSigners
.empty() && WorthlessSigners
.empty() && NoPubKeySigners
.empty())
281 if (!BadSigners
.empty())
283 errmsg
+= _("The following signatures were invalid:\n");
284 for (vector
<string
>::iterator I
= BadSigners
.begin();
285 I
!= BadSigners
.end(); I
++)
286 errmsg
+= (*I
+ "\n");
288 if (!WorthlessSigners
.empty())
290 errmsg
+= _("The following signatures were invalid:\n");
291 for (vector
<string
>::iterator I
= WorthlessSigners
.begin();
292 I
!= WorthlessSigners
.end(); I
++)
293 errmsg
+= (*I
+ "\n");
295 if (!NoPubKeySigners
.empty())
297 errmsg
+= _("The following signatures couldn't be verified because the public key is not available:\n");
298 for (vector
<string
>::iterator I
= NoPubKeySigners
.begin();
299 I
!= NoPubKeySigners
.end(); I
++)
300 errmsg
+= (*I
+ "\n");
303 // this is only fatal if we have no good sigs or if we have at
304 // least one bad signature. good signatures and NoPubKey signatures
305 // happen easily when a file is signed with multiple signatures
306 if(GoodSigners
.empty() or !BadSigners
.empty())
307 return _error
->Error("%s", errmsg
.c_str());
310 // Just pass the raw output up, because passing it as a real data
311 // structure is too difficult with the method stuff. We keep it
312 // as three separate vectors for future extensibility.
313 Res
.GPGVOutput
= GoodSigners
;
314 Res
.GPGVOutput
.insert(Res
.GPGVOutput
.end(),BadSigners
.begin(),BadSigners
.end());
315 Res
.GPGVOutput
.insert(Res
.GPGVOutput
.end(),NoPubKeySigners
.begin(),NoPubKeySigners
.end());
318 if (_config
->FindB("Debug::Acquire::gpgv", false))
320 std::clog
<< "gpgv succeeded\n";
329 setlocale(LC_ALL
, "");