s_socket.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. /*
  2. * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. /* socket-related functions used by s_client and s_server */
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <string.h>
  13. #include <errno.h>
  14. #include <signal.h>
  15. #include <openssl/opensslconf.h>
  16. /*
  17. * With IPv6, it looks like Digital has mixed up the proper order of
  18. * recursive header file inclusion, resulting in the compiler complaining
  19. * that u_int isn't defined, but only if _POSIX_C_SOURCE is defined, which is
  20. * needed to have fileno() declared correctly... So let's define u_int
  21. */
  22. #if defined(OPENSSL_SYS_VMS_DECC) && !defined(__U_INT)
  23. # define __U_INT
  24. typedef unsigned int u_int;
  25. #endif
  26. #ifndef OPENSSL_NO_SOCK
  27. # include "apps.h"
  28. # include "s_apps.h"
  29. # include "internal/sockets.h"
  30. # if defined(__TANDEM)
  31. # if defined(OPENSSL_TANDEM_FLOSS)
  32. # include <floss.h(floss_read)>
  33. # endif
  34. # endif
  35. # include <openssl/bio.h>
  36. # include <openssl/err.h>
  37. /* Keep track of our peer's address for the cookie callback */
  38. BIO_ADDR *ourpeer = NULL;
  39. /*
  40. * init_client - helper routine to set up socket communication
  41. * @sock: pointer to storage of resulting socket.
  42. * @host: the host name or path (for AF_UNIX) to connect to.
  43. * @port: the port to connect to (ignored for AF_UNIX).
  44. * @bindhost: source host or path (for AF_UNIX).
  45. * @bindport: source port (ignored for AF_UNIX).
  46. * @family: desired socket family, may be AF_INET, AF_INET6, AF_UNIX or
  47. * AF_UNSPEC
  48. * @type: socket type, must be SOCK_STREAM or SOCK_DGRAM
  49. * @protocol: socket protocol, e.g. IPPROTO_TCP or IPPROTO_UDP (or 0 for any)
  50. *
  51. * This will create a socket and use it to connect to a host:port, or if
  52. * family == AF_UNIX, to the path found in host.
  53. *
  54. * If the host has more than one address, it will try them one by one until
  55. * a successful connection is established. The resulting socket will be
  56. * found in *sock on success, it will be given INVALID_SOCKET otherwise.
  57. *
  58. * Returns 1 on success, 0 on failure.
  59. */
  60. int init_client(int *sock, const char *host, const char *port,
  61. const char *bindhost, const char *bindport,
  62. int family, int type, int protocol)
  63. {
  64. BIO_ADDRINFO *res = NULL;
  65. BIO_ADDRINFO *bindaddr = NULL;
  66. const BIO_ADDRINFO *ai = NULL;
  67. const BIO_ADDRINFO *bi = NULL;
  68. int found = 0;
  69. int ret;
  70. if (BIO_sock_init() != 1)
  71. return 0;
  72. ret = BIO_lookup_ex(host, port, BIO_LOOKUP_CLIENT, family, type, protocol,
  73. &res);
  74. if (ret == 0) {
  75. ERR_print_errors(bio_err);
  76. return 0;
  77. }
  78. if (bindhost != NULL || bindport != NULL) {
  79. ret = BIO_lookup_ex(bindhost, bindport, BIO_LOOKUP_CLIENT,
  80. family, type, protocol, &bindaddr);
  81. if (ret == 0) {
  82. ERR_print_errors (bio_err);
  83. goto out;
  84. }
  85. }
  86. ret = 0;
  87. for (ai = res; ai != NULL; ai = BIO_ADDRINFO_next(ai)) {
  88. /* Admittedly, these checks are quite paranoid, we should not get
  89. * anything in the BIO_ADDRINFO chain that we haven't
  90. * asked for. */
  91. OPENSSL_assert((family == AF_UNSPEC
  92. || family == BIO_ADDRINFO_family(ai))
  93. && (type == 0 || type == BIO_ADDRINFO_socktype(ai))
  94. && (protocol == 0
  95. || protocol == BIO_ADDRINFO_protocol(ai)));
  96. if (bindaddr != NULL) {
  97. for (bi = bindaddr; bi != NULL; bi = BIO_ADDRINFO_next(bi)) {
  98. if (BIO_ADDRINFO_family(bi) == BIO_ADDRINFO_family(ai))
  99. break;
  100. }
  101. if (bi == NULL)
  102. continue;
  103. ++found;
  104. }
  105. *sock = BIO_socket(BIO_ADDRINFO_family(ai), BIO_ADDRINFO_socktype(ai),
  106. BIO_ADDRINFO_protocol(ai), 0);
  107. if (*sock == INVALID_SOCKET) {
  108. /* Maybe the kernel doesn't support the socket family, even if
  109. * BIO_lookup() added it in the returned result...
  110. */
  111. continue;
  112. }
  113. if (bi != NULL) {
  114. if (!BIO_bind(*sock, BIO_ADDRINFO_address(bi),
  115. BIO_SOCK_REUSEADDR)) {
  116. BIO_closesocket(*sock);
  117. *sock = INVALID_SOCKET;
  118. break;
  119. }
  120. }
  121. #ifndef OPENSSL_NO_SCTP
  122. if (protocol == IPPROTO_SCTP) {
  123. /*
  124. * For SCTP we have to set various options on the socket prior to
  125. * connecting. This is done automatically by BIO_new_dgram_sctp().
  126. * We don't actually need the created BIO though so we free it again
  127. * immediately.
  128. */
  129. BIO *tmpbio = BIO_new_dgram_sctp(*sock, BIO_NOCLOSE);
  130. if (tmpbio == NULL) {
  131. ERR_print_errors(bio_err);
  132. return 0;
  133. }
  134. BIO_free(tmpbio);
  135. }
  136. #endif
  137. if (!BIO_connect(*sock, BIO_ADDRINFO_address(ai),
  138. protocol == IPPROTO_TCP ? BIO_SOCK_NODELAY : 0)) {
  139. BIO_closesocket(*sock);
  140. *sock = INVALID_SOCKET;
  141. continue;
  142. }
  143. /* Success, don't try any more addresses */
  144. break;
  145. }
  146. if (*sock == INVALID_SOCKET) {
  147. if (bindaddr != NULL && !found) {
  148. BIO_printf(bio_err, "Can't bind %saddress for %s%s%s\n",
  149. BIO_ADDRINFO_family(res) == AF_INET6 ? "IPv6 " :
  150. BIO_ADDRINFO_family(res) == AF_INET ? "IPv4 " :
  151. BIO_ADDRINFO_family(res) == AF_UNIX ? "unix " : "",
  152. bindhost != NULL ? bindhost : "",
  153. bindport != NULL ? ":" : "",
  154. bindport != NULL ? bindport : "");
  155. ERR_clear_error();
  156. ret = 0;
  157. }
  158. ERR_print_errors(bio_err);
  159. } else {
  160. /* Remove any stale errors from previous connection attempts */
  161. ERR_clear_error();
  162. ret = 1;
  163. }
  164. out:
  165. if (bindaddr != NULL) {
  166. BIO_ADDRINFO_free (bindaddr);
  167. }
  168. BIO_ADDRINFO_free(res);
  169. return ret;
  170. }
  171. /*
  172. * do_server - helper routine to perform a server operation
  173. * @accept_sock: pointer to storage of resulting socket.
  174. * @host: the host name or path (for AF_UNIX) to connect to.
  175. * @port: the port to connect to (ignored for AF_UNIX).
  176. * @family: desired socket family, may be AF_INET, AF_INET6, AF_UNIX or
  177. * AF_UNSPEC
  178. * @type: socket type, must be SOCK_STREAM or SOCK_DGRAM
  179. * @cb: pointer to a function that receives the accepted socket and
  180. * should perform the communication with the connecting client.
  181. * @context: pointer to memory that's passed verbatim to the cb function.
  182. * @naccept: number of times an incoming connect should be accepted. If -1,
  183. * unlimited number.
  184. *
  185. * This will create a socket and use it to listen to a host:port, or if
  186. * family == AF_UNIX, to the path found in host, then start accepting
  187. * incoming connections and run cb on the resulting socket.
  188. *
  189. * 0 on failure, something other on success.
  190. */
  191. int do_server(int *accept_sock, const char *host, const char *port,
  192. int family, int type, int protocol, do_server_cb cb,
  193. unsigned char *context, int naccept, BIO *bio_s_out)
  194. {
  195. int asock = 0;
  196. int sock;
  197. int i;
  198. BIO_ADDRINFO *res = NULL;
  199. const BIO_ADDRINFO *next;
  200. int sock_family, sock_type, sock_protocol, sock_port;
  201. const BIO_ADDR *sock_address;
  202. int sock_options = BIO_SOCK_REUSEADDR;
  203. int ret = 0;
  204. if (BIO_sock_init() != 1)
  205. return 0;
  206. if (!BIO_lookup_ex(host, port, BIO_LOOKUP_SERVER, family, type, protocol,
  207. &res)) {
  208. ERR_print_errors(bio_err);
  209. return 0;
  210. }
  211. /* Admittedly, these checks are quite paranoid, we should not get
  212. * anything in the BIO_ADDRINFO chain that we haven't asked for */
  213. OPENSSL_assert((family == AF_UNSPEC || family == BIO_ADDRINFO_family(res))
  214. && (type == 0 || type == BIO_ADDRINFO_socktype(res))
  215. && (protocol == 0 || protocol == BIO_ADDRINFO_protocol(res)));
  216. sock_family = BIO_ADDRINFO_family(res);
  217. sock_type = BIO_ADDRINFO_socktype(res);
  218. sock_protocol = BIO_ADDRINFO_protocol(res);
  219. sock_address = BIO_ADDRINFO_address(res);
  220. next = BIO_ADDRINFO_next(res);
  221. if (sock_family == AF_INET6)
  222. sock_options |= BIO_SOCK_V6_ONLY;
  223. if (next != NULL
  224. && BIO_ADDRINFO_socktype(next) == sock_type
  225. && BIO_ADDRINFO_protocol(next) == sock_protocol) {
  226. if (sock_family == AF_INET
  227. && BIO_ADDRINFO_family(next) == AF_INET6) {
  228. sock_family = AF_INET6;
  229. sock_address = BIO_ADDRINFO_address(next);
  230. } else if (sock_family == AF_INET6
  231. && BIO_ADDRINFO_family(next) == AF_INET) {
  232. sock_options &= ~BIO_SOCK_V6_ONLY;
  233. }
  234. }
  235. asock = BIO_socket(sock_family, sock_type, sock_protocol, 0);
  236. if (asock == INVALID_SOCKET
  237. || !BIO_listen(asock, sock_address, sock_options)) {
  238. BIO_ADDRINFO_free(res);
  239. ERR_print_errors(bio_err);
  240. if (asock != INVALID_SOCKET)
  241. BIO_closesocket(asock);
  242. goto end;
  243. }
  244. #ifndef OPENSSL_NO_SCTP
  245. if (protocol == IPPROTO_SCTP) {
  246. /*
  247. * For SCTP we have to set various options on the socket prior to
  248. * accepting. This is done automatically by BIO_new_dgram_sctp().
  249. * We don't actually need the created BIO though so we free it again
  250. * immediately.
  251. */
  252. BIO *tmpbio = BIO_new_dgram_sctp(asock, BIO_NOCLOSE);
  253. if (tmpbio == NULL) {
  254. BIO_closesocket(asock);
  255. ERR_print_errors(bio_err);
  256. goto end;
  257. }
  258. BIO_free(tmpbio);
  259. }
  260. #endif
  261. sock_port = BIO_ADDR_rawport(sock_address);
  262. BIO_ADDRINFO_free(res);
  263. res = NULL;
  264. if (sock_port == 0) {
  265. /* dynamically allocated port, report which one */
  266. union BIO_sock_info_u info;
  267. char *hostname = NULL;
  268. char *service = NULL;
  269. int success = 0;
  270. if ((info.addr = BIO_ADDR_new()) != NULL
  271. && BIO_sock_info(asock, BIO_SOCK_INFO_ADDRESS, &info)
  272. && (hostname = BIO_ADDR_hostname_string(info.addr, 1)) != NULL
  273. && (service = BIO_ADDR_service_string(info.addr, 1)) != NULL
  274. && BIO_printf(bio_s_out,
  275. strchr(hostname, ':') == NULL
  276. ? /* IPv4 */ "ACCEPT %s:%s\n"
  277. : /* IPv6 */ "ACCEPT [%s]:%s\n",
  278. hostname, service) > 0)
  279. success = 1;
  280. (void)BIO_flush(bio_s_out);
  281. OPENSSL_free(hostname);
  282. OPENSSL_free(service);
  283. BIO_ADDR_free(info.addr);
  284. if (!success) {
  285. BIO_closesocket(asock);
  286. ERR_print_errors(bio_err);
  287. goto end;
  288. }
  289. } else {
  290. (void)BIO_printf(bio_s_out, "ACCEPT\n");
  291. (void)BIO_flush(bio_s_out);
  292. }
  293. if (accept_sock != NULL)
  294. *accept_sock = asock;
  295. for (;;) {
  296. char sink[64];
  297. struct timeval timeout;
  298. fd_set readfds;
  299. if (type == SOCK_STREAM) {
  300. BIO_ADDR_free(ourpeer);
  301. ourpeer = BIO_ADDR_new();
  302. if (ourpeer == NULL) {
  303. BIO_closesocket(asock);
  304. ERR_print_errors(bio_err);
  305. goto end;
  306. }
  307. do {
  308. sock = BIO_accept_ex(asock, ourpeer, 0);
  309. } while (sock < 0 && BIO_sock_should_retry(sock));
  310. if (sock < 0) {
  311. ERR_print_errors(bio_err);
  312. BIO_closesocket(asock);
  313. break;
  314. }
  315. BIO_set_tcp_ndelay(sock, 1);
  316. i = (*cb)(sock, type, protocol, context);
  317. /*
  318. * If we ended with an alert being sent, but still with data in the
  319. * network buffer to be read, then calling BIO_closesocket() will
  320. * result in a TCP-RST being sent. On some platforms (notably
  321. * Windows) then this will result in the peer immediately abandoning
  322. * the connection including any buffered alert data before it has
  323. * had a chance to be read. Shutting down the sending side first,
  324. * and then closing the socket sends TCP-FIN first followed by
  325. * TCP-RST. This seems to allow the peer to read the alert data.
  326. */
  327. shutdown(sock, 1); /* SHUT_WR */
  328. /*
  329. * We just said we have nothing else to say, but it doesn't mean
  330. * that the other side has nothing. It's even recommended to
  331. * consume incoming data. [In testing context this ensures that
  332. * alerts are passed on...]
  333. */
  334. timeout.tv_sec = 0;
  335. timeout.tv_usec = 500000; /* some extreme round-trip */
  336. do {
  337. FD_ZERO(&readfds);
  338. openssl_fdset(sock, &readfds);
  339. } while (select(sock + 1, &readfds, NULL, NULL, &timeout) > 0
  340. && readsocket(sock, sink, sizeof(sink)) > 0);
  341. BIO_closesocket(sock);
  342. } else {
  343. i = (*cb)(asock, type, protocol, context);
  344. }
  345. if (naccept != -1)
  346. naccept--;
  347. if (i < 0 || naccept == 0) {
  348. BIO_closesocket(asock);
  349. ret = i;
  350. break;
  351. }
  352. }
  353. end:
  354. # ifdef AF_UNIX
  355. if (family == AF_UNIX)
  356. unlink(host);
  357. # endif
  358. BIO_ADDR_free(ourpeer);
  359. ourpeer = NULL;
  360. return ret;
  361. }
  362. void do_ssl_shutdown(SSL *ssl)
  363. {
  364. int ret;
  365. do {
  366. /* We only do unidirectional shutdown */
  367. ret = SSL_shutdown(ssl);
  368. if (ret < 0) {
  369. switch (SSL_get_error(ssl, ret)) {
  370. case SSL_ERROR_WANT_READ:
  371. case SSL_ERROR_WANT_WRITE:
  372. case SSL_ERROR_WANT_ASYNC:
  373. case SSL_ERROR_WANT_ASYNC_JOB:
  374. /* We just do busy waiting. Nothing clever */
  375. continue;
  376. }
  377. ret = 0;
  378. }
  379. } while (ret < 0);
  380. }
  381. #endif /* OPENSSL_NO_SOCK */