X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=crypt-gpgme.c;h=a147693c30e44b2c50fe3c1f3f1add144ed92484;hp=4932abd82966b30d99597c789ad1e092a8336c38;hb=98ccd0a3050f3dda6c8995e1894b46b8cb7f6ba5;hpb=0d23a37d51884266b694d3a94300ddb5c3faf4fa diff --git a/crypt-gpgme.c b/crypt-gpgme.c index 4932abd..a147693 100644 --- a/crypt-gpgme.c +++ b/crypt-gpgme.c @@ -30,6 +30,7 @@ #include "lib/mem.h" #include "lib/intl.h" #include "lib/str.h" +#include "lib/debug.h" #include #include @@ -112,10 +113,10 @@ static gpgme_key_t signature_key = NULL; * General helper functions. */ -/* return true when S pints to a didgit or letter. */ +/* return true when S points to a didgit or letter. */ static int digit_or_letter (const unsigned char *s) { - return ((*s >= '0' && *s < '9') + return ((*s >= '0' && *s <= '9') || (*s >= 'A' && *s <= 'Z') || (*s >= 'a' && *s <= 'z')); } @@ -294,11 +295,11 @@ static int crypt_id_matches_addr (ADDRESS * addr, ADDRESS * u_addr, rv |= CRYPT_KV_STRONGID; if (addr->mailbox && u_addr->mailbox - && mutt_strcasecmp (addr->mailbox, u_addr->mailbox) == 0) + && safe_strcasecmp (addr->mailbox, u_addr->mailbox) == 0) rv |= CRYPT_KV_ADDR; if (addr->personal && u_addr->personal - && mutt_strcasecmp (addr->personal, u_addr->personal) == 0) + && safe_strcasecmp (addr->personal, u_addr->personal) == 0) rv |= CRYPT_KV_STRING; return rv; @@ -1311,7 +1312,7 @@ static int verify_one (BODY * sigbdy, STATE * s, gpgme_release (ctx); state_attach_puts (_("[-- End signature information --]\n\n"), s); - dprint (1, (debugfile, "verify_one: returning %d.\n", badsig)); + debug_print (1, ("returning %d.\n", badsig)); return badsig ? 1 : anywarn ? 2 : 0; } @@ -1655,7 +1656,7 @@ static int pgp_check_traditional_one_body (FILE * fp, BODY * b, } while (fgets (buf, sizeof (buf), tfp)) { - if (!mutt_strncmp ("-----BEGIN PGP ", buf, 15)) { + if (!safe_strncmp ("-----BEGIN PGP ", buf, 15)) { if (!mutt_strcmp ("MESSAGE-----\n", buf + 15)) enc = 1; else if (!mutt_strcmp ("SIGNED MESSAGE-----\n", buf + 15)) @@ -1778,7 +1779,7 @@ void pgp_gpgme_application_handler (BODY * m, STATE * s) char body_charset[STRING]; /* Only used for clearsigned messages. */ - dprint (2, (debugfile, "Entering pgp_application_pgp handler\n")); + debug_print (2, ("Entering pgp_application_pgp handler\n")); /* For clearsigned messages we won't be able to get a character set but we know that this may only be text thus we assume Latin-1 @@ -1797,7 +1798,7 @@ void pgp_gpgme_application_handler (BODY * m, STATE * s) bytes -= (offset - last_pos); /* don't rely on mutt_strlen(buf) */ last_pos = offset; - if (!mutt_strncmp ("-----BEGIN PGP ", buf, 15)) { + if (!safe_strncmp ("-----BEGIN PGP ", buf, 15)) { clearsign = 0; start_pos = last_pos; @@ -1983,7 +1984,7 @@ void pgp_gpgme_application_handler (BODY * m, STATE * s) " of PGP message! --]\n\n"), s); return; } - dprint (2, (debugfile, "Leaving pgp_application_pgp handler\n")); + debug_print (2, ("Leaving pgp_application_pgp handler\n")); } /* @@ -1999,7 +2000,7 @@ void pgp_gpgme_encrypted_handler (BODY * a, STATE * s) BODY *orig_body = a; int is_signed; - dprint (2, (debugfile, "Entering pgp_encrypted handler\n")); + debug_print (2, ("Entering pgp_encrypted handler\n")); a = a->parts; if (!a || a->type != TYPEAPPLICATION || !a->subtype || ascii_strcasecmp ("pgp-encrypted", a->subtype) @@ -2064,7 +2065,7 @@ void pgp_gpgme_encrypted_handler (BODY * a, STATE * s) fclose (fpout); mutt_unlink (tempfile); - dprint (2, (debugfile, "Leaving pgp_encrypted handler\n")); + debug_print (2, ("Leaving pgp_encrypted handler\n")); } /* Support for application/smime */ @@ -2076,7 +2077,7 @@ void smime_gpgme_application_handler (BODY * a, STATE * s) int is_signed; - dprint (2, (debugfile, "Entering smime_encrypted handler\n")); + debug_print (2, ("Entering smime_encrypted handler\n")); a->warnsig = 0; mutt_mktemp (tempfile); @@ -2133,7 +2134,7 @@ void smime_gpgme_application_handler (BODY * a, STATE * s) fclose (fpout); mutt_unlink (tempfile); - dprint (2, (debugfile, "Leaving smime_encrypted handler\n")); + debug_print (2, ("Leaving smime_encrypted handler\n")); } @@ -2367,10 +2368,10 @@ static int _crypt_compare_address (const void *a, const void *b) crypt_key_t **t = (crypt_key_t **) b; int r; - if ((r = mutt_strcasecmp ((*s)->uid, (*t)->uid))) + if ((r = safe_strcasecmp ((*s)->uid, (*t)->uid))) return r > 0; else - return mutt_strcasecmp (crypt_keyid (*s), crypt_keyid (*t)) > 0; + return safe_strcasecmp (crypt_keyid (*s), crypt_keyid (*t)) > 0; } static int crypt_compare_address (const void *a, const void *b) @@ -2387,10 +2388,10 @@ static int _crypt_compare_keyid (const void *a, const void *b) crypt_key_t **t = (crypt_key_t **) b; int r; - if ((r = mutt_strcasecmp (crypt_keyid (*s), crypt_keyid (*t)))) + if ((r = safe_strcasecmp (crypt_keyid (*s), crypt_keyid (*t)))) return r > 0; else - return mutt_strcasecmp ((*s)->uid, (*t)->uid) > 0; + return safe_strcasecmp ((*s)->uid, (*t)->uid) > 0; } static int crypt_compare_keyid (const void *a, const void *b) @@ -2416,7 +2417,7 @@ static int _crypt_compare_date (const void *a, const void *b) if (ts < tt) return 0; - return mutt_strcasecmp ((*s)->uid, (*t)->uid) > 0; + return safe_strcasecmp ((*s)->uid, (*t)->uid) > 0; } static int crypt_compare_date (const void *a, const void *b) @@ -2461,9 +2462,9 @@ static int _crypt_compare_trust (const void *a, const void *b) if (ts < tt) return 0; - if ((r = mutt_strcasecmp ((*s)->uid, (*t)->uid))) + if ((r = safe_strcasecmp ((*s)->uid, (*t)->uid))) return r > 0; - return (mutt_strcasecmp (crypt_keyid ((*s)), crypt_keyid ((*t)))) > 0; + return (safe_strcasecmp (crypt_keyid ((*s)), crypt_keyid ((*t)))) > 0; } static int crypt_compare_trust (const void *a, const void *b) @@ -2960,7 +2961,7 @@ static void verify_key (crypt_key_t * key) mutt_mktemp (tempfile); if (!(fp = safe_fopen (tempfile, "w"))) { - mutt_perror _("Can't create temporary file"); + mutt_perror (_("Can't create temporary file")); return; } @@ -3455,16 +3456,13 @@ static crypt_key_t *crypt_getkeybyaddr (ADDRESS * a, short abilities, if (!keys) return NULL; - dprint (5, (debugfile, "crypt_getkeybyaddr: looking for %s <%s>.", - a->personal, a->mailbox)); + debug_print (5, ("looking for %s <%s>.\n", a->personal, a->mailbox)); for (k = keys; k; k = k->next) { - dprint (5, (debugfile, " looking at key: %s `%.15s'\n", - crypt_keyid (k), k->uid)); + debug_print (5, (" looking at key: %s `%.15s'\n", crypt_keyid (k), k->uid)); if (abilities && !(k->flags & abilities)) { - dprint (5, (debugfile, " insufficient abilities: Has %x, want %x\n", - k->flags, abilities)); + debug_print (5, (" insufficient abilities: Has %x, want %x\n", k->flags, abilities)); continue; } @@ -3568,19 +3566,18 @@ static crypt_key_t *crypt_getkeybystr (char *p, short abilities, continue; match = 0; - dprint (5, (debugfile, "crypt_getkeybystr: matching \"%s\" against " - "key %s, \"%s\": ", p, crypt_keyid (k), k->uid)); + debug_print (5, ("matching \"%s\" against " "key %s, \"%s\":\n", p, crypt_keyid (k), k->uid)); - if (!*p || !mutt_strcasecmp (p, crypt_keyid (k)) - || (!mutt_strncasecmp (p, "0x", 2) - && !mutt_strcasecmp (p + 2, crypt_keyid (k))) + if (!*p || !safe_strcasecmp (p, crypt_keyid (k)) + || (!safe_strncasecmp (p, "0x", 2) + && !safe_strcasecmp (p + 2, crypt_keyid (k))) || (option (OPTPGPLONGIDS) - && !mutt_strncasecmp (p, "0x", 2) - && !mutt_strcasecmp (p + 2, crypt_keyid (k) + 8)) - || mutt_stristr (k->uid, p)) { + && !safe_strncasecmp (p, "0x", 2) + && !safe_strcasecmp (p + 2, crypt_keyid (k) + 8)) + || str_isstr (k->uid, p)) { crypt_key_t *tmp; - dprint (5, (debugfile, "match.\n")); + debug_print (5, ("match.\n")); *matches_endp = tmp = crypt_copy_key (k); matches_endp = &tmp->next; @@ -3623,7 +3620,7 @@ static crypt_key_t *crypt_ask_for_key (char *tag, if (whatfor) { for (l = id_defaults; l; l = l->next) - if (!mutt_strcasecmp (whatfor, l->what)) { + if (!safe_strcasecmp (whatfor, l->what)) { strfcpy (resp, NONULL (l->dflt), sizeof (resp)); break; } @@ -3637,7 +3634,7 @@ static crypt_key_t *crypt_ask_for_key (char *tag, if (whatfor) { if (l) - mutt_str_replace (&l->dflt, resp); + str_replace (&l->dflt, resp); else { l = safe_malloc (sizeof (struct crypt_cache)); l->next = id_defaults; @@ -3853,7 +3850,7 @@ static int gpgme_send_menu (HEADER * msg, int *redraw, int is_smime) is_smime ? APPLICATION_SMIME : APPLICATION_PGP, NULL))) { snprintf (input_signas, sizeof (input_signas), "0x%s", crypt_keyid (p)); - mutt_str_replace (is_smime ? &SmimeDefaultKey : &PgpSignAs, + str_replace (is_smime ? &SmimeDefaultKey : &PgpSignAs, input_signas); crypt_free_key (&p);