Andreas Krennmair:
[apps/madmutt.git] / mutt_idna.c
1 /*
2  * Copyright (C) 2003 Thomas Roessler <roessler@does-not-exist.org>
3  * 
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  * 
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  * 
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */
18
19 #if HAVE_CONFIG_H
20 # include "config.h"
21 #endif
22
23 #include "mutt.h"
24 #include "charset.h"
25 #include "mutt_idna.h"
26
27 /* The low-level interface we use. */
28
29 #ifndef HAVE_LIBIDN
30
31 int mutt_idna_to_local (const char *in, char **out, int flags)
32 {
33   *out = safe_strdup (in);
34   return 1;
35 }
36
37 int mutt_local_to_idna (const char *in, char **out)
38 {
39   *out = safe_strdup (in);
40   return 0;
41 }
42
43 #else
44
45 int mutt_idna_to_local (const char *in, char **out, int flags)
46 {
47   *out = NULL;
48
49   if (!option (OPTUSEIDN))
50     goto notrans;
51
52   if (!in)
53     goto notrans;
54
55   /* Is this the right function?  Interesting effects with some bad identifiers! */
56   if (idna_to_unicode_8z8z (in, out, 1) != IDNA_SUCCESS)
57     goto notrans;
58   if (mutt_convert_string (out, "utf-8", Charset, M_ICONV_HOOK_TO) == -1)
59     goto notrans;
60
61   /* 
62    * make sure that we can convert back and come out with the same
63    * domain name. 
64    */
65
66   if ((flags & MI_MAY_BE_IRREVERSIBLE) == 0) {
67     int irrev = 0;
68     char *t2 = NULL;
69     char *tmp = safe_strdup (*out);
70
71     if (mutt_convert_string (&tmp, Charset, "utf-8", M_ICONV_HOOK_FROM) == -1)
72       irrev = 1;
73     if (!irrev && idna_to_ascii_8z (tmp, &t2, 1) != IDNA_SUCCESS)
74       irrev = 1;
75     if (!irrev && ascii_strcasecmp (t2, in)) {
76       dprint (1,
77               (debugfile,
78                "mutt_idna_to_local: Not reversible. in = '%s', t2 = '%s'.\n",
79                in, t2));
80       irrev = 1;
81     }
82
83     FREE (&t2);
84     FREE (&tmp);
85
86     if (irrev)
87       goto notrans;
88   }
89
90   return 0;
91
92 notrans:
93   FREE (out);
94   *out = safe_strdup (in);
95   return 1;
96 }
97
98 int mutt_local_to_idna (const char *in, char **out)
99 {
100   int rv = 0;
101   char *tmp = safe_strdup (in);
102
103   *out = NULL;
104
105   if (!in) {
106     *out = NULL;
107     return -1;
108   }
109
110   if (mutt_convert_string (&tmp, Charset, "utf-8", M_ICONV_HOOK_FROM) == -1)
111     rv = -1;
112   if (!rv && idna_to_ascii_8z (tmp, out, 1) != IDNA_SUCCESS)
113     rv = -2;
114
115   FREE (&tmp);
116   if (rv < 0) {
117     FREE (out);
118     *out = safe_strdup (in);
119   }
120   return rv;
121 }
122
123 #endif
124
125
126 /* higher level functions */
127
128 static int mbox_to_udomain (const char *mbx, char **user, char **domain)
129 {
130   char *p;
131
132   *user = NULL;
133   *domain = NULL;
134
135   p = strchr (mbx, '@');
136   if (!p)
137     return -1;
138   *user = safe_calloc ((p - mbx + 1), sizeof (mbx[0]));
139   strfcpy (*user, mbx, (p - mbx + 1));
140   *domain = safe_strdup (p + 1);
141   return 0;
142 }
143
144 int mutt_addrlist_to_idna (ADDRESS * a, char **err)
145 {
146   char *user = NULL, *domain = NULL;
147   char *tmp = NULL;
148   int e = 0;
149
150   if (err)
151     *err = NULL;
152
153   for (; a; a = a->next) {
154     if (!a->mailbox)
155       continue;
156     if (mbox_to_udomain (a->mailbox, &user, &domain) == -1)
157       continue;
158
159     if (mutt_local_to_idna (domain, &tmp) < 0) {
160       e = 1;
161       if (err)
162         *err = safe_strdup (domain);
163     }
164     else {
165       safe_realloc (&a->mailbox, mutt_strlen (user) + mutt_strlen (tmp) + 2);
166       sprintf (a->mailbox, "%s@%s", NONULL (user), NONULL (tmp));       /* __SPRINTF_CHECKED__ */
167     }
168
169     FREE (&domain);
170     FREE (&user);
171     FREE (&tmp);
172
173     if (e)
174       return -1;
175   }
176
177   return 0;
178 }
179
180 int mutt_addrlist_to_local (ADDRESS * a)
181 {
182   char *user, *domain;
183   char *tmp = NULL;
184
185   for (; a; a = a->next) {
186     if (!a->mailbox)
187       continue;
188     if (mbox_to_udomain (a->mailbox, &user, &domain) == -1)
189       continue;
190
191     if (mutt_idna_to_local (domain, &tmp, 0) == 0) {
192       safe_realloc (&a->mailbox, mutt_strlen (user) + mutt_strlen (tmp) + 2);
193       sprintf (a->mailbox, "%s@%s", NONULL (user), NONULL (tmp));       /* __SPRINTF_CHECKED__ */
194     }
195
196     FREE (&domain);
197     FREE (&user);
198     FREE (&tmp);
199   }
200
201   return 0;
202 }
203
204 /* convert just for displaying purposes */
205 const char *mutt_addr_for_display (ADDRESS * a)
206 {
207   static char *buff = NULL;
208   char *tmp = NULL;
209
210   /* user and domain will be either allocated or reseted to the NULL in
211    * the mbox_to_udomain(), but for safety... */
212   char *domain = NULL;
213   char *user = NULL;
214
215   FREE (&buff);
216
217   if (mbox_to_udomain (a->mailbox, &user, &domain) != 0)
218     return a->mailbox;
219   if (mutt_idna_to_local (domain, &tmp, MI_MAY_BE_IRREVERSIBLE) != 0) {
220     FREE (&user);
221     FREE (&domain);
222     FREE (&tmp);
223     return a->mailbox;
224   }
225
226   safe_realloc (&buff, mutt_strlen (tmp) + mutt_strlen (user) + 2);
227   sprintf (buff, "%s@%s", NONULL (user), NONULL (tmp)); /* __SPRINTF_CHECKED__ */
228   FREE (&tmp);
229   FREE (&user);
230   FREE (&domain);
231   return buff;
232 }
233
234 /* Convert an ENVELOPE structure */
235
236 void mutt_env_to_local (ENVELOPE * e)
237 {
238   mutt_addrlist_to_local (e->return_path);
239   mutt_addrlist_to_local (e->from);
240   mutt_addrlist_to_local (e->to);
241   mutt_addrlist_to_local (e->cc);
242   mutt_addrlist_to_local (e->bcc);
243   mutt_addrlist_to_local (e->reply_to);
244   mutt_addrlist_to_local (e->mail_followup_to);
245 }
246
247 /* Note that `a' in the `env->a' expression is macro argument, not
248  * "real" name of an `env' compound member.  Real name will be substituted
249  * by preprocessor at the macro-expansion time.
250  */
251 #define H_TO_IDNA(a)    \
252   if (mutt_addrlist_to_idna (env->a, err) && !e) \
253   { \
254      if (tag) *tag = #a; e = 1; err = NULL; \
255   }
256
257 int mutt_env_to_idna (ENVELOPE * env, char **tag, char **err)
258 {
259   int e = 0;
260
261   H_TO_IDNA (return_path);
262   H_TO_IDNA (from);
263   H_TO_IDNA (to);
264   H_TO_IDNA (cc);
265   H_TO_IDNA (bcc);
266   H_TO_IDNA (reply_to);
267   H_TO_IDNA (mail_followup_to);
268   return e;
269 }
270
271 #undef H_TO_IDNA