]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/bio/b_sock.c
Tweak to documentation
[thirdparty/openssl.git] / crypto / bio / b_sock.c
CommitLineData
58964a49 1/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
0f113f3e 7 *
d02b48c6
RE
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
0f113f3e 14 *
d02b48c6
RE
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
0f113f3e 21 *
d02b48c6
RE
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
0f113f3e 36 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 39 *
d02b48c6
RE
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
0f113f3e 51 *
d02b48c6
RE
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57
d02b48c6 58#include <stdio.h>
58964a49 59#include <stdlib.h>
d02b48c6 60#include <errno.h>
28a0841b
RL
61#include "bio_lcl.h"
62#if defined(NETWARE_CLIB)
63# include <sys/ioctl.h>
eef0c1f3
DSH
64NETDB_DEFINE_CONTEXT
65#endif
9ba4cc00 66#ifndef OPENSSL_NO_SOCK
0f113f3e
MC
67# define SOCKET_PROTOCOL IPPROTO_TCP
68# ifdef SO_MAXCONN
69# define MAX_LISTEN SO_MAXCONN
70# elif defined(SOMAXCONN)
71# define MAX_LISTEN SOMAXCONN
72# else
73# define MAX_LISTEN 32
74# endif
1fbab1dc 75# if defined(OPENSSL_SYS_WINDOWS)
0f113f3e
MC
76static int wsa_init_done = 0;
77# endif
d02b48c6 78
d33b215b 79# if OPENSSL_API_COMPAT < 0x10100000L
6b691a5c 80int BIO_get_host_ip(const char *str, unsigned char *ip)
0f113f3e 81{
5bca70ca
RL
82 BIO_ADDRINFO *res = NULL;
83 int ret = 0;
0f113f3e 84
0f113f3e
MC
85 if (BIO_sock_init() != 1)
86 return 0; /* don't generate another error code here */
87
5bca70ca
RL
88 if (BIO_lookup(str, NULL, BIO_LOOKUP_CLIENT, AF_INET, SOCK_STREAM, &res)) {
89 size_t l;
0f113f3e 90
5bca70ca
RL
91 if (BIO_ADDRINFO_family(res) != AF_INET) {
92 BIOerr(BIO_F_BIO_GET_HOST_IP,
93 BIO_R_GETHOSTBYNAME_ADDR_IS_NOT_AF_INET);
94 } else {
95 BIO_ADDR_rawaddress(BIO_ADDRINFO_address(res), NULL, &l);
96 /* Because only AF_INET addresses will reach this far,
97 we can assert that l should be 4 */
98 OPENSSL_assert(l == 4);
0f113f3e 99
5bca70ca
RL
100 BIO_ADDR_rawaddress(BIO_ADDRINFO_address(res), ip, &l);
101 ret = 1;
102 }
103 BIO_ADDRINFO_free(res);
104 } else {
105 ERR_add_error_data(2, "host=", str);
0f113f3e 106 }
ba9f2808 107
5bca70ca 108 return ret;
0f113f3e 109}
d02b48c6 110
6b691a5c 111int BIO_get_port(const char *str, unsigned short *port_ptr)
0f113f3e 112{
5bca70ca
RL
113 BIO_ADDRINFO *res = NULL;
114 int ret = 0;
0f113f3e
MC
115
116 if (str == NULL) {
117 BIOerr(BIO_F_BIO_GET_PORT, BIO_R_NO_PORT_DEFINED);
118 return (0);
119 }
5bca70ca
RL
120
121 if (BIO_sock_init() != 1)
122 return 0; /* don't generate another error code here */
123
124 if (BIO_lookup(NULL, str, BIO_LOOKUP_CLIENT, AF_INET, SOCK_STREAM, &res)) {
125 if (BIO_ADDRINFO_family(res) != AF_INET) {
126 BIOerr(BIO_F_BIO_GET_PORT,
127 BIO_R_ADDRINFO_ADDR_IS_NOT_AF_INET);
128 } else {
129 *port_ptr = ntohs(BIO_ADDR_rawport(BIO_ADDRINFO_address(res)));
130 ret = 1;
0f113f3e 131 }
5bca70ca
RL
132 BIO_ADDRINFO_free(res);
133 } else {
134 ERR_add_error_data(2, "host=", str);
0f113f3e 135 }
5bca70ca
RL
136
137 return ret;
0f113f3e 138}
d33b215b 139# endif
d02b48c6 140
6b691a5c 141int BIO_sock_error(int sock)
0f113f3e 142{
5bca70ca
RL
143 int j = 0, i;
144 socklen_t size = 0;
145
0f113f3e
MC
146 /*
147 * Note: under Windows the third parameter is of type (char *) whereas
148 * under other systems it is (void *) if you don't have a cast it will
149 * choke the compiler: if you do have a cast then you can either go for
150 * (char *) or (void *).
151 */
5bca70ca 152 i = getsockopt(sock, SOL_SOCKET, SO_ERROR, (void *)&j, &size);
0f113f3e
MC
153 if (i < 0)
154 return (1);
155 else
156 return (j);
157}
158
d33b215b 159# if OPENSSL_API_COMPAT < 0x10100000L
6b691a5c 160struct hostent *BIO_gethostbyname(const char *name)
0f113f3e 161{
0f113f3e
MC
162 /*
163 * Caching gethostbyname() results forever is wrong, so we have to let
164 * the true gethostbyname() worry about this
165 */
5bca70ca 166# if (defined(NETWARE_BSDSOCK) && !defined(__NOVELL_LIBC__))
0f113f3e 167 return gethostbyname((char *)name);
5bca70ca 168# else
4d428cd2 169 return gethostbyname(name);
5bca70ca 170# endif
0f113f3e 171}
d33b215b 172# endif
c602e7f4 173
6b691a5c 174int BIO_sock_init(void)
0f113f3e
MC
175{
176# ifdef OPENSSL_SYS_WINDOWS
177 static struct WSAData wsa_state;
178
179 if (!wsa_init_done) {
180 int err;
181
182 wsa_init_done = 1;
183 memset(&wsa_state, 0, sizeof(wsa_state));
184 /*
185 * Not making wsa_state available to the rest of the code is formally
0d4fb843 186 * wrong. But the structures we use are [believed to be] invariable
0f113f3e
MC
187 * among Winsock DLLs, while API availability is [expected to be]
188 * probed at run-time with DSO_global_lookup.
189 */
190 if (WSAStartup(0x0202, &wsa_state) != 0) {
191 err = WSAGetLastError();
192 SYSerr(SYS_F_WSASTARTUP, err);
193 BIOerr(BIO_F_BIO_SOCK_INIT, BIO_R_WSASTARTUP);
194 return (-1);
195 }
196 }
197# endif /* OPENSSL_SYS_WINDOWS */
198# ifdef WATT32
199 extern int _watt_do_exit;
200 _watt_do_exit = 0; /* don't make sock_init() call exit() */
201 if (sock_init())
202 return (-1);
203# endif
204
0f113f3e
MC
205 return (1);
206}
d02b48c6 207
342c21cd 208void int_bio_sock_cleanup(void)
0f113f3e
MC
209{
210# ifdef OPENSSL_SYS_WINDOWS
211 if (wsa_init_done) {
212 wsa_init_done = 0;
4d8743f4 213 WSACleanup();
0f113f3e 214 }
0f113f3e
MC
215# endif
216}
d02b48c6 217
0f113f3e 218# if !defined(OPENSSL_SYS_VMS) || __VMS_VER >= 70000000
7d7d2cbc 219
c029841e 220int BIO_socket_ioctl(int fd, long type, void *arg)
0f113f3e
MC
221{
222 int i;
223
224# ifdef __DJGPP__
225 i = ioctlsocket(fd, type, (char *)arg);
226# else
227# if defined(OPENSSL_SYS_VMS)
35a1cc90
MC
228 /*-
229 * 2011-02-18 SMS.
230 * VMS ioctl() can't tolerate a 64-bit "void *arg", but we
231 * observe that all the consumers pass in an "unsigned long *",
232 * so we arrange a local copy with a short pointer, and use
233 * that, instead.
234 */
0f113f3e
MC
235# if __INITIAL_POINTER_SIZE == 64
236# define ARG arg_32p
237# pragma pointer_size save
238# pragma pointer_size 32
239 unsigned long arg_32;
240 unsigned long *arg_32p;
241# pragma pointer_size restore
242 arg_32p = &arg_32;
243 arg_32 = *((unsigned long *)arg);
244# else /* __INITIAL_POINTER_SIZE == 64 */
245# define ARG arg
246# endif /* __INITIAL_POINTER_SIZE == 64 [else] */
247# else /* defined(OPENSSL_SYS_VMS) */
248# define ARG arg
249# endif /* defined(OPENSSL_SYS_VMS) [else] */
250
251 i = ioctlsocket(fd, type, ARG);
252# endif /* __DJGPP__ */
253 if (i < 0)
254 SYSerr(SYS_F_IOCTLSOCKET, get_last_socket_error());
255 return (i);
256}
257# endif /* __VMS_VER */
258
d33b215b 259# if OPENSSL_API_COMPAT < 0x10100000L
6b691a5c 260int BIO_get_accept_socket(char *host, int bind_mode)
0f113f3e 261{
5bca70ca
RL
262 int s = INVALID_SOCKET;
263 char *h = NULL, *p = NULL;
264 BIO_ADDRINFO *res = NULL;
0f113f3e 265
5bca70ca
RL
266 if (!BIO_parse_hostserv(host, &h, &p, BIO_PARSE_PRIO_SERV))
267 return INVALID_SOCKET;
0f113f3e 268
5bca70ca
RL
269 if (BIO_sock_init() != 1)
270 return INVALID_SOCKET;
0f113f3e 271
5bca70ca 272 if (BIO_lookup(h, p, BIO_LOOKUP_SERVER, AF_UNSPEC, SOCK_STREAM, &res) != 0)
0f113f3e
MC
273 goto err;
274
5bca70ca
RL
275 if ((s = BIO_socket(BIO_ADDRINFO_family(res), BIO_ADDRINFO_socktype(res),
276 BIO_ADDRINFO_protocol(res), 0)) == INVALID_SOCKET) {
277 s = INVALID_SOCKET;
0f113f3e
MC
278 goto err;
279 }
0f113f3e 280
5bca70ca
RL
281 if (!BIO_listen(s, BIO_ADDRINFO_address(res),
282 bind_mode ? BIO_SOCK_REUSEADDR : 0)) {
283 BIO_closesocket(s);
284 s = INVALID_SOCKET;
0f113f3e 285 }
5bca70ca 286
0f113f3e 287 err:
5bca70ca
RL
288 BIO_ADDRINFO_free(res);
289 OPENSSL_free(h);
290 OPENSSL_free(p);
291
292 return s;
0f113f3e 293}
d02b48c6 294
5bca70ca 295int BIO_accept(int sock, char **ip_port)
0f113f3e 296{
d9d8e7a9 297 BIO_ADDR res;
5bca70ca 298 int ret = -1;
0f113f3e 299
d9d8e7a9 300 ret = BIO_accept_ex(sock, &res, 0);
b13fdc48 301 if (ret == (int)INVALID_SOCKET) {
5bca70ca
RL
302 if (BIO_sock_should_retry(ret)) {
303 ret = -2;
304 goto end;
305 }
0f113f3e
MC
306 SYSerr(SYS_F_ACCEPT, get_last_socket_error());
307 BIOerr(BIO_F_BIO_ACCEPT, BIO_R_ACCEPT_ERROR);
308 goto end;
309 }
310
5bca70ca 311 if (ip_port != NULL) {
d9d8e7a9
RS
312 char *host = BIO_ADDR_hostname_string(&res, 1);
313 char *port = BIO_ADDR_service_string(&res, 1);
5bca70ca
RL
314 *ip_port = OPENSSL_zalloc(strlen(host) + strlen(port) + 2);
315 strcpy(*ip_port, host);
316 strcat(*ip_port, ":");
317 strcat(*ip_port, port);
318 OPENSSL_free(host);
319 OPENSSL_free(port);
0f113f3e 320 }
5bca70ca 321
0f113f3e 322 end:
5bca70ca 323 return ret;
0f113f3e 324}
d33b215b 325# endif
d02b48c6 326
6b691a5c 327int BIO_set_tcp_ndelay(int s, int on)
0f113f3e
MC
328{
329 int ret = 0;
330# if defined(TCP_NODELAY) && (defined(IPPROTO_TCP) || defined(SOL_TCP))
331 int opt;
d02b48c6 332
0f113f3e
MC
333# ifdef SOL_TCP
334 opt = SOL_TCP;
335# else
336# ifdef IPPROTO_TCP
337 opt = IPPROTO_TCP;
338# endif
339# endif
dfeab068 340
0f113f3e
MC
341 ret = setsockopt(s, opt, TCP_NODELAY, (char *)&on, sizeof(on));
342# endif
343 return (ret == 0);
344}
345
346int BIO_socket_nbio(int s, int mode)
347{
348 int ret = -1;
349 int l;
350
351 l = mode;
352# ifdef FIONBIO
27f172d9
RS
353 l = mode;
354
0f113f3e 355 ret = BIO_socket_ioctl(s, FIONBIO, &l);
27f172d9
RS
356# elif defined(F_GETFL) && defined(F_SETFL) && (defined(O_NONBLOCK) || defined(FNDELAY))
357 /* make sure this call always pushes an error level; BIO_socket_ioctl() does so, so we do too. */
358
359 l = fcntl(s, F_GETFL, 0);
360 if (l == -1) {
361 SYSerr(SYS_F_FCNTL, get_last_rtl_error());
362 ret = -1;
363 } else {
364# if defined(O_NONBLOCK)
365 l &= ~O_NONBLOCK;
366# else
367 l &= ~FNDELAY; /* BSD4.x */
368# endif
369 if (mode) {
370# if defined(O_NONBLOCK)
371 l |= O_NONBLOCK;
372# else
373 l |= FNDELAY; /* BSD4.x */
374# endif
375 }
376 ret = fcntl(s, F_SETFL, l);
377
378 if (ret < 0) {
379 SYSerr(SYS_F_FCNTL, get_last_rtl_error());
380 }
381 }
382# else
383 /* make sure this call always pushes an error level; BIO_socket_ioctl() does so, so we do too. */
384 BIOerr(BIO_F_BIO_SOCKET_NBIO, ERR_R_PASSED_INVALID_ARGUMENT);
0f113f3e 385# endif
27f172d9 386
0f113f3e
MC
387 return (ret == 0);
388}
d33b215b
RL
389
390int BIO_sock_info(int sock,
391 enum BIO_sock_info_type type, union BIO_sock_info_u *info)
392{
393 switch (type) {
394 case BIO_SOCK_INFO_ADDRESS:
395 {
396 socklen_t addr_len;
397 int ret = 0;
398 addr_len = sizeof(*info->addr);
399 ret = getsockname(sock, BIO_ADDR_sockaddr_noconst(info->addr),
400 &addr_len);
401 if (ret == -1) {
402 SYSerr(SYS_F_GETSOCKNAME, get_last_socket_error());
403 BIOerr(BIO_F_BIO_SOCK_INFO, BIO_R_GETSOCKNAME_ERROR);
404 return 0;
405 }
59d9bb59 406 if ((size_t)addr_len > sizeof(*info->addr)) {
d33b215b
RL
407 BIOerr(BIO_F_BIO_SOCK_INFO, BIO_R_GETSOCKNAME_TRUNCATED_ADDRESS);
408 return 0;
409 }
410 }
411 break;
412 default:
413 BIOerr(BIO_F_BIO_SOCK_INFO, BIO_R_UNKNOWN_INFO_TYPE);
414 return 0;
415 }
416 return 1;
417}
418
4a1fbd13 419#endif