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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
/**
* @file
* Identify the hash algorithm from a PGP signature
*
* @authors
* Copyright (C) 2017-2023 Richard Russon <rich@flatcap.org>
* Copyright (C) 2020-2021 Pietro Cerutti <gahr@gahr.ch>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @page crypt_pgpmicalg Identify the hash algorithm from a PGP signature
*
* Identify the Message Integrity Check algorithm (micalg) from a PGP signature
*/
#include "config.h"
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include "mutt/lib.h"
#include "core/lib.h"
#include "pgpmicalg.h"
#include "handler.h"
#include "pgppacket.h"
/**
* struct HashAlgorithm - PGP Hashing algorithm
*/
struct HashAlgorithm
{
short id; ///< Algorithm Id
const char *name; ///< Algorithm name
};
/**
* HashAlgorithms - PGP Hashing algorithms
*/
static const struct HashAlgorithm HashAlgorithms[] = {
{ 1, "pgp-md5" }, { 2, "pgp-sha1" }, { 3, "pgp-ripemd160" },
{ 5, "pgp-md2" }, { 6, "pgp-tiger192" }, { 7, "pgp-haval-5-160" },
{ 8, "pgp-sha256" }, { 9, "pgp-sha384" }, { 10, "pgp-sha512" },
{ 11, "pgp-sha224" }, { -1, NULL },
};
/**
* pgp_hash_to_micalg - Lookup a hash name, given its id
* @param id ID
* @retval ptr Name of hash algorithm
*/
static const char *pgp_hash_to_micalg(short id)
{
for (int i = 0; HashAlgorithms[i].id >= 0; i++)
if (HashAlgorithms[i].id == id)
return HashAlgorithms[i].name;
return "x-unknown";
}
/**
* pgp_dearmor - Unwrap an armoured PGP block
* @param fp_in File to read from
* @param fp_out File to write to
*/
static void pgp_dearmor(FILE *fp_in, FILE *fp_out)
{
char line[8192] = { 0 };
char *r = NULL;
struct State state = { 0 };
state.fp_in = fp_in;
state.fp_out = fp_out;
/* find the beginning of ASCII armor */
while ((r = fgets(line, sizeof(line), fp_in)))
{
if (mutt_strn_equal(line, "-----BEGIN", 10))
break;
}
if (!r)
{
mutt_debug(LL_DEBUG1, "Can't find begin of ASCII armor\n");
return;
}
/* skip the armor header */
while ((r = fgets(line, sizeof(line), fp_in)))
{
SKIPWS(r);
if (*r == '\0')
break;
}
if (!r)
{
mutt_debug(LL_DEBUG1, "Armor header doesn't end\n");
return;
}
/* actual data starts here */
LOFF_T start = ftello(fp_in);
if (start < 0)
return;
/* find the checksum */
while ((r = fgets(line, sizeof(line), fp_in)))
{
if ((*line == '=') || mutt_strn_equal(line, "-----END", 8))
break;
}
if (!r)
{
mutt_debug(LL_DEBUG1, "Can't find end of ASCII armor\n");
return;
}
LOFF_T end = ftello(fp_in) - strlen(line);
if (end < start)
{
mutt_debug(LL_DEBUG1, "end < start???\n");
return;
}
if (!mutt_file_seek(fp_in, start, SEEK_SET))
{
return;
}
mutt_decode_base64(&state, end - start, false, ICONV_T_INVALID);
}
/**
* pgp_mic_from_packet - Get the hash algorithm from a PGP packet
* @param p PGP packet
* @param len Length of packet
* @retval num Hash algorithm id
*/
static short pgp_mic_from_packet(unsigned char *p, size_t len)
{
/* is signature? */
if ((p[0] & 0x3f) != PT_SIG)
{
mutt_debug(LL_DEBUG1, "tag = %d, want %d\n", p[0] & 0x3f, PT_SIG);
return -1;
}
if ((len >= 18) && (p[1] == 3))
{
/* version 3 signature */
return (short) p[17];
}
else if ((len >= 5) && (p[1] == 4))
{
/* version 4 signature */
return (short) p[4];
}
else
{
mutt_debug(LL_DEBUG1, "Bad signature packet\n");
return -1;
}
}
/**
* pgp_find_hash - Find the hash algorithm of a file
* @param fname File to read
* @retval num Hash algorithm id
*/
static short pgp_find_hash(const char *fname)
{
size_t l;
short rc = -1;
FILE *fp_in = NULL;
FILE *fp_out = mutt_file_mkstemp();
if (!fp_out)
{
mutt_perror(_("Can't create temporary file"));
goto bye;
}
fp_in = mutt_file_fopen(fname, "r");
if (!fp_in)
{
mutt_perror("%s", fname);
goto bye;
}
pgp_dearmor(fp_in, fp_out);
rewind(fp_out);
unsigned char *p = pgp_read_packet(fp_out, &l);
if (p)
{
rc = pgp_mic_from_packet(p, l);
}
else
{
mutt_debug(LL_DEBUG1, "No packet\n");
}
bye:
mutt_file_fclose(&fp_in);
mutt_file_fclose(&fp_out);
pgp_release_packet();
return rc;
}
/**
* pgp_micalg - Find the hash algorithm of a file
* @param fname File to read
* @retval ptr Name of hash algorithm
*/
const char *pgp_micalg(const char *fname)
{
return pgp_hash_to_micalg(pgp_find_hash(fname));
}
|