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 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
|
/*
*
* P3Scan v1.0
*
* (C) 2003 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.
*
* 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
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <time.h>
#include <sys/time.h>
#include <errno.h>
#include <malloc.h>
#include <sys/un.h>
#include <sys/socket.h>
#include <stdarg.h>
#include <dirent.h>
#include <ctype.h>
#include "p3scan.h"
#define DEFAULT_SOCKET_PATH "/var/run"
struct configuration_t * config;
typedef unsigned long ULONG;
#define FL_GETVERSION 0x04
// ... Cfg pathnames
//#define AVP_NODE_DEFDIR "/var/run"
#define AVP_NODE_PID "AvpPid"
#define AVP_NODE_CTL "AvpCtl\0\0\0"
static char *NodePid;
static char *NodeCtl;
static int avp_fd; // fd for log
static int connected; // have done connect
static struct sockaddr_un avp_socket; // AF_UNIX address of local logger
static int avp_socket_connect(struct proxycontext *p){
if (avp_fd == -1){
bzero((char *)&avp_socket, sizeof(avp_socket));
avp_socket.sun_family=AF_UNIX;
strcpy(avp_socket.sun_path, NodeCtl);
if ((avp_fd=socket(AF_UNIX,SOCK_STREAM,0)) < 0 ){
do_log(LOG_CRIT, "create socket error: socket() not created %s", NodeCtl);
return -1;
}
}
if (avp_fd!=-1 && connected==-1){
do_log(LOG_DEBUG, "Trying to connect to socket");
if (connect(avp_fd, (struct sockaddr *)(&avp_socket),
sizeof(avp_socket.sun_family) + strlen(NodeCtl)) >= 0){
connected=1;
do_log(LOG_DEBUG, "avp_socket_connect connected to kavdaemon");
return 0;
}
} else {
do_log(LOG_DEBUG, "Already connected");
return 0;
}
do_log(LOG_CRIT, "can't connect to socket %s", NodeCtl);
return -1;
}
static void avp_socket_close(void){
close(avp_fd);
avp_fd=-1;
connected=0;
do_log(LOG_DEBUG, "avp_socket_close");
}
/* avp_sendcommand
* return codes:
* >=0: OK, avpd returncode
* -1: write error
* -2: read error
* -3: error
*/
static int avp_sendcommand(struct proxycontext * p,
int flags, char *buftoscan, ULONG *ulFlags, ULONG* buflen, char ** virinfo){
register int len=strlen(buftoscan);
char *ResultBuf=NULL;
// output the message to the local logger
do_log(LOG_DEBUG, "write string (%s) to kavdaemon", buftoscan);
*virinfo=NULL;
if (write(avp_fd, buftoscan, len+1)>=0){
int Rez;
long uintbuf=0;
int ExitCode;
do_log(LOG_DEBUG, "Wait results:");
if ((Rez=read(avp_fd,(char*)&uintbuf,2))==-1) return -2;
ExitCode=(uintbuf&0xff)-0x30;
if ((uintbuf&0x000f)!=0xf) //0x3f '?'
do_log(LOG_DEBUG, "Test result: %x", ExitCode);
else
do_log(LOG_DEBUG,"Disinfect queries:");
do_log(LOG_DEBUG, "Test result: 0x%x, flags: 0x%x",
uintbuf & 0x00ff, uintbuf & 0xff00 );
ResultBuf=NULL;
if ((uintbuf&0xff00)!=0){ /* further actions */
if ((uintbuf&0x200)!=0){ /* where disinfected file is, uninteresting for us */
if ((Rez=read(avp_fd, (char*)buflen, sizeof(ULONG)))==-1) return -2;
*ulFlags|=1;
}
if ((uintbuf&0x100)!=0){ /* we got result string to read */
if ((Rez=read(avp_fd,(char*)&uintbuf,sizeof(ULONG)))==-1) return -2;
do_log(LOG_DEBUG, "Result string lenght: %d", uintbuf);
ResultBuf=(char*)malloc(uintbuf+1);
if(ResultBuf!=NULL){
char *ResultStr=ResultBuf;
ResultBuf[0]=0;
//if((Rez=recv(avp_fd,ResultStr,uintbuf,0))==-1) return -2;
while((uintbuf>0)&&((Rez=recv(avp_fd,ResultStr,uintbuf,0))!=0)){
if(Rez==-2){
free(ResultBuf);
return -2;
} else {
uintbuf-=Rez;
ResultStr[Rez]=0;
ResultStr+=Rez;
}
}
}
}
}
switch (ExitCode&0x0f){
case 8:
do_log(LOG_WARNING, "Corrupted objects were found");
break;
case 7:
do_log(LOG_WARNING, "File AvpScanner is corrupted");
break;
case 6:
do_log(LOG_WARNING, "All viruses deleted");
break;
case 5:
do_log(LOG_WARNING, "All viruses disinfected");
break;
case 4:
do_log(LOG_WARNING, "Known viruses were detected");
break;
case 3:
do_log(LOG_WARNING, "Suspicious objects were found");
break;
case 2:
do_log(LOG_WARNING, "Warning");
break;
case 1:
do_log(LOG_WARNING, "Virus scan was not complete");
break;
case 0:
do_log(LOG_DEBUG, "No viruses were found");
break;
case 0xf:
{
do_log(LOG_CRIT, "AVPD want's to disinfect! Please tell him not to do.");
free(ResultBuf);
return -3;
}
default:
do_log(LOG_WARNING, "Error!(test result %d)", Rez);
break;
} /* switch ExitCode */
switch (ExitCode&0xf0){
case 8:
do_log(LOG_CRIT, "Internal error: Integrity failed.");
break;
case 4:
do_log(LOG_CRIT, "Internal error: Bases not found.");
break;
}
do_log(LOG_DEBUG, "Found viruses: '%s'", ResultBuf);
//if (ResultBuf!=NULL) free(ResultBuf);
*virinfo=ResultBuf;
return ExitCode;
} /* if write */
return -1;
}
static int avp_scanfile(struct proxycontext * p, int flags, char * filetoscan, char ** virname){
int rez=-1;
char *tbuf;
time_t now;
int len;
ULONG ulFlags=0,ulDiffer=0;
char *v, *v2, *virinfo;
if(avp_fd<0 || !connected)
if (avp_socket_connect(p)!=0) return -1;
// build the message
len=strlen(filetoscan)+30;
tbuf=malloc(len+1);
(void)time(&now);
(void)snprintf(tbuf, len, "<%d>%.15s:%s", flags, ctime(&now)+4, filetoscan);
rez=avp_sendcommand(p, flags, tbuf, &ulFlags, &ulDiffer, &virinfo);
//do_log(LOG_DEBUG, "Virinfo: '%s'", virinfo);
switch (rez){
case -1:
do_log(LOG_CRIT, "Error: cannot write to kavdaemon!");
break;
case -2:
do_log(LOG_CRIT, "Error: cannot read from kavdaemon!");
break;
case -3:
do_log(LOG_CRIT, "Error occured during avpd conversation");
break;
}
free(tbuf);
if (virinfo){
/* process virinfo */
/* format is: <filename> infected: EICAR-Test-File */
v=virinfo;
/* strip trailing filename */
if (!strncmp(v, filetoscan, strlen(filetoscan))) v+=strlen(filetoscan);
/* strip trailing blanks */
while (v[0] && isspace(v[0])) v++;
/* strip trailing '[a-z]*:' (if any) */
v2=v;
while (v2[0] && isalnum(v2[0])) v2++;
if (v2[0]==':') v=v2+1;
/* strip trailing blanks */
while (v[0] && isspace(v[0])) v++;
/* strip leading blanks */
while ((len=strlen(v))>0 && isspace(v[len-1])) v[len-1]='\0';
do_log(LOG_DEBUG, "virinfo: '%s'", v);
*virname=strdup(v);
free(virinfo);
} else *virname=NULL;
return rez;
}
static int init1(void){
int len ;
do_log(LOG_DEBUG, "AVP Init1");
if (strlen(NONULL(config->virusscanner))<1){
do_log(LOG_CRIT, "no scanner was defined. we're using " DEFAULT_SOCKET_PATH);
config->virusscanner=strdup(DEFAULT_SOCKET_PATH);
}
len=strlen(config->virusscanner);
/* Build the Nodes */
if ((NodeCtl=malloc(len + strlen(AVP_NODE_CTL) + 10))==NULL) return -1;
if ((NodePid=malloc(len + strlen(AVP_NODE_PID) + 10))==NULL) return -1;
strncpy(NodeCtl, config->virusscanner, len + 1);
if (config->virusscanner[len-1]!='/') strcat(NodeCtl, "/");
strncpy(NodePid, NodeCtl, strlen(NodeCtl) + 1);
strcat(NodeCtl, AVP_NODE_CTL);
strcat(NodePid, AVP_NODE_PID);
len=strlen(NodeCtl);
NodeCtl[len+1]='\0';
NodeCtl[len+2]='\0';
do_log(LOG_DEBUG, "NoteCtl: %s NodePid: %s", NodeCtl, NodePid);
connected=-1;
avp_fd=-1;
do_log(LOG_DEBUG, "AVP Init1 Done");
return 0;
}
static int init2(struct proxycontext *p){
do_log(LOG_DEBUG, "AVP Init2");
/* Connect to socket */
if (avp_socket_connect(p)!=0) return -1;
do_log(LOG_DEBUG, "AVP Init2 Done");
return 0;
}
static void uninit2(struct proxycontext *p){
avp_socket_close();
}
static int scan(struct proxycontext *p, char **virname){
int ret;
do_log(LOG_DEBUG, "AVP scanner says hello");
ret=avp_scanfile(p, 0, p->scanthis, virname);
if (ret==3 || ret==4) ret = SCANNER_RET_VIRUS; /* virus */
else if (ret<0) ret=SCANNER_RET_ERR;
else ret = SCANNER_RET_OK;
do_log(LOG_DEBUG, "AVP scanner says goodbye");
return ret;
}
scanner_t scanner_avpd = {
"avpd", /* name */
"Kaspersky AVPDaemon", /* description */
&init1, /* init1 (once, afer startup) */
&init2, /* init2 (every connection before first mail) */
&scan, /* scan */
&uninit2, /* uninit2 */
NULL, /* uninit1 */
0 /* dirscan */
};
|