1 /* crypto/bio/bss_conn.c */
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.]
63 #include <openssl/bio.h>
65 #ifndef OPENSSL_NO_SOCK
67 #ifdef OPENSSL_SYS_WIN16
68 #define SOCKET_PROTOCOL 0 /* more microsoft stupidity */
70 #define SOCKET_PROTOCOL IPPROTO_TCP
73 #if (defined(OPENSSL_SYS_VMS) && __VMS_VER < 70000000)
74 /* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */
79 typedef struct bio_connect_st
90 struct sockaddr_in them
;
92 /* int socket; this will be kept in bio->num so that it is
93 * compatible with the bss_sock bio */
95 /* called when the connection is initially made
96 * callback(BIO,state,ret); The callback should return
97 * 'ret'. state is for compatibility with the ssl info_callback */
98 int (*info_callback
)(const BIO
*bio
,int state
,int ret
);
101 static int conn_write(BIO
*h
, const char *buf
, int num
);
102 static int conn_read(BIO
*h
, char *buf
, int size
);
103 static int conn_puts(BIO
*h
, const char *str
);
104 static long conn_ctrl(BIO
*h
, int cmd
, long arg1
, void *arg2
);
105 static int conn_new(BIO
*h
);
106 static int conn_free(BIO
*data
);
107 static long conn_callback_ctrl(BIO
*h
, int cmd
, bio_info_cb
*);
109 static int conn_state(BIO
*b
, BIO_CONNECT
*c
);
110 static void conn_close_socket(BIO
*data
);
111 BIO_CONNECT
*BIO_CONNECT_new(void );
112 void BIO_CONNECT_free(BIO_CONNECT
*a
);
114 static BIO_METHOD methods_connectp
=
121 NULL
, /* connect_gets, */
128 static int conn_state(BIO
*b
, BIO_CONNECT
*c
)
133 int (*cb
)(const BIO
*,int,int)=NULL
;
135 if (c
->info_callback
!= NULL
)
142 case BIO_CONN_S_BEFORE
:
146 BIOerr(BIO_F_CONN_STATE
,BIO_R_NO_HOSTNAME_SPECIFIED
);
149 for ( ; *p
!= '\0'; p
++)
151 if ((*p
== ':') || (*p
== '/')) break;
155 if ((i
== ':') || (i
== '/'))
167 if (c
->param_port
!= NULL
)
168 OPENSSL_free(c
->param_port
);
169 c
->param_port
=BUF_strdup(p
);
173 if (c
->param_port
== NULL
)
175 BIOerr(BIO_F_CONN_STATE
,BIO_R_NO_PORT_SPECIFIED
);
176 ERR_add_error_data(2,"host=",c
->param_hostname
);
179 c
->state
=BIO_CONN_S_GET_IP
;
182 case BIO_CONN_S_GET_IP
:
183 if (BIO_get_host_ip(c
->param_hostname
,&(c
->ip
[0])) <= 0)
185 c
->state
=BIO_CONN_S_GET_PORT
;
188 case BIO_CONN_S_GET_PORT
:
189 if (c
->param_port
== NULL
)
194 else if (BIO_get_port(c
->param_port
,&c
->port
) <= 0)
196 c
->state
=BIO_CONN_S_CREATE_SOCKET
;
199 case BIO_CONN_S_CREATE_SOCKET
:
200 /* now setup address */
201 memset((char *)&c
->them
,0,sizeof(c
->them
));
202 c
->them
.sin_family
=AF_INET
;
203 c
->them
.sin_port
=htons((unsigned short)c
->port
);
205 ((unsigned long)c
->ip
[0]<<24L)|
206 ((unsigned long)c
->ip
[1]<<16L)|
207 ((unsigned long)c
->ip
[2]<< 8L)|
208 ((unsigned long)c
->ip
[3]);
209 c
->them
.sin_addr
.s_addr
=htonl(l
);
210 c
->state
=BIO_CONN_S_CREATE_SOCKET
;
212 ret
=socket(AF_INET
,SOCK_STREAM
,SOCKET_PROTOCOL
);
213 if (ret
== INVALID_SOCKET
)
215 SYSerr(SYS_F_SOCKET
,get_last_socket_error());
216 ERR_add_error_data(4,"host=",c
->param_hostname
,
218 BIOerr(BIO_F_CONN_STATE
,BIO_R_UNABLE_TO_CREATE_SOCKET
);
222 c
->state
=BIO_CONN_S_NBIO
;
225 case BIO_CONN_S_NBIO
:
228 if (!BIO_socket_nbio(b
->num
,1))
230 BIOerr(BIO_F_CONN_STATE
,BIO_R_ERROR_SETTING_NBIO
);
231 ERR_add_error_data(4,"host=",
237 c
->state
=BIO_CONN_S_CONNECT
;
239 #if defined(SO_KEEPALIVE) && !defined(OPENSSL_SYS_MPE)
241 i
=setsockopt(b
->num
,SOL_SOCKET
,SO_KEEPALIVE
,(char *)&i
,sizeof(i
));
244 SYSerr(SYS_F_SOCKET
,get_last_socket_error());
245 ERR_add_error_data(4,"host=",c
->param_hostname
,
247 BIOerr(BIO_F_CONN_STATE
,BIO_R_KEEPALIVE
);
253 case BIO_CONN_S_CONNECT
:
254 BIO_clear_retry_flags(b
);
256 (struct sockaddr
*)&c
->them
,
261 if (BIO_sock_should_retry(ret
))
263 BIO_set_retry_special(b
);
264 c
->state
=BIO_CONN_S_BLOCKED_CONNECT
;
265 b
->retry_reason
=BIO_RR_CONNECT
;
269 SYSerr(SYS_F_CONNECT
,get_last_socket_error());
270 ERR_add_error_data(4,"host=",
273 BIOerr(BIO_F_CONN_STATE
,BIO_R_CONNECT_ERROR
);
278 c
->state
=BIO_CONN_S_OK
;
281 case BIO_CONN_S_BLOCKED_CONNECT
:
282 i
=BIO_sock_error(b
->num
);
285 BIO_clear_retry_flags(b
);
286 SYSerr(SYS_F_CONNECT
,i
);
287 ERR_add_error_data(4,"host=",
290 BIOerr(BIO_F_CONN_STATE
,BIO_R_NBIO_CONNECT_ERROR
);
295 c
->state
=BIO_CONN_S_OK
;
308 if (!(ret
=cb((BIO
*)b
,c
->state
,ret
)))
313 /* Loop does not exit */
316 ret
=cb((BIO
*)b
,c
->state
,ret
);
321 BIO_CONNECT
*BIO_CONNECT_new(void)
325 if ((ret
=(BIO_CONNECT
*)OPENSSL_malloc(sizeof(BIO_CONNECT
))) == NULL
)
327 ret
->state
=BIO_CONN_S_BEFORE
;
328 ret
->param_hostname
=NULL
;
329 ret
->param_port
=NULL
;
330 ret
->info_callback
=NULL
;
337 memset((char *)&ret
->them
,0,sizeof(ret
->them
));
341 void BIO_CONNECT_free(BIO_CONNECT
*a
)
346 if (a
->param_hostname
!= NULL
)
347 OPENSSL_free(a
->param_hostname
);
348 if (a
->param_port
!= NULL
)
349 OPENSSL_free(a
->param_port
);
353 BIO_METHOD
*BIO_s_connect(void)
355 return(&methods_connectp
);
358 static int conn_new(BIO
*bi
)
361 bi
->num
=INVALID_SOCKET
;
363 if ((bi
->ptr
=(char *)BIO_CONNECT_new()) == NULL
)
369 static void conn_close_socket(BIO
*bio
)
373 c
=(BIO_CONNECT
*)bio
->ptr
;
374 if (bio
->num
!= INVALID_SOCKET
)
376 /* Only do a shutdown if things were established */
377 if (c
->state
== BIO_CONN_S_OK
)
378 shutdown(bio
->num
,2);
379 closesocket(bio
->num
);
380 bio
->num
=INVALID_SOCKET
;
384 static int conn_free(BIO
*a
)
388 if (a
== NULL
) return(0);
389 data
=(BIO_CONNECT
*)a
->ptr
;
393 conn_close_socket(a
);
394 BIO_CONNECT_free(data
);
402 static int conn_read(BIO
*b
, char *out
, int outl
)
407 data
=(BIO_CONNECT
*)b
->ptr
;
408 if (data
->state
!= BIO_CONN_S_OK
)
410 ret
=conn_state(b
,data
);
417 clear_socket_error();
418 ret
=readsocket(b
->num
,out
,outl
);
419 BIO_clear_retry_flags(b
);
422 if (BIO_sock_should_retry(ret
))
423 BIO_set_retry_read(b
);
429 static int conn_write(BIO
*b
, const char *in
, int inl
)
434 data
=(BIO_CONNECT
*)b
->ptr
;
435 if (data
->state
!= BIO_CONN_S_OK
)
437 ret
=conn_state(b
,data
);
438 if (ret
<= 0) return(ret
);
441 clear_socket_error();
442 ret
=writesocket(b
->num
,in
,inl
);
443 BIO_clear_retry_flags(b
);
446 if (BIO_sock_should_retry(ret
))
447 BIO_set_retry_write(b
);
452 static long conn_ctrl(BIO
*b
, int cmd
, long num
, void *ptr
)
460 data
=(BIO_CONNECT
*)b
->ptr
;
466 data
->state
=BIO_CONN_S_BEFORE
;
467 conn_close_socket(b
);
470 case BIO_C_DO_STATE_MACHINE
:
471 /* use this one to start the connection */
472 if (data
->state
!= BIO_CONN_S_OK
)
473 ret
=(long)conn_state(b
,data
);
477 case BIO_C_GET_CONNECT
:
480 pptr
=(const char **)ptr
;
483 *pptr
=data
->param_hostname
;
488 *pptr
=data
->param_port
;
492 *pptr
= (char *)&(data
->ip
[0]);
496 *((int *)ptr
)=data
->port
;
498 if ((!b
->init
) || (ptr
== NULL
))
499 *pptr
="not initialized";
503 case BIO_C_SET_CONNECT
:
509 if (data
->param_hostname
!= NULL
)
510 OPENSSL_free(data
->param_hostname
);
511 data
->param_hostname
=BUF_strdup(ptr
);
515 if (data
->param_port
!= NULL
)
516 OPENSSL_free(data
->param_port
);
517 data
->param_port
=BUF_strdup(ptr
);
522 unsigned char *p
= ptr
;
524 BIO_snprintf(buf
,sizeof buf
,"%d.%d.%d.%d",
525 p
[0],p
[1],p
[2],p
[3]);
526 if (data
->param_hostname
!= NULL
)
527 OPENSSL_free(data
->param_hostname
);
528 data
->param_hostname
=BUF_strdup(buf
);
529 memcpy(&(data
->ip
[0]),ptr
,4);
533 char buf
[DECIMAL_SIZE(int)+1];
535 BIO_snprintf(buf
,sizeof buf
,"%d",*(int *)ptr
);
536 if (data
->param_port
!= NULL
)
537 OPENSSL_free(data
->param_port
);
538 data
->param_port
=BUF_strdup(buf
);
539 data
->port
= *(int *)ptr
;
557 case BIO_CTRL_GET_CLOSE
:
560 case BIO_CTRL_SET_CLOSE
:
561 b
->shutdown
=(int)num
;
563 case BIO_CTRL_PENDING
:
564 case BIO_CTRL_WPENDING
:
572 if (data
->param_port
)
573 BIO_set_conn_port(dbio
,data
->param_port
);
574 if (data
->param_hostname
)
575 BIO_set_conn_hostname(dbio
,data
->param_hostname
);
576 BIO_set_nbio(dbio
,data
->nbio
);
577 /* FIXME: the cast of the function seems unlikely to be a good idea */
578 (void)BIO_set_info_callback(dbio
,(bio_info_cb
*)data
->info_callback
);
581 case BIO_CTRL_SET_CALLBACK
:
583 #if 0 /* FIXME: Should this be used? -- Richard Levitte */
584 BIOerr(BIO_F_CONN_CTRL
, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED
);
591 case BIO_CTRL_GET_CALLBACK
:
593 int (**fptr
)(const BIO
*bio
,int state
,int xret
);
595 fptr
=(int (**)(const BIO
*bio
,int state
,int xret
))ptr
;
596 *fptr
=data
->info_callback
;
606 static long conn_callback_ctrl(BIO
*b
, int cmd
, bio_info_cb
*fp
)
611 data
=(BIO_CONNECT
*)b
->ptr
;
615 case BIO_CTRL_SET_CALLBACK
:
617 data
->info_callback
=(int (*)(const struct bio_st
*, int, int))fp
;
627 static int conn_puts(BIO
*bp
, const char *str
)
632 ret
=conn_write(bp
,str
,n
);
636 BIO
*BIO_new_connect(char *str
)
640 ret
=BIO_new(BIO_s_connect());
641 if (ret
== NULL
) return(NULL
);
642 if (BIO_set_conn_hostname(ret
,str
))