clamav/clamav-devel/clamd/tcpserver.c

100 lines
2.8 KiB
C
Raw Normal View History

2003-07-29 15:48:06 +00:00
/*
* Copyright (C) 2002 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.
*/
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <clamav.h>
#include <errno.h>
#include "options.h"
#include "cfgfile.h"
#include "defaults.h"
#include "others.h"
#include "server.h"
int tcpserver(const struct optstruct *opt, const struct cfgstruct *copt, struct cl_node *root)
{
struct sockaddr_in server;
int sockfd, backlog;
struct cfgstruct *cpt;
2003-10-17 03:16:14 +00:00
struct cfgstruct *taddr;
2003-07-29 15:48:06 +00:00
char *estr;
2003-10-27 21:17:16 +00:00
int true = 1;
2003-07-29 15:48:06 +00:00
memset((char *) &server, 0, sizeof(server));
server.sin_family = AF_INET;
server.sin_port = htons(cfgopt(copt, "TCPSocket")->numarg);
2003-10-17 03:16:14 +00:00
2003-10-27 21:17:16 +00:00
2003-10-17 03:16:14 +00:00
if (taddr = cfgopt(copt, "TCPAddr"))
2003-09-29 11:44:52 +00:00
{
2003-10-17 03:16:14 +00:00
server.sin_addr.s_addr = inet_addr( taddr->strarg );
2003-09-29 11:44:52 +00:00
}else
{
server.sin_addr.s_addr = INADDR_ANY;
}
2003-07-29 15:48:06 +00:00
if((sockfd = socket(AF_INET, SOCK_STREAM, 0)) == -1) {
estr = strerror(errno);
//fprintf(stderr, "ERROR: socket() error: %s\n", estr);
logg("!socket() error: %s\n", estr);
exit(1);
}
2003-10-27 21:17:16 +00:00
if(setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, (void *) &true, sizeof(true)) == -1) {
logg("!setsocktopt(SO_REUSEADDR) error: %s\n", strerror(errno));
}
2003-07-29 15:48:06 +00:00
if(bind(sockfd, (struct sockaddr *) &server, sizeof(struct sockaddr_in)) == -1) {
estr = strerror(errno);
//fprintf(stderr, "ERROR: can't bind(): %s\n", estr);
logg("!bind() error: %s\n", estr);
exit(1);
2003-09-29 11:44:52 +00:00
} else {
2003-10-17 03:16:14 +00:00
if ( taddr != NULL && *taddr->strarg )
logg("Bound to address %s on port %d\n", taddr->strarg, cfgopt(copt, "TCPSocket")->numarg);
2003-09-29 11:44:52 +00:00
else
logg("Bound to port %d\n", cfgopt(copt, "TCPSocket")->numarg);
}
2003-07-29 15:48:06 +00:00
if((cpt = cfgopt(copt, "MaxConnectionQueueLength")))
backlog = cpt->numarg;
else
backlog = CL_DEFAULT_BACKLOG;
logg("Setting connection queue length to %d\n", backlog);
if(listen(sockfd, backlog) == -1) {
estr = strerror(errno);
//fprintf(stderr, "ERROR: listen() error: %s\n", estr);
logg("!listen() error: %s\n", estr);
exit(1);
}
2003-11-29 03:38:55 +00:00
if(cfgopt(copt, "UseProcesses"))
acceptloop_proc(sockfd, root, copt);
else
acceptloop_th(sockfd, root, copt);
2003-07-29 15:48:06 +00:00
return 0;
}