]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/bio/bss_conn.c
Accept NULL in *_free.
[thirdparty/openssl.git] / crypto / bio / bss_conn.c
1 /* crypto/bio/bss_conn.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
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.
8 *
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).
15 *
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.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
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)"
40 *
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
51 * SUCH DAMAGE.
52 *
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.]
57 */
58
59 #ifndef NO_SOCK
60
61 #include <stdio.h>
62 #include <errno.h>
63 #define USE_SOCKETS
64 #include "cryptlib.h"
65 #include "bio.h"
66
67 /* BIOerr(BIO_F_WSASTARTUP,BIO_R_WSASTARTUP ); */
68
69 #ifdef WIN16
70 #define SOCKET_PROTOCOL 0 /* more microsoft stupidity */
71 #else
72 #define SOCKET_PROTOCOL IPPROTO_TCP
73 #endif
74
75 typedef struct bio_connect_st
76 {
77 int state;
78
79 char *param_hostname;
80 char *param_port;
81 int nbio;
82
83 unsigned char ip[4];
84 unsigned short port;
85
86 struct sockaddr_in them;
87
88 /* int socket; this will be kept in bio->num so that it is
89 * compatable with the bss_sock bio */
90
91 /* called when the connection is initially made
92 * callback(BIO,state,ret); The callback should return
93 * 'ret'. state is for compatablity with the ssl info_callback */
94 int (*info_callback)();
95 } BIO_CONNECT;
96
97 #ifndef NOPROTO
98 static int conn_write(BIO *h,char *buf,int num);
99 static int conn_read(BIO *h,char *buf,int size);
100 static int conn_puts(BIO *h,char *str);
101 static long conn_ctrl(BIO *h,int cmd,long arg1,char *arg2);
102 static int conn_new(BIO *h);
103 static int conn_free(BIO *data);
104 #else
105 static int conn_write();
106 static int conn_read();
107 static int conn_puts();
108 static long conn_ctrl();
109 static int conn_new();
110 static int conn_free();
111 #endif
112
113 #ifndef NOPROTO
114
115 static int conn_state(BIO *b, BIO_CONNECT *c);
116 static void conn_close_socket(BIO *data);
117 BIO_CONNECT *BIO_CONNECT_new(void );
118 void BIO_CONNECT_free(BIO_CONNECT *a);
119
120 #else
121
122 static int conn_state();
123 static void conn_close_socket();
124 BIO_CONNECT *BIO_CONNECT_new();
125 void BIO_CONNECT_free();
126
127 #endif
128
129 static BIO_METHOD methods_connectp=
130 {
131 BIO_TYPE_CONNECT,
132 "socket connect",
133 conn_write,
134 conn_read,
135 conn_puts,
136 NULL, /* connect_gets, */
137 conn_ctrl,
138 conn_new,
139 conn_free,
140 };
141
142 static int conn_state(b,c)
143 BIO *b;
144 BIO_CONNECT *c;
145 {
146 int ret= -1,i;
147 unsigned long l;
148 char *p,*q;
149 int (*cb)()=NULL;
150
151 if (c->info_callback != NULL)
152 cb=c->info_callback;
153
154 for (;;)
155 {
156 switch (c->state)
157 {
158 case BIO_CONN_S_BEFORE:
159 p=c->param_hostname;
160 if (p == NULL)
161 {
162 BIOerr(BIO_F_CONN_STATE,BIO_R_NO_HOSTHNAME_SPECIFIED);
163 goto exit_loop;
164 }
165 for ( ; *p != '\0'; p++)
166 {
167 if ((*p == ':') || (*p == '/')) break;
168 }
169
170 i= *p;
171 if ((i == ':') || (i == '/'))
172 {
173
174 *(p++)='\0';
175 if (i == ':')
176 {
177 for (q=p; *q; q++)
178 if (*q == '/')
179 {
180 *q='\0';
181 break;
182 }
183 if (c->param_port != NULL)
184 Free(c->param_port);
185 c->param_port=BUF_strdup(p);
186 }
187 }
188
189 if (c->param_port == NULL)
190 {
191 BIOerr(BIO_F_CONN_STATE,BIO_R_NO_PORT_SPECIFIED);
192 ERR_add_error_data(2,"host=",c->param_hostname);
193 goto exit_loop;
194 }
195 c->state=BIO_CONN_S_GET_IP;
196 break;
197
198 case BIO_CONN_S_GET_IP:
199 if (BIO_get_host_ip(c->param_hostname,&(c->ip[0])) <= 0)
200 goto exit_loop;
201 c->state=BIO_CONN_S_GET_PORT;
202 break;
203
204 case BIO_CONN_S_GET_PORT:
205 if (c->param_port == NULL)
206 {
207 abort();
208 goto exit_loop;
209 }
210 else if (BIO_get_port(c->param_port,&c->port) <= 0)
211 goto exit_loop;
212 c->state=BIO_CONN_S_CREATE_SOCKET;
213 break;
214
215 case BIO_CONN_S_CREATE_SOCKET:
216 /* now setup address */
217 memset((char *)&c->them,0,sizeof(c->them));
218 c->them.sin_family=AF_INET;
219 c->them.sin_port=htons((unsigned short)c->port);
220 l=(unsigned long)
221 ((unsigned long)c->ip[0]<<24L)|
222 ((unsigned long)c->ip[1]<<16L)|
223 ((unsigned long)c->ip[2]<< 8L)|
224 ((unsigned long)c->ip[3]);
225 c->them.sin_addr.s_addr=htonl(l);
226 c->state=BIO_CONN_S_CREATE_SOCKET;
227
228 ret=socket(AF_INET,SOCK_STREAM,SOCKET_PROTOCOL);
229 if (ret == INVALID_SOCKET)
230 {
231 SYSerr(SYS_F_SOCKET,get_last_socket_error());
232 ERR_add_error_data(4,"host=",c->param_hostname,
233 ":",c->param_port);
234 BIOerr(BIO_F_CONN_STATE,BIO_R_UNABLE_TO_CREATE_SOCKET);
235 goto exit_loop;
236 }
237 b->num=ret;
238 c->state=BIO_CONN_S_NBIO;
239 break;
240
241 case BIO_CONN_S_NBIO:
242 if (c->nbio)
243 {
244 if (!BIO_socket_nbio(b->num,1))
245 {
246 BIOerr(BIO_F_CONN_STATE,BIO_R_ERROR_SETTING_NBIO);
247 ERR_add_error_data(4,"host=",
248 c->param_hostname,
249 ":",c->param_port);
250 goto exit_loop;
251 }
252 }
253 c->state=BIO_CONN_S_CONNECT;
254
255 #ifdef SO_KEEPALIVE
256 i=1;
257 i=setsockopt(b->num,SOL_SOCKET,SO_KEEPALIVE,(char *)&i,sizeof(i));
258 if (i < 0)
259 {
260 SYSerr(SYS_F_SOCKET,get_last_socket_error());
261 ERR_add_error_data(4,"host=",c->param_hostname,
262 ":",c->param_port);
263 BIOerr(BIO_F_CONN_STATE,BIO_R_KEEPALIVE);
264 goto exit_loop;
265 }
266 #endif
267 break;
268
269 case BIO_CONN_S_CONNECT:
270 BIO_clear_retry_flags(b);
271 ret=connect(b->num,
272 (struct sockaddr *)&c->them,
273 sizeof(c->them));
274 b->retry_reason=0;
275 if (ret < 0)
276 {
277 if (BIO_sock_should_retry(ret))
278 {
279 BIO_set_retry_special(b);
280 c->state=BIO_CONN_S_BLOCKED_CONNECT;
281 b->retry_reason=BIO_RR_CONNECT;
282 }
283 else
284 {
285 SYSerr(SYS_F_CONNECT,get_last_socket_error());
286 ERR_add_error_data(4,"host=",
287 c->param_hostname,
288 ":",c->param_port);
289 BIOerr(BIO_F_CONN_STATE,BIO_R_CONNECT_ERROR);
290 }
291 goto exit_loop;
292 }
293 else
294 c->state=BIO_CONN_S_OK;
295 break;
296
297 case BIO_CONN_S_BLOCKED_CONNECT:
298 i=BIO_sock_error(b->num);
299 if (i)
300 {
301 BIO_clear_retry_flags(b);
302 SYSerr(SYS_F_CONNECT,i);
303 ERR_add_error_data(4,"host=",
304 c->param_hostname,
305 ":",c->param_port);
306 BIOerr(BIO_F_CONN_STATE,BIO_R_NBIO_CONNECT_ERROR);
307 ret=0;
308 goto exit_loop;
309 }
310 else
311 c->state=BIO_CONN_S_OK;
312 break;
313
314 case BIO_CONN_S_OK:
315 ret=1;
316 goto exit_loop;
317 default:
318 abort();
319 goto exit_loop;
320 }
321
322 if (cb != NULL)
323 {
324 if (!(ret=cb((BIO *)b,c->state,ret)))
325 goto end;
326 }
327 }
328
329 /* Loop does not exit */
330 exit_loop:
331 if (cb != NULL)
332 ret=cb((BIO *)b,c->state,ret);
333 end:
334 return(ret);
335 }
336
337 BIO_CONNECT *BIO_CONNECT_new()
338 {
339 BIO_CONNECT *ret;
340
341 if ((ret=(BIO_CONNECT *)Malloc(sizeof(BIO_CONNECT))) == NULL)
342 return(NULL);
343 ret->state=BIO_CONN_S_BEFORE;
344 ret->param_hostname=NULL;
345 ret->param_port=NULL;
346 ret->info_callback=NULL;
347 ret->nbio=0;
348 ret->ip[0]=0;
349 ret->ip[1]=0;
350 ret->ip[2]=0;
351 ret->ip[3]=0;
352 ret->port=0;
353 memset((char *)&ret->them,0,sizeof(ret->them));
354 return(ret);
355 }
356
357 void BIO_CONNECT_free(a)
358 BIO_CONNECT *a;
359 {
360 if(a == NULL)
361 return;
362
363 if (a->param_hostname != NULL)
364 Free(a->param_hostname);
365 if (a->param_port != NULL)
366 Free(a->param_port);
367 Free(a);
368 }
369
370 BIO_METHOD *BIO_s_connect()
371 {
372 return(&methods_connectp);
373 }
374
375 static int conn_new(bi)
376 BIO *bi;
377 {
378 bi->init=0;
379 bi->num=INVALID_SOCKET;
380 bi->flags=0;
381 if ((bi->ptr=(char *)BIO_CONNECT_new()) == NULL)
382 return(0);
383 else
384 return(1);
385 }
386
387 static void conn_close_socket(bio)
388 BIO *bio;
389 {
390 BIO_CONNECT *c;
391
392 c=(BIO_CONNECT *)bio->ptr;
393 if (bio->num != INVALID_SOCKET)
394 {
395 /* Only do a shutdown if things were established */
396 if (c->state == BIO_CONN_S_OK)
397 shutdown(bio->num,2);
398 closesocket(bio->num);
399 bio->num=INVALID_SOCKET;
400 }
401 }
402
403 static int conn_free(a)
404 BIO *a;
405 {
406 BIO_CONNECT *data;
407
408 if (a == NULL) return(0);
409 data=(BIO_CONNECT *)a->ptr;
410
411 if (a->shutdown)
412 {
413 conn_close_socket(a);
414 BIO_CONNECT_free(data);
415 a->ptr=NULL;
416 a->flags=0;
417 a->init=0;
418 }
419 return(1);
420 }
421
422 static int conn_read(b,out,outl)
423 BIO *b;
424 char *out;
425 int outl;
426 {
427 int ret=0;
428 BIO_CONNECT *data;
429
430 data=(BIO_CONNECT *)b->ptr;
431 if (data->state != BIO_CONN_S_OK)
432 {
433 ret=conn_state(b,data);
434 if (ret <= 0)
435 return(ret);
436 }
437
438 if (out != NULL)
439 {
440 clear_socket_error();
441 ret=readsocket(b->num,out,outl);
442 BIO_clear_retry_flags(b);
443 if (ret <= 0)
444 {
445 if (BIO_sock_should_retry(ret))
446 BIO_set_retry_read(b);
447 }
448 }
449 return(ret);
450 }
451
452 static int conn_write(b,in,inl)
453 BIO *b;
454 char *in;
455 int inl;
456 {
457 int ret;
458 BIO_CONNECT *data;
459
460 data=(BIO_CONNECT *)b->ptr;
461 if (data->state != BIO_CONN_S_OK)
462 {
463 ret=conn_state(b,data);
464 if (ret <= 0) return(ret);
465 }
466
467 clear_socket_error();
468 ret=writesocket(b->num,in,inl);
469 BIO_clear_retry_flags(b);
470 if (ret <= 0)
471 {
472 if (BIO_sock_should_retry(ret))
473 BIO_set_retry_write(b);
474 }
475 return(ret);
476 }
477
478 static long conn_ctrl(b,cmd,num,ptr)
479 BIO *b;
480 int cmd;
481 long num;
482 char *ptr;
483 {
484 BIO *dbio;
485 int *ip;
486 char **pptr;
487 long ret=1;
488 BIO_CONNECT *data;
489
490 data=(BIO_CONNECT *)b->ptr;
491
492 switch (cmd)
493 {
494 case BIO_CTRL_RESET:
495 ret=0;
496 data->state=BIO_CONN_S_BEFORE;
497 conn_close_socket(b);
498 b->flags=0;
499 break;
500 case BIO_C_DO_STATE_MACHINE:
501 /* use this one to start the connection */
502 if (!data->state != BIO_CONN_S_OK)
503 ret=(long)conn_state(b,data);
504 else
505 ret=1;
506 break;
507 case BIO_C_GET_CONNECT:
508 if (ptr != NULL)
509 {
510 pptr=(char **)ptr;
511 if (num == 0)
512 {
513 *pptr=data->param_hostname;
514
515 }
516 else if (num == 1)
517 {
518 *pptr=data->param_port;
519 }
520 else if (num == 2)
521 {
522 *pptr= (char *)&(data->ip[0]);
523 }
524 else if (num == 3)
525 {
526 *((int *)ptr)=data->port;
527 }
528 if ((!b->init) || (ptr == NULL))
529 *pptr="not initalised";
530 ret=1;
531 }
532 break;
533 case BIO_C_SET_CONNECT:
534 if (ptr != NULL)
535 {
536 b->init=1;
537 if (num == 0)
538 {
539 if (data->param_hostname != NULL)
540 Free(data->param_hostname);
541 data->param_hostname=BUF_strdup(ptr);
542 }
543 else if (num == 1)
544 {
545 if (data->param_port != NULL)
546 Free(data->param_port);
547 data->param_port=BUF_strdup(ptr);
548 }
549 else if (num == 2)
550 {
551 char buf[16];
552
553 sprintf(buf,"%d.%d.%d.%d",
554 ptr[0],ptr[1],ptr[2],ptr[3]);
555 if (data->param_hostname != NULL)
556 Free(data->param_hostname);
557 data->param_hostname=BUF_strdup(buf);
558 memcpy(&(data->ip[0]),ptr,4);
559 }
560 else if (num == 3)
561 {
562 char buf[16];
563
564 sprintf(buf,"%d",*(int *)ptr);
565 if (data->param_port != NULL)
566 Free(data->param_port);
567 data->param_port=BUF_strdup(buf);
568 data->port= *(int *)ptr;
569 }
570 }
571 break;
572 case BIO_C_SET_NBIO:
573 data->nbio=(int)num;
574 break;
575 case BIO_C_GET_FD:
576 if (b->init)
577 {
578 ip=(int *)ptr;
579 if (ip != NULL)
580 *ip=b->num;
581 ret=b->num;
582 }
583 else
584 ret= -1;
585 break;
586 case BIO_CTRL_GET_CLOSE:
587 ret=b->shutdown;
588 break;
589 case BIO_CTRL_SET_CLOSE:
590 b->shutdown=(int)num;
591 break;
592 case BIO_CTRL_PENDING:
593 case BIO_CTRL_WPENDING:
594 ret=0;
595 break;
596 case BIO_CTRL_FLUSH:
597 break;
598 case BIO_CTRL_DUP:
599 dbio=(BIO *)ptr;
600 if (data->param_port)
601 BIO_set_conn_port(dbio,data->param_port);
602 if (data->param_hostname)
603 BIO_set_conn_hostname(dbio,data->param_hostname);
604 BIO_set_nbio(dbio,data->nbio);
605 BIO_set_info_callback(dbio,data->info_callback);
606 break;
607 case BIO_CTRL_SET_CALLBACK:
608 data->info_callback=(int (*)())ptr;
609 break;
610 case BIO_CTRL_GET_CALLBACK:
611 {
612 int (**fptr)();
613
614 fptr=(int (**)())ptr;
615 *fptr=data->info_callback;
616 }
617 break;
618 default:
619 ret=0;
620 break;
621 }
622 return(ret);
623 }
624
625 static int conn_puts(bp,str)
626 BIO *bp;
627 char *str;
628 {
629 int n,ret;
630
631 n=strlen(str);
632 ret=conn_write(bp,str,n);
633 return(ret);
634 }
635
636 BIO *BIO_new_connect(str)
637 char *str;
638 {
639 BIO *ret;
640
641 ret=BIO_new(BIO_s_connect());
642 if (ret == NULL) return(NULL);
643 if (BIO_set_conn_hostname(ret,str))
644 return(ret);
645 else
646 {
647 BIO_free(ret);
648 return(NULL);
649 }
650 }
651
652 #endif
653