connecthostport.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. /* $Id: connecthostport.c,v 1.15 2015/10/09 16:26:19 nanard Exp $ */
  2. /* Project : miniupnp
  3. * Author : Thomas Bernard
  4. * Copyright (c) 2010-2015 Thomas Bernard
  5. * This software is subject to the conditions detailed in the
  6. * LICENCE file provided in this distribution. */
  7. #define _CRT_SECURE_NO_WARNINGS
  8. /* use getaddrinfo() or gethostbyname()
  9. * uncomment the following line in order to use gethostbyname() */
  10. #ifdef NO_GETADDRINFO
  11. #define USE_GETHOSTBYNAME
  12. #endif
  13. #include <string.h>
  14. #include <stdio.h>
  15. #ifdef _WIN32
  16. #include <winsock2.h>
  17. #include <ws2tcpip.h>
  18. #include <io.h>
  19. #define MAXHOSTNAMELEN 64
  20. #define snprintf _snprintf
  21. #define herror
  22. #define socklen_t int
  23. #else /* #ifdef _WIN32 */
  24. #include <unistd.h>
  25. #include <sys/types.h>
  26. #ifdef MINIUPNPC_SET_SOCKET_TIMEOUT
  27. #include <sys/time.h>
  28. #endif /* #ifdef MINIUPNPC_SET_SOCKET_TIMEOUT */
  29. #include <sys/param.h>
  30. #include <sys/select.h>
  31. #include <errno.h>
  32. #define closesocket close
  33. #include <netdb.h>
  34. #include <netinet/in.h>
  35. /* defining MINIUPNPC_IGNORE_EINTR enable the ignore of interruptions
  36. * during the connect() call */
  37. #define MINIUPNPC_IGNORE_EINTR
  38. #ifndef USE_GETHOSTBYNAME
  39. #include <sys/socket.h>
  40. #include <sys/select.h>
  41. #endif /* #ifndef USE_GETHOSTBYNAME */
  42. #endif /* #else _WIN32 */
  43. /* definition of PRINT_SOCKET_ERROR */
  44. #ifdef _WIN32
  45. #define PRINT_SOCKET_ERROR(x) printf("Socket error: %s, %d\n", x, WSAGetLastError());
  46. #else
  47. #define PRINT_SOCKET_ERROR(x) perror(x)
  48. #endif
  49. #if defined(__amigaos__) || defined(__amigaos4__)
  50. #define herror(A) printf("%s\n", A)
  51. #endif
  52. #include "connecthostport.h"
  53. #ifndef MAXHOSTNAMELEN
  54. #define MAXHOSTNAMELEN 64
  55. #endif
  56. /* connecthostport()
  57. * return a socket connected (TCP) to the host and port
  58. * or -1 in case of error */
  59. int connecthostport(const char * host, unsigned short port,
  60. unsigned int scope_id)
  61. {
  62. int s, n;
  63. #ifdef USE_GETHOSTBYNAME
  64. struct sockaddr_in dest;
  65. struct hostent *hp;
  66. #else /* #ifdef USE_GETHOSTBYNAME */
  67. char tmp_host[MAXHOSTNAMELEN+1];
  68. char port_str[8];
  69. struct addrinfo *ai, *p;
  70. struct addrinfo hints;
  71. #endif /* #ifdef USE_GETHOSTBYNAME */
  72. #ifdef MINIUPNPC_SET_SOCKET_TIMEOUT
  73. struct timeval timeout;
  74. #endif /* #ifdef MINIUPNPC_SET_SOCKET_TIMEOUT */
  75. #ifdef USE_GETHOSTBYNAME
  76. hp = gethostbyname(host);
  77. if(hp == NULL)
  78. {
  79. herror(host);
  80. return -1;
  81. }
  82. memcpy(&dest.sin_addr, hp->h_addr, sizeof(dest.sin_addr));
  83. memset(dest.sin_zero, 0, sizeof(dest.sin_zero));
  84. s = socket(PF_INET, SOCK_STREAM, 0);
  85. if(s < 0)
  86. {
  87. PRINT_SOCKET_ERROR("socket");
  88. return -1;
  89. }
  90. #ifdef MINIUPNPC_SET_SOCKET_TIMEOUT
  91. /* setting a 3 seconds timeout for the connect() call */
  92. timeout.tv_sec = 3;
  93. timeout.tv_usec = 0;
  94. if(setsockopt(s, SOL_SOCKET, SO_RCVTIMEO, &timeout, sizeof(struct timeval)) < 0)
  95. {
  96. PRINT_SOCKET_ERROR("setsockopt");
  97. }
  98. timeout.tv_sec = 3;
  99. timeout.tv_usec = 0;
  100. if(setsockopt(s, SOL_SOCKET, SO_SNDTIMEO, &timeout, sizeof(struct timeval)) < 0)
  101. {
  102. PRINT_SOCKET_ERROR("setsockopt");
  103. }
  104. #endif /* #ifdef MINIUPNPC_SET_SOCKET_TIMEOUT */
  105. dest.sin_family = AF_INET;
  106. dest.sin_port = htons(port);
  107. n = connect(s, (struct sockaddr *)&dest, sizeof(struct sockaddr_in));
  108. #ifdef MINIUPNPC_IGNORE_EINTR
  109. /* EINTR The system call was interrupted by a signal that was caught
  110. * EINPROGRESS The socket is nonblocking and the connection cannot
  111. * be completed immediately. */
  112. while(n < 0 && (errno == EINTR || errno == EINPROGRESS))
  113. {
  114. socklen_t len;
  115. fd_set wset;
  116. int err;
  117. FD_ZERO(&wset);
  118. FD_SET(s, &wset);
  119. if((n = select(s + 1, NULL, &wset, NULL, NULL)) == -1 && errno == EINTR)
  120. continue;
  121. /*len = 0;*/
  122. /*n = getpeername(s, NULL, &len);*/
  123. len = sizeof(err);
  124. if(getsockopt(s, SOL_SOCKET, SO_ERROR, &err, &len) < 0) {
  125. PRINT_SOCKET_ERROR("getsockopt");
  126. closesocket(s);
  127. return -1;
  128. }
  129. if(err != 0) {
  130. errno = err;
  131. n = -1;
  132. }
  133. }
  134. #endif /* #ifdef MINIUPNPC_IGNORE_EINTR */
  135. if(n<0)
  136. {
  137. PRINT_SOCKET_ERROR("connect");
  138. closesocket(s);
  139. return -1;
  140. }
  141. #else /* #ifdef USE_GETHOSTBYNAME */
  142. /* use getaddrinfo() instead of gethostbyname() */
  143. memset(&hints, 0, sizeof(hints));
  144. /* hints.ai_flags = AI_ADDRCONFIG; */
  145. #ifdef AI_NUMERICSERV
  146. hints.ai_flags = AI_NUMERICSERV;
  147. #endif
  148. hints.ai_socktype = SOCK_STREAM;
  149. hints.ai_family = AF_UNSPEC; /* AF_INET, AF_INET6 or AF_UNSPEC */
  150. /* hints.ai_protocol = IPPROTO_TCP; */
  151. snprintf(port_str, sizeof(port_str), "%hu", port);
  152. if(host[0] == '[')
  153. {
  154. /* literal ip v6 address */
  155. int i, j;
  156. for(i = 0, j = 1; host[j] && (host[j] != ']') && i < MAXHOSTNAMELEN; i++, j++)
  157. {
  158. tmp_host[i] = host[j];
  159. if(0 == memcmp(host+j, "%25", 3)) /* %25 is just url encoding for '%' */
  160. j+=2; /* skip "25" */
  161. }
  162. tmp_host[i] = '\0';
  163. }
  164. else
  165. {
  166. strncpy(tmp_host, host, MAXHOSTNAMELEN);
  167. }
  168. tmp_host[MAXHOSTNAMELEN] = '\0';
  169. n = getaddrinfo(tmp_host, port_str, &hints, &ai);
  170. if(n != 0)
  171. {
  172. #ifdef _WIN32
  173. fprintf(stderr, "getaddrinfo() error : %d\n", n);
  174. #else
  175. fprintf(stderr, "getaddrinfo() error : %s\n", gai_strerror(n));
  176. #endif
  177. return -1;
  178. }
  179. s = -1;
  180. for(p = ai; p; p = p->ai_next)
  181. {
  182. s = socket(p->ai_family, p->ai_socktype, p->ai_protocol);
  183. if(s < 0)
  184. continue;
  185. if(p->ai_addr->sa_family == AF_INET6 && scope_id > 0) {
  186. struct sockaddr_in6 * addr6 = (struct sockaddr_in6 *)p->ai_addr;
  187. addr6->sin6_scope_id = scope_id;
  188. }
  189. #ifdef MINIUPNPC_SET_SOCKET_TIMEOUT
  190. /* setting a 3 seconds timeout for the connect() call */
  191. timeout.tv_sec = 3;
  192. timeout.tv_usec = 0;
  193. if(setsockopt(s, SOL_SOCKET, SO_RCVTIMEO, &timeout, sizeof(struct timeval)) < 0)
  194. {
  195. PRINT_SOCKET_ERROR("setsockopt");
  196. }
  197. timeout.tv_sec = 3;
  198. timeout.tv_usec = 0;
  199. if(setsockopt(s, SOL_SOCKET, SO_SNDTIMEO, &timeout, sizeof(struct timeval)) < 0)
  200. {
  201. PRINT_SOCKET_ERROR("setsockopt");
  202. }
  203. #endif /* #ifdef MINIUPNPC_SET_SOCKET_TIMEOUT */
  204. n = connect(s, p->ai_addr, p->ai_addrlen);
  205. #ifdef MINIUPNPC_IGNORE_EINTR
  206. /* EINTR The system call was interrupted by a signal that was caught
  207. * EINPROGRESS The socket is nonblocking and the connection cannot
  208. * be completed immediately. */
  209. while(n < 0 && (errno == EINTR || errno == EINPROGRESS))
  210. {
  211. socklen_t len;
  212. fd_set wset;
  213. int err;
  214. FD_ZERO(&wset);
  215. FD_SET(s, &wset);
  216. if((n = select(s + 1, NULL, &wset, NULL, NULL)) == -1 && errno == EINTR)
  217. continue;
  218. /*len = 0;*/
  219. /*n = getpeername(s, NULL, &len);*/
  220. len = sizeof(err);
  221. if(getsockopt(s, SOL_SOCKET, SO_ERROR, &err, &len) < 0) {
  222. PRINT_SOCKET_ERROR("getsockopt");
  223. closesocket(s);
  224. freeaddrinfo(ai);
  225. return -1;
  226. }
  227. if(err != 0) {
  228. errno = err;
  229. n = -1;
  230. }
  231. }
  232. #endif /* #ifdef MINIUPNPC_IGNORE_EINTR */
  233. if(n < 0)
  234. {
  235. closesocket(s);
  236. continue;
  237. }
  238. else
  239. {
  240. break;
  241. }
  242. }
  243. freeaddrinfo(ai);
  244. if(s < 0)
  245. {
  246. PRINT_SOCKET_ERROR("socket");
  247. return -1;
  248. }
  249. if(n < 0)
  250. {
  251. PRINT_SOCKET_ERROR("connect");
  252. return -1;
  253. }
  254. #endif /* #ifdef USE_GETHOSTBYNAME */
  255. return s;
  256. }