bss_fd.c 7.5 KB

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