clamav-devel/clamscan/others.c
e3aaff8e
 /*
68a6f51f
  *  Copyright (C) 1999 - 2004 Tomasz Kojm <tkojm@clamav.net>
e3aaff8e
  *
  *  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.
  *
  *  Sat May 18 15:20:26 CEST 2002: included detectCpu() from Magnus Ekdahl
  *  Sat Jun 29 12:19:26 CEST 2002: fixed non386 detectCpu (Magnus Ekdahl)
  *
  */
 
6d6e8271
 #if HAVE_CONFIG_H
 #include "clamav-config.h"
 #endif
 
e3aaff8e
 #include <stdio.h>
 #include <stdlib.h>
afb48b28
 #include <string.h>
e3aaff8e
 #include <ctype.h>
 #include <unistd.h>
f2beff4a
 #include <errno.h>
afb48b28
 #include <pwd.h>
e3aaff8e
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/wait.h>
 #include <sys/time.h>
 #include <time.h>
 #include <fcntl.h>
 #include <signal.h>
 #include <target.h>
 
afb48b28
 #include "output.h"
21cf4aeb
 #include "others.h"
e3aaff8e
 
 int fileinfo(const char *filename, short i)
 {
 	struct stat infostruct;
 
     if(stat(filename, &infostruct) == -1)
 	return(-1);
 
     switch(i) {
 
 	case 1: /* size */
 	    return infostruct.st_size;
 	case 2: /* permissions */
 	    return (mode_t)infostruct.st_mode;
 	case 3: /* modification time */
 	    return infostruct.st_mtime;
 	case 4: /* UID */
 	    return infostruct.st_uid;
 	case 5: /* GID */
 	    return infostruct.st_gid;
 	default:
 	    mprintf("!fileinfo(): Unknown option.\n");
 	    exit(1);
     }
 }
 
56bfccb2
 int checkaccess(const char *path, const char *username, int mode)
e3aaff8e
 {
 	struct passwd *user;
56bfccb2
 	int ret = 0, status;
e3aaff8e
 
56bfccb2
     if(!getuid()) {
e3aaff8e
 
 	if((user = getpwnam(username)) == NULL) {
 	    return -1;
 	}
 
56bfccb2
 	switch(fork()) {
 	    case -1:
 		return -2;
 
 	    case 0:
9f51cb51
 		if(setgid(user->pw_gid)) {
 		    fprintf(stderr, "ERROR: setgid(%d) failed.\n", (int) user->pw_gid);
 		    exit(0);
 		}
 
 		if(setuid(user->pw_uid)) {
 		    fprintf(stderr, "ERROR: setuid(%d) failed.\n", (int) user->pw_uid);
 		    exit(0);
 		}
 
56bfccb2
 		if(access(path, mode))
 		    exit(0);
 		else
 		    exit(1);
 
 	    default:
 		wait(&status);
 		if(WIFEXITED(status) && WEXITSTATUS(status) == 1)
 		    ret = 1;
e3aaff8e
 	}
 
56bfccb2
     } else {
 	if(!access(path, mode))
 	    ret = 1;
e3aaff8e
     }
 
56bfccb2
     return ret;
e3aaff8e
 }
 
 int filecopy(const char *src, const char *dest)
 {
3ed976e6
 	char buffer[FILEBUFF];
e3aaff8e
 	int s, d, bytes;
 
     if((s = open(src, O_RDONLY)) == -1)
 	return -1;
 
     if((d = open(dest, O_CREAT|O_WRONLY|O_TRUNC)) == -1) {
 	close(s);
 	return -1;
     }
 
3ed976e6
     while((bytes = read(s, buffer, FILEBUFF)) > 0)
e3aaff8e
 	write(d, buffer, bytes);
 
     close(s);
 
     /* njh@bandsman.co.uk: check result of close for NFS file */
     return close(d);
 }
 
afb48b28
 int isnumb(const char *str)
e3aaff8e
 {
afb48b28
 	int i;
e3aaff8e
 
afb48b28
     for(i = 0; i < strlen(str); i++)
 	if(!isdigit(str[i]))
 	    return 0;
e3aaff8e
 
afb48b28
     return 1;
e3aaff8e
 }