X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_idna.c;h=918aa26a367e67d84442c2d5520011185c49358a;hp=82796c838b9b5b29222c71fe2940c48cbb92e193;hb=98f62b5fcbd680fd5214ee85e1635b84322cbdd1;hpb=ba5e3af4ea19e1d20c80941c077039871ec84258 diff --git a/mutt_idna.c b/mutt_idna.c index 82796c8..918aa26 100644 --- a/mutt_idna.c +++ b/mutt_idna.c @@ -7,39 +7,21 @@ * please see the file GPL in the top level source directory. */ -#if HAVE_CONFIG_H -# include "config.h" +#include + +#ifdef HAVE_LIBIDN +#include #endif #include "mutt.h" #include "charset.h" #include "mutt_idna.h" -#include "lib/mem.h" -#include "lib/intl.h" -#include "lib/str.h" -#include "lib/debug.h" - /* The low-level interface we use. */ -#ifndef HAVE_LIBIDN - -int mutt_idna_to_local (const char *in, char **out, int flags) -{ - *out = str_dup (in); - return 1; -} - -int mutt_local_to_idna (const char *in, char **out) -{ - *out = str_dup (in); - return 0; -} - -#else - -int mutt_idna_to_local (const char *in, char **out, int flags) +static int mutt_idna_to_local(const char *in, char **out, bool nonreverseok) { +#ifdef HAVE_LIBIDN *out = NULL; if (!option (OPTUSEIDN)) @@ -51,7 +33,7 @@ int mutt_idna_to_local (const char *in, char **out, int flags) /* Is this the right function? Interesting effects with some bad identifiers! */ if (idna_to_unicode_8z8z (in, out, 1) != IDNA_SUCCESS) goto notrans; - if (mutt_convert_string (out, "utf-8", Charset, M_ICONV_HOOK_TO) == -1) + if (mutt_convert_string (out, "utf-8", mod_cset.charset, M_ICONV_HOOK_TO) == -1) goto notrans; /* @@ -59,22 +41,21 @@ int mutt_idna_to_local (const char *in, char **out, int flags) * domain name. */ - if ((flags & MI_MAY_BE_IRREVERSIBLE) == 0) { + if (nonreverseok) { int irrev = 0; char *t2 = NULL; - char *tmp = str_dup (*out); + char *tmp = m_strdup(*out); - if (mutt_convert_string (&tmp, Charset, "utf-8", M_ICONV_HOOK_FROM) == -1) + if (mutt_convert_string (&tmp, mod_cset.charset, "utf-8", M_ICONV_HOOK_FROM) == -1) irrev = 1; if (!irrev && idna_to_ascii_8z (tmp, &t2, 1) != IDNA_SUCCESS) irrev = 1; if (!irrev && ascii_strcasecmp (t2, in)) { - debug_print (1, ("not reversible. in = '%s', t2 = '%s'.\n", in, t2)); irrev = 1; } - mem_free (&t2); - mem_free (&tmp); + p_delete(&t2); + p_delete(&tmp); if (irrev) goto notrans; @@ -83,15 +64,17 @@ int mutt_idna_to_local (const char *in, char **out, int flags) return 0; notrans: - mem_free (out); - *out = str_dup (in); + p_delete(out); +#endif + *out = m_strdup(in); return 1; } -int mutt_local_to_idna (const char *in, char **out) +static int mutt_local_to_idna (const char *in, char **out) { +#ifdef HAVE_LIBIDN int rv = 0; - char *tmp = str_dup (in); + char *tmp = m_strdup(in); *out = NULL; @@ -100,21 +83,22 @@ int mutt_local_to_idna (const char *in, char **out) return -1; } - if (mutt_convert_string (&tmp, Charset, "utf-8", M_ICONV_HOOK_FROM) == -1) + if (mutt_convert_string (&tmp, mod_cset.charset, "utf-8", M_ICONV_HOOK_FROM) == -1) rv = -1; if (!rv && idna_to_ascii_8z (tmp, out, 1) != IDNA_SUCCESS) rv = -2; - mem_free (&tmp); + p_delete(&tmp); if (rv < 0) { - mem_free (out); - *out = str_dup (in); + p_delete(out); + *out = m_strdup(in); } return rv; -} - +#else + *out = m_strdup(in); + return 0; #endif - +} /* higher level functions */ @@ -126,15 +110,14 @@ static int mbox_to_udomain (const char *mbx, char **user, char **domain) *domain = NULL; p = strchr (mbx, '@'); - if (!p) + if (!p || !p[1]) return -1; - *user = mem_calloc ((p - mbx + 1), sizeof (mbx[0])); - strfcpy (*user, mbx, (p - mbx + 1)); - *domain = str_dup (p + 1); + *user = p_dupstr(mbx, p - mbx); + *domain = m_strdup(p + 1); return 0; } -int mutt_addrlist_to_idna (ADDRESS * a, char **err) +int mutt_addrlist_to_idna (address_t * a, char **err) { char *user = NULL, *domain = NULL; char *tmp = NULL; @@ -152,16 +135,16 @@ int mutt_addrlist_to_idna (ADDRESS * a, char **err) if (mutt_local_to_idna (domain, &tmp) < 0) { e = 1; if (err) - *err = str_dup (domain); + *err = m_strdup(domain); } else { - mem_realloc (&a->mailbox, str_len (user) + str_len (tmp) + 2); - sprintf (a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); /* __SPRINTF_CHECKED__ */ + p_realloc(&a->mailbox, m_strlen(user) + m_strlen(tmp) + 2); + sprintf(a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); } - mem_free (&domain); - mem_free (&user); - mem_free (&tmp); + p_delete(&domain); + p_delete(&user); + p_delete(&tmp); if (e) return -1; @@ -170,7 +153,7 @@ int mutt_addrlist_to_idna (ADDRESS * a, char **err) return 0; } -int mutt_addrlist_to_local (ADDRESS * a) +int mutt_addrlist_to_local (address_t * a) { char *user, *domain; char *tmp = NULL; @@ -181,21 +164,21 @@ int mutt_addrlist_to_local (ADDRESS * a) if (mbox_to_udomain (a->mailbox, &user, &domain) == -1) continue; - if (mutt_idna_to_local (domain, &tmp, 0) == 0) { - mem_realloc (&a->mailbox, str_len (user) + str_len (tmp) + 2); - sprintf (a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); /* __SPRINTF_CHECKED__ */ + if (mutt_idna_to_local(domain, &tmp, false) == 0) { + p_realloc(&a->mailbox, m_strlen(user) + m_strlen(tmp) + 2); + sprintf(a->mailbox, "%s@%s", NONULL (user), NONULL (tmp)); } - mem_free (&domain); - mem_free (&user); - mem_free (&tmp); + p_delete(&domain); + p_delete(&user); + p_delete(&tmp); } return 0; } /* convert just for displaying purposes */ -const char *mutt_addr_for_display (ADDRESS * a) +const char *mutt_addr_for_display (address_t * a) { static char *buff = NULL; char *tmp = NULL; @@ -205,22 +188,22 @@ const char *mutt_addr_for_display (ADDRESS * a) char *domain = NULL; char *user = NULL; - mem_free (&buff); + p_delete(&buff); if (mbox_to_udomain (a->mailbox, &user, &domain) != 0) return a->mailbox; - if (mutt_idna_to_local (domain, &tmp, MI_MAY_BE_IRREVERSIBLE) != 0) { - mem_free (&user); - mem_free (&domain); - mem_free (&tmp); + if (mutt_idna_to_local (domain, &tmp, true) != 0) { + p_delete(&user); + p_delete(&domain); + p_delete(&tmp); return a->mailbox; } - mem_realloc (&buff, str_len (tmp) + str_len (user) + 2); - sprintf (buff, "%s@%s", NONULL (user), NONULL (tmp)); /* __SPRINTF_CHECKED__ */ - mem_free (&tmp); - mem_free (&user); - mem_free (&domain); + p_realloc(&buff, m_strlen(tmp) + m_strlen(user) + 2); + sprintf(buff, "%s@%s", NONULL (user), NONULL (tmp)); + p_delete(&tmp); + p_delete(&user); + p_delete(&domain); return buff; } @@ -247,7 +230,7 @@ void mutt_env_to_local (ENVELOPE * e) if (tag) *tag = #a; e = 1; err = NULL; \ } -int mutt_env_to_idna (ENVELOPE * env, char **tag, char **err) +int mutt_env_to_idna (ENVELOPE * env, const char **tag, char **err) { int e = 0;