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

其他游戏

开发平台:

Visual C++

  1. /* crypto/bio/bss_fd.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. /*
  63.  * As for unconditional usage of "UPLINK" interface in this module.
  64.  * Trouble is that unlike Unix file descriptors [which are indexes
  65.  * in kernel-side per-process table], corresponding descriptors on
  66.  * platforms which require "UPLINK" interface seem to be indexes
  67.  * in a user-land, non-global table. Well, in fact they are indexes
  68.  * in stdio _iob[], and recall that _iob[] was the very reason why
  69.  * "UPLINK" interface was introduced in first place. But one way on
  70.  * another. Neither libcrypto or libssl use this BIO meaning that
  71.  * file descriptors can only be provided by application. Therefore
  72.  * "UPLINK" calls are due...
  73.  */
  74. #include "bio_lcl.h"
  75. static int fd_write(BIO *h, const char *buf, int num);
  76. static int fd_read(BIO *h, char *buf, int size);
  77. static int fd_puts(BIO *h, const char *str);
  78. static long fd_ctrl(BIO *h, int cmd, long arg1, void *arg2);
  79. static int fd_new(BIO *h);
  80. static int fd_free(BIO *data);
  81. int BIO_fd_should_retry(int s);
  82. static BIO_METHOD methods_fdp=
  83. {
  84. BIO_TYPE_FD,"file descriptor",
  85. fd_write,
  86. fd_read,
  87. fd_puts,
  88. NULL, /* fd_gets, */
  89. fd_ctrl,
  90. fd_new,
  91. fd_free,
  92. NULL,
  93. };
  94. BIO_METHOD *BIO_s_fd(void)
  95. {
  96. return(&methods_fdp);
  97. }
  98. BIO *BIO_new_fd(int fd,int close_flag)
  99. {
  100. BIO *ret;
  101. ret=BIO_new(BIO_s_fd());
  102. if (ret == NULL) return(NULL);
  103. BIO_set_fd(ret,fd,close_flag);
  104. return(ret);
  105. }
  106. static int fd_new(BIO *bi)
  107. {
  108. bi->init=0;
  109. bi->num=-1;
  110. bi->ptr=NULL;
  111. bi->flags=BIO_FLAGS_UPLINK; /* essentially redundant */
  112. return(1);
  113. }
  114. static int fd_free(BIO *a)
  115. {
  116. if (a == NULL) return(0);
  117. if (a->shutdown)
  118. {
  119. if (a->init)
  120. {
  121. UP_close(a->num);
  122. }
  123. a->init=0;
  124. a->flags=BIO_FLAGS_UPLINK;
  125. }
  126. return(1);
  127. }
  128. static int fd_read(BIO *b, char *out,int outl)
  129. {
  130. int ret=0;
  131. if (out != NULL)
  132. {
  133. clear_sys_error();
  134. ret=UP_read(b->num,out,outl);
  135. BIO_clear_retry_flags(b);
  136. if (ret <= 0)
  137. {
  138. if (BIO_fd_should_retry(ret))
  139. BIO_set_retry_read(b);
  140. }
  141. }
  142. return(ret);
  143. }
  144. static int fd_write(BIO *b, const char *in, int inl)
  145. {
  146. int ret;
  147. clear_sys_error();
  148. ret=UP_write(b->num,in,inl);
  149. BIO_clear_retry_flags(b);
  150. if (ret <= 0)
  151. {
  152. if (BIO_fd_should_retry(ret))
  153. BIO_set_retry_write(b);
  154. }
  155. return(ret);
  156. }
  157. static long fd_ctrl(BIO *b, int cmd, long num, void *ptr)
  158. {
  159. long ret=1;
  160. int *ip;
  161. switch (cmd)
  162. {
  163. case BIO_CTRL_RESET:
  164. num=0;
  165. case BIO_C_FILE_SEEK:
  166. ret=(long)UP_lseek(b->num,num,0);
  167. break;
  168. case BIO_C_FILE_TELL:
  169. case BIO_CTRL_INFO:
  170. ret=(long)UP_lseek(b->num,0,1);
  171. break;
  172. case BIO_C_SET_FD:
  173. fd_free(b);
  174. b->num= *((int *)ptr);
  175. b->shutdown=(int)num;
  176. b->init=1;
  177. break;
  178. case BIO_C_GET_FD:
  179. if (b->init)
  180. {
  181. ip=(int *)ptr;
  182. if (ip != NULL) *ip=b->num;
  183. ret=b->num;
  184. }
  185. else
  186. ret= -1;
  187. break;
  188. case BIO_CTRL_GET_CLOSE:
  189. ret=b->shutdown;
  190. break;
  191. case BIO_CTRL_SET_CLOSE:
  192. b->shutdown=(int)num;
  193. break;
  194. case BIO_CTRL_PENDING:
  195. case BIO_CTRL_WPENDING:
  196. ret=0;
  197. break;
  198. case BIO_CTRL_DUP:
  199. case BIO_CTRL_FLUSH:
  200. ret=1;
  201. break;
  202. default:
  203. ret=0;
  204. break;
  205. }
  206. return(ret);
  207. }
  208. static int fd_puts(BIO *bp, const char *str)
  209. {
  210. int n,ret;
  211. n=strlen(str);
  212. ret=fd_write(bp,str,n);
  213. return(ret);
  214. }
  215. int BIO_fd_should_retry(int i)
  216. {
  217. int err;
  218. if ((i == 0) || (i == -1))
  219. {
  220. err=get_last_sys_error();
  221. #if defined(OPENSSL_SYS_WINDOWS) && 0 /* more microsoft stupidity? perhaps not? Ben 4/1/99 */
  222. if ((i == -1) && (err == 0))
  223. return(1);
  224. #endif
  225. return(BIO_fd_non_fatal_error(err));
  226. }
  227. return(0);
  228. }
  229. int BIO_fd_non_fatal_error(int err)
  230. {
  231. switch (err)
  232. {
  233. #ifdef EWOULDBLOCK
  234. # ifdef WSAEWOULDBLOCK
  235. #  if WSAEWOULDBLOCK != EWOULDBLOCK
  236. case EWOULDBLOCK:
  237. #  endif
  238. # else
  239. case EWOULDBLOCK:
  240. # endif
  241. #endif
  242. #if defined(ENOTCONN)
  243. case ENOTCONN:
  244. #endif
  245. #ifdef EINTR
  246. case EINTR:
  247. #endif
  248. #ifdef EAGAIN
  249. #if EWOULDBLOCK != EAGAIN
  250. case EAGAIN:
  251. # endif
  252. #endif
  253. #ifdef EPROTO
  254. case EPROTO:
  255. #endif
  256. #ifdef EINPROGRESS
  257. case EINPROGRESS:
  258. #endif
  259. #ifdef EALREADY
  260. case EALREADY:
  261. #endif
  262. return(1);
  263. /* break; */
  264. default:
  265. break;
  266. }
  267. return(0);
  268. }