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
|
/**
* @file
* PGP Key Sorting
*
* @authors
* Copyright (C) 2024 Richard Russon <rich@flatcap.org>
*
* @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_sort_pgp PGP Key Sorting
*
* PGP Key Sorting
*/
#include "config.h"
#include <locale.h>
#include <stdbool.h>
#include "mutt/lib.h"
#include "config/lib.h"
#include "core/lib.h"
#include "lib.h"
#include "pgp.h"
#include "pgplib.h"
#include "sort.h"
/**
* pgp_sort_address - Compare two keys by their addresses - Implements ::sort_t - @ingroup sort_api
*/
static int pgp_sort_address(const void *a, const void *b, void *sdata)
{
struct PgpUid const *s = *(struct PgpUid const *const *) a;
struct PgpUid const *t = *(struct PgpUid const *const *) b;
const bool sort_reverse = *(bool *) sdata;
int rc = mutt_istr_cmp(s->addr, t->addr);
if (rc != 0)
goto done;
rc = mutt_istr_cmp(pgp_fpr_or_lkeyid(s->parent), pgp_fpr_or_lkeyid(t->parent));
done:
return sort_reverse ? -rc : rc;
}
/**
* pgp_sort_date - Compare two keys by their dates - Implements ::sort_t - @ingroup sort_api
*/
static int pgp_sort_date(const void *a, const void *b, void *sdata)
{
struct PgpUid const *s = *(struct PgpUid const *const *) a;
struct PgpUid const *t = *(struct PgpUid const *const *) b;
const bool sort_reverse = *(bool *) sdata;
int rc = mutt_numeric_cmp(s->parent->gen_time, t->parent->gen_time);
if (rc != 0)
goto done;
rc = mutt_istr_cmp(s->addr, t->addr);
done:
return sort_reverse ? -rc : rc;
}
/**
* pgp_sort_keyid - Compare two keys by their IDs - Implements ::sort_t - @ingroup sort_api
*/
static int pgp_sort_keyid(const void *a, const void *b, void *sdata)
{
struct PgpUid const *s = *(struct PgpUid const *const *) a;
struct PgpUid const *t = *(struct PgpUid const *const *) b;
const bool sort_reverse = *(bool *) sdata;
int rc = mutt_istr_cmp(pgp_fpr_or_lkeyid(s->parent), pgp_fpr_or_lkeyid(t->parent));
if (rc != 0)
goto done;
rc = mutt_istr_cmp(s->addr, t->addr);
done:
return sort_reverse ? -rc : rc;
}
/**
* pgp_sort_trust - Compare two keys by their trust levels - Implements ::sort_t - @ingroup sort_api
*/
static int pgp_sort_trust(const void *a, const void *b, void *sdata)
{
struct PgpUid const *s = *(struct PgpUid const *const *) a;
struct PgpUid const *t = *(struct PgpUid const *const *) b;
const bool sort_reverse = *(bool *) sdata;
int rc = mutt_numeric_cmp(s->parent->flags & KEYFLAG_RESTRICTIONS,
t->parent->flags & KEYFLAG_RESTRICTIONS);
if (rc != 0)
goto done;
// Note: reversed
rc = mutt_numeric_cmp(t->trust, s->trust);
if (rc != 0)
goto done;
// Note: reversed
rc = mutt_numeric_cmp(t->parent->keylen, s->parent->keylen);
if (rc != 0)
goto done;
// Note: reversed
rc = mutt_numeric_cmp(t->parent->gen_time, s->parent->gen_time);
if (rc != 0)
goto done;
rc = mutt_istr_cmp(s->addr, t->addr);
if (rc != 0)
goto done;
rc = mutt_istr_cmp(pgp_fpr_or_lkeyid(s->parent), pgp_fpr_or_lkeyid(t->parent));
done:
return sort_reverse ? -rc : rc;
}
/**
* pgp_sort_keys - Sort an array of PGP keys
* @param pua Array to sort
*
* Sort PGP keys according to `$pgp_sort_keys`
*/
void pgp_sort_keys(struct PgpUidArray *pua)
{
if (!pua)
return;
sort_t fn = NULL;
short c_pgp_sort_keys = cs_subset_sort(NeoMutt->sub, "pgp_key_sort");
switch (c_pgp_sort_keys & SORT_MASK)
{
case KEY_SORT_ADDRESS:
fn = pgp_sort_address;
break;
case KEY_SORT_DATE:
fn = pgp_sort_date;
break;
case KEY_SORT_KEYID:
fn = pgp_sort_keyid;
break;
case KEY_SORT_TRUST:
default:
fn = pgp_sort_trust;
break;
}
if (ARRAY_SIZE(pua) > 1)
{
bool sort_reverse = c_pgp_sort_keys & SORT_REVERSE;
ARRAY_SORT(pua, fn, &sort_reverse);
}
}
|