]>
Commit | Line | Data |
---|---|---|
2f5b6151 DK |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
3 | /* ###################################################################### | |
4 | ||
5 | Helpers to deal with gpgv better and more easily | |
6 | ||
7 | ##################################################################### */ | |
8 | /*}}}*/ | |
9 | #ifndef CONTRIB_GPGV_H | |
10 | #define CONTRIB_GPGV_H | |
11 | ||
453b82a3 DK |
12 | #include <apt-pkg/macros.h> |
13 | ||
2f5b6151 | 14 | #include <string> |
2d3fe9cf | 15 | #include <vector> |
2f5b6151 | 16 | |
453b82a3 | 17 | #ifndef APT_10_CLEANER_HEADERS |
f1828b69 | 18 | #include <apt-pkg/fileutl.h> |
99ed26d3 | 19 | #endif |
2f5b6151 | 20 | |
453b82a3 DK |
21 | class FileFd; |
22 | ||
99ed26d3 DK |
23 | /** \brief generates and run the command to verify a file with gpgv |
24 | * | |
25 | * If File and FileSig specify the same file it is assumed that we | |
ae99ce2e DK |
26 | * deal with a clear-signed message. Note that the method will accept |
27 | * and validate files which include additional (unsigned) messages | |
28 | * without complaining. Do NOT open files accepted by this method | |
29 | * for reading. Use #OpenMaybeClearSignedFile to access the message | |
30 | * instead to ensure you are only reading signed data. | |
31 | * | |
1e3f4083 | 32 | * The method does not return, but has some notable exit-codes: |
ae99ce2e DK |
33 | * 111 signals an internal error like the inability to execute gpgv, |
34 | * 112 indicates a clear-signed file which doesn't include a message, | |
35 | * which can happen if APT is run while on a network requiring | |
36 | * authentication before usage (e.g. in hotels) | |
37 | * All other exit-codes are passed-through from gpgv. | |
99ed26d3 DK |
38 | * |
39 | * @param File is the message (unsigned or clear-signed) | |
40 | * @param FileSig is the signature (detached or clear-signed) | |
41 | */ | |
42 | void ExecGPGV(std::string const &File, std::string const &FileSig, | |
453b82a3 | 43 | int const &statusfd, int fd[2]) APT_NORETURN; |
a02db58f | 44 | inline APT_NORETURN void ExecGPGV(std::string const &File, std::string const &FileSig, |
2f5b6151 DK |
45 | int const &statusfd = -1) { |
46 | int fd[2]; | |
99ed26d3 | 47 | ExecGPGV(File, FileSig, statusfd, fd); |
d3e8fbb3 | 48 | } |
99ed26d3 | 49 | |
2d3fe9cf DK |
50 | /** \brief Split an inline signature into message and signature |
51 | * | |
52 | * Takes a clear-signed message and puts the first signed message | |
53 | * in the content file and all signatures following it into the | |
54 | * second. Unsigned messages, additional messages as well as | |
55 | * whitespaces are discarded. The resulting files are suitable to | |
56 | * be checked with gpgv. | |
57 | * | |
b408e4ad DK |
58 | * If a FileFd pointers is NULL it will not be used and the content |
59 | * which would have been written to it is silently discarded. | |
2d3fe9cf | 60 | * |
f1828b69 DK |
61 | * The content of the split files is undefined if the splitting was |
62 | * unsuccessful. | |
63 | * | |
64 | * Note that trying to split an unsigned file will fail, but | |
65 | * not generate an error message. | |
66 | * | |
2d3fe9cf | 67 | * @param InFile is the clear-signed file |
b408e4ad | 68 | * @param ContentFile is the FileFd the message will be written to |
2d3fe9cf | 69 | * @param ContentHeader is a list of all required Amored Headers for the message |
b408e4ad | 70 | * @param SignatureFile is the FileFd all signatures will be written to |
f1828b69 | 71 | * @return true if the splitting was successful, false otherwise |
2d3fe9cf | 72 | */ |
b408e4ad DK |
73 | bool SplitClearSignedFile(std::string const &InFile, FileFd * const ContentFile, |
74 | std::vector<std::string> * const ContentHeader, FileFd * const SignatureFile); | |
2d3fe9cf | 75 | |
f1828b69 DK |
76 | /** \brief open a file which might be clear-signed |
77 | * | |
78 | * This method tries to extract the (signed) message of a file. | |
79 | * If the file isn't signed it will just open the given filename. | |
80 | * Otherwise the message is extracted to a temporary file which | |
81 | * will be opened instead. | |
82 | * | |
83 | * @param ClearSignedFileName is the name of the file to open | |
84 | * @param[out] MessageFile is the FileFd in which the file will be opened | |
85 | * @return true if opening was successful, otherwise false | |
86 | */ | |
87 | bool OpenMaybeClearSignedFile(std::string const &ClearSignedFileName, FileFd &MessageFile); | |
88 | ||
2f5b6151 | 89 | #endif |