bss_sock.c
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:7k
源码类别:

其他游戏

开发平台:

Visual C++

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