summaryrefslogtreecommitdiff
path: root/apt-pkg/contrib/gpgv.cc
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2013-03-15 14:29:46 +0100
committerDavid Kalnischkies <kalnischkies@gmail.com>2013-03-15 14:29:46 +0100
commit99ed26d32226f0dffe5a37fb78c5588f9d9ecfd5 (patch)
treed45910c553d7443d046d976941859a7e8f362f5d /apt-pkg/contrib/gpgv.cc
parent2f5b615169aef2d9c74bb337af229dee2dce595e (diff)
* apt-pkg/contrib/gpgv.cc:
- ExecGPGV is a method which should never return, so mark it as such and fix the inconsistency of returning in error cases
Diffstat (limited to 'apt-pkg/contrib/gpgv.cc')
-rw-r--r--apt-pkg/contrib/gpgv.cc22
1 files changed, 16 insertions, 6 deletions
diff --git a/apt-pkg/contrib/gpgv.cc b/apt-pkg/contrib/gpgv.cc
index 9b008dd4f..9760bd21f 100644
--- a/apt-pkg/contrib/gpgv.cc
+++ b/apt-pkg/contrib/gpgv.cc
@@ -25,20 +25,28 @@ using namespace std;
// ---------------------------------------------------------------------
/* Generating the commandline for calling gpgv is somehow complicated as
we need to add multiple keyrings and user supplied options. */
-bool ExecGPGV(std::string const &File, std::string const &FileGPG,
+void ExecGPGV(std::string const &File, std::string const &FileGPG,
int const &statusfd, int fd[2])
{
+ #define EINTERNAL 111
+
if (File == FileGPG)
{
#define SIGMSG "-----BEGIN PGP SIGNED MESSAGE-----\n"
char buffer[sizeof(SIGMSG)];
FILE* gpg = fopen(File.c_str(), "r");
if (gpg == NULL)
- return _error->Errno("RunGPGV", _("Could not open file %s"), File.c_str());
+ {
+ ioprintf(std::cerr, _("Could not open file %s"), File.c_str());
+ exit(EINTERNAL);
+ }
char const * const test = fgets(buffer, sizeof(buffer), gpg);
fclose(gpg);
if (test == NULL || strcmp(buffer, SIGMSG) != 0)
- return _error->Error(_("File %s doesn't start with a clearsigned message"), File.c_str());
+ {
+ ioprintf(std::cerr, _("File %s doesn't start with a clearsigned message"), File.c_str());
+ exit(EINTERNAL);
+ }
#undef SIGMSG
}
@@ -69,8 +77,9 @@ bool ExecGPGV(std::string const &File, std::string const &FileGPG,
if (keyrings.empty() == true)
{
// TRANSLATOR: %s is the trusted keyring parts directory
- return _error->Error(_("No keyring installed in %s."),
- _config->FindDir("Dir::Etc::TrustedParts").c_str());
+ ioprintf(std::cerr, _("No keyring installed in %s."),
+ _config->FindDir("Dir::Etc::TrustedParts").c_str());
+ exit(EINTERNAL);
}
Args.push_back(gpgvpath.c_str());
@@ -133,6 +142,7 @@ bool ExecGPGV(std::string const &File, std::string const &FileGPG,
}
execvp(gpgvpath.c_str(), (char **) &Args[0]);
- return true;
+ ioprintf(std::cerr, "Couldn't execute %s to check %s", Args[0], File.c_str());
+ exit(EINTERNAL);
}
/*}}}*/