DJGPP adjustments
[openssl.git] / crypto / bio / bss_sock.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
7  *
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).
14  *
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.
21  *
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 :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
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.
51  *
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
58 #include <stdio.h>
59 #include <errno.h>
60 #define USE_SOCKETS
61 #include "bio_lcl.h"
62 #include "internal/cryptlib.h"
63
64 #ifndef OPENSSL_NO_SOCK
65
66 # include <openssl/bio.h>
67
68 # ifdef WATT32
69 /* Watt-32 uses same names */
70 #  undef sock_write
71 #  undef sock_read
72 #  undef sock_puts
73 #  define sock_write SockWrite
74 #  define sock_read  SockRead
75 #  define sock_puts  SockPuts
76 # endif
77
78 static int sock_write(BIO *h, const char *buf, int num);
79 static int sock_read(BIO *h, char *buf, int size);
80 static int sock_puts(BIO *h, const char *str);
81 static long sock_ctrl(BIO *h, int cmd, long arg1, void *arg2);
82 static int sock_new(BIO *h);
83 static int sock_free(BIO *data);
84 int BIO_sock_should_retry(int s);
85
86 static const BIO_METHOD methods_sockp = {
87     BIO_TYPE_SOCKET,
88     "socket",
89     sock_write,
90     sock_read,
91     sock_puts,
92     NULL,                       /* sock_gets, */
93     sock_ctrl,
94     sock_new,
95     sock_free,
96     NULL,
97 };
98
99 const BIO_METHOD *BIO_s_socket(void)
100 {
101     return (&methods_sockp);
102 }
103
104 BIO *BIO_new_socket(int fd, int close_flag)
105 {
106     BIO *ret;
107
108     ret = BIO_new(BIO_s_socket());
109     if (ret == NULL)
110         return (NULL);
111     BIO_set_fd(ret, fd, close_flag);
112     return (ret);
113 }
114
115 static int sock_new(BIO *bi)
116 {
117     bi->init = 0;
118     bi->num = 0;
119     bi->ptr = NULL;
120     bi->flags = 0;
121     return (1);
122 }
123
124 static int sock_free(BIO *a)
125 {
126     if (a == NULL)
127         return (0);
128     if (a->shutdown) {
129         if (a->init) {
130             BIO_closesocket(a->num);
131         }
132         a->init = 0;
133         a->flags = 0;
134     }
135     return (1);
136 }
137
138 static int sock_read(BIO *b, char *out, int outl)
139 {
140     int ret = 0;
141
142     if (out != NULL) {
143         clear_socket_error();
144         ret = readsocket(b->num, out, outl);
145         BIO_clear_retry_flags(b);
146         if (ret <= 0) {
147             if (BIO_sock_should_retry(ret))
148                 BIO_set_retry_read(b);
149         }
150     }
151     return (ret);
152 }
153
154 static int sock_write(BIO *b, const char *in, int inl)
155 {
156     int ret;
157
158     clear_socket_error();
159     ret = writesocket(b->num, in, inl);
160     BIO_clear_retry_flags(b);
161     if (ret <= 0) {
162         if (BIO_sock_should_retry(ret))
163             BIO_set_retry_write(b);
164     }
165     return (ret);
166 }
167
168 static long sock_ctrl(BIO *b, int cmd, long num, void *ptr)
169 {
170     long ret = 1;
171     int *ip;
172
173     switch (cmd) {
174     case BIO_C_SET_FD:
175         sock_free(b);
176         b->num = *((int *)ptr);
177         b->shutdown = (int)num;
178         b->init = 1;
179         break;
180     case BIO_C_GET_FD:
181         if (b->init) {
182             ip = (int *)ptr;
183             if (ip != NULL)
184                 *ip = b->num;
185             ret = b->num;
186         } else
187             ret = -1;
188         break;
189     case BIO_CTRL_GET_CLOSE:
190         ret = b->shutdown;
191         break;
192     case BIO_CTRL_SET_CLOSE:
193         b->shutdown = (int)num;
194         break;
195     case BIO_CTRL_DUP:
196     case BIO_CTRL_FLUSH:
197         ret = 1;
198         break;
199     default:
200         ret = 0;
201         break;
202     }
203     return (ret);
204 }
205
206 static int sock_puts(BIO *bp, const char *str)
207 {
208     int n, ret;
209
210     n = strlen(str);
211     ret = sock_write(bp, str, n);
212     return (ret);
213 }
214
215 int BIO_sock_should_retry(int i)
216 {
217     int err;
218
219     if ((i == 0) || (i == -1)) {
220         err = get_last_socket_error();
221
222         return (BIO_sock_non_fatal_error(err));
223     }
224     return (0);
225 }
226
227 int BIO_sock_non_fatal_error(int err)
228 {
229     switch (err) {
230 # if defined(OPENSSL_SYS_WINDOWS)
231 #  if defined(WSAEWOULDBLOCK)
232     case WSAEWOULDBLOCK:
233 #  endif
234 # endif
235
236 # ifdef EWOULDBLOCK
237 #  ifdef WSAEWOULDBLOCK
238 #   if WSAEWOULDBLOCK != EWOULDBLOCK
239     case EWOULDBLOCK:
240 #   endif
241 #  else
242     case EWOULDBLOCK:
243 #  endif
244 # endif
245
246 # if defined(ENOTCONN)
247     case ENOTCONN:
248 # endif
249
250 # ifdef EINTR
251     case EINTR:
252 # endif
253
254 # ifdef EAGAIN
255 #  if EWOULDBLOCK != EAGAIN
256     case EAGAIN:
257 #  endif
258 # endif
259
260 # ifdef EPROTO
261     case EPROTO:
262 # endif
263
264 # ifdef EINPROGRESS
265     case EINPROGRESS:
266 # endif
267
268 # ifdef EALREADY
269     case EALREADY:
270 # endif
271         return (1);
272         /* break; */
273     default:
274         break;
275     }
276     return (0);
277 }
278
279 #endif                          /* #ifndef OPENSSL_NO_SOCK */