bss_sock.c 6.9 KB

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