remove unnecessary debug_print
[claws.git] / src / plugins / clamav / clamav_plugin.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2003 Hiroyuki Yamamoto and the Sylpheed-Claws Team
4  *
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 2 of the License, or
8  * (at your option) any later version.
9  *
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.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include "defs.h"
25
26 #include <glib.h>
27 #include <clamav.h>
28
29 #include "intl.h"
30 #include "plugin.h"
31 #include "utils.h"
32 #include "hooks.h"
33 #include "inc.h"
34 #include "mimeview.h"
35 #include "folder.h"
36 #include "prefs.h"
37 #include "prefs_gtk.h"
38
39 #include "clamav_plugin.h"
40
41 static gint hook_id;
42
43 static ClamAvConfig config;
44
45 static PrefParam param[] = {
46         {"clamav_enable", "FALSE", &config.clamav_enable, P_BOOL,
47          NULL, NULL, NULL},
48         {"clamav_enable_arc", "FALSE", &config.clamav_enable_arc, P_BOOL,
49          NULL, NULL, NULL},
50         {"clamav_max_size", "1", &config.clamav_max_size, P_USHORT,
51          NULL, NULL, NULL},
52         {"clamav_recv_infected", "TRUE", &config.clamav_recv_infected, P_BOOL,
53          NULL, NULL, NULL},
54         {"clamav_save_folder", NULL, &config.clamav_save_folder, P_STRING,
55          NULL, NULL, NULL},
56
57         {NULL, NULL, NULL, P_OTHER, NULL, NULL, NULL}
58 };
59
60 #define IS_FIRST_PART_TEXT(info) \
61         ((info->mime_type == MIME_TEXT || info->mime_type == MIME_TEXT_HTML || \
62           info->mime_type == MIME_TEXT_ENRICHED) || \
63          (info->mime_type == MIME_MULTIPART && info->content_type && \
64           !strcasecmp(info->content_type, "multipart/alternative") && \
65           (info->children && \
66            (info->children->mime_type == MIME_TEXT || \
67             info->children->mime_type == MIME_TEXT_HTML || \
68             info->children->mime_type == MIME_TEXT_ENRICHED))))
69
70 static gboolean mail_filtering_hook(gpointer source, gpointer data)
71 {
72         MailFilteringData *mail_filtering_data = (MailFilteringData *) source;
73         MsgInfo *msginfo = mail_filtering_data->msginfo;
74         gboolean is_infected = FALSE;
75         FILE  *fp;
76         MimeInfo *mimeinfo;
77         MimeInfo *child;
78         gchar *infile;
79         gchar *outfile;
80         gint scan_archive = 0;
81
82         int ret, no;
83         unsigned long int size;
84         char *virname;
85         struct cl_node *root = NULL;
86         struct cl_limits limits;
87
88         if (!config.clamav_enable)
89                 return FALSE;
90
91         fp = procmsg_open_message(msginfo);
92         if (fp == NULL) {
93                 debug_print("failed to open message file");
94         } 
95         
96         mimeinfo = procmime_scan_message(msginfo);
97         if (!mimeinfo) return FALSE;
98
99         child = mimeinfo->children;
100         if (!child || IS_FIRST_PART_TEXT(mimeinfo)) {
101                 procmime_mimeinfo_free_all(mimeinfo);
102                 return FALSE;
103         }
104
105         debug_print("Scanning message %d for viruses\n", msginfo->msgnum);
106
107         if (IS_FIRST_PART_TEXT(child))
108                 child = child->next;
109
110         infile = procmsg_get_message_file_path(msginfo);
111
112
113         if((ret = cl_loaddbdir(cl_retdbdir(), &root, &no))) {
114                 debug_print("cl_loaddbdir: %s\n", cl_perror(ret));
115                 exit(2);
116         }
117
118         debug_print("Loaded %d viruses.\n", no);
119
120         cl_buildtrie(root);
121
122         limits.maxfiles = 1000; /* max files */
123         limits.maxfilesize = config.clamav_max_size * 1048576; /* maximum archived file size */
124         limits.maxreclevel = 8; /* maximum recursion level */
125
126         if (config.clamav_enable_arc)
127                 scan_archive = TRUE;
128
129         while (child != NULL) {
130                 if (child->children || child->mime_type == MIME_MULTIPART) {
131                         child = procmime_mimeinfo_next(child);
132                         continue;
133                 }
134                 if(child->parent && child->parent->parent
135                 && !strcasecmp(child->parent->parent->content_type, "multipart/signed")
136                 && child->mime_type == MIME_TEXT) {
137                         /* this is the main text part of a signed message */
138                         child = procmime_mimeinfo_next(child);
139                         continue;
140                 }
141                 outfile = procmime_get_tmp_file_name(child);
142                 if (procmime_get_part(outfile, infile, child) < 0)
143                         g_warning("Can't get the part of multipart message.");
144                 else {
145                         debug_print("Scanning %s\n", outfile);
146                         if ((ret = cl_scanfile(outfile, &virname, &size, root, 
147                                               &limits, scan_archive)) == CL_VIRUS) {
148                                 is_infected = TRUE;
149                                 debug_print("Detected %s virus.\n", virname); 
150                         } else {
151                                 debug_print("No virus detected.\n");
152                                 if (ret != CL_CLEAN)
153                                         debug_print("Error: %s\n", cl_perror(ret));
154                         }
155
156                         unlink(outfile);
157
158                         if (is_infected) break;
159                         child = child->next;
160                 }
161         }
162
163         if (is_infected) {
164                 if (config.clamav_recv_infected) {
165                         FolderItem *clamav_save_folder;
166
167                         if ((!config.clamav_save_folder) ||
168                             (config.clamav_save_folder[0] == '\0') ||
169                             ((clamav_save_folder = folder_find_item_from_identifier(config.clamav_save_folder)) == NULL))
170                                     clamav_save_folder = folder_get_default_trash();
171
172                         procmsg_msginfo_unset_flags(msginfo, ~0, 0);
173                         folder_item_move_msg(clamav_save_folder, msginfo);
174                 } else {
175                         folder_item_remove_msg(msginfo->folder, msginfo->msgnum);
176                 }
177         }
178         
179         cl_freetrie(root);
180         g_free(infile);
181         procmime_mimeinfo_free_all(mimeinfo);
182         
183         return is_infected;
184 }
185
186 #undef IS_FIRST_PART_TEXT
187
188 ClamAvConfig *clamav_get_config(void)
189 {
190         return &config;
191 }
192
193 void clamav_save_config(void)
194 {
195         PrefFile *pfile;
196         gchar *rcpath;
197
198         debug_print("Saving ClamAV Page\n");
199
200         rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, COMMON_RC, NULL);
201         pfile = prefs_write_open(rcpath);
202         g_free(rcpath);
203         if (!pfile || (prefs_set_block_label(pfile, "ClamAV") < 0))
204                 return;
205
206         if (prefs_write_param(param, pfile->fp) < 0) {
207                 g_warning("failed to write ClamAV configuration to file\n");
208                 prefs_file_close_revert(pfile);
209                 return;
210         }
211         fprintf(pfile->fp, "\n");
212
213         prefs_file_close(pfile);
214 }
215
216 gint plugin_init(gchar **error)
217 {
218         hook_id = hooks_register_hook(MAIL_FILTERING_HOOKLIST, mail_filtering_hook, NULL);
219         if (hook_id == -1) {
220                 *error = g_strdup("Failed to register mail filtering hook");
221                 return -1;
222         }
223
224         prefs_set_default(param);
225         prefs_read_config(param, "ClamAV", COMMON_RC);
226
227         debug_print("ClamAV plugin loaded\n");
228
229         return 0;
230         
231 }
232
233 void plugin_done(void)
234 {
235         hooks_unregister_hook(MAIL_FILTERING_HOOKLIST, hook_id);
236         g_free(config.clamav_save_folder);
237         
238         debug_print("ClamAV plugin unloaded\n");
239 }
240
241 const gchar *plugin_name(void)
242 {
243         return _("Clam AntiVirus");
244 }
245
246 const gchar *plugin_desc(void)
247 {
248         return _("This plugin uses Clam AntiVirus to scan all message attachments "
249                "that are received from a POP account.\n"
250                "\n"
251                "When a message attachment is found to contain a virus it can be "
252                "deleted or saved in a specially designated folder.\n"
253                "\n"
254                "This plugin only contains the actual function for scanning "
255                "and deleting or moving the message. You probably want to load "
256                "the Gtk+ User Interface plugin too, otherwise you will have to "
257                "manually write the plugin configuration.\n");
258 }
259
260 const gchar *plugin_type(void)
261 {
262         return "Common";
263 }