Update contrib.
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.]
59 © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
67 #include <openssl/bio.h>
68 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
69 #include "libcrypto_wsd_macros.h"
70 #include "libcrypto_wsd.h"
73 #ifndef OPENSSL_NO_SOCK
75 #ifdef OPENSSL_SYS_WIN16
76 #define SOCKET_PROTOCOL 0 /* more microsoft stupidity */
78 #define SOCKET_PROTOCOL IPPROTO_TCP
81 #if (defined(OPENSSL_SYS_VMS) && __VMS_VER < 70000000)
82 /* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */
87 typedef struct bio_connect_st
98 struct sockaddr_in them;
100 /* int socket; this will be kept in bio->num so that it is
101 * compatible with the bss_sock bio */
103 /* called when the connection is initially made
104 * callback(BIO,state,ret); The callback should return
105 * 'ret'. state is for compatibility with the ssl info_callback */
106 int (*info_callback)(const BIO *bio,int state,int ret);
109 static int conn_write(BIO *h, const char *buf, int num);
110 static int conn_read(BIO *h, char *buf, int size);
111 static int conn_puts(BIO *h, const char *str);
112 static long conn_ctrl(BIO *h, int cmd, long arg1, void *arg2);
113 static int conn_new(BIO *h);
114 static int conn_free(BIO *data);
115 static long conn_callback_ctrl(BIO *h, int cmd, bio_info_cb *);
117 static int conn_state(BIO *b, BIO_CONNECT *c);
118 static void conn_close_socket(BIO *data);
119 BIO_CONNECT *BIO_CONNECT_new(void );
120 void BIO_CONNECT_free(BIO_CONNECT *a);
123 static BIO_METHOD methods_connectp=
130 NULL, /* connect_gets, */
138 GET_STATIC_VAR_FROM_TLS(methods_connectp,bss_conn,BIO_METHOD)
139 #define methods_connectp (*GET_WSD_VAR_NAME(methods_connectp,bss_conn,s)())
140 const BIO_METHOD temp_s_methods_connectp=
147 NULL, /* connect_gets, */
155 static int conn_state(BIO *b, BIO_CONNECT *c)
160 int (*cb)(const BIO *,int,int)=NULL;
162 if (c->info_callback != NULL)
169 case BIO_CONN_S_BEFORE:
173 BIOerr(BIO_F_CONN_STATE,BIO_R_NO_HOSTNAME_SPECIFIED);
176 for ( ; *p != '\0'; p++)
178 if ((*p == ':') || (*p == '/')) break;
182 if ((i == ':') || (i == '/'))
194 if (c->param_port != NULL)
195 OPENSSL_free(c->param_port);
196 c->param_port=BUF_strdup(p);
200 if (c->param_port == NULL)
202 BIOerr(BIO_F_CONN_STATE,BIO_R_NO_PORT_SPECIFIED);
203 ERR_add_error_data(2,"host=",c->param_hostname);
206 c->state=BIO_CONN_S_GET_IP;
209 case BIO_CONN_S_GET_IP:
210 if (BIO_get_host_ip(c->param_hostname,&(c->ip[0])) <= 0)
212 c->state=BIO_CONN_S_GET_PORT;
215 case BIO_CONN_S_GET_PORT:
216 if (c->param_port == NULL)
221 else if (BIO_get_port(c->param_port,&c->port) <= 0)
223 c->state=BIO_CONN_S_CREATE_SOCKET;
226 case BIO_CONN_S_CREATE_SOCKET:
227 /* now setup address */
228 memset((char *)&c->them,0,sizeof(c->them));
229 c->them.sin_family=AF_INET;
230 c->them.sin_port=htons((unsigned short)c->port);
232 ((unsigned long)c->ip[0]<<24L)|
233 ((unsigned long)c->ip[1]<<16L)|
234 ((unsigned long)c->ip[2]<< 8L)|
235 ((unsigned long)c->ip[3]);
236 c->them.sin_addr.s_addr=htonl(l);
237 c->state=BIO_CONN_S_CREATE_SOCKET;
239 ret=socket(AF_INET,SOCK_STREAM,SOCKET_PROTOCOL);
240 if (ret == INVALID_SOCKET)
242 SYSerr(SYS_F_SOCKET,get_last_socket_error());
243 ERR_add_error_data(4,"host=",c->param_hostname,
245 BIOerr(BIO_F_CONN_STATE,BIO_R_UNABLE_TO_CREATE_SOCKET);
249 c->state=BIO_CONN_S_NBIO;
252 case BIO_CONN_S_NBIO:
255 if (!BIO_socket_nbio(b->num,1))
257 BIOerr(BIO_F_CONN_STATE,BIO_R_ERROR_SETTING_NBIO);
258 ERR_add_error_data(4,"host=",
264 c->state=BIO_CONN_S_CONNECT;
266 #if defined(SO_KEEPALIVE) && !defined(OPENSSL_SYS_MPE)
268 i=setsockopt(b->num,SOL_SOCKET,SO_KEEPALIVE,(char *)&i,sizeof(i));
271 SYSerr(SYS_F_SOCKET,get_last_socket_error());
272 ERR_add_error_data(4,"host=",c->param_hostname,
274 BIOerr(BIO_F_CONN_STATE,BIO_R_KEEPALIVE);
280 case BIO_CONN_S_CONNECT:
281 BIO_clear_retry_flags(b);
283 (struct sockaddr *)&c->them,
288 if (BIO_sock_should_retry(ret))
290 BIO_set_retry_special(b);
291 c->state=BIO_CONN_S_BLOCKED_CONNECT;
292 b->retry_reason=BIO_RR_CONNECT;
296 SYSerr(SYS_F_CONNECT,get_last_socket_error());
297 ERR_add_error_data(4,"host=",
300 BIOerr(BIO_F_CONN_STATE,BIO_R_CONNECT_ERROR);
305 c->state=BIO_CONN_S_OK;
308 case BIO_CONN_S_BLOCKED_CONNECT:
309 i=BIO_sock_error(b->num);
312 BIO_clear_retry_flags(b);
313 SYSerr(SYS_F_CONNECT,i);
314 ERR_add_error_data(4,"host=",
317 BIOerr(BIO_F_CONN_STATE,BIO_R_NBIO_CONNECT_ERROR);
322 c->state=BIO_CONN_S_OK;
335 if (!(ret=cb((BIO *)b,c->state,ret)))
340 /* Loop does not exit */
343 ret=cb((BIO *)b,c->state,ret);
348 EXPORT_C BIO_CONNECT *BIO_CONNECT_new(void)
352 if ((ret=(BIO_CONNECT *)OPENSSL_malloc(sizeof(BIO_CONNECT))) == NULL)
354 ret->state=BIO_CONN_S_BEFORE;
355 ret->param_hostname=NULL;
356 ret->param_port=NULL;
357 ret->info_callback=NULL;
364 memset((char *)&ret->them,0,sizeof(ret->them));
368 EXPORT_C void BIO_CONNECT_free(BIO_CONNECT *a)
373 if (a->param_hostname != NULL)
374 OPENSSL_free(a->param_hostname);
375 if (a->param_port != NULL)
376 OPENSSL_free(a->param_port);
380 EXPORT_C BIO_METHOD *BIO_s_connect(void)
382 return(&methods_connectp);
385 static int conn_new(BIO *bi)
388 bi->num=INVALID_SOCKET;
390 if ((bi->ptr=(char *)BIO_CONNECT_new()) == NULL)
396 static void conn_close_socket(BIO *bio)
400 c=(BIO_CONNECT *)bio->ptr;
401 if (bio->num != INVALID_SOCKET)
403 /* Only do a shutdown if things were established */
404 if (c->state == BIO_CONN_S_OK)
405 shutdown(bio->num,2);
406 closesocket(bio->num);
407 bio->num=INVALID_SOCKET;
411 static int conn_free(BIO *a)
415 if (a == NULL) return(0);
416 data=(BIO_CONNECT *)a->ptr;
420 conn_close_socket(a);
421 BIO_CONNECT_free(data);
429 static int conn_read(BIO *b, char *out, int outl)
434 data=(BIO_CONNECT *)b->ptr;
435 if (data->state != BIO_CONN_S_OK)
437 ret=conn_state(b,data);
444 clear_socket_error();
445 ret=readsocket(b->num,out,outl);
446 BIO_clear_retry_flags(b);
449 if (BIO_sock_should_retry(ret))
450 BIO_set_retry_read(b);
456 static int conn_write(BIO *b, const char *in, int inl)
461 data=(BIO_CONNECT *)b->ptr;
462 if (data->state != BIO_CONN_S_OK)
464 ret=conn_state(b,data);
465 if (ret <= 0) return(ret);
468 clear_socket_error();
469 ret=writesocket(b->num,in,inl);
470 BIO_clear_retry_flags(b);
473 if (BIO_sock_should_retry(ret))
474 BIO_set_retry_write(b);
479 static long conn_ctrl(BIO *b, int cmd, long num, void *ptr)
487 data=(BIO_CONNECT *)b->ptr;
493 data->state=BIO_CONN_S_BEFORE;
494 conn_close_socket(b);
497 case BIO_C_DO_STATE_MACHINE:
498 /* use this one to start the connection */
499 if (data->state != BIO_CONN_S_OK)
500 ret=(long)conn_state(b,data);
504 case BIO_C_GET_CONNECT:
507 pptr=(const char **)ptr;
510 *pptr=data->param_hostname;
515 *pptr=data->param_port;
519 *pptr= (char *)&(data->ip[0]);
523 *((int *)ptr)=data->port;
525 if ((!b->init) || (ptr == NULL))
526 *pptr="not initialized";
530 case BIO_C_SET_CONNECT:
536 if (data->param_hostname != NULL)
537 OPENSSL_free(data->param_hostname);
538 data->param_hostname=BUF_strdup(ptr);
542 if (data->param_port != NULL)
543 OPENSSL_free(data->param_port);
544 data->param_port=BUF_strdup(ptr);
549 unsigned char *p = ptr;
551 BIO_snprintf(buf,sizeof buf,"%d.%d.%d.%d",
552 p[0],p[1],p[2],p[3]);
553 if (data->param_hostname != NULL)
554 OPENSSL_free(data->param_hostname);
555 data->param_hostname=BUF_strdup(buf);
556 memcpy(&(data->ip[0]),ptr,4);
560 char buf[DECIMAL_SIZE(int)+1];
562 BIO_snprintf(buf,sizeof buf,"%d",*(int *)ptr);
563 if (data->param_port != NULL)
564 OPENSSL_free(data->param_port);
565 data->param_port=BUF_strdup(buf);
566 data->port= *(int *)ptr;
584 case BIO_CTRL_GET_CLOSE:
587 case BIO_CTRL_SET_CLOSE:
588 b->shutdown=(int)num;
590 case BIO_CTRL_PENDING:
591 case BIO_CTRL_WPENDING:
599 if (data->param_port)
600 BIO_set_conn_port(dbio,data->param_port);
601 if (data->param_hostname)
602 BIO_set_conn_hostname(dbio,data->param_hostname);
603 BIO_set_nbio(dbio,data->nbio);
604 /* FIXME: the cast of the function seems unlikely to be a good idea */
605 (void)BIO_set_info_callback(dbio,(bio_info_cb *)data->info_callback);
608 case BIO_CTRL_SET_CALLBACK:
610 #if 0 /* FIXME: Should this be used? -- Richard Levitte */
611 BIOerr(BIO_F_CONN_CTRL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
618 case BIO_CTRL_GET_CALLBACK:
620 int (**fptr)(const BIO *bio,int state,int xret);
622 fptr=(int (**)(const BIO *bio,int state,int xret))ptr;
623 *fptr=data->info_callback;
633 static long conn_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
638 data=(BIO_CONNECT *)b->ptr;
642 case BIO_CTRL_SET_CALLBACK:
644 data->info_callback=(int (*)(const struct bio_st *, int, int))fp;
654 static int conn_puts(BIO *bp, const char *str)
659 ret=conn_write(bp,str,n);
663 EXPORT_C BIO *BIO_new_connect(char *str)
667 ret=BIO_new(BIO_s_connect());
668 if (ret == NULL) return(NULL);
669 if (BIO_set_conn_hostname(ret,str))