1 /* $OpenBSD: bss_conn.c,v 1.35 2018/05/12 18:51:59 tb Exp $ */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
59 #include <sys/socket.h>
61 #include <netinet/in.h>
69 #include <openssl/bio.h>
70 #include <openssl/buffer.h>
71 #include <openssl/err.h>
73 #define SOCKET_PROTOCOL IPPROTO_TCP
75 typedef struct bio_connect_st
{
85 struct sockaddr_in them
;
87 /* int socket; this will be kept in bio->num so that it is
88 * compatible with the bss_sock bio */
90 /* called when the connection is initially made
91 * callback(BIO,state,ret); The callback should return
92 * 'ret'. state is for compatibility with the ssl info_callback */
93 int (*info_callback
)(const BIO
*bio
, int state
, int ret
);
96 static int conn_write(BIO
*h
, const char *buf
, int num
);
97 static int conn_read(BIO
*h
, char *buf
, int size
);
98 static int conn_puts(BIO
*h
, const char *str
);
99 static long conn_ctrl(BIO
*h
, int cmd
, long arg1
, void *arg2
);
100 static int conn_new(BIO
*h
);
101 static int conn_free(BIO
*data
);
102 static long conn_callback_ctrl(BIO
*h
, int cmd
, bio_info_cb
*);
104 static int conn_state(BIO
*b
, BIO_CONNECT
*c
);
105 static void conn_close_socket(BIO
*data
);
106 BIO_CONNECT
*BIO_CONNECT_new(void);
107 void BIO_CONNECT_free(BIO_CONNECT
*a
);
109 static const BIO_METHOD methods_connectp
= {
110 .type
= BIO_TYPE_CONNECT
,
111 .name
= "socket connect",
112 .bwrite
= conn_write
,
117 .destroy
= conn_free
,
118 .callback_ctrl
= conn_callback_ctrl
122 conn_state(BIO
*b
, BIO_CONNECT
*c
)
127 int (*cb
)(const BIO
*, int, int) = NULL
;
129 if (c
->info_callback
!= NULL
)
130 cb
= c
->info_callback
;
134 case BIO_CONN_S_BEFORE
:
135 p
= c
->param_hostname
;
137 BIOerror(BIO_R_NO_HOSTNAME_SPECIFIED
);
140 for (; *p
!= '\0'; p
++) {
141 if ((*p
== ':') || (*p
== '/'))
146 if ((i
== ':') || (i
== '/')) {
155 c
->param_port
= strdup(p
);
159 if (c
->param_port
== NULL
) {
160 BIOerror(BIO_R_NO_PORT_SPECIFIED
);
161 ERR_asprintf_error_data("host=%s",
165 c
->state
= BIO_CONN_S_GET_IP
;
168 case BIO_CONN_S_GET_IP
:
169 if (BIO_get_host_ip(c
->param_hostname
, &(c
->ip
[0])) <= 0)
171 c
->state
= BIO_CONN_S_GET_PORT
;
174 case BIO_CONN_S_GET_PORT
:
175 if (c
->param_port
== NULL
) {
178 } else if (BIO_get_port(c
->param_port
, &c
->port
) <= 0)
180 c
->state
= BIO_CONN_S_CREATE_SOCKET
;
183 case BIO_CONN_S_CREATE_SOCKET
:
184 /* now setup address */
185 memset((char *)&c
->them
, 0, sizeof(c
->them
));
186 c
->them
.sin_family
= AF_INET
;
187 c
->them
.sin_port
= htons((unsigned short)c
->port
);
189 ((unsigned long)c
->ip
[0] << 24L)|
190 ((unsigned long)c
->ip
[1] << 16L)|
191 ((unsigned long)c
->ip
[2] << 8L)|
192 ((unsigned long)c
->ip
[3]);
193 c
->them
.sin_addr
.s_addr
= htonl(l
);
194 c
->state
= BIO_CONN_S_CREATE_SOCKET
;
196 ret
= socket(AF_INET
, SOCK_STREAM
, SOCKET_PROTOCOL
);
199 ERR_asprintf_error_data("host=%s:%s",
200 c
->param_hostname
, c
->param_port
);
201 BIOerror(BIO_R_UNABLE_TO_CREATE_SOCKET
);
205 c
->state
= BIO_CONN_S_NBIO
;
208 case BIO_CONN_S_NBIO
:
210 if (!BIO_socket_nbio(b
->num
, 1)) {
211 BIOerror(BIO_R_ERROR_SETTING_NBIO
);
212 ERR_asprintf_error_data("host=%s:%s",
213 c
->param_hostname
, c
->param_port
);
217 c
->state
= BIO_CONN_S_CONNECT
;
219 #if defined(SO_KEEPALIVE)
221 i
= setsockopt(b
->num
, SOL_SOCKET
, SO_KEEPALIVE
, &i
, sizeof(i
));
224 ERR_asprintf_error_data("host=%s:%s",
225 c
->param_hostname
, c
->param_port
);
226 BIOerror(BIO_R_KEEPALIVE
);
232 case BIO_CONN_S_CONNECT
:
233 BIO_clear_retry_flags(b
);
234 ret
= connect(b
->num
,
235 (struct sockaddr
*)&c
->them
,
239 if (BIO_sock_should_retry(ret
)) {
240 BIO_set_retry_special(b
);
241 c
->state
= BIO_CONN_S_BLOCKED_CONNECT
;
242 b
->retry_reason
= BIO_RR_CONNECT
;
245 ERR_asprintf_error_data("host=%s:%s",
246 c
->param_hostname
, c
->param_port
);
247 BIOerror(BIO_R_CONNECT_ERROR
);
251 c
->state
= BIO_CONN_S_OK
;
254 case BIO_CONN_S_BLOCKED_CONNECT
:
255 i
= BIO_sock_error(b
->num
);
257 BIO_clear_retry_flags(b
);
259 ERR_asprintf_error_data("host=%s:%s",
260 c
->param_hostname
, c
->param_port
);
261 BIOerror(BIO_R_NBIO_CONNECT_ERROR
);
265 c
->state
= BIO_CONN_S_OK
;
277 if (!(ret
= cb((BIO
*)b
, c
->state
, ret
)))
282 /* Loop does not exit */
285 ret
= cb((BIO
*)b
, c
->state
, ret
);
291 BIO_CONNECT_new(void)
295 if ((ret
= malloc(sizeof(BIO_CONNECT
))) == NULL
)
297 ret
->state
= BIO_CONN_S_BEFORE
;
298 ret
->param_hostname
= NULL
;
299 ret
->param_port
= NULL
;
300 ret
->info_callback
= NULL
;
307 memset((char *)&ret
->them
, 0, sizeof(ret
->them
));
312 BIO_CONNECT_free(BIO_CONNECT
*a
)
317 free(a
->param_hostname
);
325 return (&methods_connectp
);
334 if ((bi
->ptr
= (char *)BIO_CONNECT_new()) == NULL
)
341 conn_close_socket(BIO
*bio
)
345 c
= (BIO_CONNECT
*)bio
->ptr
;
346 if (bio
->num
!= -1) {
347 /* Only do a shutdown if things were established */
348 if (c
->state
== BIO_CONN_S_OK
)
349 shutdown(bio
->num
, SHUT_RDWR
);
362 data
= (BIO_CONNECT
*)a
->ptr
;
365 conn_close_socket(a
);
366 BIO_CONNECT_free(data
);
375 conn_read(BIO
*b
, char *out
, int outl
)
380 data
= (BIO_CONNECT
*)b
->ptr
;
381 if (data
->state
!= BIO_CONN_S_OK
) {
382 ret
= conn_state(b
, data
);
389 ret
= read(b
->num
, out
, outl
);
390 BIO_clear_retry_flags(b
);
392 if (BIO_sock_should_retry(ret
))
393 BIO_set_retry_read(b
);
400 conn_write(BIO
*b
, const char *in
, int inl
)
405 data
= (BIO_CONNECT
*)b
->ptr
;
406 if (data
->state
!= BIO_CONN_S_OK
) {
407 ret
= conn_state(b
, data
);
413 ret
= write(b
->num
, in
, inl
);
414 BIO_clear_retry_flags(b
);
416 if (BIO_sock_should_retry(ret
))
417 BIO_set_retry_write(b
);
423 conn_ctrl(BIO
*b
, int cmd
, long num
, void *ptr
)
431 data
= (BIO_CONNECT
*)b
->ptr
;
436 data
->state
= BIO_CONN_S_BEFORE
;
437 conn_close_socket(b
);
440 case BIO_C_DO_STATE_MACHINE
:
441 /* use this one to start the connection */
442 if (data
->state
!= BIO_CONN_S_OK
)
443 ret
= (long)conn_state(b
, data
);
447 case BIO_C_GET_CONNECT
:
449 pptr
= (const char **)ptr
;
451 *pptr
= data
->param_hostname
;
453 } else if (num
== 1) {
454 *pptr
= data
->param_port
;
455 } else if (num
== 2) {
456 *pptr
= (char *)&(data
->ip
[0]);
457 } else if (num
== 3) {
458 *((int *)ptr
) = data
->port
;
460 if ((!b
->init
) || (ptr
== NULL
))
461 *pptr
= "not initialized";
465 case BIO_C_SET_CONNECT
:
469 free(data
->param_hostname
);
470 data
->param_hostname
= strdup(ptr
);
471 } else if (num
== 1) {
472 free(data
->param_port
);
473 data
->param_port
= strdup(ptr
);
474 } else if (num
== 2) {
475 unsigned char *p
= ptr
;
476 free(data
->param_hostname
);
477 if (asprintf(&data
->param_hostname
,
478 "%u.%u.%u.%u", p
[0], p
[1],
480 data
->param_hostname
= NULL
;
481 memcpy(&(data
->ip
[0]), ptr
, 4);
482 } else if (num
== 3) {
483 free(data
->param_port
);
484 data
->port
= *(int *)ptr
;
485 if (asprintf(&data
->param_port
, "%d",
487 data
->param_port
= NULL
;
492 data
->nbio
= (int)num
;
503 case BIO_CTRL_GET_CLOSE
:
506 case BIO_CTRL_SET_CLOSE
:
507 b
->shutdown
= (int)num
;
509 case BIO_CTRL_PENDING
:
510 case BIO_CTRL_WPENDING
:
518 if (data
->param_port
)
519 BIO_set_conn_port(dbio
, data
->param_port
);
520 if (data
->param_hostname
)
521 BIO_set_conn_hostname(dbio
,
522 data
->param_hostname
);
523 BIO_set_nbio(dbio
, data
->nbio
);
524 /* FIXME: the cast of the function seems unlikely to be a good idea */
525 (void)BIO_set_info_callback(dbio
,
526 (bio_info_cb
*)data
->info_callback
);
529 case BIO_CTRL_SET_CALLBACK
:
531 #if 0 /* FIXME: Should this be used? -- Richard Levitte */
532 BIOerror(ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED
);
539 case BIO_CTRL_GET_CALLBACK
:
541 int (**fptr
)(const BIO
*bio
, int state
, int xret
);
543 fptr
= (int (**)(const BIO
*bio
, int state
, int xret
))ptr
;
544 *fptr
= data
->info_callback
;
555 conn_callback_ctrl(BIO
*b
, int cmd
, bio_info_cb
*fp
)
560 data
= (BIO_CONNECT
*)b
->ptr
;
563 case BIO_CTRL_SET_CALLBACK
:
565 data
->info_callback
= (int (*)(const struct bio_st
*, int, int))fp
;
576 conn_puts(BIO
*bp
, const char *str
)
581 ret
= conn_write(bp
, str
, n
);
586 BIO_new_connect(const char *str
)
590 ret
= BIO_new(BIO_s_connect());
593 if (BIO_set_conn_hostname(ret
, str
))