clamd/others.c
b151ef55
 /*
  *  Copyright (C) 2002, 2003 Tomasz Kojm <zolw@konarski.edu.pl>
  *
  *  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., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
8b242bb9
 #if HAVE_CONFIG_H
 #include "clamav-config.h"
 #endif
 
b151ef55
 #include <stdio.h>
 #include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>
 #include <ctype.h>
 #include <unistd.h>
 #include <pthread.h>
 #include <fcntl.h>
 #include <time.h>
 #include <sys/stat.h>
7cf38d70
 #include <errno.h>
17975de9
 #include <sys/time.h>
f4cbee32
 #include <sys/socket.h>
17975de9
 #if HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif
7cf38d70
 
 #if HAVE_POLL
 #if HAVE_POLL_H
 #include <poll.h>
 #else /* HAVE_POLL_H */
 #undef HAVE_POLL
 #if HAVE_SYS_SELECT_H
 #include <sys/select.h>
 #endif /* HAVE_SYS_SELECT_H */
 #endif /* HAVE_POLL_H */
 #endif /* HAVE_POLL */
b151ef55
 
 #if defined(CLAMD_USE_SYSLOG) && !defined(C_AIX)
 #include <syslog.h>
 #endif
 
 #include "others.h"
 
 pthread_mutex_t logg_mutex = PTHREAD_MUTEX_INITIALIZER;
 pthread_mutex_t rand_mutex = PTHREAD_MUTEX_INITIALIZER;
 
9c1c9007
 FILE *log_fd = NULL;
 
b151ef55
 int mdprintf(int desc, const char *str, ...)
 {
 	va_list args;
 	char buff[512];
 	int bytes;
 
     va_start(args, str);
     bytes = vsnprintf(buff, 512, str, args);
     va_end(args);
     write(desc, buff, bytes);
     return bytes;
 }
 
 
9c1c9007
 void logg_close(void) {
     pthread_mutex_lock(&logg_mutex);
     if (log_fd) {
 	fclose(log_fd);
98cd56f8
 	log_fd = NULL;
9c1c9007
     }
     pthread_mutex_unlock(&logg_mutex);
 #if defined(CLAMD_USE_SYSLOG) && !defined(C_AIX)
     if(use_syslog) {
     	closelog();
     }
 #endif
 }
 
 
b151ef55
 int logg(const char *str, ...)
 {
 	va_list args;
 	struct flock fl;
 	char *pt, *timestr;
 	time_t currtime;
 	struct stat sb;
 	mode_t old_umask;
 
9c1c9007
 
b151ef55
     if(logfile) {
 
 	pthread_mutex_lock(&logg_mutex);
 
9c1c9007
 	if(!log_fd) {
41b894c7
 	    old_umask = umask(0037);
9c1c9007
 	    if((log_fd = fopen(logfile, "a")) == NULL) {
b151ef55
 		umask(old_umask);
 		pthread_mutex_unlock(&logg_mutex);
 		return -1;
 	    } else umask(old_umask);
 
 	    if(loglock) {
 		memset(&fl, 0, sizeof(fl));
 		fl.l_type = F_WRLCK;
9c1c9007
 		if(fcntl(fileno(log_fd), F_SETLK, &fl) == -1) {
b151ef55
 		    pthread_mutex_unlock(&logg_mutex);
 		    return -1;
 		}
 	    }
 	}
 
         /* Need to avoid logging time for verbose messages when logverbose
            is not set or we get a bunch of timestamps in the log without
            newlines... */
 	if(logtime && ((*str != '*') || logverbose)) {
 	    time(&currtime);
 	    pt = ctime(&currtime);
 	    timestr = mcalloc(strlen(pt), sizeof(char));
 	    strncpy(timestr, pt, strlen(pt) - 1);
9c1c9007
 	    fprintf(log_fd, "%s -> ", timestr);
b151ef55
 	    free(timestr);
 	}
 
 
 	if(logsize) {
 	    if(stat(logfile, &sb) != -1) {
 		if(sb.st_size > logsize) {
 		    logfile = NULL;
9c1c9007
 		    fprintf(log_fd, "Log size = %d, maximal = %d\n", (int) sb.st_size, logsize);
 		    fprintf(log_fd, "LOGGING DISABLED (Maximal log file size exceeded).\n");
 		    fclose(log_fd);
98cd56f8
 		    log_fd = NULL;
b151ef55
 		    pthread_mutex_unlock(&logg_mutex);
 		    return 0;
 		}
 	    }
 	}
 
 	va_start(args, str);
 
 	if(*str == '!') {
9c1c9007
 	    fprintf(log_fd, "ERROR: ");
e8217f5a
 	    vfprintf(log_fd, str+1, args);
b151ef55
 	} else if(*str == '^') {
9c1c9007
 	    fprintf(log_fd, "WARNING: ");
e8217f5a
 	    vfprintf(log_fd, str+1, args);
b151ef55
 	} else if(*str == '*') {
 	    if(logverbose)
e8217f5a
 		vfprintf(log_fd, str+1, args);
9c1c9007
 	} else vfprintf(log_fd, str, args);
b151ef55
 
 	va_end(args);
 
9c1c9007
 	fflush(log_fd);
b151ef55
 	pthread_mutex_unlock(&logg_mutex);
     }
 
 #if defined(CLAMD_USE_SYSLOG) && !defined(C_AIX)
     if(use_syslog) {
 
       /* SYSLOG logging - no need for locking, mutexes, times & stuff ... :-) */
 
c6259ac5
 #ifndef vsyslog
 #define vsyslog(a,b,c)	{ \
 	char my_tmp[4096]; \
 	vsnprintf(my_tmp,4095,b,c); \
 	my_tmp[4095]=0; \
 	syslog(a,my_tmp); }
 #endif
 
b151ef55
 	va_start(args, str);
 
 	if(*str == '!') {
e8217f5a
 	    vsyslog(LOG_ERR, str+1, args);
b151ef55
 	} else if(*str == '^') {
e8217f5a
 	    vsyslog(LOG_WARNING, str+1, args);
b151ef55
 	} else if(*str == '*') {
e8217f5a
 	    if(logverbose) {
 		vsyslog(LOG_DEBUG, str+1, args);
 	    }
b151ef55
 	} else vsyslog(LOG_INFO, str, args);
 
 	va_end(args);
     }
 #endif
 
     return 0;
 }
 
 int isnumb(const char *str)
 {
 	int i;
 
     for(i = 0; i < strlen(str); i++)
 	if(!isdigit(str[i]))
 	    return 0;
 
     return 1;
 }
 
 void *mmalloc(size_t size)
 {
 	void *alloc;
 
     alloc = malloc(size);
 
     if(!alloc) {
 	printf("CRITICAL: Can't allocate memory (%d bytes).\n", size);
 	exit(71);
 	return NULL;
     } else return alloc;
 }
 
 void *mcalloc(size_t nmemb, size_t size)
 {
 	void *alloc;
 
     alloc = calloc(nmemb, size);
 
     if(!alloc) {
 	printf("CRITICAL: Can't allocate memory (%d bytes).\n", nmemb * size);
 	exit(70);
 	return NULL;
     } else return alloc;
 }
 
 void chomp(char *string)
 {
 	char *pt;
 
     if((pt = strchr(string, 13)))
 	*pt = 0;
 
     if((pt = strchr(string, 10)))
 	*pt = 0;
 }
 
c72178a4
 void virusaction(const char *filename, const char *virname, const struct cfgstruct *copt)
 {
 	char *buffer, *pt, *cmd;
 	struct cfgstruct *cpt;
 
 
     if(!(cpt = cfgopt(copt, "VirusEvent")))
 	return;
 
     cmd = strdup(cpt->strarg);
 
c6259ac5
     buffer = (char *) mcalloc(strlen(cmd) + strlen(filename) + strlen(virname) + 10, sizeof(char));
c72178a4
 
     if((pt = strstr(cmd, "%f"))) {
 	*pt = 0; pt += 2;
 	strcpy(buffer, cmd);
 	strcat(buffer, filename);
 	strcat(buffer, pt);
 	free(cmd);
 	cmd = strdup(buffer);
     }
 
     if((pt = strstr(cmd, "%v"))) {
 	*pt = 0; pt += 2;
 	strcpy(buffer, cmd);
 	strcat(buffer, virname);
 	strcat(buffer, pt);
 	free(cmd);
 	cmd = strdup(buffer);
     }
 
     free(buffer);
 
     /* WARNING: this is uninterruptable ! */
     system(cmd);
 
     free(cmd);
 }
7cf38d70
 
 int poll_fd(int fd, int timeout_sec)
 {
 	int retval;
 #ifdef HAVE_POLL
 	struct pollfd poll_data[1];
 
     poll_data[0].fd = fd;
     poll_data[0].events = POLLIN;
     poll_data[0].revents = 0;
 
     while (1) {
     	retval = poll(poll_data, 1, timeout_sec*1000);
 	if (retval == -1) {
    	    if (errno == EINTR) {
 		continue;
 	    }
 	    return -1;
 	}
 	return retval;
     }
 
 #else
 	fd_set rfds;
 	struct timeval tv;
 
     if (fd >= DEFAULT_FD_SETSIZE) {
 	return -1;
     }
 
     while (1) {
 	FD_ZERO(&rfds);
 	FD_SET(fd, &rfds);
 	tv.tv_sec = timeout_sec;
 	tv.tv_usec = 0;
 
 	retval = select(fd+1, &rfds, NULL, NULL, &tv);
 	if (retval == -1) {
 	    if (errno == EINTR) {
 		continue;
 	    }
 	    return -1;
 	}
 	return retval;
     }
 #endif
 
     return -1;
 }
f4cbee32
 
 int is_fd_connected(int fd)
 {
 #ifdef HAVE_POLL
 	struct pollfd poll_data[1];
 
     poll_data[0].fd = fd;
     poll_data[0].events = POLLIN;
     poll_data[0].revents = 0;
 
     if (poll(poll_data, 1, 0) == -1) {
 	return 1;
     }
     if (poll_data[0].revents & POLLHUP) {
 	return 0;
     }
     return 1;
 
 #else
 	fd_set rfds;
 	struct timeval tv;
 	char buff[1];
 
     if (fd >= DEFAULT_FD_SETSIZE) {
         return 1;
     }
 
     FD_ZERO(&rfds);
     FD_SET(fd, &rfds);
     tv.tv_sec = 0;
     tv.tv_usec = 0;
     if (select(fd+1, &rfds, NULL, NULL, &tv) <= 0) {
 	return 1;
     }
     if (FD_ISSET(fd, &rfds)) {
 	if (recv(fd, buff, 1, MSG_PEEK) != 1) {
 	    return 0;
 	}
     }
     return 1;
 #endif
 }