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
|
/* net.c --
* Created: Fri Feb 21 20:58:10 1997 by faith@cs.unc.edu
* Revised: Sun Jan 18 00:54:26 1998 by faith@acm.org
* Copyright 1997, 1998 Rickard E. Faith (faith@acm.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 1, 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.
*
* $Id: net.c,v 1.18 1998/01/19 03:37:23 faith Exp $
*
*/
#include "dictd.h"
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#if HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
#ifndef MAXHOSTNAMELEN
#define MAXHOSTNAMELEN 64
#endif
#ifndef INADDR_NONE
#define INADDR_NONE (-1)
#endif
static char netHostname[MAXHOSTNAMELEN];
const char *net_hostname( void )
{
struct hostent *hostEntry;
static char *hostname = NULL;
if (!netHostname[0]) {
memset( netHostname, 0, sizeof(netHostname) );
gethostname( netHostname, sizeof(netHostname)-1 );
if ((hostEntry = gethostbyname(netHostname))) {
hostname = xstrdup(hostEntry->h_name);
} else {
hostname = xstrdup(netHostname);
}
}
return hostname;
}
int net_connect_tcp( const char *host, const char *service )
{
struct hostent *hostEntry;
struct servent *serviceEntry;
struct protoent *protocolEntry;
struct sockaddr_in ssin;
int s;
int hosts = 0;
char **current;
memset( &ssin, 0, sizeof(ssin) );
ssin.sin_family = AF_INET;
if ((hostEntry = gethostbyname(host))) {
++hosts;
} else if ((ssin.sin_addr.s_addr = inet_addr(host)) == INADDR_NONE)
return NET_NOHOST;
if ((serviceEntry = getservbyname(service, "tcp"))) {
ssin.sin_port = serviceEntry->s_port;
} else if (!(ssin.sin_port = htons(atoi(service))))
return NET_NOSERVICE;
if (!(protocolEntry = getprotobyname("tcp")))
return NET_NOPROTOCOL;
if (hosts) {
for (current = hostEntry->h_addr_list; *current; current++) {
memcpy( &ssin.sin_addr.s_addr, *current, hostEntry->h_length );
PRINTF(DBG_VERBOSE,
("Trying %s (%s)\n",host,inet_ntoa(ssin.sin_addr)));
if ((s = socket(PF_INET, SOCK_STREAM, protocolEntry->p_proto)) < 0)
err_fatal_errno( __FUNCTION__, "Can't open socket on port %d\n",
ntohs(ssin.sin_port) );
if (connect(s, (struct sockaddr *)&ssin, sizeof(ssin)) >= 0)
return s;
close(s);
}
} else {
if ((s = socket(PF_INET, SOCK_STREAM, protocolEntry->p_proto)) < 0)
err_fatal_errno( __FUNCTION__, "Can't open socket on port %d\n",
ntohs(ssin.sin_port) );
if (connect(s, (struct sockaddr *)&ssin, sizeof(ssin)) >= 0)
return s;
close(s);
}
return NET_NOCONNECT;
}
int net_open_tcp( const char *service, int queueLength )
{
struct servent *serviceEntry;
struct protoent *protocolEntry;
struct sockaddr_in ssin;
int s;
const int one = 1;
memset( &ssin, 0, sizeof(ssin) );
ssin.sin_family = AF_INET;
ssin.sin_addr.s_addr = INADDR_ANY;
if ((serviceEntry = getservbyname(service, "tcp"))) {
ssin.sin_port = serviceEntry->s_port;
} else if (!(ssin.sin_port = htons(atoi(service))))
err_fatal( __FUNCTION__, "Can't get \"%s\" service entry\n", service );
if (!(protocolEntry = getprotobyname("tcp")))
err_fatal( __FUNCTION__, "Can't get \"tcp\" protocol entry\n" );
if ((s = socket(PF_INET, SOCK_STREAM, protocolEntry->p_proto)) < 0)
err_fatal_errno( __FUNCTION__, "Can't open socket on port %d\n",
ntohs(ssin.sin_port) );
setsockopt( s, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one) );
if (bind(s, (struct sockaddr *)&ssin, sizeof(ssin)) < 0)
err_fatal_errno( __FUNCTION__, "Can't bind %s/tcp to port %d\n",
service, ntohs(ssin.sin_port) );
if (listen( s, queueLength ) < 0)
err_fatal_errno( __FUNCTION__, "Can't listen to %s/tcp on port %d\n",
service, ntohs(ssin.sin_port) );
return s;
}
void net_detach( void )
{
int i;
int fd;
switch (fork()) {
case -1: err_fatal_errno( __FUNCTION__, "Cannot fork\n" ); break;
case 0: break; /* child */
default: exit(0); /* parent */
}
/* The detach algorithm is a modification of that presented by Comer,
Douglas E. and Stevens, David L. INTERNETWORKING WITH TCP/IP, VOLUME
III: CLIENT-SERVER PROGRAMMING AND APPLICATIONS (BSD SOCKET VERSION).
Englewood Cliffs, New Jersey: Prentice Hall, 1993 (Chapter 27). */
for (i=getdtablesize()-1; i >= 0; --i) close(i); /* close everything */
#if !defined(__hpux__)
if ((fd = open("/dev/tty", O_RDWR)) >= 0) {
/* detach from controlling tty */
ioctl(fd, TIOCNOTTY, 0);
close(fd);
}
#endif
chdir("/"); /* cd to safe directory */
umask(0); /* set safe umask */
setpgid(0,getpid()); /* Get process group */
fd = open("/dev/null", O_RDWR); /* stdin */
dup(fd); /* stdout */
dup(fd); /* stderr */
}
int net_read( int s, char *buf, int maxlen )
{
int len;
int n = 0;
char c;
char *pt = buf;
*pt = '\0';
for (len = 0; len < maxlen && (n = read( s, &c, 1 )) > 0; /*void*/) {
switch (c) {
case '\n': *pt = '\0'; return len;
case '\r': break;
default: *pt++ = c; ++len; break;
}
}
*pt = '\0';
if (!n) return len ? len : EOF;
return n; /* error code */
}
int net_write( int s, const char *buf, int len )
{
int left = len;
int count;
while (left) {
if ((count = write(s, buf, left)) != left) {
if (count <= 0) return count; /* error code */
}
left -= count;
}
return len;
}
|