File: scanner_clamd.c

package info (click to toggle)
p3scan 2%3A2.3.2-8.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 2,096 kB
  • ctags: 2,616
  • sloc: ansic: 14,636; sh: 281; makefile: 267
file content (318 lines) | stat: -rw-r--r-- 10,853 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
/*
 * P3Scan v2.3.2
 *
 * (C) 2003-2005 by Jack S. Lai <laitcg@cox.net>
 *
 * It's intent is to provide a follow on program to POP3-Virusscan-Proxy 0.4
 * by Folke Ashberg <folke@ashberg.de>.
 *
 * It is based upon his program but provides numerous changes to include
 * scanning pop3 mail for spam, hardening the program, addaption to todays
 * email environment, and many other changes.
 *
 * The initial release of p3scan includes patches made and submitted to the
 * original project but were never incorporated. Please see the README for
 * further information.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * This program is released under the GPL with the additional exemption that
 * compiling, linking, and/or using OpenSSL is allowed."
 * (http://www.openssl.org/support/faq.html#LEGAL2)
 *
 */

#define _GNU_SOURCE

#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <unistd.h>
#include <string.h>
#include <strings.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <errno.h>
#include <sysexits.h>
#include <stdlib.h>
#include <pcre.h>
#include <sys/stat.h>
#include <fcntl.h>

#include "p3scan.h"
#include "getlinep3.h"

#define DEFAULT_SERVER  "127.0.0.1"
#define DEFAULT_PORT    "3310"
#define COMMAND         "STREAM\r\n"
#undef DEBUG_MESSAGE
struct configuration_t * config;

extern char *substr(char *string, int start, size_t count);
extern int checktimeout(struct proxycontext *p);
extern void * w_malloc(size_t bytes);
extern void w_free(void *f_address);

int check(struct proxycontext *p, char * filetoscan, char ** virname){
   int pri_socket=0,sec_socket=0;
   int ret=0, sendret=0;
   int buf_len=0;
   int mailfd=0;
   unsigned long len=0;
   int   loc,loc2;
   char  *tmp=NULL;
   char buf[256]="";
   char *buf_c;
   char *port=NULL;
#define VISIZE 1000
   char *vi=w_malloc(VISIZE);
   struct sockaddr_in clamd_pri, clamd_sec;
   struct linebuf *filebuf;

   if (vi==NULL) return SCANNER_RET_ERR;
   /* Create socket */

   pri_socket = socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);

   if (pri_socket == -1){
      do_log(LOG_CRIT, "Could not create socket!");
      return SCANNER_RET_ERR;
   }
   if (!strncmp(config->clamdport,"110",3) || atol(config->clamdport)==config->sslport){
      /* TODO: Why is this variable getting blown away when "useurl" is enabled? */
      tmp=strchr(config->virusscanner,':');
      loc = tmp-config->virusscanner;
      loc2 = tmp-config->virusscanner+1;
      len=strlen(config->virusscanner);
      config->clamdport=substr(config->virusscanner,loc2,len);
      config->clamdserver=strndup(config->virusscanner,loc); //TODO: 6 bytes in 1 blocks are definitely lost in loss record 1 of 2
      do_log(LOG_DEBUG, "Reset ClamdServer to: %s Port: %s",config->clamdserver, config->clamdport);
   }
   bzero(&clamd_pri, sizeof(clamd_pri));
   clamd_pri.sin_family = AF_INET;
   clamd_pri.sin_addr.s_addr = inet_addr(config->clamdserver);
   clamd_pri.sin_port = htons(strtoul(config->clamdport, NULL, 10));

   /* Connect to server */
   ret = connect(pri_socket,(struct sockaddr *) &clamd_pri, sizeof(clamd_pri));

   if (ret != 0){
      do_log(LOG_CRIT, "Could not connect!");
      close(pri_socket);
      return SCANNER_RET_ERR;
   }
   /* Send "STREAM" command */
   if (write(pri_socket,COMMAND,strlen(COMMAND))==-1){
      do_log(LOG_DEBUG, "write(): %s", strerror(errno));
      do_log(LOG_CRIT,"write(): %s", strerror(errno));
      close(pri_socket);
      return EX_IOERR;  // errno: 74
   }
   /* Read server response to get new port number */
   if ((buf_len=read(pri_socket,buf,sizeof(buf)-1))==-1){
      do_log(LOG_DEBUG, "read(): %s", strerror(errno));
      do_log(LOG_CRIT,"read(): %s", strerror(errno));
      return EX_IOERR;
   }
   /* Parse port number from "PORT XX..." */
   buf[buf_len] = 0;
   if (strncasecmp(buf, "PORT ", sizeof("PORT ") -1) != 0) {
      do_log(LOG_DEBUG, "could not get port!");
      close(pri_socket);
      return EX_PROTOCOL; // errno: 76
   }
   port = buf + sizeof("PORT ") -1;
   while(*port == ' ') port ++;
   /* Create new socket */
   bzero(&clamd_sec, sizeof(clamd_sec));
   clamd_sec.sin_family = AF_INET;
   clamd_sec.sin_addr.s_addr = inet_addr(config->clamdserver);
   clamd_sec.sin_port = htons(strtoul(port, NULL, 10));

   sec_socket = socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);

   if (sec_socket == -1){
      do_log(LOG_CRIT, "Could not create secondary socket!");
      close(pri_socket);
      return SCANNER_RET_ERR;
   }

   /* Connect to new port */
   ret = connect(sec_socket,(struct sockaddr *) &clamd_sec, sizeof(clamd_sec));

   if (ret != 0){
      do_log(LOG_CRIT, "Could not connect secondary!");
      close(pri_socket);
      close(sec_socket);
      return SCANNER_RET_ERR;
   }

   // Send file:
   filebuf=linebuf_init(16384);
   if ((mailfd=open(filetoscan, O_RDONLY ))<0){
      close(pri_socket);
      close(sec_socket);
      linebuf_uninit(filebuf);
      do_log(LOG_EMERG, "Can't open mailfile (%s)!\n", filetoscan);
      return SCANNER_RET_ERR;
   }
   while (1){
      ret=checktimeout(p);
      if (ret < 0){
         close(pri_socket);
         close(sec_socket);
         linebuf_uninit(filebuf);
         close(mailfd);
         return SCANNER_RET_CRIT;
      }
      if ((ret=getlinep3(mailfd, filebuf))<0){
         if (ret==GETLINE_TOO_LONG){
            /* Buffer contains part of line, take care of later */
         } else {
            /* Other error, take care of later */
            break;
         }
      }
      if (filebuf->linelen >=0 ){
         len += filebuf->linelen;
#ifdef DEBUG_MESSAGE
         do_log(LOG_DEBUG, ">%s", filebuf->line);
#endif
         /* Take care of buffer here */
         if (ret==GETLINE_TOO_LONG){
            sendret=writeline(sec_socket, WRITELINE_LEADING_NONE, filebuf->line);
         } else {
            sendret=writeline(sec_socket, WRITELINE_LEADING_RN, filebuf->line);
         }
         if (sendret==GETLINE_PIPE){
            do_log(LOG_CRIT, "Clam Server disappeared!");
            close(pri_socket);
            close(sec_socket);
            linebuf_uninit(filebuf);
            close(mailfd);
            return EPIPE;
         } else if (sendret){
            linebuf_uninit(filebuf);
            close(pri_socket);
            close(sec_socket);
            close(mailfd);
            do_log(LOG_EMERG, "Error sending mail to clamd!");
            /* we are dead now. Should not reach here. But allow it
            to fall through in case LOG_EMERG is changed in the future. */
            return SCANNER_RET_ERR;
         }
      }
   }
   linebuf_uninit(filebuf);
   close(mailfd);
   /* Close secondary socket to force primary socket output */
   close(sec_socket);
   if (ret!=GETLINE_EOF){
      do_log(LOG_CRIT, "error reading from mailfile %s, error code: %d", filetoscan, ret);
      close(pri_socket);
      return SCANNER_RET_ERR;
   }
   /* Get response from primary socket */
   if ((buf_len=read(pri_socket,buf,sizeof(buf)-1))==-1){
      do_log(LOG_DEBUG, "read(): %s", strerror(errno));
      do_log(LOG_CRIT,"read(): %s", strerror(errno));
      close(pri_socket);
      return EX_IOERR;
   }
   /* If response contains "FOUND" then there is a virus */
   // "stream: Eicar-Test-Signature FOUND"
   /* If response contains "OK" then there is no virus */
   // "stream: OK"
   /* Parse Virusname */

   close(pri_socket);
   buf[buf_len] = 0;
   buf_c = buf + buf_len;
   while(*buf_c == '\r' || *buf_c == ' ') *buf_c --;
   if (buf_c - buf >= sizeof("FOUND") && strncasecmp(buf_c - sizeof("FOUND"), "FOUND", sizeof("FOUND")-1) == 0) {
      char *buf_s = buf;
      buf_c -= sizeof("FOUND");
      if (strncasecmp(buf_s, "stream:", sizeof("stream:")-1) == 0) {
         buf_s += sizeof("stream:")-1;
         while(*buf_s == ' ') buf_s ++;
         snprintf(vi,(int)(buf_c - buf_s),"%s",buf_s);
      }
   }
   *virname=vi;
   if (strlen(*virname) >3) return SCANNER_RET_VIRUS; // contains a virus
   return SCANNER_RET_OK; // all ok, no virus
}

static int init1(void){
   int   len,loc,loc2;
   char  *tmp=NULL;

   if (strlen(NONULL(config->virusscanner))<1){
      tmp=strndup(DEFAULT_SERVER,strlen(DEFAULT_SERVER));
      strncat(tmp,":",1);
      strncat(tmp,DEFAULT_PORT,4);
      config->virusscanner=tmp;
      do_log(LOG_CRIT, "Clamd init: No scanner was defined. we're using %s",config->virusscanner);
   }
   tmp=strchr(config->virusscanner,':');
   if (tmp){
      loc = tmp-config->virusscanner;
      loc2 = tmp-config->virusscanner+1;
      len=strlen(config->virusscanner);
      config->clamdport=substr(config->virusscanner,loc2,len);
      config->clamdserver=strndup(config->virusscanner,loc); //TODO: 6 bytes in 1 blocks are definitely lost in loss record 1 of 2
      do_log(LOG_DEBUG, "Clamd init. Server: %s Port: %s",config->clamdserver, config->clamdport);
   }else{
      do_log(LOG_CRIT, "Clamd init unable to locate separator: %s",config->virusscanner);
      return SCANNER_RET_ERR;
   }
   if (strlen(NONULL(config->virusscanner))<1){
      do_log(LOG_CRIT, "no scanner was defined. scanning completely disabled");
      return SCANNER_RET_ERR;
   }
   /*
   bzero(&clamd_pri, sizeof(clamd_pri));
   clamd_pri.sin_family = AF_INET;
   clamd_pri.sin_addr.s_addr = inet_addr(config->clamdserver);
   clamd_pri.sin_port = htons(strtoul(config->clamdport, NULL, 10));
   */
   return 0;
}

static int scan(struct proxycontext *p, char **virname){
   int ret;

   do_log(LOG_DEBUG, "Clamd TCP scanner says hello");
   ret = check(p, p->scanthis, virname);
   do_log(LOG_DEBUG, "Clamd TCP scanner says goodbye: %i",ret);
   return ret;
}

static void uninit1(void){
   if(!config->virusscanner) free(config->virusscanner);
}

scanner_t scanner_clamd = {
   "clamd",                /* name */
   "ClamAV TCP Daemon",    /* description */
   &init1,                 /* init1 (once, afer startup) */
   NULL,                   /* init2 (every connection before first mail) */
   &scan,                  /* scan */
   NULL,                   /* uninit2 */
   &uninit1,               /* uninit1 */
   0                       /* dirscan */
};