2002-07-03 17:21:44 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-04-14 23:21:38 +05:30
|
|
|
* Connect to host at port using address resolution from getaddrinfo
|
2002-07-03 17:21:44 +05:30
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2003-12-20 07:17:18 +05:30
|
|
|
/* Return network byte ordered port number for a service.
|
|
|
|
* If "port" is a number use it as the port.
|
|
|
|
* If "port" is a name it is looked up in /etc/services, if it isnt found return
|
|
|
|
* default_port
|
|
|
|
*/
|
2004-01-17 10:33:31 +05:30
|
|
|
unsigned short bb_lookup_port(const char *port, const char *protocol, unsigned short default_port)
|
2002-07-03 17:21:44 +05:30
|
|
|
{
|
2003-12-20 07:17:18 +05:30
|
|
|
unsigned short port_nr = htons(default_port);
|
|
|
|
if (port) {
|
2003-12-24 02:07:23 +05:30
|
|
|
char *endptr;
|
|
|
|
int old_errno;
|
|
|
|
long port_long;
|
2002-07-03 17:21:44 +05:30
|
|
|
|
2003-12-24 02:07:23 +05:30
|
|
|
/* Since this is a lib function, we're not allowed to reset errno to 0.
|
|
|
|
* Doing so could break an app that is deferring checking of errno. */
|
|
|
|
old_errno = errno;
|
|
|
|
errno = 0;
|
|
|
|
port_long = strtol(port, &endptr, 10);
|
2003-12-20 07:17:18 +05:30
|
|
|
if (errno != 0 || *endptr!='\0' || endptr==port || port_long < 0 || port_long > 65535) {
|
2004-01-17 10:33:31 +05:30
|
|
|
struct servent *tserv = getservbyname(port, protocol);
|
2003-12-20 07:17:18 +05:30
|
|
|
if (tserv) {
|
2003-12-24 02:07:54 +05:30
|
|
|
port_nr = tserv->s_port;
|
|
|
|
}
|
|
|
|
} else {
|
2003-12-20 07:17:18 +05:30
|
|
|
port_nr = htons(port_long);
|
|
|
|
}
|
2003-12-24 02:07:23 +05:30
|
|
|
errno = old_errno;
|
2002-07-03 17:21:44 +05:30
|
|
|
}
|
2003-10-31 15:01:46 +05:30
|
|
|
return port_nr;
|
|
|
|
}
|
2002-07-03 17:21:44 +05:30
|
|
|
|
2003-12-20 07:17:18 +05:30
|
|
|
void bb_lookup_host(struct sockaddr_in *s_in, const char *host)
|
2003-10-31 15:01:46 +05:30
|
|
|
{
|
|
|
|
struct hostent *he;
|
2002-07-03 17:21:44 +05:30
|
|
|
|
2003-10-31 15:01:46 +05:30
|
|
|
memset(s_in, 0, sizeof(struct sockaddr_in));
|
|
|
|
s_in->sin_family = AF_INET;
|
2002-07-03 17:21:44 +05:30
|
|
|
he = xgethostbyname(host);
|
2003-10-31 15:01:46 +05:30
|
|
|
memcpy(&(s_in->sin_addr), he->h_addr_list[0], he->h_length);
|
|
|
|
}
|
|
|
|
|
2006-10-26 06:39:46 +05:30
|
|
|
void xconnect(int s, const struct sockaddr *s_addr, socklen_t addrlen)
|
2003-10-31 15:01:46 +05:30
|
|
|
{
|
2006-10-26 06:39:46 +05:30
|
|
|
if (connect(s, s_addr, addrlen) < 0) {
|
2005-08-22 21:27:50 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) close(s);
|
2006-10-26 06:39:46 +05:30
|
|
|
if (s_addr->sa_family == AF_INET)
|
2006-11-19 03:34:09 +05:30
|
|
|
bb_perror_msg_and_die("cannot connect to remote host (%s)",
|
2006-10-26 06:39:46 +05:30
|
|
|
inet_ntoa(((struct sockaddr_in *)s_addr)->sin_addr));
|
2006-11-19 03:34:09 +05:30
|
|
|
bb_perror_msg_and_die("cannot connect to remote host");
|
2002-07-03 17:21:44 +05:30
|
|
|
}
|
2006-10-26 06:39:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
int xconnect_tcp_v4(struct sockaddr_in *s_addr)
|
|
|
|
{
|
|
|
|
int s = xsocket(AF_INET, SOCK_STREAM, 0);
|
|
|
|
xconnect(s, (struct sockaddr*) s_addr, sizeof(*s_addr));
|
2002-07-03 17:21:44 +05:30
|
|
|
return s;
|
|
|
|
}
|