1 // -*- mode: cpp; mode: fold -*-
2 // Include Files /*{{{*/
11 #include <sys/types.h>
15 #include<apt-pkg/configuration.h>
16 #include<apt-pkg/error.h>
17 #include<apt-pkg/strutl.h>
18 #include<apt-pkg/fileutl.h>
19 #include<apt-pkg/gpgv.h>
23 static char * GenerateTemporaryFileTemplate(const char *basename
) /*{{{*/
26 std::string tmpdir
= GetTempDir();
27 strprintf(out
, "%s/%s.XXXXXX", tmpdir
.c_str(), basename
);
28 return strdup(out
.c_str());
31 // ExecGPGV - returns the command needed for verify /*{{{*/
32 // ---------------------------------------------------------------------
33 /* Generating the commandline for calling gpgv is somehow complicated as
34 we need to add multiple keyrings and user supplied options.
35 Also, as gpgv has no options to enforce a certain reduced style of
36 clear-signed files (=the complete content of the file is signed and
37 the content isn't encoded) we do a divide and conquer approach here
38 and split up the clear-signed file in message and signature for gpgv
40 void ExecGPGV(std::string
const &File
, std::string
const &FileGPG
,
41 int const &statusfd
, int fd
[2])
44 std::string
const gpgvpath
= _config
->Find("Dir::Bin::gpg", "/usr/bin/gpgv");
45 // FIXME: remove support for deprecated APT::GPGV setting
46 std::string
const trustedFile
= _config
->Find("APT::GPGV::TrustedKeyring", _config
->FindFile("Dir::Etc::Trusted"));
47 std::string
const trustedPath
= _config
->FindDir("Dir::Etc::TrustedParts");
49 bool const Debug
= _config
->FindB("Debug::Acquire::gpgv", false);
53 std::clog
<< "gpgv path: " << gpgvpath
<< std::endl
;
54 std::clog
<< "Keyring file: " << trustedFile
<< std::endl
;
55 std::clog
<< "Keyring path: " << trustedPath
<< std::endl
;
58 std::vector
<std::string
> keyrings
;
59 if (DirectoryExists(trustedPath
))
60 keyrings
= GetListOfFilesInDir(trustedPath
, "gpg", false, true);
61 if (RealFileExists(trustedFile
) == true)
62 keyrings
.push_back(trustedFile
);
64 std::vector
<const char *> Args
;
67 if (keyrings
.empty() == true)
69 // TRANSLATOR: %s is the trusted keyring parts directory
70 ioprintf(std::cerr
, _("No keyring installed in %s."),
71 _config
->FindDir("Dir::Etc::TrustedParts").c_str());
75 Args
.push_back(gpgvpath
.c_str());
76 Args
.push_back("--ignore-time-conflict");
81 Args
.push_back("--status-fd");
82 snprintf(statusfdstr
, sizeof(statusfdstr
), "%i", statusfd
);
83 Args
.push_back(statusfdstr
);
86 for (std::vector
<std::string
>::const_iterator K
= keyrings
.begin();
87 K
!= keyrings
.end(); ++K
)
89 Args
.push_back("--keyring");
90 Args
.push_back(K
->c_str());
93 Configuration::Item
const *Opts
;
94 Opts
= _config
->Tree("Acquire::gpgv::Options");
98 for (; Opts
!= 0; Opts
= Opts
->Next
)
100 if (Opts
->Value
.empty() == true)
102 Args
.push_back(Opts
->Value
.c_str());
106 enum { DETACHED
, CLEARSIGNED
} releaseSignature
= (FileGPG
!= File
) ? DETACHED
: CLEARSIGNED
;
107 std::vector
<std::string
> dataHeader
;
111 if (releaseSignature
== DETACHED
)
113 Args
.push_back(FileGPG
.c_str());
114 Args
.push_back(File
.c_str());
116 else // clear-signed file
118 sig
= GenerateTemporaryFileTemplate("apt.sig");
119 data
= GenerateTemporaryFileTemplate("apt.data");
120 if (sig
== NULL
|| data
== NULL
)
122 ioprintf(std::cerr
, "Couldn't create tempfile names for splitting up %s", File
.c_str());
126 int const sigFd
= mkstemp(sig
);
127 int const dataFd
= mkstemp(data
);
128 if (sigFd
== -1 || dataFd
== -1)
134 ioprintf(std::cerr
, "Couldn't create tempfiles for splitting up %s", File
.c_str());
139 signature
.OpenDescriptor(sigFd
, FileFd::WriteOnly
, true);
141 message
.OpenDescriptor(dataFd
, FileFd::WriteOnly
, true);
143 if (signature
.Failed() == true || message
.Failed() == true ||
144 SplitClearSignedFile(File
, &message
, &dataHeader
, &signature
) == false)
150 ioprintf(std::cerr
, "Splitting up %s into data and signature failed", File
.c_str());
154 Args
.push_back(data
);
157 Args
.push_back(NULL
);
161 std::clog
<< "Preparing to exec: " << gpgvpath
;
162 for (std::vector
<const char *>::const_iterator a
= Args
.begin(); *a
!= NULL
; ++a
)
163 std::clog
<< " " << *a
;
164 std::clog
<< std::endl
;
169 int const nullfd
= open("/dev/null", O_RDONLY
);
171 // Redirect output to /dev/null; we read from the status fd
172 if (statusfd
!= STDOUT_FILENO
)
173 dup2(nullfd
, STDOUT_FILENO
);
174 if (statusfd
!= STDERR_FILENO
)
175 dup2(nullfd
, STDERR_FILENO
);
176 // Redirect the pipe to the status fd (3)
177 dup2(fd
[1], statusfd
);
179 putenv((char *)"LANG=");
180 putenv((char *)"LC_ALL=");
181 putenv((char *)"LC_MESSAGES=");
184 if (releaseSignature
== DETACHED
)
186 execvp(gpgvpath
.c_str(), (char **) &Args
[0]);
187 ioprintf(std::cerr
, "Couldn't execute %s to check %s", Args
[0], File
.c_str());
192 //#define UNLINK_EXIT(X) exit(X)
193 #define UNLINK_EXIT(X) unlink(sig);unlink(data);exit(X)
195 // for clear-signed files we have created tempfiles we have to clean up
196 // and we do an additional check, so fork yet another time …
197 pid_t pid
= ExecFork();
199 ioprintf(std::cerr
, "Fork failed for %s to check %s", Args
[0], File
.c_str());
200 UNLINK_EXIT(EINTERNAL
);
205 dup2(fd
[1], statusfd
);
206 execvp(gpgvpath
.c_str(), (char **) &Args
[0]);
207 ioprintf(std::cerr
, "Couldn't execute %s to check %s", Args
[0], File
.c_str());
208 UNLINK_EXIT(EINTERNAL
);
211 // Wait and collect the error code - taken from WaitPid as we need the exact Status
213 while (waitpid(pid
,&Status
,0) != pid
)
217 ioprintf(std::cerr
, _("Waited for %s but it wasn't there"), "gpgv");
218 UNLINK_EXIT(EINTERNAL
);
221 // we don't need the files any longer
227 // check if it exit'ed normally …
228 if (WIFEXITED(Status
) == false)
230 ioprintf(std::cerr
, _("Sub-process %s exited unexpectedly"), "gpgv");
234 // … and with a good exit code
235 if (WEXITSTATUS(Status
) != 0)
237 ioprintf(std::cerr
, _("Sub-process %s returned an error code (%u)"), "gpgv", WEXITSTATUS(Status
));
238 exit(WEXITSTATUS(Status
));
244 exit(EINTERNAL
); // unreachable safe-guard
247 // SplitClearSignedFile - split message into data/signature /*{{{*/
248 bool SplitClearSignedFile(std::string
const &InFile
, FileFd
* const ContentFile
,
249 std::vector
<std::string
> * const ContentHeader
, FileFd
* const SignatureFile
)
251 FILE *in
= fopen(InFile
.c_str(), "r");
253 return _error
->Errno("fopen", "can not open %s", InFile
.c_str());
255 bool found_message_start
= false;
256 bool found_message_end
= false;
257 bool skip_until_empty_line
= false;
258 bool found_signature
= false;
259 bool first_line
= true;
263 while (getline(&buf
, &buf_size
, in
) != -1)
266 if (found_message_start
== false)
268 if (strcmp(buf
, "-----BEGIN PGP SIGNED MESSAGE-----") == 0)
270 found_message_start
= true;
271 skip_until_empty_line
= true;
274 else if (skip_until_empty_line
== true)
276 if (strlen(buf
) == 0)
277 skip_until_empty_line
= false;
278 // save "Hash" Armor Headers, others aren't allowed
279 else if (ContentHeader
!= NULL
&& strncmp(buf
, "Hash: ", strlen("Hash: ")) == 0)
280 ContentHeader
->push_back(buf
);
282 else if (found_signature
== false)
284 if (strcmp(buf
, "-----BEGIN PGP SIGNATURE-----") == 0)
286 found_signature
= true;
287 found_message_end
= true;
288 if (SignatureFile
!= NULL
)
290 SignatureFile
->Write(buf
, strlen(buf
));
291 SignatureFile
->Write("\n", 1);
294 else if (found_message_end
== false) // we are in the message block
296 // we don't have any fields which need dash-escaped,
297 // but implementations are free to encode all lines …
298 char const * dashfree
= buf
;
299 if (strncmp(dashfree
, "- ", 2) == 0)
301 if(first_line
== true) // first line does not need a newline
303 else if (ContentFile
!= NULL
)
304 ContentFile
->Write("\n", 1);
307 if (ContentFile
!= NULL
)
308 ContentFile
->Write(dashfree
, strlen(dashfree
));
311 else if (found_signature
== true)
313 if (SignatureFile
!= NULL
)
315 SignatureFile
->Write(buf
, strlen(buf
));
316 SignatureFile
->Write("\n", 1);
318 if (strcmp(buf
, "-----END PGP SIGNATURE-----") == 0)
319 found_signature
= false; // look for other signatures
321 // all the rest is whitespace, unsigned garbage or additional message blocks we ignore
325 if (found_signature
== true)
326 return _error
->Error("Signature in file %s wasn't closed", InFile
.c_str());
328 // if we haven't found any of them, this an unsigned file,
329 // so don't generate an error, but splitting was unsuccessful none-the-less
330 if (first_line
== true && found_message_start
== false && found_message_end
== false)
332 // otherwise one missing indicates a syntax error
333 else if (first_line
== true || found_message_start
== false || found_message_end
== false)
334 return _error
->Error("Splitting of file %s failed as it doesn't contain all expected parts %i %i %i", InFile
.c_str(), first_line
, found_message_start
, found_message_end
);
339 bool OpenMaybeClearSignedFile(std::string
const &ClearSignedFileName
, FileFd
&MessageFile
) /*{{{*/
341 char * const message
= GenerateTemporaryFileTemplate("fileutl.message");
342 int const messageFd
= mkstemp(message
);
346 return _error
->Errno("mkstemp", "Couldn't create temporary file to work with %s", ClearSignedFileName
.c_str());
348 // we have the fd, thats enough for us
352 MessageFile
.OpenDescriptor(messageFd
, FileFd::ReadWrite
, true);
353 if (MessageFile
.Failed() == true)
354 return _error
->Error("Couldn't open temporary file to work with %s", ClearSignedFileName
.c_str());
356 _error
->PushToStack();
357 bool const splitDone
= SplitClearSignedFile(ClearSignedFileName
, &MessageFile
, NULL
, NULL
);
358 bool const errorDone
= _error
->PendingError();
359 _error
->MergeWithStack();
360 if (splitDone
== false)
364 if (errorDone
== true)
367 // we deal with an unsigned file
368 MessageFile
.Open(ClearSignedFileName
, FileFd::ReadOnly
);
372 if (MessageFile
.Seek(0) == false)
373 return _error
->Errno("lseek", "Unable to seek back in message for file %s", ClearSignedFileName
.c_str());
376 return MessageFile
.Failed() == false;