blob: 7cf9d00e930e07b53c1c1124be6790160b7781df [file] [log] [blame]
Eric Andersen0b315862002-07-03 11:51:44 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenaff114c2004-04-14 17:51:38 +00005 * Connect to host at port using address resolution from getaddrinfo
Eric Andersen0b315862002-07-03 11:51:44 +00006 *
7 */
8
Eric Andersen0b315862002-07-03 11:51:44 +00009#include "libbb.h"
10
Glenn L McGrathffccf6e2003-12-20 01:47:18 +000011/* Return network byte ordered port number for a service.
12 * If "port" is a number use it as the port.
13 * If "port" is a name it is looked up in /etc/services, if it isnt found return
14 * default_port
15 */
Glenn L McGrath036dbaa2004-01-17 05:03:31 +000016unsigned short bb_lookup_port(const char *port, const char *protocol, unsigned short default_port)
Eric Andersen0b315862002-07-03 11:51:44 +000017{
Glenn L McGrathffccf6e2003-12-20 01:47:18 +000018 unsigned short port_nr = htons(default_port);
19 if (port) {
Eric Andersen9cccc182003-12-23 20:37:23 +000020 char *endptr;
21 int old_errno;
22 long port_long;
Eric Andersen0b315862002-07-03 11:51:44 +000023
Eric Andersen9cccc182003-12-23 20:37:23 +000024 /* Since this is a lib function, we're not allowed to reset errno to 0.
25 * Doing so could break an app that is deferring checking of errno. */
26 old_errno = errno;
27 errno = 0;
28 port_long = strtol(port, &endptr, 10);
Glenn L McGrathffccf6e2003-12-20 01:47:18 +000029 if (errno != 0 || *endptr!='\0' || endptr==port || port_long < 0 || port_long > 65535) {
Glenn L McGrath036dbaa2004-01-17 05:03:31 +000030 struct servent *tserv = getservbyname(port, protocol);
Glenn L McGrathffccf6e2003-12-20 01:47:18 +000031 if (tserv) {
Eric Andersen3a5ed562003-12-23 20:37:54 +000032 port_nr = tserv->s_port;
33 }
34 } else {
Glenn L McGrathffccf6e2003-12-20 01:47:18 +000035 port_nr = htons(port_long);
36 }
Eric Andersen9cccc182003-12-23 20:37:23 +000037 errno = old_errno;
Eric Andersene6dc4392003-10-31 09:31:46 +000038 }
39 return port_nr;
40}
41
Glenn L McGrathffccf6e2003-12-20 01:47:18 +000042void bb_lookup_host(struct sockaddr_in *s_in, const char *host)
Eric Andersene6dc4392003-10-31 09:31:46 +000043{
44 struct hostent *he;
45
46 memset(s_in, 0, sizeof(struct sockaddr_in));
47 s_in->sin_family = AF_INET;
48 he = xgethostbyname(host);
49 memcpy(&(s_in->sin_addr), he->h_addr_list[0], he->h_length);
Eric Andersene6dc4392003-10-31 09:31:46 +000050}
51
Denis Vlasenko14579152006-10-26 01:09:46 +000052void xconnect(int s, const struct sockaddr *s_addr, socklen_t addrlen)
53{
54 if (connect(s, s_addr, addrlen) < 0) {
55 if (ENABLE_FEATURE_CLEAN_UP) close(s);
56 if (s_addr->sa_family == AF_INET)
57 bb_perror_msg_and_die("unable to connect to remote host (%s)",
58 inet_ntoa(((struct sockaddr_in *)s_addr)->sin_addr));
59 bb_perror_msg_and_die("unable to connect to remote host");
60 }
61}
62
63int xconnect_tcp_v4(struct sockaddr_in *s_addr)
Eric Andersene6dc4392003-10-31 09:31:46 +000064{
Rob Landleyd921b2e2006-08-03 15:41:12 +000065 int s = xsocket(AF_INET, SOCK_STREAM, 0);
Denis Vlasenko14579152006-10-26 01:09:46 +000066 xconnect(s, (struct sockaddr*) s_addr, sizeof(*s_addr));
Eric Andersen0b315862002-07-03 11:51:44 +000067 return s;
Eric Andersen0b315862002-07-03 11:51:44 +000068}