2 * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2015 Hiroyuki Yamamoto & The Claws Mail Team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 * The code of the g_utf8_substring function below is owned by
19 * Matthias Clasen <matthiasc@src.gnome.org>/<mclasen@redhat.com>
20 * and is got from GLIB 2.30: https://git.gnome.org/browse/glib/commit/
21 * ?h=glib-2-30&id=9eb65dd3ed5e1a9638595cbe10699c7606376511
23 * GLib 2.30 is licensed under GPL v2 or later and:
24 * Copyright (C) 1999 Tom Tromey
25 * Copyright (C) 2000 Red Hat, Inc.
27 * https://git.gnome.org/browse/glib/tree/glib/gutf8.c
28 * ?h=glib-2-30&id=9eb65dd3ed5e1a9638595cbe10699c7606376511
33 #include "claws-features.h"
41 #include <glib/gi18n.h>
51 #include <sys/param.h>
53 #include <sys/socket.h>
56 #if (HAVE_WCTYPE_H && HAVE_WCHAR_H)
64 #include <sys/types.h>
66 # include <sys/wait.h>
73 #include <sys/utsname.h>
86 #include "../codeconv.h"
91 static gboolean debug_mode = FALSE;
93 static GSList *tempfiles=NULL;
96 #if !GLIB_CHECK_VERSION(2, 26, 0)
97 guchar *g_base64_decode_wa(const gchar *text, gsize *out_len)
104 input_length = strlen(text);
106 ret = g_malloc0((input_length / 4) * 3 + 1);
108 *out_len = g_base64_decode_step(text, input_length, ret, &state, &save);
114 /* Return true if we are running as root. This function should beused
115 instead of getuid () == 0. */
116 gboolean superuser_p (void)
119 return w32_is_administrator ();
125 GSList *slist_copy_deep(GSList *list, GCopyFunc func)
127 #if GLIB_CHECK_VERSION(2, 34, 0)
128 return g_slist_copy_deep(list, func, NULL);
130 GSList *res = g_slist_copy(list);
133 walk->data = func(walk->data, NULL);
140 void list_free_strings(GList *list)
142 list = g_list_first(list);
144 while (list != NULL) {
150 void slist_free_strings(GSList *list)
152 while (list != NULL) {
158 void slist_free_strings_full(GSList *list)
160 #if GLIB_CHECK_VERSION(2,28,0)
161 g_slist_free_full(list, (GDestroyNotify)g_free);
163 g_slist_foreach(list, (GFunc)g_free, NULL);
168 static void hash_free_strings_func(gpointer key, gpointer value, gpointer data)
173 void hash_free_strings(GHashTable *table)
175 g_hash_table_foreach(table, hash_free_strings_func, NULL);
178 gint str_case_equal(gconstpointer v, gconstpointer v2)
180 return g_ascii_strcasecmp((const gchar *)v, (const gchar *)v2) == 0;
183 guint str_case_hash(gconstpointer key)
185 const gchar *p = key;
189 h = g_ascii_tolower(h);
190 for (p += 1; *p != '\0'; p++)
191 h = (h << 5) - h + g_ascii_tolower(*p);
197 void ptr_array_free_strings(GPtrArray *array)
202 cm_return_if_fail(array != NULL);
204 for (i = 0; i < array->len; i++) {
205 str = g_ptr_array_index(array, i);
210 gint to_number(const gchar *nstr)
212 register const gchar *p;
214 if (*nstr == '\0') return -1;
216 for (p = nstr; *p != '\0'; p++)
217 if (!g_ascii_isdigit(*p)) return -1;
222 /* convert integer into string,
223 nstr must be not lower than 11 characters length */
224 gchar *itos_buf(gchar *nstr, gint n)
226 g_snprintf(nstr, 11, "%d", n);
230 /* convert integer into string */
233 static gchar nstr[11];
235 return itos_buf(nstr, n);
238 #define divide(num,divisor,i,d) \
240 i = num >> divisor; \
241 d = num & ((1<<divisor)-1); \
242 d = (d*100) >> divisor; \
247 * \brief Convert a given size in bytes in a human-readable string
249 * \param size The size expressed in bytes to convert in string
250 * \return The string that respresents the size in an human-readable way
252 gchar *to_human_readable(goffset size)
254 static gchar str[14];
255 static gchar *b_format = NULL, *kb_format = NULL,
256 *mb_format = NULL, *gb_format = NULL;
257 register int t = 0, r = 0;
258 if (b_format == NULL) {
260 kb_format = _("%d.%02dKB");
261 mb_format = _("%d.%02dMB");
262 gb_format = _("%.2fGB");
265 if (size < (goffset)1024) {
266 g_snprintf(str, sizeof(str), b_format, (gint)size);
268 } else if (size >> 10 < (goffset)1024) {
269 divide(size, 10, t, r);
270 g_snprintf(str, sizeof(str), kb_format, t, r);
272 } else if (size >> 20 < (goffset)1024) {
273 divide(size, 20, t, r);
274 g_snprintf(str, sizeof(str), mb_format, t, r);
277 g_snprintf(str, sizeof(str), gb_format, (gfloat)(size >> 30));
282 /* strcmp with NULL-checking */
283 gint strcmp2(const gchar *s1, const gchar *s2)
285 if (s1 == NULL || s2 == NULL)
288 return strcmp(s1, s2);
290 /* strstr with NULL-checking */
291 gchar *strstr2(const gchar *s1, const gchar *s2)
293 if (s1 == NULL || s2 == NULL)
296 return strstr(s1, s2);
299 gint path_cmp(const gchar *s1, const gchar *s2)
304 gchar *s1buf, *s2buf;
307 if (s1 == NULL || s2 == NULL) return -1;
308 if (*s1 == '\0' || *s2 == '\0') return -1;
311 s1buf = g_strdup (s1);
312 s2buf = g_strdup (s2);
313 subst_char (s1buf, '/', G_DIR_SEPARATOR);
314 subst_char (s2buf, '/', G_DIR_SEPARATOR);
317 #endif /* !G_OS_WIN32 */
322 if (s1[len1 - 1] == G_DIR_SEPARATOR) len1--;
323 if (s2[len2 - 1] == G_DIR_SEPARATOR) len2--;
325 rc = strncmp(s1, s2, MAX(len1, len2));
329 #endif /* !G_OS_WIN32 */
333 /* remove trailing return code */
334 gchar *strretchomp(gchar *str)
338 if (!*str) return str;
340 for (s = str + strlen(str) - 1;
341 s >= str && (*s == '\n' || *s == '\r');
348 /* remove trailing character */
349 gchar *strtailchomp(gchar *str, gchar tail_char)
353 if (!*str) return str;
354 if (tail_char == '\0') return str;
356 for (s = str + strlen(str) - 1; s >= str && *s == tail_char; s--)
362 /* remove CR (carriage return) */
363 gchar *strcrchomp(gchar *str)
367 if (!*str) return str;
369 s = str + strlen(str) - 1;
370 if (*s == '\n' && s > str && *(s - 1) == '\r') {
378 gint file_strip_crs(const gchar *file)
380 FILE *fp = NULL, *outfp = NULL;
382 gchar *out = get_tmp_file();
386 fp = g_fopen(file, "rb");
390 outfp = g_fopen(out, "wb");
396 while (fgets(buf, sizeof (buf), fp) != NULL) {
398 if (fputs(buf, outfp) == EOF) {
406 if (fclose(outfp) == EOF) {
410 if (move_file(out, file, TRUE) < 0)
422 /* Similar to `strstr' but this function ignores the case of both strings. */
423 gchar *strcasestr(const gchar *haystack, const gchar *needle)
425 size_t haystack_len = strlen(haystack);
427 return strncasestr(haystack, haystack_len, needle);
430 gchar *strncasestr(const gchar *haystack, gint haystack_len, const gchar *needle)
432 register size_t needle_len;
434 needle_len = strlen(needle);
436 if (haystack_len < needle_len || needle_len == 0)
439 while (haystack_len >= needle_len) {
440 if (!g_ascii_strncasecmp(haystack, needle, needle_len))
441 return (gchar *)haystack;
451 gpointer my_memmem(gconstpointer haystack, size_t haystacklen,
452 gconstpointer needle, size_t needlelen)
454 const gchar *haystack_ = (const gchar *)haystack;
455 const gchar *needle_ = (const gchar *)needle;
456 const gchar *haystack_cur = (const gchar *)haystack;
457 size_t haystack_left = haystacklen;
460 return memchr(haystack_, *needle_, haystacklen);
462 while ((haystack_cur = memchr(haystack_cur, *needle_, haystack_left))
464 if (haystacklen - (haystack_cur - haystack_) < needlelen)
466 if (memcmp(haystack_cur + 1, needle_ + 1, needlelen - 1) == 0)
467 return (gpointer)haystack_cur;
470 haystack_left = haystacklen - (haystack_cur - haystack_);
477 /* Copy no more than N characters of SRC to DEST, with NULL terminating. */
478 gchar *strncpy2(gchar *dest, const gchar *src, size_t n)
480 register const gchar *s = src;
481 register gchar *d = dest;
491 /* Examine if next block is non-ASCII string */
492 gboolean is_next_nonascii(const gchar *s)
496 /* skip head space */
497 for (p = s; *p != '\0' && g_ascii_isspace(*p); p++)
499 for (; *p != '\0' && !g_ascii_isspace(*p); p++) {
500 if (*(guchar *)p > 127 || *(guchar *)p < 32)
507 gint get_next_word_len(const gchar *s)
511 for (; *s != '\0' && !g_ascii_isspace(*s); s++, len++)
517 static void trim_subject_for_compare(gchar *str)
521 eliminate_parenthesis(str, '[', ']');
522 eliminate_parenthesis(str, '(', ')');
525 srcp = str + subject_get_prefix_length(str);
527 memmove(str, srcp, strlen(srcp) + 1);
530 static void trim_subject_for_sort(gchar *str)
536 srcp = str + subject_get_prefix_length(str);
538 memmove(str, srcp, strlen(srcp) + 1);
541 /* compare subjects */
542 gint subject_compare(const gchar *s1, const gchar *s2)
546 if (!s1 || !s2) return -1;
547 if (!*s1 || !*s2) return -1;
549 Xstrdup_a(str1, s1, return -1);
550 Xstrdup_a(str2, s2, return -1);
552 trim_subject_for_compare(str1);
553 trim_subject_for_compare(str2);
555 if (!*str1 || !*str2) return -1;
557 return strcmp(str1, str2);
560 gint subject_compare_for_sort(const gchar *s1, const gchar *s2)
564 if (!s1 || !s2) return -1;
566 Xstrdup_a(str1, s1, return -1);
567 Xstrdup_a(str2, s2, return -1);
569 trim_subject_for_sort(str1);
570 trim_subject_for_sort(str2);
572 return g_utf8_collate(str1, str2);
575 void trim_subject(gchar *str)
577 register gchar *srcp;
583 srcp = str + subject_get_prefix_length(str);
588 } else if (*srcp == '(') {
600 else if (*srcp == cl)
607 while (g_ascii_isspace(*srcp)) srcp++;
608 memmove(str, srcp, strlen(srcp) + 1);
611 void eliminate_parenthesis(gchar *str, gchar op, gchar cl)
613 register gchar *srcp, *destp;
618 while ((destp = strchr(destp, op))) {
624 else if (*srcp == cl)
630 while (g_ascii_isspace(*srcp)) srcp++;
631 memmove(destp, srcp, strlen(srcp) + 1);
635 void extract_parenthesis(gchar *str, gchar op, gchar cl)
637 register gchar *srcp, *destp;
642 while ((srcp = strchr(destp, op))) {
645 memmove(destp, srcp + 1, strlen(srcp));
650 else if (*destp == cl)
662 static void extract_parenthesis_with_skip_quote(gchar *str, gchar quote_chr,
665 register gchar *srcp, *destp;
667 gboolean in_quote = FALSE;
671 while ((srcp = strchr_with_skip_quote(destp, quote_chr, op))) {
674 memmove(destp, srcp + 1, strlen(srcp));
677 if (*destp == op && !in_quote)
679 else if (*destp == cl && !in_quote)
681 else if (*destp == quote_chr)
693 void extract_quote(gchar *str, gchar quote_chr)
697 if ((str = strchr(str, quote_chr))) {
699 while ((p = strchr(p + 1, quote_chr)) && (p[-1] == '\\')) {
700 memmove(p - 1, p, strlen(p) + 1);
705 memmove(str, str + 1, p - str);
710 /* Returns a newly allocated string with all quote_chr not at the beginning
711 or the end of str escaped with '\' or the given str if not required. */
712 gchar *escape_internal_quotes(gchar *str, gchar quote_chr)
714 register gchar *p, *q;
718 if (str == NULL || *str == '\0')
721 /* search for unescaped quote_chr */
726 if (*p == quote_chr && *(p - 1) != '\\' && *(p + 1) != '\0')
730 if (!k) /* nothing to escape */
733 /* unescaped quote_chr found */
734 qstr = g_malloc(l + k + 1);
737 if (*p == quote_chr) {
742 if (*p == quote_chr && *(p - 1) != '\\' && *(p + 1) != '\0')
751 void eliminate_address_comment(gchar *str)
753 register gchar *srcp, *destp;
758 while ((destp = strchr(destp, '"'))) {
759 if ((srcp = strchr(destp + 1, '"'))) {
764 while (g_ascii_isspace(*srcp)) srcp++;
765 memmove(destp, srcp, strlen(srcp) + 1);
775 while ((destp = strchr_with_skip_quote(destp, '"', '('))) {
781 else if (*srcp == ')')
787 while (g_ascii_isspace(*srcp)) srcp++;
788 memmove(destp, srcp, strlen(srcp) + 1);
792 gchar *strchr_with_skip_quote(const gchar *str, gint quote_chr, gint c)
794 gboolean in_quote = FALSE;
797 if (*str == c && !in_quote)
799 if (*str == quote_chr)
807 void extract_address(gchar *str)
809 cm_return_if_fail(str != NULL);
810 eliminate_address_comment(str);
811 if (strchr_with_skip_quote(str, '"', '<'))
812 extract_parenthesis_with_skip_quote(str, '"', '<', '>');
816 void extract_list_id_str(gchar *str)
818 if (strchr_with_skip_quote(str, '"', '<'))
819 extract_parenthesis_with_skip_quote(str, '"', '<', '>');
823 static GSList *address_list_append_real(GSList *addr_list, const gchar *str, gboolean removecomments)
828 if (!str) return addr_list;
830 Xstrdup_a(work, str, return addr_list);
833 eliminate_address_comment(work);
836 while (workp && *workp) {
839 if ((p = strchr_with_skip_quote(workp, '"', ','))) {
845 if (removecomments && strchr_with_skip_quote(workp, '"', '<'))
846 extract_parenthesis_with_skip_quote
847 (workp, '"', '<', '>');
851 addr_list = g_slist_append(addr_list, g_strdup(workp));
859 GSList *address_list_append(GSList *addr_list, const gchar *str)
861 return address_list_append_real(addr_list, str, TRUE);
864 GSList *address_list_append_with_comments(GSList *addr_list, const gchar *str)
866 return address_list_append_real(addr_list, str, FALSE);
869 GSList *references_list_prepend(GSList *msgid_list, const gchar *str)
873 if (!str) return msgid_list;
876 while (strp && *strp) {
877 const gchar *start, *end;
880 if ((start = strchr(strp, '<')) != NULL) {
881 end = strchr(start + 1, '>');
886 msgid = g_strndup(start + 1, end - start - 1);
889 msgid_list = g_slist_prepend(msgid_list, msgid);
899 GSList *references_list_append(GSList *msgid_list, const gchar *str)
903 list = references_list_prepend(NULL, str);
904 list = g_slist_reverse(list);
905 msgid_list = g_slist_concat(msgid_list, list);
910 GSList *newsgroup_list_append(GSList *group_list, const gchar *str)
915 if (!str) return group_list;
917 Xstrdup_a(work, str, return group_list);
921 while (workp && *workp) {
924 if ((p = strchr_with_skip_quote(workp, '"', ','))) {
932 group_list = g_slist_append(group_list,
941 GList *add_history(GList *list, const gchar *str)
946 cm_return_val_if_fail(str != NULL, list);
948 old = g_list_find_custom(list, (gpointer)str, (GCompareFunc)strcmp2);
951 list = g_list_remove(list, old->data);
953 } else if (g_list_length(list) >= MAX_HISTORY_SIZE) {
956 last = g_list_last(list);
959 list = g_list_remove(list, last->data);
964 list = g_list_prepend(list, g_strdup(str));
969 void remove_return(gchar *str)
971 register gchar *p = str;
974 if (*p == '\n' || *p == '\r')
975 memmove(p, p + 1, strlen(p));
981 void remove_space(gchar *str)
983 register gchar *p = str;
988 while (g_ascii_isspace(*(p + spc)))
991 memmove(p, p + spc, strlen(p + spc) + 1);
997 void unfold_line(gchar *str)
1000 register gunichar c;
1003 ch = str; /* iterator for source string */
1006 c = g_utf8_get_char_validated(ch, -1);
1008 if (c == (gunichar)-1 || c == (gunichar)-2) {
1009 /* non-unicode byte, move past it */
1014 len = g_unichar_to_utf8(c, NULL);
1016 if (!g_unichar_isdefined(c) || !g_unichar_isprint(c) ||
1017 g_unichar_isspace(c)) {
1018 /* replace anything bad or whitespacey with a single space */
1022 /* move rest of the string forwards, since we just replaced
1023 * a multi-byte sequence with one byte */
1024 memmove(ch, ch + len-1, strlen(ch + len-1) + 1);
1027 /* A valid unicode character, copy it. */
1033 void subst_char(gchar *str, gchar orig, gchar subst)
1035 register gchar *p = str;
1044 void subst_chars(gchar *str, gchar *orig, gchar subst)
1046 register gchar *p = str;
1049 if (strchr(orig, *p) != NULL)
1055 void subst_for_filename(gchar *str)
1060 subst_chars(str, "\t\r\n\\/*:", '_');
1062 subst_chars(str, "\t\r\n\\/*", '_');
1066 void subst_for_shellsafe_filename(gchar *str)
1070 subst_for_filename(str);
1071 subst_chars(str, " \"'|&;()<>'!{}[]",'_');
1074 gboolean is_ascii_str(const gchar *str)
1076 const guchar *p = (const guchar *)str;
1078 while (*p != '\0') {
1079 if (*p != '\t' && *p != ' ' &&
1080 *p != '\r' && *p != '\n' &&
1081 (*p < 32 || *p >= 127))
1089 static const gchar * line_has_quote_char_last(const gchar * str, const gchar *quote_chars)
1091 gchar * position = NULL;
1092 gchar * tmp_pos = NULL;
1095 if (quote_chars == NULL)
1098 for (i = 0; i < strlen(quote_chars); i++) {
1099 tmp_pos = strrchr (str, quote_chars[i]);
1101 || (tmp_pos != NULL && position <= tmp_pos) )
1107 gint get_quote_level(const gchar *str, const gchar *quote_chars)
1109 const gchar *first_pos;
1110 const gchar *last_pos;
1111 const gchar *p = str;
1112 gint quote_level = -1;
1114 /* speed up line processing by only searching to the last '>' */
1115 if ((first_pos = line_has_quote_char(str, quote_chars)) != NULL) {
1116 /* skip a line if it contains a '<' before the initial '>' */
1117 if (memchr(str, '<', first_pos - str) != NULL)
1119 last_pos = line_has_quote_char_last(first_pos, quote_chars);
1123 while (p <= last_pos) {
1124 while (p < last_pos) {
1125 if (g_ascii_isspace(*p))
1131 if (strchr(quote_chars, *p))
1133 else if (*p != '-' && !g_ascii_isspace(*p) && p <= last_pos) {
1134 /* any characters are allowed except '-','<' and space */
1135 while (*p != '-' && *p != '<'
1136 && !strchr(quote_chars, *p)
1137 && !g_ascii_isspace(*p)
1140 if (strchr(quote_chars, *p))
1152 gint check_line_length(const gchar *str, gint max_chars, gint *line)
1154 const gchar *p = str, *q;
1155 gint cur_line = 0, len;
1157 while ((q = strchr(p, '\n')) != NULL) {
1159 if (len > max_chars) {
1169 if (len > max_chars) {
1178 const gchar * line_has_quote_char(const gchar * str, const gchar *quote_chars)
1180 gchar * position = NULL;
1181 gchar * tmp_pos = NULL;
1184 if (quote_chars == NULL)
1187 for (i = 0; i < strlen(quote_chars); i++) {
1188 tmp_pos = strchr (str, quote_chars[i]);
1190 || (tmp_pos != NULL && position >= tmp_pos) )
1196 static gchar *strstr_with_skip_quote(const gchar *haystack, const gchar *needle)
1198 register guint haystack_len, needle_len;
1199 gboolean in_squote = FALSE, in_dquote = FALSE;
1201 haystack_len = strlen(haystack);
1202 needle_len = strlen(needle);
1204 if (haystack_len < needle_len || needle_len == 0)
1207 while (haystack_len >= needle_len) {
1208 if (!in_squote && !in_dquote &&
1209 !strncmp(haystack, needle, needle_len))
1210 return (gchar *)haystack;
1212 /* 'foo"bar"' -> foo"bar"
1213 "foo'bar'" -> foo'bar' */
1214 if (*haystack == '\'') {
1217 else if (!in_dquote)
1219 } else if (*haystack == '\"') {
1222 else if (!in_squote)
1224 } else if (*haystack == '\\') {
1236 gchar **strsplit_with_quote(const gchar *str, const gchar *delim,
1239 GSList *string_list = NULL, *slist;
1240 gchar **str_array, *s, *new_str;
1241 guint i, n = 1, len;
1243 cm_return_val_if_fail(str != NULL, NULL);
1244 cm_return_val_if_fail(delim != NULL, NULL);
1247 max_tokens = G_MAXINT;
1249 s = strstr_with_skip_quote(str, delim);
1251 guint delimiter_len = strlen(delim);
1255 new_str = g_strndup(str, len);
1257 if (new_str[0] == '\'' || new_str[0] == '\"') {
1258 if (new_str[len - 1] == new_str[0]) {
1259 new_str[len - 1] = '\0';
1260 memmove(new_str, new_str + 1, len - 1);
1263 string_list = g_slist_prepend(string_list, new_str);
1265 str = s + delimiter_len;
1266 s = strstr_with_skip_quote(str, delim);
1267 } while (--max_tokens && s);
1271 new_str = g_strdup(str);
1272 if (new_str[0] == '\'' || new_str[0] == '\"') {
1274 if (new_str[len - 1] == new_str[0]) {
1275 new_str[len - 1] = '\0';
1276 memmove(new_str, new_str + 1, len - 1);
1279 string_list = g_slist_prepend(string_list, new_str);
1283 str_array = g_new(gchar*, n);
1287 str_array[i--] = NULL;
1288 for (slist = string_list; slist; slist = slist->next)
1289 str_array[i--] = slist->data;
1291 g_slist_free(string_list);
1296 gchar *get_abbrev_newsgroup_name(const gchar *group, gint len)
1298 gchar *abbrev_group;
1300 const gchar *p = group;
1303 cm_return_val_if_fail(group != NULL, NULL);
1305 last = group + strlen(group);
1306 abbrev_group = ap = g_malloc(strlen(group) + 1);
1311 if ((ap - abbrev_group) + (last - p) > len && strchr(p, '.')) {
1313 while (*p != '.') p++;
1316 return abbrev_group;
1321 return abbrev_group;
1324 gchar *trim_string(const gchar *str, gint len)
1326 const gchar *p = str;
1331 if (!str) return NULL;
1332 if (strlen(str) <= len)
1333 return g_strdup(str);
1334 if (g_utf8_validate(str, -1, NULL) == FALSE)
1335 return g_strdup(str);
1337 while (*p != '\0') {
1338 mb_len = g_utf8_skip[*(guchar *)p];
1341 else if (new_len + mb_len > len)
1348 Xstrndup_a(new_str, str, new_len, return g_strdup(str));
1349 return g_strconcat(new_str, "...", NULL);
1352 GList *uri_list_extract_filenames(const gchar *uri_list)
1354 GList *result = NULL;
1356 gchar *escaped_utf8uri;
1362 while (g_ascii_isspace(*p)) p++;
1363 if (!strncmp(p, "file:", 5)) {
1366 while (*q && *q != '\n' && *q != '\r') q++;
1369 gchar *file, *locale_file = NULL;
1371 while (q > p && g_ascii_isspace(*q))
1373 Xalloca(escaped_utf8uri, q - p + 2,
1375 Xalloca(file, q - p + 2,
1378 strncpy(escaped_utf8uri, p, q - p + 1);
1379 escaped_utf8uri[q - p + 1] = '\0';
1380 decode_uri(file, escaped_utf8uri);
1382 * g_filename_from_uri() rejects escaped/locale encoded uri
1383 * string which come from Nautilus.
1386 if (g_utf8_validate(file, -1, NULL))
1388 = conv_codeset_strdup(
1391 conv_get_locale_charset_str());
1393 locale_file = g_strdup(file + 5);
1395 locale_file = g_filename_from_uri(escaped_utf8uri, NULL, NULL);
1397 result = g_list_append(result, locale_file);
1401 p = strchr(p, '\n');
1408 /* Converts two-digit hexadecimal to decimal. Used for unescaping escaped
1411 static gint axtoi(const gchar *hexstr)
1413 gint hi, lo, result;
1416 if ('0' <= hi && hi <= '9') {
1419 if ('a' <= hi && hi <= 'f') {
1422 if ('A' <= hi && hi <= 'F') {
1427 if ('0' <= lo && lo <= '9') {
1430 if ('a' <= lo && lo <= 'f') {
1433 if ('A' <= lo && lo <= 'F') {
1436 result = lo + (16 * hi);
1440 gboolean is_uri_string(const gchar *str)
1442 while (str && *str && g_ascii_isspace(*str))
1444 return (g_ascii_strncasecmp(str, "http://", 7) == 0 ||
1445 g_ascii_strncasecmp(str, "https://", 8) == 0 ||
1446 g_ascii_strncasecmp(str, "ftp://", 6) == 0 ||
1447 g_ascii_strncasecmp(str, "www.", 4) == 0);
1450 gchar *get_uri_path(const gchar *uri)
1452 while (uri && *uri && g_ascii_isspace(*uri))
1454 if (g_ascii_strncasecmp(uri, "http://", 7) == 0)
1455 return (gchar *)(uri + 7);
1456 else if (g_ascii_strncasecmp(uri, "https://", 8) == 0)
1457 return (gchar *)(uri + 8);
1458 else if (g_ascii_strncasecmp(uri, "ftp://", 6) == 0)
1459 return (gchar *)(uri + 6);
1461 return (gchar *)uri;
1464 gint get_uri_len(const gchar *str)
1468 if (is_uri_string(str)) {
1469 for (p = str; *p != '\0'; p++) {
1470 if (!g_ascii_isgraph(*p) || strchr("()<>\"", *p))
1479 /* Decodes URL-Encoded strings (i.e. strings in which spaces are replaced by
1480 * plusses, and escape characters are used)
1482 void decode_uri_with_plus(gchar *decoded_uri, const gchar *encoded_uri, gboolean with_plus)
1484 gchar *dec = decoded_uri;
1485 const gchar *enc = encoded_uri;
1490 if (isxdigit((guchar)enc[0]) &&
1491 isxdigit((guchar)enc[1])) {
1497 if (with_plus && *enc == '+')
1509 void decode_uri(gchar *decoded_uri, const gchar *encoded_uri)
1511 decode_uri_with_plus(decoded_uri, encoded_uri, TRUE);
1514 static gchar *decode_uri_gdup(const gchar *encoded_uri)
1516 gchar *buffer = g_malloc(strlen(encoded_uri)+1);
1517 decode_uri_with_plus(buffer, encoded_uri, FALSE);
1521 gint scan_mailto_url(const gchar *mailto, gchar **from, gchar **to, gchar **cc, gchar **bcc,
1522 gchar **subject, gchar **body, gchar ***attach, gchar **inreplyto)
1526 const gchar *forbidden_uris[] = { ".gnupg/",
1532 gint num_attach = 0;
1533 gchar **my_att = NULL;
1535 Xstrdup_a(tmp_mailto, mailto, return -1);
1537 if (!strncmp(tmp_mailto, "mailto:", 7))
1540 p = strchr(tmp_mailto, '?');
1547 *to = decode_uri_gdup(tmp_mailto);
1549 my_att = g_malloc(sizeof(char *));
1553 gchar *field, *value;
1570 if (*value == '\0') continue;
1572 if (from && !g_ascii_strcasecmp(field, "from")) {
1574 *from = decode_uri_gdup(value);
1576 gchar *tmp = decode_uri_gdup(value);
1577 gchar *new_from = g_strdup_printf("%s, %s", *from, tmp);
1581 } else if (cc && !g_ascii_strcasecmp(field, "cc")) {
1583 *cc = decode_uri_gdup(value);
1585 gchar *tmp = decode_uri_gdup(value);
1586 gchar *new_cc = g_strdup_printf("%s, %s", *cc, tmp);
1590 } else if (bcc && !g_ascii_strcasecmp(field, "bcc")) {
1592 *bcc = decode_uri_gdup(value);
1594 gchar *tmp = decode_uri_gdup(value);
1595 gchar *new_bcc = g_strdup_printf("%s, %s", *bcc, tmp);
1599 } else if (subject && !*subject &&
1600 !g_ascii_strcasecmp(field, "subject")) {
1601 *subject = decode_uri_gdup(value);
1602 } else if (body && !*body && !g_ascii_strcasecmp(field, "body")) {
1603 *body = decode_uri_gdup(value);
1604 } else if (body && !*body && !g_ascii_strcasecmp(field, "insert")) {
1605 gchar *tmp = decode_uri_gdup(value);
1606 if (!g_file_get_contents(tmp, body, NULL, NULL)) {
1607 g_warning("couldn't set insert file '%s' in body", value);
1611 } else if (attach && !g_ascii_strcasecmp(field, "attach")) {
1613 gchar *tmp = decode_uri_gdup(value);
1614 for (; forbidden_uris[i]; i++) {
1615 if (strstr(tmp, forbidden_uris[i])) {
1616 g_print("Refusing to attach '%s', potential private data leak\n",
1624 /* attach is correct */
1626 my_att = g_realloc(my_att, (sizeof(char *))*(num_attach+1));
1627 my_att[num_attach-1] = tmp;
1628 my_att[num_attach] = NULL;
1630 } else if (inreplyto && !*inreplyto &&
1631 !g_ascii_strcasecmp(field, "in-reply-to")) {
1632 *inreplyto = decode_uri_gdup(value);
1643 #include <windows.h>
1644 #ifndef CSIDL_APPDATA
1645 #define CSIDL_APPDATA 0x001a
1647 #ifndef CSIDL_LOCAL_APPDATA
1648 #define CSIDL_LOCAL_APPDATA 0x001c
1650 #ifndef CSIDL_FLAG_CREATE
1651 #define CSIDL_FLAG_CREATE 0x8000
1653 #define DIM(v) (sizeof(v)/sizeof((v)[0]))
1657 w32_strerror (int w32_errno)
1659 static char strerr[256];
1660 int ec = (int)GetLastError ();
1664 FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM, NULL, w32_errno,
1665 MAKELANGID (LANG_NEUTRAL, SUBLANG_DEFAULT),
1666 strerr, DIM (strerr)-1, NULL);
1670 static __inline__ void *
1671 dlopen (const char * name, int flag)
1673 void * hd = LoadLibrary (name);
1677 static __inline__ void *
1678 dlsym (void * hd, const char * sym)
1682 void * fnc = GetProcAddress (hd, sym);
1691 static __inline__ const char *
1694 return w32_strerror (0);
1698 static __inline__ int
1710 w32_shgetfolderpath (HWND a, int b, HANDLE c, DWORD d, LPSTR e)
1712 static int initialized;
1713 static HRESULT (WINAPI * func)(HWND,int,HANDLE,DWORD,LPSTR);
1717 static char *dllnames[] = { "shell32.dll", "shfolder.dll", NULL };
1723 for (i=0, handle = NULL; !handle && dllnames[i]; i++)
1725 handle = dlopen (dllnames[i], RTLD_LAZY);
1728 func = dlsym (handle, "SHGetFolderPathW");
1739 return func (a,b,c,d,e);
1744 /* Returns a static string with the directroy from which the module
1745 has been loaded. Returns an empty string on error. */
1746 static char *w32_get_module_dir(void)
1748 static char *moddir;
1751 char name[MAX_PATH+10];
1754 if ( !GetModuleFileNameA (0, name, sizeof (name)-10) )
1757 p = strrchr (name, '\\');
1763 moddir = g_strdup (name);
1767 #endif /* G_OS_WIN32 */
1769 /* Return a static string with the locale dir. */
1770 const gchar *get_locale_dir(void)
1772 static gchar *loc_dir;
1776 loc_dir = g_strconcat(w32_get_module_dir(), G_DIR_SEPARATOR_S,
1777 "\\share\\locale", NULL);
1780 loc_dir = LOCALEDIR;
1786 const gchar *get_home_dir(void)
1789 static char home_dir_utf16[MAX_PATH] = "";
1790 static gchar *home_dir_utf8 = NULL;
1791 if (home_dir_utf16[0] == '\0') {
1792 if (w32_shgetfolderpath
1793 (NULL, CSIDL_APPDATA|CSIDL_FLAG_CREATE,
1794 NULL, 0, home_dir_utf16) < 0)
1795 strcpy (home_dir_utf16, "C:\\Sylpheed");
1796 home_dir_utf8 = g_utf16_to_utf8 ((const gunichar *)home_dir_utf16, -1, NULL, NULL, NULL);
1798 return home_dir_utf8;
1800 static const gchar *homeenv = NULL;
1805 if (!homeenv && g_getenv("HOME") != NULL)
1806 homeenv = g_strdup(g_getenv("HOME"));
1808 homeenv = g_get_home_dir();
1814 static gchar *claws_rc_dir = NULL;
1815 static gboolean rc_dir_alt = FALSE;
1816 const gchar *get_rc_dir(void)
1819 if (!claws_rc_dir) {
1820 claws_rc_dir = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S,
1822 debug_print("using default rc_dir %s\n", claws_rc_dir);
1824 return claws_rc_dir;
1827 void set_rc_dir(const gchar *dir)
1829 gchar *canonical_dir;
1830 if (claws_rc_dir != NULL) {
1831 g_print("Error: rc_dir already set\n");
1833 int err = cm_canonicalize_filename(dir, &canonical_dir);
1837 g_print("Error looking for %s: %d(%s)\n",
1838 dir, -err, g_strerror(-err));
1843 claws_rc_dir = canonical_dir;
1845 len = strlen(claws_rc_dir);
1846 if (claws_rc_dir[len - 1] == G_DIR_SEPARATOR)
1847 claws_rc_dir[len - 1] = '\0';
1849 debug_print("set rc_dir to %s\n", claws_rc_dir);
1850 if (!is_dir_exist(claws_rc_dir)) {
1851 if (make_dir_hier(claws_rc_dir) != 0) {
1852 g_print("Error: can't create %s\n",
1860 gboolean rc_dir_is_alt(void) {
1864 const gchar *get_mail_base_dir(void)
1866 return get_home_dir();
1869 const gchar *get_news_cache_dir(void)
1871 static gchar *news_cache_dir = NULL;
1872 if (!news_cache_dir)
1873 news_cache_dir = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
1874 NEWS_CACHE_DIR, NULL);
1876 return news_cache_dir;
1879 const gchar *get_imap_cache_dir(void)
1881 static gchar *imap_cache_dir = NULL;
1883 if (!imap_cache_dir)
1884 imap_cache_dir = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
1885 IMAP_CACHE_DIR, NULL);
1887 return imap_cache_dir;
1890 const gchar *get_mime_tmp_dir(void)
1892 static gchar *mime_tmp_dir = NULL;
1895 mime_tmp_dir = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
1896 MIME_TMP_DIR, NULL);
1898 return mime_tmp_dir;
1901 const gchar *get_template_dir(void)
1903 static gchar *template_dir = NULL;
1906 template_dir = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
1907 TEMPLATE_DIR, NULL);
1909 return template_dir;
1913 const gchar *w32_get_cert_file(void)
1915 const gchar *cert_file = NULL;
1917 cert_file = g_strconcat(w32_get_module_dir(),
1918 "\\share\\claws-mail\\",
1919 "ca-certificates.crt",
1925 /* Return the filepath of the claws-mail.desktop file */
1926 const gchar *get_desktop_file(void)
1928 #ifdef DESKTOPFILEPATH
1929 return DESKTOPFILEPATH;
1935 /* Return the default directory for Plugins. */
1936 const gchar *get_plugin_dir(void)
1939 static gchar *plugin_dir = NULL;
1942 plugin_dir = g_strconcat(w32_get_module_dir(),
1943 "\\lib\\claws-mail\\plugins\\",
1947 if (is_dir_exist(PLUGINDIR))
1950 static gchar *plugin_dir = NULL;
1952 plugin_dir = g_strconcat(get_rc_dir(),
1953 G_DIR_SEPARATOR_S, "plugins",
1954 G_DIR_SEPARATOR_S, NULL);
1962 /* Return the default directory for Themes. */
1963 const gchar *w32_get_themes_dir(void)
1965 static gchar *themes_dir = NULL;
1968 themes_dir = g_strconcat(w32_get_module_dir(),
1969 "\\share\\claws-mail\\themes",
1975 const gchar *get_tmp_dir(void)
1977 static gchar *tmp_dir = NULL;
1980 tmp_dir = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
1986 gchar *get_tmp_file(void)
1989 static guint32 id = 0;
1991 tmp_file = g_strdup_printf("%s%ctmpfile.%08x",
1992 get_tmp_dir(), G_DIR_SEPARATOR, id++);
1997 const gchar *get_domain_name(void)
2000 static gchar *domain_name = NULL;
2001 struct addrinfo hints, *res;
2006 if (gethostname(hostname, sizeof(hostname)) != 0) {
2007 perror("gethostname");
2008 domain_name = "localhost";
2010 memset(&hints, 0, sizeof(struct addrinfo));
2011 hints.ai_family = AF_UNSPEC;
2012 hints.ai_socktype = 0;
2013 hints.ai_flags = AI_CANONNAME;
2014 hints.ai_protocol = 0;
2016 s = getaddrinfo(hostname, NULL, &hints, &res);
2018 fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(s));
2019 domain_name = g_strdup(hostname);
2021 domain_name = g_strdup(res->ai_canonname);
2025 debug_print("domain name = %s\n", domain_name);
2034 off_t get_file_size(const gchar *file)
2038 if (g_stat(file, &s) < 0) {
2039 FILE_OP_ERROR(file, "stat");
2046 time_t get_file_mtime(const gchar *file)
2050 if (g_stat(file, &s) < 0) {
2051 FILE_OP_ERROR(file, "stat");
2058 off_t get_file_size_as_crlf(const gchar *file)
2062 gchar buf[BUFFSIZE];
2064 if ((fp = g_fopen(file, "rb")) == NULL) {
2065 FILE_OP_ERROR(file, "g_fopen");
2069 while (fgets(buf, sizeof(buf), fp) != NULL) {
2071 size += strlen(buf) + 2;
2075 FILE_OP_ERROR(file, "fgets");
2084 gboolean file_exist(const gchar *file, gboolean allow_fifo)
2091 if (g_stat(file, &s) < 0) {
2092 if (ENOENT != errno) FILE_OP_ERROR(file, "stat");
2096 if (S_ISREG(s.st_mode) || (allow_fifo && S_ISFIFO(s.st_mode)))
2103 /* Test on whether FILE is a relative file name. This is
2104 * straightforward for Unix but more complex for Windows. */
2105 gboolean is_relative_filename(const gchar *file)
2110 if ( *file == '\\' && file[1] == '\\' && strchr (file+2, '\\') )
2111 return FALSE; /* Prefixed with a hostname - this can't
2112 * be a relative name. */
2114 if ( ((*file >= 'a' && *file <= 'z')
2115 || (*file >= 'A' && *file <= 'Z'))
2117 file += 2; /* Skip drive letter. */
2119 return !(*file == '\\' || *file == '/');
2121 return !(*file == G_DIR_SEPARATOR);
2126 gboolean is_dir_exist(const gchar *dir)
2131 return g_file_test(dir, G_FILE_TEST_IS_DIR);
2134 gboolean is_file_entry_exist(const gchar *file)
2139 return g_file_test(file, G_FILE_TEST_EXISTS);
2142 gboolean dirent_is_regular_file(struct dirent *d)
2144 #if !defined(G_OS_WIN32) && defined(HAVE_DIRENT_D_TYPE)
2145 if (d->d_type == DT_REG)
2147 else if (d->d_type != DT_UNKNOWN)
2151 return g_file_test(d->d_name, G_FILE_TEST_IS_REGULAR);
2154 gint change_dir(const gchar *dir)
2156 gchar *prevdir = NULL;
2159 prevdir = g_get_current_dir();
2161 if (g_chdir(dir) < 0) {
2162 FILE_OP_ERROR(dir, "chdir");
2163 if (debug_mode) g_free(prevdir);
2165 } else if (debug_mode) {
2168 cwd = g_get_current_dir();
2169 if (strcmp(prevdir, cwd) != 0)
2170 g_print("current dir: %s\n", cwd);
2178 gint make_dir(const gchar *dir)
2180 if (g_mkdir(dir, S_IRWXU) < 0) {
2181 FILE_OP_ERROR(dir, "mkdir");
2184 if (g_chmod(dir, S_IRWXU) < 0)
2185 FILE_OP_ERROR(dir, "chmod");
2190 gint make_dir_hier(const gchar *dir)
2195 for (p = dir; (p = strchr(p, G_DIR_SEPARATOR)) != NULL; p++) {
2196 parent_dir = g_strndup(dir, p - dir);
2197 if (*parent_dir != '\0') {
2198 if (!is_dir_exist(parent_dir)) {
2199 if (make_dir(parent_dir) < 0) {
2208 if (!is_dir_exist(dir)) {
2209 if (make_dir(dir) < 0)
2216 gint remove_all_files(const gchar *dir)
2219 const gchar *file_name;
2222 if ((dp = g_dir_open(dir, 0, NULL)) == NULL) {
2223 g_warning("failed to open directory: %s", dir);
2227 while ((file_name = g_dir_read_name(dp)) != NULL) {
2228 tmp = g_strconcat(dir, G_DIR_SEPARATOR_S, file_name, NULL);
2229 if (claws_unlink(tmp) < 0)
2230 FILE_OP_ERROR(tmp, "unlink");
2239 gint remove_numbered_files(const gchar *dir, guint first, guint last)
2242 const gchar *dir_name;
2246 if (first == last) {
2247 /* Skip all the dir reading part. */
2248 gchar *filename = g_strdup_printf("%s%s%u", dir, G_DIR_SEPARATOR_S, first);
2249 if (is_dir_exist(filename)) {
2250 /* a numbered directory with this name exists,
2251 * remove the dot-file instead */
2253 filename = g_strdup_printf("%s%s.%u", dir, G_DIR_SEPARATOR_S, first);
2255 if (claws_unlink(filename) < 0) {
2256 FILE_OP_ERROR(filename, "unlink");
2264 prev_dir = g_get_current_dir();
2266 if (g_chdir(dir) < 0) {
2267 FILE_OP_ERROR(dir, "chdir");
2272 if ((dp = g_dir_open(".", 0, NULL)) == NULL) {
2273 g_warning("failed to open directory: %s", dir);
2278 while ((dir_name = g_dir_read_name(dp)) != NULL) {
2279 file_no = to_number(dir_name);
2280 if (file_no > 0 && first <= file_no && file_no <= last) {
2281 if (is_dir_exist(dir_name)) {
2282 gchar *dot_file = g_strdup_printf(".%s", dir_name);
2283 if (is_file_exist(dot_file) && claws_unlink(dot_file) < 0) {
2284 FILE_OP_ERROR(dot_file, "unlink");
2289 if (claws_unlink(dir_name) < 0)
2290 FILE_OP_ERROR(dir_name, "unlink");
2296 if (g_chdir(prev_dir) < 0) {
2297 FILE_OP_ERROR(prev_dir, "chdir");
2307 gint remove_numbered_files_not_in_list(const gchar *dir, GSList *numberlist)
2310 const gchar *dir_name;
2313 GHashTable *wanted_files;
2315 GError *error = NULL;
2317 if (numberlist == NULL)
2320 prev_dir = g_get_current_dir();
2322 if (g_chdir(dir) < 0) {
2323 FILE_OP_ERROR(dir, "chdir");
2328 if ((dp = g_dir_open(".", 0, &error)) == NULL) {
2329 g_message("Couldn't open current directory: %s (%d).\n",
2330 error->message, error->code);
2331 g_error_free(error);
2336 wanted_files = g_hash_table_new(g_direct_hash, g_direct_equal);
2337 for (cur = numberlist; cur != NULL; cur = cur->next) {
2338 /* numberlist->data is expected to be GINT_TO_POINTER */
2339 g_hash_table_insert(wanted_files, cur->data, GINT_TO_POINTER(1));
2342 while ((dir_name = g_dir_read_name(dp)) != NULL) {
2343 file_no = to_number(dir_name);
2344 if (is_dir_exist(dir_name))
2346 if (file_no > 0 && g_hash_table_lookup(wanted_files, GINT_TO_POINTER(file_no)) == NULL) {
2347 debug_print("removing unwanted file %d from %s\n", file_no, dir);
2348 if (is_dir_exist(dir_name)) {
2349 gchar *dot_file = g_strdup_printf(".%s", dir_name);
2350 if (is_file_exist(dot_file) && claws_unlink(dot_file) < 0) {
2351 FILE_OP_ERROR(dot_file, "unlink");
2356 if (claws_unlink(dir_name) < 0)
2357 FILE_OP_ERROR(dir_name, "unlink");
2362 g_hash_table_destroy(wanted_files);
2364 if (g_chdir(prev_dir) < 0) {
2365 FILE_OP_ERROR(prev_dir, "chdir");
2375 gint remove_all_numbered_files(const gchar *dir)
2377 return remove_numbered_files(dir, 0, UINT_MAX);
2380 gint remove_dir_recursive(const gchar *dir)
2384 const gchar *dir_name;
2387 if (g_stat(dir, &s) < 0) {
2388 FILE_OP_ERROR(dir, "stat");
2389 if (ENOENT == errno) return 0;
2393 if (!S_ISDIR(s.st_mode)) {
2394 if (claws_unlink(dir) < 0) {
2395 FILE_OP_ERROR(dir, "unlink");
2402 prev_dir = g_get_current_dir();
2403 /* g_print("prev_dir = %s\n", prev_dir); */
2405 if (!path_cmp(prev_dir, dir)) {
2407 if (g_chdir("..") < 0) {
2408 FILE_OP_ERROR(dir, "chdir");
2411 prev_dir = g_get_current_dir();
2414 if (g_chdir(dir) < 0) {
2415 FILE_OP_ERROR(dir, "chdir");
2420 if ((dp = g_dir_open(".", 0, NULL)) == NULL) {
2421 g_warning("failed to open directory: %s", dir);
2427 /* remove all files in the directory */
2428 while ((dir_name = g_dir_read_name(dp)) != NULL) {
2429 /* g_print("removing %s\n", dir_name); */
2431 if (is_dir_exist(dir_name)) {
2434 if ((ret = remove_dir_recursive(dir_name)) < 0) {
2435 g_warning("can't remove directory: %s", dir_name);
2439 if (claws_unlink(dir_name) < 0)
2440 FILE_OP_ERROR(dir_name, "unlink");
2446 if (g_chdir(prev_dir) < 0) {
2447 FILE_OP_ERROR(prev_dir, "chdir");
2454 if (g_rmdir(dir) < 0) {
2455 FILE_OP_ERROR(dir, "rmdir");
2462 gint rename_force(const gchar *oldpath, const gchar *newpath)
2465 if (!is_file_entry_exist(oldpath)) {
2469 if (is_file_exist(newpath)) {
2470 if (claws_unlink(newpath) < 0)
2471 FILE_OP_ERROR(newpath, "unlink");
2474 return g_rename(oldpath, newpath);
2478 * Append src file body to the tail of dest file.
2479 * Now keep_backup has no effects.
2481 gint append_file(const gchar *src, const gchar *dest, gboolean keep_backup)
2483 FILE *src_fp, *dest_fp;
2487 gboolean err = FALSE;
2489 if ((src_fp = g_fopen(src, "rb")) == NULL) {
2490 FILE_OP_ERROR(src, "g_fopen");
2494 if ((dest_fp = g_fopen(dest, "ab")) == NULL) {
2495 FILE_OP_ERROR(dest, "g_fopen");
2500 if (change_file_mode_rw(dest_fp, dest) < 0) {
2501 FILE_OP_ERROR(dest, "chmod");
2502 g_warning("can't change file mode: %s", dest);
2505 while ((n_read = fread(buf, sizeof(gchar), sizeof(buf), src_fp)) > 0) {
2506 if (n_read < sizeof(buf) && ferror(src_fp))
2508 if (fwrite(buf, 1, n_read, dest_fp) < n_read) {
2509 g_warning("writing to %s failed.", dest);
2517 if (ferror(src_fp)) {
2518 FILE_OP_ERROR(src, "fread");
2522 if (fclose(dest_fp) == EOF) {
2523 FILE_OP_ERROR(dest, "fclose");
2535 gint copy_file(const gchar *src, const gchar *dest, gboolean keep_backup)
2537 FILE *src_fp, *dest_fp;
2540 gchar *dest_bak = NULL;
2541 gboolean err = FALSE;
2543 if ((src_fp = g_fopen(src, "rb")) == NULL) {
2544 FILE_OP_ERROR(src, "g_fopen");
2547 if (is_file_exist(dest)) {
2548 dest_bak = g_strconcat(dest, ".bak", NULL);
2549 if (rename_force(dest, dest_bak) < 0) {
2550 FILE_OP_ERROR(dest, "rename");
2557 if ((dest_fp = g_fopen(dest, "wb")) == NULL) {
2558 FILE_OP_ERROR(dest, "g_fopen");
2561 if (rename_force(dest_bak, dest) < 0)
2562 FILE_OP_ERROR(dest_bak, "rename");
2568 if (change_file_mode_rw(dest_fp, dest) < 0) {
2569 FILE_OP_ERROR(dest, "chmod");
2570 g_warning("can't change file mode: %s", dest);
2573 while ((n_read = fread(buf, sizeof(gchar), sizeof(buf), src_fp)) > 0) {
2574 if (n_read < sizeof(buf) && ferror(src_fp))
2576 if (fwrite(buf, 1, n_read, dest_fp) < n_read) {
2577 g_warning("writing to %s failed.", dest);
2582 if (rename_force(dest_bak, dest) < 0)
2583 FILE_OP_ERROR(dest_bak, "rename");
2590 if (ferror(src_fp)) {
2591 FILE_OP_ERROR(src, "fread");
2595 if (fclose(dest_fp) == EOF) {
2596 FILE_OP_ERROR(dest, "fclose");
2603 if (rename_force(dest_bak, dest) < 0)
2604 FILE_OP_ERROR(dest_bak, "rename");
2610 if (keep_backup == FALSE && dest_bak)
2611 claws_unlink(dest_bak);
2618 gint move_file(const gchar *src, const gchar *dest, gboolean overwrite)
2620 if (overwrite == FALSE && is_file_exist(dest)) {
2621 g_warning("move_file(): file %s already exists.", dest);
2625 if (rename_force(src, dest) == 0) return 0;
2627 if (EXDEV != errno) {
2628 FILE_OP_ERROR(src, "rename");
2632 if (copy_file(src, dest, FALSE) < 0) return -1;
2639 gint copy_file_part_to_fp(FILE *fp, off_t offset, size_t length, FILE *dest_fp)
2642 gint bytes_left, to_read;
2645 if (fseek(fp, offset, SEEK_SET) < 0) {
2650 bytes_left = length;
2651 to_read = MIN(bytes_left, sizeof(buf));
2653 while ((n_read = fread(buf, sizeof(gchar), to_read, fp)) > 0) {
2654 if (n_read < to_read && ferror(fp))
2656 if (fwrite(buf, 1, n_read, dest_fp) < n_read) {
2659 bytes_left -= n_read;
2660 if (bytes_left == 0)
2662 to_read = MIN(bytes_left, sizeof(buf));
2673 gint copy_file_part(FILE *fp, off_t offset, size_t length, const gchar *dest)
2676 gboolean err = FALSE;
2678 if ((dest_fp = g_fopen(dest, "wb")) == NULL) {
2679 FILE_OP_ERROR(dest, "g_fopen");
2683 if (change_file_mode_rw(dest_fp, dest) < 0) {
2684 FILE_OP_ERROR(dest, "chmod");
2685 g_warning("can't change file mode: %s", dest);
2688 if (copy_file_part_to_fp(fp, offset, length, dest_fp) < 0)
2691 if (!err && fclose(dest_fp) == EOF) {
2692 FILE_OP_ERROR(dest, "fclose");
2697 g_warning("writing to %s failed.", dest);
2705 /* convert line endings into CRLF. If the last line doesn't end with
2706 * linebreak, add it.
2708 gchar *canonicalize_str(const gchar *str)
2714 for (p = str; *p != '\0'; ++p) {
2721 if (p == str || *(p - 1) != '\n')
2724 out = outp = g_malloc(new_len + 1);
2725 for (p = str; *p != '\0'; ++p) {
2732 if (p == str || *(p - 1) != '\n') {
2741 gint canonicalize_file(const gchar *src, const gchar *dest)
2743 FILE *src_fp, *dest_fp;
2744 gchar buf[BUFFSIZE];
2746 gboolean err = FALSE;
2747 gboolean last_linebreak = FALSE;
2749 if (src == NULL || dest == NULL)
2752 if ((src_fp = g_fopen(src, "rb")) == NULL) {
2753 FILE_OP_ERROR(src, "g_fopen");
2757 if ((dest_fp = g_fopen(dest, "wb")) == NULL) {
2758 FILE_OP_ERROR(dest, "g_fopen");
2763 if (change_file_mode_rw(dest_fp, dest) < 0) {
2764 FILE_OP_ERROR(dest, "chmod");
2765 g_warning("can't change file mode: %s", dest);
2768 while (fgets(buf, sizeof(buf), src_fp) != NULL) {
2772 if (len == 0) break;
2773 last_linebreak = FALSE;
2775 if (buf[len - 1] != '\n') {
2776 last_linebreak = TRUE;
2777 r = fputs(buf, dest_fp);
2778 } else if (len > 1 && buf[len - 1] == '\n' && buf[len - 2] == '\r') {
2779 r = fputs(buf, dest_fp);
2782 r = fwrite(buf, 1, len - 1, dest_fp);
2787 r = fputs("\r\n", dest_fp);
2791 g_warning("writing to %s failed.", dest);
2799 if (last_linebreak == TRUE) {
2800 if (fputs("\r\n", dest_fp) == EOF)
2804 if (ferror(src_fp)) {
2805 FILE_OP_ERROR(src, "fgets");
2809 if (fclose(dest_fp) == EOF) {
2810 FILE_OP_ERROR(dest, "fclose");
2822 gint canonicalize_file_replace(const gchar *file)
2826 tmp_file = get_tmp_file();
2828 if (canonicalize_file(file, tmp_file) < 0) {
2833 if (move_file(tmp_file, file, TRUE) < 0) {
2834 g_warning("can't replace file: %s", file);
2835 claws_unlink(tmp_file);
2844 gchar *normalize_newlines(const gchar *str)
2849 out = outp = g_malloc(strlen(str) + 1);
2850 for (p = str; *p != '\0'; ++p) {
2852 if (*(p + 1) != '\n')
2863 gchar *get_outgoing_rfc2822_str(FILE *fp)
2865 gchar buf[BUFFSIZE];
2869 str = g_string_new(NULL);
2871 /* output header part */
2872 while (fgets(buf, sizeof(buf), fp) != NULL) {
2874 if (!g_ascii_strncasecmp(buf, "Bcc:", 4)) {
2881 else if (next != ' ' && next != '\t') {
2885 if (fgets(buf, sizeof(buf), fp) == NULL)
2889 g_string_append(str, buf);
2890 g_string_append(str, "\r\n");
2896 /* output body part */
2897 while (fgets(buf, sizeof(buf), fp) != NULL) {
2900 g_string_append_c(str, '.');
2901 g_string_append(str, buf);
2902 g_string_append(str, "\r\n");
2906 g_string_free(str, FALSE);
2912 * Create a new boundary in a way that it is very unlikely that this
2913 * will occur in the following text. It would be easy to ensure
2914 * uniqueness if everything is either quoted-printable or base64
2915 * encoded (note that conversion is allowed), but because MIME bodies
2916 * may be nested, it may happen that the same boundary has already
2919 * boundary := 0*69<bchars> bcharsnospace
2920 * bchars := bcharsnospace / " "
2921 * bcharsnospace := DIGIT / ALPHA / "'" / "(" / ")" /
2922 * "+" / "_" / "," / "-" / "." /
2923 * "/" / ":" / "=" / "?"
2925 * some special characters removed because of buggy MTAs
2928 gchar *generate_mime_boundary(const gchar *prefix)
2930 static gchar tbl[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
2931 "abcdefghijklmnopqrstuvwxyz"
2936 for (i = 0; i < sizeof(buf_uniq) - 1; i++)
2937 buf_uniq[i] = tbl[g_random_int_range(0, sizeof(tbl) - 1)];
2940 return g_strdup_printf("%s_/%s", prefix ? prefix : "MP",
2944 gint change_file_mode_rw(FILE *fp, const gchar *file)
2947 return fchmod(fileno(fp), S_IRUSR|S_IWUSR);
2949 return g_chmod(file, S_IRUSR|S_IWUSR);
2953 FILE *my_tmpfile(void)
2955 const gchar suffix[] = ".XXXXXX";
2956 const gchar *tmpdir;
2958 const gchar *progname;
2967 tmpdir = get_tmp_dir();
2968 tmplen = strlen(tmpdir);
2969 progname = g_get_prgname();
2970 if (progname == NULL)
2971 progname = "claws-mail";
2972 proglen = strlen(progname);
2973 Xalloca(fname, tmplen + 1 + proglen + sizeof(suffix),
2976 memcpy(fname, tmpdir, tmplen);
2977 fname[tmplen] = G_DIR_SEPARATOR;
2978 memcpy(fname + tmplen + 1, progname, proglen);
2979 memcpy(fname + tmplen + 1 + proglen, suffix, sizeof(suffix));
2981 fd = g_mkstemp(fname);
2986 claws_unlink(fname);
2988 /* verify that we can write in the file after unlinking */
2989 if (write(fd, buf, 1) < 0) {
2996 fp = fdopen(fd, "w+b");
3007 FILE *get_tmpfile_in_dir(const gchar *dir, gchar **filename)
3010 *filename = g_strdup_printf("%s%cclaws.XXXXXX", dir, G_DIR_SEPARATOR);
3011 fd = g_mkstemp(*filename);
3014 return fdopen(fd, "w+");
3017 FILE *str_open_as_stream(const gchar *str)
3022 cm_return_val_if_fail(str != NULL, NULL);
3026 FILE_OP_ERROR("str_open_as_stream", "my_tmpfile");
3031 if (len == 0) return fp;
3033 if (fwrite(str, 1, len, fp) != len) {
3034 FILE_OP_ERROR("str_open_as_stream", "fwrite");
3043 gint str_write_to_file(const gchar *str, const gchar *file)
3048 cm_return_val_if_fail(str != NULL, -1);
3049 cm_return_val_if_fail(file != NULL, -1);
3051 if ((fp = g_fopen(file, "wb")) == NULL) {
3052 FILE_OP_ERROR(file, "g_fopen");
3062 if (fwrite(str, 1, len, fp) != len) {
3063 FILE_OP_ERROR(file, "fwrite");
3069 if (fclose(fp) == EOF) {
3070 FILE_OP_ERROR(file, "fclose");
3078 static gchar *file_read_stream_to_str_full(FILE *fp, gboolean recode)
3085 cm_return_val_if_fail(fp != NULL, NULL);
3087 array = g_byte_array_new();
3089 while ((n_read = fread(buf, sizeof(gchar), sizeof(buf), fp)) > 0) {
3090 if (n_read < sizeof(buf) && ferror(fp))
3092 g_byte_array_append(array, buf, n_read);
3096 FILE_OP_ERROR("file stream", "fread");
3097 g_byte_array_free(array, TRUE);
3102 g_byte_array_append(array, buf, 1);
3103 str = (gchar *)array->data;
3104 g_byte_array_free(array, FALSE);
3106 if (recode && !g_utf8_validate(str, -1, NULL)) {
3107 const gchar *src_codeset, *dest_codeset;
3109 src_codeset = conv_get_locale_charset_str();
3110 dest_codeset = CS_UTF_8;
3111 tmp = conv_codeset_strdup(str, src_codeset, dest_codeset);
3119 static gchar *file_read_to_str_full(const gchar *file, gboolean recode)
3126 struct timeval timeout = {1, 0};
3131 cm_return_val_if_fail(file != NULL, NULL);
3133 if (g_stat(file, &s) != 0) {
3134 FILE_OP_ERROR(file, "stat");
3137 if (S_ISDIR(s.st_mode)) {
3138 g_warning("%s: is a directory", file);
3143 fp = g_fopen (file, "rb");
3145 FILE_OP_ERROR(file, "open");
3149 /* test whether the file is readable without blocking */
3150 fd = g_open(file, O_RDONLY | O_NONBLOCK, 0);
3152 FILE_OP_ERROR(file, "open");
3159 /* allow for one second */
3160 err = select(fd+1, &fds, NULL, NULL, &timeout);
3161 if (err <= 0 || !FD_ISSET(fd, &fds)) {
3163 FILE_OP_ERROR(file, "select");
3165 g_warning("%s: doesn't seem readable", file);
3171 /* Now clear O_NONBLOCK */
3172 if ((fflags = fcntl(fd, F_GETFL)) < 0) {
3173 FILE_OP_ERROR(file, "fcntl (F_GETFL)");
3177 if (fcntl(fd, F_SETFL, (fflags & ~O_NONBLOCK)) < 0) {
3178 FILE_OP_ERROR(file, "fcntl (F_SETFL)");
3183 /* get the FILE pointer */
3184 fp = fdopen(fd, "rb");
3187 FILE_OP_ERROR(file, "fdopen");
3188 close(fd); /* if fp isn't NULL, we'll use fclose instead! */
3193 str = file_read_stream_to_str_full(fp, recode);
3200 gchar *file_read_to_str(const gchar *file)
3202 return file_read_to_str_full(file, TRUE);
3204 gchar *file_read_stream_to_str(FILE *fp)
3206 return file_read_stream_to_str_full(fp, TRUE);
3209 gchar *file_read_to_str_no_recode(const gchar *file)
3211 return file_read_to_str_full(file, FALSE);
3213 gchar *file_read_stream_to_str_no_recode(FILE *fp)
3215 return file_read_stream_to_str_full(fp, FALSE);
3218 char *fgets_crlf(char *buf, int size, FILE *stream)
3220 gboolean is_cr = FALSE;
3221 gboolean last_was_cr = FALSE;
3226 while (--size > 0 && (c = getc(stream)) != EOF)
3229 is_cr = (c == '\r');
3239 last_was_cr = is_cr;
3241 if (c == EOF && cs == buf)
3249 static gint execute_async(gchar *const argv[], const gchar *working_directory)
3251 cm_return_val_if_fail(argv != NULL && argv[0] != NULL, -1);
3253 if (g_spawn_async(working_directory, (gchar **)argv, NULL, G_SPAWN_SEARCH_PATH,
3254 NULL, NULL, NULL, FALSE) == FALSE) {
3255 g_warning("couldn't execute command: %s", argv[0]);
3262 static gint execute_sync(gchar *const argv[], const gchar *working_directory)
3266 cm_return_val_if_fail(argv != NULL && argv[0] != NULL, -1);
3269 if (g_spawn_sync(working_directory, (gchar **)argv, NULL, G_SPAWN_SEARCH_PATH,
3270 NULL, NULL, NULL, NULL, &status, NULL) == FALSE) {
3271 g_warning("couldn't execute command: %s", argv[0]);
3275 if (WIFEXITED(status))
3276 return WEXITSTATUS(status);
3280 if (g_spawn_sync(working_directory, (gchar **)argv, NULL,
3281 G_SPAWN_SEARCH_PATH|
3282 G_SPAWN_CHILD_INHERITS_STDIN|
3283 G_SPAWN_LEAVE_DESCRIPTORS_OPEN,
3284 NULL, NULL, NULL, NULL, &status, NULL) == FALSE) {
3285 g_warning("couldn't execute command: %s", argv[0]);
3293 gint execute_command_line(const gchar *cmdline, gboolean async,
3294 const gchar *working_directory)
3299 debug_print("execute_command_line(): executing: %s\n", cmdline?cmdline:"(null)");
3301 argv = strsplit_with_quote(cmdline, " ", 0);
3304 ret = execute_async(argv, working_directory);
3306 ret = execute_sync(argv, working_directory);
3313 gchar *get_command_output(const gchar *cmdline)
3315 gchar *child_stdout;
3318 cm_return_val_if_fail(cmdline != NULL, NULL);
3320 debug_print("get_command_output(): executing: %s\n", cmdline);
3322 if (g_spawn_command_line_sync(cmdline, &child_stdout, NULL, &status,
3324 g_warning("couldn't execute command: %s", cmdline);
3328 return child_stdout;
3331 static gint is_unchanged_uri_char(char c)
3342 static void encode_uri(gchar *encoded_uri, gint bufsize, const gchar *uri)
3348 for(i = 0; i < strlen(uri) ; i++) {
3349 if (is_unchanged_uri_char(uri[i])) {
3350 if (k + 2 >= bufsize)
3352 encoded_uri[k++] = uri[i];
3355 char * hexa = "0123456789ABCDEF";
3357 if (k + 4 >= bufsize)
3359 encoded_uri[k++] = '%';
3360 encoded_uri[k++] = hexa[uri[i] / 16];
3361 encoded_uri[k++] = hexa[uri[i] % 16];
3367 gint open_uri(const gchar *uri, const gchar *cmdline)
3371 gchar buf[BUFFSIZE];
3373 gchar encoded_uri[BUFFSIZE];
3374 cm_return_val_if_fail(uri != NULL, -1);
3376 /* an option to choose whether to use encode_uri or not ? */
3377 encode_uri(encoded_uri, BUFFSIZE, uri);
3380 (p = strchr(cmdline, '%')) && *(p + 1) == 's' &&
3381 !strchr(p + 2, '%'))
3382 g_snprintf(buf, sizeof(buf), cmdline, encoded_uri);
3385 g_warning("Open URI command-line is invalid "
3386 "(there must be only one '%%s'): %s",
3388 g_snprintf(buf, sizeof(buf), DEFAULT_BROWSER_CMD, encoded_uri);
3391 execute_command_line(buf, TRUE, NULL);
3393 ShellExecute(NULL, "open", uri, NULL, NULL, SW_SHOW);
3398 gint open_txt_editor(const gchar *filepath, const gchar *cmdline)
3400 gchar buf[BUFFSIZE];
3403 cm_return_val_if_fail(filepath != NULL, -1);
3406 (p = strchr(cmdline, '%')) && *(p + 1) == 's' &&
3407 !strchr(p + 2, '%'))
3408 g_snprintf(buf, sizeof(buf), cmdline, filepath);
3411 g_warning("Open Text Editor command-line is invalid "
3412 "(there must be only one '%%s'): %s",
3414 g_snprintf(buf, sizeof(buf), DEFAULT_EDITOR_CMD, filepath);
3417 execute_command_line(buf, TRUE, NULL);
3422 time_t remote_tzoffset_sec(const gchar *zone)
3424 static gchar ustzstr[] = "PSTPDTMSTMDTCSTCDTESTEDT";
3430 time_t remoteoffset;
3432 strncpy(zone3, zone, 3);
3436 if (sscanf(zone, "%c%d", &c, &offset) == 2 &&
3437 (c == '+' || c == '-')) {
3438 remoteoffset = ((offset / 100) * 60 + (offset % 100)) * 60;
3440 remoteoffset = -remoteoffset;
3441 } else if (!strncmp(zone, "UT" , 2) ||
3442 !strncmp(zone, "GMT", 3)) {
3444 } else if (strlen(zone3) == 3) {
3445 for (p = ustzstr; *p != '\0'; p += 3) {
3446 if (!g_ascii_strncasecmp(p, zone3, 3)) {
3447 iustz = ((gint)(p - ustzstr) / 3 + 1) / 2 - 8;
3448 remoteoffset = iustz * 3600;
3454 } else if (strlen(zone3) == 1) {
3456 case 'Z': remoteoffset = 0; break;
3457 case 'A': remoteoffset = -1; break;
3458 case 'B': remoteoffset = -2; break;
3459 case 'C': remoteoffset = -3; break;
3460 case 'D': remoteoffset = -4; break;
3461 case 'E': remoteoffset = -5; break;
3462 case 'F': remoteoffset = -6; break;
3463 case 'G': remoteoffset = -7; break;
3464 case 'H': remoteoffset = -8; break;
3465 case 'I': remoteoffset = -9; break;
3466 case 'K': remoteoffset = -10; break; /* J is not used */
3467 case 'L': remoteoffset = -11; break;
3468 case 'M': remoteoffset = -12; break;
3469 case 'N': remoteoffset = 1; break;
3470 case 'O': remoteoffset = 2; break;
3471 case 'P': remoteoffset = 3; break;
3472 case 'Q': remoteoffset = 4; break;
3473 case 'R': remoteoffset = 5; break;
3474 case 'S': remoteoffset = 6; break;
3475 case 'T': remoteoffset = 7; break;
3476 case 'U': remoteoffset = 8; break;
3477 case 'V': remoteoffset = 9; break;
3478 case 'W': remoteoffset = 10; break;
3479 case 'X': remoteoffset = 11; break;
3480 case 'Y': remoteoffset = 12; break;
3481 default: remoteoffset = 0; break;
3483 remoteoffset = remoteoffset * 3600;
3487 return remoteoffset;
3490 time_t tzoffset_sec(time_t *now)
3494 struct tm buf1, buf2;
3496 if (now && *now < 0)
3499 gmt = *gmtime_r(now, &buf1);
3500 lt = localtime_r(now, &buf2);
3502 off = (lt->tm_hour - gmt.tm_hour) * 60 + lt->tm_min - gmt.tm_min;
3504 if (lt->tm_year < gmt.tm_year)
3506 else if (lt->tm_year > gmt.tm_year)
3508 else if (lt->tm_yday < gmt.tm_yday)
3510 else if (lt->tm_yday > gmt.tm_yday)
3513 if (off >= 24 * 60) /* should be impossible */
3514 off = 23 * 60 + 59; /* if not, insert silly value */
3515 if (off <= -24 * 60)
3516 off = -(23 * 60 + 59);
3521 /* calculate timezone offset */
3522 gchar *tzoffset(time_t *now)
3524 static gchar offset_string[6];
3528 struct tm buf1, buf2;
3530 if (now && *now < 0)
3533 gmt = *gmtime_r(now, &buf1);
3534 lt = localtime_r(now, &buf2);
3536 off = (lt->tm_hour - gmt.tm_hour) * 60 + lt->tm_min - gmt.tm_min;
3538 if (lt->tm_year < gmt.tm_year)
3540 else if (lt->tm_year > gmt.tm_year)
3542 else if (lt->tm_yday < gmt.tm_yday)
3544 else if (lt->tm_yday > gmt.tm_yday)
3552 if (off >= 24 * 60) /* should be impossible */
3553 off = 23 * 60 + 59; /* if not, insert silly value */
3555 sprintf(offset_string, "%c%02d%02d", sign, off / 60, off % 60);
3557 return offset_string;
3560 static void _get_rfc822_date(gchar *buf, gint len, gboolean hidetz)
3564 gchar day[4], mon[4];
3565 gint dd, hh, mm, ss, yyyy;
3567 gchar buf2[BUFFSIZE];
3570 lt = localtime_r(&t, &buf1);
3572 sscanf(asctime_r(lt, buf2), "%3s %3s %d %d:%d:%d %d\n",
3573 day, mon, &dd, &hh, &mm, &ss, &yyyy);
3575 g_snprintf(buf, len, "%s, %d %s %d %02d:%02d:%02d %s",
3576 day, dd, mon, yyyy, hh, mm, ss, (hidetz? "-0000": tzoffset(&t)));
3579 void get_rfc822_date(gchar *buf, gint len)
3581 _get_rfc822_date(buf, len, FALSE);
3584 void get_rfc822_date_hide_tz(gchar *buf, gint len)
3586 _get_rfc822_date(buf, len, TRUE);
3589 void debug_set_mode(gboolean mode)
3594 gboolean debug_get_mode(void)
3599 void debug_print_real(const gchar *format, ...)