2004-02-24 00:41:20 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu)
|
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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 "listen.h"
|
|
|
|
#include "interface.h"
|
|
|
|
#include "conf.h"
|
|
|
|
#include "log.h"
|
2004-05-15 23:19:43 +02:00
|
|
|
#include "utils.h"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <resolv.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#define MAXHOSTNAME 1024
|
|
|
|
|
|
|
|
#define ALLOW_REUSE 1
|
|
|
|
|
2004-11-03 20:42:54 +01:00
|
|
|
int * listenSockets = NULL;
|
|
|
|
int numberOfListenSockets = 0;
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2004-11-03 20:42:54 +01:00
|
|
|
static int establishListen(unsigned int port, ConfigParam * param) {
|
2004-02-24 00:41:20 +01:00
|
|
|
int allowReuse = ALLOW_REUSE;
|
|
|
|
int sock;
|
|
|
|
struct sockaddr * addrp;
|
|
|
|
socklen_t addrlen;
|
|
|
|
struct sockaddr_in sin;
|
|
|
|
int pf;
|
|
|
|
#ifdef HAVE_IPV6
|
|
|
|
struct sockaddr_in6 sin6;
|
|
|
|
|
|
|
|
memset(&sin6, 0, sizeof(struct sockaddr_in6));
|
|
|
|
sin6.sin6_port = htons(port);
|
|
|
|
sin6.sin6_family = AF_INET6;
|
|
|
|
#endif
|
|
|
|
memset(&sin, 0, sizeof(struct sockaddr_in));
|
|
|
|
sin.sin_port = htons(port);
|
|
|
|
sin.sin_family = AF_INET;
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2004-11-03 20:42:54 +01:00
|
|
|
if(!param || 0==strcmp(param->value, "any")) {
|
|
|
|
DEBUG("binding to any address\n");
|
2004-02-24 00:41:20 +01:00
|
|
|
#ifdef HAVE_IPV6
|
|
|
|
if(ipv6Supported()) {
|
|
|
|
sin6.sin6_addr = in6addr_any;
|
|
|
|
addrp = (struct sockaddr *) &sin6;
|
|
|
|
addrlen = sizeof(struct sockaddr_in6);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
sin.sin_addr.s_addr = INADDR_ANY;
|
|
|
|
addrp = (struct sockaddr *) &sin;
|
|
|
|
addrlen = sizeof(struct sockaddr_in);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct hostent * he;
|
2004-11-03 20:42:54 +01:00
|
|
|
DEBUG("binding to address for %s\n", param->value);
|
2004-10-28 07:14:55 +02:00
|
|
|
if(!(he = gethostbyname(param->value))) {
|
|
|
|
ERROR("can't lookup host \"%s\" at line %i\n",
|
|
|
|
param->value, param->line);
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
switch(he->h_addrtype) {
|
|
|
|
#ifdef HAVE_IPV6
|
|
|
|
case AF_INET6:
|
|
|
|
if(!ipv6Supported()) {
|
|
|
|
ERROR("no IPv6 support, but a IPv6 address "
|
2004-10-28 07:14:55 +02:00
|
|
|
"found for \"%s\" at line %i\n",
|
|
|
|
param->value, param->line);
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
bcopy((char *)he->h_addr,(char *)
|
|
|
|
&sin6.sin6_addr.s6_addr,he->h_length);
|
|
|
|
addrp = (struct sockaddr *) &sin6;
|
|
|
|
addrlen = sizeof(struct sockaddr_in6);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case AF_INET:
|
|
|
|
bcopy((char *)he->h_addr,(char *)&sin.sin_addr.s_addr,
|
|
|
|
he->h_length);
|
|
|
|
addrp = (struct sockaddr *) &sin;
|
|
|
|
addrlen = sizeof(struct sockaddr_in);
|
|
|
|
break;
|
|
|
|
default:
|
2004-10-28 07:14:55 +02:00
|
|
|
ERROR("address type for \"%s\" is not IPv4 or IPv6 "
|
|
|
|
"at line %i\n",
|
|
|
|
param->value, param->line);
|
2004-04-03 01:34:16 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(addrp->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
pf = PF_INET;
|
|
|
|
break;
|
|
|
|
#ifdef HAVE_IPV6
|
|
|
|
case AF_INET6:
|
|
|
|
pf = PF_INET6;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case AF_UNIX:
|
|
|
|
pf = PF_UNIX;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERROR("unknown address family: %i\n",addrp->sa_family);
|
2004-11-03 20:42:54 +01:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if((sock = socket(pf,SOCK_STREAM,0)) < 0) {
|
|
|
|
ERROR("socket < 0\n");
|
2004-11-03 20:42:54 +01:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(fcntl(sock, F_SETFL ,fcntl(sock, F_GETFL) | O_NONBLOCK) < 0) {
|
|
|
|
ERROR("problems setting nonblocking on listen socket: %s\n",
|
|
|
|
strerror(errno));
|
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(setsockopt(sock,SOL_SOCKET,SO_REUSEADDR,(char *)&allowReuse,
|
|
|
|
sizeof(allowReuse))<0)
|
|
|
|
{
|
|
|
|
ERROR("problems setsockopt'ing\n");
|
2004-11-03 20:42:54 +01:00
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(bind(sock,addrp,addrlen)<0) {
|
2004-11-03 20:42:54 +01:00
|
|
|
ERROR("unable to bind port %i: %s\n", port, strerror(errno));
|
|
|
|
ERROR("maybe MPD is still running?\n");
|
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(listen(sock,5)<0) {
|
2004-11-03 20:42:54 +01:00
|
|
|
ERROR("problems listen'ing: %s\n", strerror(errno));
|
|
|
|
exit(EXIT_FAILURE);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
|
2004-11-03 20:42:54 +01:00
|
|
|
void establish(unsigned int port) {
|
|
|
|
ConfigParam * param = getNextConfigParam(CONF_BIND_TO_ADDRESS, NULL);
|
|
|
|
|
|
|
|
do {
|
|
|
|
numberOfListenSockets++;
|
|
|
|
listenSockets = realloc(listenSockets,
|
|
|
|
sizeof(int)*numberOfListenSockets);
|
|
|
|
|
|
|
|
listenSockets[numberOfListenSockets-1] =
|
|
|
|
establishListen(port, param);
|
|
|
|
} while ((param = getNextConfigParam(CONF_BIND_TO_ADDRESS, param)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void addListenSocketsToFdSet(fd_set * fds, int * fdmax) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i=0; i<numberOfListenSockets; i++) {
|
|
|
|
FD_SET(listenSockets[i], fds);
|
|
|
|
if(listenSockets[i] > *fdmax) *fdmax = listenSockets[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void closeAllListenSockets() {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
DEBUG("closeAllListenSockets called\n");
|
|
|
|
|
|
|
|
for(i=0; i<numberOfListenSockets; i++) {
|
|
|
|
DEBUG("closing listen scoket %i\n", i);
|
|
|
|
while(close(listenSockets[i]) < 0 && errno==EINTR);
|
|
|
|
}
|
|
|
|
|
|
|
|
numberOfListenSockets = 0;
|
|
|
|
free(listenSockets);
|
|
|
|
listenSockets = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int isAListenSocket(int socket) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i=0; listenSockets[i] != socket && i<numberOfListenSockets; i++);
|
|
|
|
|
|
|
|
return (i < numberOfListenSockets);
|
|
|
|
}
|
|
|
|
|
|
|
|
void getConnections(fd_set * fds) {
|
|
|
|
int i;
|
2004-02-24 00:41:20 +01:00
|
|
|
int fd = 0;
|
|
|
|
struct sockaddr sockAddr;
|
|
|
|
socklen_t socklen = sizeof(sockAddr);
|
|
|
|
|
2004-11-03 20:42:54 +01:00
|
|
|
for(i=0; i<numberOfListenSockets; i++) {
|
|
|
|
if(FD_ISSET(listenSockets[i], fds)) {
|
|
|
|
if((fd = accept(listenSockets[i], &sockAddr, &socklen))
|
|
|
|
>= 0)
|
|
|
|
{
|
|
|
|
openAInterface(fd,&sockAddr);
|
|
|
|
}
|
|
|
|
else if(fd<0 && (errno!=EAGAIN && errno!=EINTR)) {
|
|
|
|
ERROR("Problems accept()'ing\n");
|
|
|
|
}
|
|
|
|
}
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
}
|