/* Establishing and handling network connections. Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. This file is part of Wget. 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 #include #include #ifdef HAVE_UNISTD_H # include #endif #ifdef WINDOWS # include #else # include # include # include # include #endif /* WINDOWS */ #include #ifdef HAVE_STRING_H # include #else # include #endif /* HAVE_STRING_H */ #ifdef HAVE_SYS_SELECT_H # include #endif /* HAVE_SYS_SELECT_H */ #include "wget.h" #include "connect.h" #include "host.h" #ifndef errno extern int errno; #endif /* Variables shared by bindport and acceptport: */ static int msock = -1; static struct sockaddr *addr; /* Create an internet connection to HOSTNAME on PORT. The created socket will be stored to *SOCK. */ uerr_t make_connection (int *sock, char *hostname, unsigned short port) { struct sockaddr_in sock_name; /* struct hostent *hptr; */ /* Get internet address of the host. We can do it either by calling ngethostbyname, or by calling store_hostaddress, from host.c. storehostaddress is better since it caches calls to gethostbyname. */ #if 1 if (!store_hostaddress ((unsigned char *)&sock_name.sin_addr, hostname)) return HOSTERR; #else /* never */ if (!(hptr = ngethostbyname (hostname))) return HOSTERR; /* Copy the address of the host to socket description. */ memcpy (&sock_name.sin_addr, hptr->h_addr, hptr->h_length); #endif /* never */ /* Set port and protocol */ sock_name.sin_family = AF_INET; sock_name.sin_port = htons (port); /* Make an internet socket, stream type. */ if ((*sock = socket (AF_INET, SOCK_STREAM, 0)) == -1) return CONSOCKERR; /* Connect the socket to the remote host. */ if (connect (*sock, (struct sockaddr *) &sock_name, sizeof (sock_name))) { if (errno == ECONNREFUSED) return CONREFUSED; else return CONERROR; } DEBUGP (("Created fd %d.\n", *sock)); return NOCONERROR; } /* Bind the local port PORT. This does all the necessary work, which is creating a socket, setting SO_REUSEADDR option on it, then calling bind() and listen(). If *PORT is 0, a random port is chosen by the system, and its value is stored to *PORT. The internal variable MPORT is set to the value of the ensuing master socket. Call acceptport() to block for and accept a connection. */ uerr_t bindport (unsigned short *port) { int optval = 1; static struct sockaddr_in srv; msock = -1; addr = (struct sockaddr *) &srv; if ((msock = socket (AF_INET, SOCK_STREAM, 0)) < 0) return CONSOCKERR; if (setsockopt (msock, SOL_SOCKET, SO_REUSEADDR, (char *)&optval, sizeof (optval)) < 0) return CONSOCKERR; srv.sin_family = AF_INET; srv.sin_addr.s_addr = htonl (INADDR_ANY); srv.sin_port = htons (*port); if (bind (msock, addr, sizeof (struct sockaddr_in)) < 0) { CLOSE (msock); msock = -1; return BINDERR; } DEBUGP (("Master socket fd %d bound.\n", msock)); if (!*port) { size_t addrlen = sizeof (struct sockaddr_in); if (getsockname (msock, addr, (int *)&addrlen) < 0) { CLOSE (msock); msock = -1; return CONPORTERR; } *port = ntohs (srv.sin_port); } if (listen (msock, 1) < 0) { CLOSE (msock); msock = -1; return LISTENERR; } return BINDOK; } #ifdef HAVE_SELECT /* Wait for file descriptor FD to be readable, MAXTIME being the timeout in seconds. If WRITEP is non-zero, checks for FD being writable instead. Returns 1 if FD is accessible, 0 for timeout and -1 for error in select(). */ static int select_fd (int fd, int maxtime, int writep) { fd_set fds, exceptfds; struct timeval timeout; FD_ZERO (&fds); FD_SET (fd, &fds); FD_ZERO (&exceptfds); FD_SET (fd, &exceptfds); timeout.tv_sec = maxtime; timeout.tv_usec = 0; /* HPUX reportedly warns here. What is the correct incantation? */ return select (fd + 1, writep ? NULL : &fds, writep ? &fds : NULL, &exceptfds, &timeout); } #endif /* HAVE_SELECT */ /* Call accept() on MSOCK and store the result to *SOCK. This assumes that bindport() has been used to initialize MSOCK to a correct value. It blocks the caller until a connection is established. If no connection is established for OPT.TIMEOUT seconds, the function exits with an error status. */ uerr_t acceptport (int *sock) { int addrlen = sizeof (struct sockaddr_in); #ifdef HAVE_SELECT if (select_fd (msock, opt.timeout, 0) <= 0) return ACCEPTERR; #endif if ((*sock = accept (msock, addr, &addrlen)) < 0) return ACCEPTERR; DEBUGP (("Created socket fd %d.\n", *sock)); return ACCEPTOK; } /* Close SOCK, as well as the most recently remembered MSOCK, created via bindport(). If SOCK is -1, close MSOCK only. */ void closeport (int sock) { /*shutdown (sock, 2);*/ if (sock != -1) CLOSE (sock); if (msock != -1) CLOSE (msock); msock = -1; } /* Return the local IP address associated with the connection on FD. It is returned in a static buffer. */ unsigned char * conaddr (int fd) { static unsigned char res[4]; struct sockaddr_in mysrv; struct sockaddr *myaddr; size_t addrlen = sizeof (mysrv); myaddr = (struct sockaddr *) (&mysrv); if (getsockname (fd, myaddr, (int *)&addrlen) < 0) return NULL; memcpy (res, &mysrv.sin_addr, 4); return res; } /* Read at most LEN bytes from FD, storing them to BUF. This is virtually the same as read(), but takes care of EINTR braindamage and uses select() to timeout the stale connections (a connection is stale if more than OPT.TIMEOUT time is spent in select() or read()). */ int iread (int fd, char *buf, int len) { int res; do { #ifdef HAVE_SELECT if (opt.timeout) { do { res = select_fd (fd, opt.timeout, 0); } while (res == -1 && errno == EINTR); if (res <= 0) { /* Set errno to ETIMEDOUT on timeout. */ if (res == 0) /* #### Potentially evil! */ errno = ETIMEDOUT; return -1; } } #endif res = READ (fd, buf, len); } while (res == -1 && errno == EINTR); return res; } /* Write LEN bytes from BUF to FD. This is similar to iread(), but doesn't bother with select(). Unlike iread(), it makes sure that all of BUF is actually written to FD, so callers needn't bother with checking that the return value equals to LEN. Instead, you should simply check for -1. */ int iwrite (int fd, char *buf, int len) { int res = 0; /* `write' may write less than LEN bytes, thus the outward loop keeps trying it until all was written, or an error occurred. The inner loop is reserved for the usual EINTR f*kage, and the innermost loop deals with the same during select(). */ while (len > 0) { do { #ifdef HAVE_SELECT if (opt.timeout) { do { res = select_fd (fd, opt.timeout, 1); } while (res == -1 && errno == EINTR); if (res <= 0) { /* Set errno to ETIMEDOUT on timeout. */ if (res == 0) /* #### Potentially evil! */ errno = ETIMEDOUT; return -1; } } #endif res = WRITE (fd, buf, len); } while (res == -1 && errno == EINTR); if (res <= 0) break; buf += res; len -= res; } return res; }