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

其他游戏

开发平台:

Visual C++

  1. /* crypto/bio/bio_lib.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. #include <openssl/crypto.h>
  61. #include "cryptlib.h"
  62. #include <openssl/bio.h>
  63. #include <openssl/stack.h>
  64. BIO *BIO_new(BIO_METHOD *method)
  65. {
  66. BIO *ret=NULL;
  67. ret=(BIO *)OPENSSL_malloc(sizeof(BIO));
  68. if (ret == NULL)
  69. {
  70. BIOerr(BIO_F_BIO_NEW,ERR_R_MALLOC_FAILURE);
  71. return(NULL);
  72. }
  73. if (!BIO_set(ret,method))
  74. {
  75. OPENSSL_free(ret);
  76. ret=NULL;
  77. }
  78. return(ret);
  79. }
  80. int BIO_set(BIO *bio, BIO_METHOD *method)
  81. {
  82. bio->method=method;
  83. bio->callback=NULL;
  84. bio->cb_arg=NULL;
  85. bio->init=0;
  86. bio->shutdown=1;
  87. bio->flags=0;
  88. bio->retry_reason=0;
  89. bio->num=0;
  90. bio->ptr=NULL;
  91. bio->prev_bio=NULL;
  92. bio->next_bio=NULL;
  93. bio->references=1;
  94. bio->num_read=0L;
  95. bio->num_write=0L;
  96. CRYPTO_new_ex_data(CRYPTO_EX_INDEX_BIO, bio, &bio->ex_data);
  97. if (method->create != NULL)
  98. if (!method->create(bio))
  99. {
  100. CRYPTO_free_ex_data(CRYPTO_EX_INDEX_BIO, bio,
  101. &bio->ex_data);
  102. return(0);
  103. }
  104. return(1);
  105. }
  106. int BIO_free(BIO *a)
  107. {
  108. int ret=0,i;
  109. if (a == NULL) return(0);
  110. i=CRYPTO_add(&a->references,-1,CRYPTO_LOCK_BIO);
  111. #ifdef REF_PRINT
  112. REF_PRINT("BIO",a);
  113. #endif
  114. if (i > 0) return(1);
  115. #ifdef REF_CHECK
  116. if (i < 0)
  117. {
  118. fprintf(stderr,"BIO_free, bad reference countn");
  119. abort();
  120. }
  121. #endif
  122. if ((a->callback != NULL) &&
  123. ((i=(int)a->callback(a,BIO_CB_FREE,NULL,0,0L,1L)) <= 0))
  124. return(i);
  125. CRYPTO_free_ex_data(CRYPTO_EX_INDEX_BIO, a, &a->ex_data);
  126. if ((a->method == NULL) || (a->method->destroy == NULL)) return(1);
  127. ret=a->method->destroy(a);
  128. OPENSSL_free(a);
  129. return(1);
  130. }
  131. void BIO_vfree(BIO *a)
  132.     { BIO_free(a); }
  133. int BIO_read(BIO *b, void *out, int outl)
  134. {
  135. int i;
  136. long (*cb)(BIO *,int,const char *,int,long,long);
  137. if ((b == NULL) || (b->method == NULL) || (b->method->bread == NULL))
  138. {
  139. BIOerr(BIO_F_BIO_READ,BIO_R_UNSUPPORTED_METHOD);
  140. return(-2);
  141. }
  142. cb=b->callback;
  143. if ((cb != NULL) &&
  144. ((i=(int)cb(b,BIO_CB_READ,out,outl,0L,1L)) <= 0))
  145. return(i);
  146. if (!b->init)
  147. {
  148. BIOerr(BIO_F_BIO_READ,BIO_R_UNINITIALIZED);
  149. return(-2);
  150. }
  151. i=b->method->bread(b,out,outl);
  152. if (i > 0) b->num_read+=(unsigned long)i;
  153. if (cb != NULL)
  154. i=(int)cb(b,BIO_CB_READ|BIO_CB_RETURN,out,outl,
  155. 0L,(long)i);
  156. return(i);
  157. }
  158. int BIO_write(BIO *b, const void *in, int inl)
  159. {
  160. int i;
  161. long (*cb)(BIO *,int,const char *,int,long,long);
  162. if (b == NULL)
  163. return(0);
  164. cb=b->callback;
  165. if ((b->method == NULL) || (b->method->bwrite == NULL))
  166. {
  167. BIOerr(BIO_F_BIO_WRITE,BIO_R_UNSUPPORTED_METHOD);
  168. return(-2);
  169. }
  170. if ((cb != NULL) &&
  171. ((i=(int)cb(b,BIO_CB_WRITE,in,inl,0L,1L)) <= 0))
  172. return(i);
  173. if (!b->init)
  174. {
  175. BIOerr(BIO_F_BIO_WRITE,BIO_R_UNINITIALIZED);
  176. return(-2);
  177. }
  178. i=b->method->bwrite(b,in,inl);
  179. if (i > 0) b->num_write+=(unsigned long)i;
  180. if (cb != NULL)
  181. i=(int)cb(b,BIO_CB_WRITE|BIO_CB_RETURN,in,inl,
  182. 0L,(long)i);
  183. return(i);
  184. }
  185. int BIO_puts(BIO *b, const char *in)
  186. {
  187. int i;
  188. long (*cb)(BIO *,int,const char *,int,long,long);
  189. if ((b == NULL) || (b->method == NULL) || (b->method->bputs == NULL))
  190. {
  191. BIOerr(BIO_F_BIO_PUTS,BIO_R_UNSUPPORTED_METHOD);
  192. return(-2);
  193. }
  194. cb=b->callback;
  195. if ((cb != NULL) &&
  196. ((i=(int)cb(b,BIO_CB_PUTS,in,0,0L,1L)) <= 0))
  197. return(i);
  198. if (!b->init)
  199. {
  200. BIOerr(BIO_F_BIO_PUTS,BIO_R_UNINITIALIZED);
  201. return(-2);
  202. }
  203. i=b->method->bputs(b,in);
  204. if (i > 0) b->num_write+=(unsigned long)i;
  205. if (cb != NULL)
  206. i=(int)cb(b,BIO_CB_PUTS|BIO_CB_RETURN,in,0,
  207. 0L,(long)i);
  208. return(i);
  209. }
  210. int BIO_gets(BIO *b, char *in, int inl)
  211. {
  212. int i;
  213. long (*cb)(BIO *,int,const char *,int,long,long);
  214. if ((b == NULL) || (b->method == NULL) || (b->method->bgets == NULL))
  215. {
  216. BIOerr(BIO_F_BIO_GETS,BIO_R_UNSUPPORTED_METHOD);
  217. return(-2);
  218. }
  219. cb=b->callback;
  220. if ((cb != NULL) &&
  221. ((i=(int)cb(b,BIO_CB_GETS,in,inl,0L,1L)) <= 0))
  222. return(i);
  223. if (!b->init)
  224. {
  225. BIOerr(BIO_F_BIO_GETS,BIO_R_UNINITIALIZED);
  226. return(-2);
  227. }
  228. i=b->method->bgets(b,in,inl);
  229. if (cb != NULL)
  230. i=(int)cb(b,BIO_CB_GETS|BIO_CB_RETURN,in,inl,
  231. 0L,(long)i);
  232. return(i);
  233. }
  234. int BIO_indent(BIO *b,int indent,int max)
  235. {
  236. if(indent < 0)
  237. indent=0;
  238. if(indent > max)
  239. indent=max;
  240. while(indent--)
  241. if(BIO_puts(b," ") != 1)
  242. return 0;
  243. return 1;
  244. }
  245. long BIO_int_ctrl(BIO *b, int cmd, long larg, int iarg)
  246. {
  247. int i;
  248. i=iarg;
  249. return(BIO_ctrl(b,cmd,larg,(char *)&i));
  250. }
  251. char *BIO_ptr_ctrl(BIO *b, int cmd, long larg)
  252. {
  253. char *p=NULL;
  254. if (BIO_ctrl(b,cmd,larg,(char *)&p) <= 0)
  255. return(NULL);
  256. else
  257. return(p);
  258. }
  259. long BIO_ctrl(BIO *b, int cmd, long larg, void *parg)
  260. {
  261. long ret;
  262. long (*cb)(BIO *,int,const char *,int,long,long);
  263. if (b == NULL) return(0);
  264. if ((b->method == NULL) || (b->method->ctrl == NULL))
  265. {
  266. BIOerr(BIO_F_BIO_CTRL,BIO_R_UNSUPPORTED_METHOD);
  267. return(-2);
  268. }
  269. cb=b->callback;
  270. if ((cb != NULL) &&
  271. ((ret=cb(b,BIO_CB_CTRL,parg,cmd,larg,1L)) <= 0))
  272. return(ret);
  273. ret=b->method->ctrl(b,cmd,larg,parg);
  274. if (cb != NULL)
  275. ret=cb(b,BIO_CB_CTRL|BIO_CB_RETURN,parg,cmd,
  276. larg,ret);
  277. return(ret);
  278. }
  279. long BIO_callback_ctrl(BIO *b, int cmd, void (*fp)(struct bio_st *, int, const char *, int, long, long))
  280. {
  281. long ret;
  282. long (*cb)(BIO *,int,const char *,int,long,long);
  283. if (b == NULL) return(0);
  284. if ((b->method == NULL) || (b->method->callback_ctrl == NULL))
  285. {
  286. BIOerr(BIO_F_BIO_CALLBACK_CTRL,BIO_R_UNSUPPORTED_METHOD);
  287. return(-2);
  288. }
  289. cb=b->callback;
  290. if ((cb != NULL) &&
  291. ((ret=cb(b,BIO_CB_CTRL,(void *)&fp,cmd,0,1L)) <= 0))
  292. return(ret);
  293. ret=b->method->callback_ctrl(b,cmd,fp);
  294. if (cb != NULL)
  295. ret=cb(b,BIO_CB_CTRL|BIO_CB_RETURN,(void *)&fp,cmd,
  296. 0,ret);
  297. return(ret);
  298. }
  299. /* It is unfortunate to duplicate in functions what the BIO_(w)pending macros
  300.  * do; but those macros have inappropriate return type, and for interfacing
  301.  * from other programming languages, C macros aren't much of a help anyway. */
  302. size_t BIO_ctrl_pending(BIO *bio)
  303. {
  304. return BIO_ctrl(bio, BIO_CTRL_PENDING, 0, NULL);
  305. }
  306. size_t BIO_ctrl_wpending(BIO *bio)
  307. {
  308. return BIO_ctrl(bio, BIO_CTRL_WPENDING, 0, NULL);
  309. }
  310. /* put the 'bio' on the end of b's list of operators */
  311. BIO *BIO_push(BIO *b, BIO *bio)
  312. {
  313. BIO *lb;
  314. if (b == NULL) return(bio);
  315. lb=b;
  316. while (lb->next_bio != NULL)
  317. lb=lb->next_bio;
  318. lb->next_bio=bio;
  319. if (bio != NULL)
  320. bio->prev_bio=lb;
  321. /* called to do internal processing */
  322. BIO_ctrl(b,BIO_CTRL_PUSH,0,NULL);
  323. return(b);
  324. }
  325. /* Remove the first and return the rest */
  326. BIO *BIO_pop(BIO *b)
  327. {
  328. BIO *ret;
  329. if (b == NULL) return(NULL);
  330. ret=b->next_bio;
  331. BIO_ctrl(b,BIO_CTRL_POP,0,NULL);
  332. if (b->prev_bio != NULL)
  333. b->prev_bio->next_bio=b->next_bio;
  334. if (b->next_bio != NULL)
  335. b->next_bio->prev_bio=b->prev_bio;
  336. b->next_bio=NULL;
  337. b->prev_bio=NULL;
  338. return(ret);
  339. }
  340. BIO *BIO_get_retry_BIO(BIO *bio, int *reason)
  341. {
  342. BIO *b,*last;
  343. b=last=bio;
  344. for (;;)
  345. {
  346. if (!BIO_should_retry(b)) break;
  347. last=b;
  348. b=b->next_bio;
  349. if (b == NULL) break;
  350. }
  351. if (reason != NULL) *reason=last->retry_reason;
  352. return(last);
  353. }
  354. int BIO_get_retry_reason(BIO *bio)
  355. {
  356. return(bio->retry_reason);
  357. }
  358. BIO *BIO_find_type(BIO *bio, int type)
  359. {
  360. int mt,mask;
  361. if(!bio) return NULL;
  362. mask=type&0xff;
  363. do {
  364. if (bio->method != NULL)
  365. {
  366. mt=bio->method->type;
  367. if (!mask)
  368. {
  369. if (mt & type) return(bio);
  370. }
  371. else if (mt == type)
  372. return(bio);
  373. }
  374. bio=bio->next_bio;
  375. } while (bio != NULL);
  376. return(NULL);
  377. }
  378. BIO *BIO_next(BIO *b)
  379. {
  380. if(!b) return NULL;
  381. return b->next_bio;
  382. }
  383. void BIO_free_all(BIO *bio)
  384. {
  385. BIO *b;
  386. int ref;
  387. while (bio != NULL)
  388. {
  389. b=bio;
  390. ref=b->references;
  391. bio=bio->next_bio;
  392. BIO_free(b);
  393. /* Since ref count > 1, don't free anyone else. */
  394. if (ref > 1) break;
  395. }
  396. }
  397. BIO *BIO_dup_chain(BIO *in)
  398. {
  399. BIO *ret=NULL,*eoc=NULL,*bio,*new;
  400. for (bio=in; bio != NULL; bio=bio->next_bio)
  401. {
  402. if ((new=BIO_new(bio->method)) == NULL) goto err;
  403. new->callback=bio->callback;
  404. new->cb_arg=bio->cb_arg;
  405. new->init=bio->init;
  406. new->shutdown=bio->shutdown;
  407. new->flags=bio->flags;
  408. /* This will let SSL_s_sock() work with stdin/stdout */
  409. new->num=bio->num;
  410. if (!BIO_dup_state(bio,(char *)new))
  411. {
  412. BIO_free(new);
  413. goto err;
  414. }
  415. /* copy app data */
  416. if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_BIO, &new->ex_data,
  417. &bio->ex_data))
  418. goto err;
  419. if (ret == NULL)
  420. {
  421. eoc=new;
  422. ret=eoc;
  423. }
  424. else
  425. {
  426. BIO_push(eoc,new);
  427. eoc=new;
  428. }
  429. }
  430. return(ret);
  431. err:
  432. if (ret != NULL)
  433. BIO_free(ret);
  434. return(NULL);
  435. }
  436. void BIO_copy_next_retry(BIO *b)
  437. {
  438. BIO_set_flags(b,BIO_get_retry_flags(b->next_bio));
  439. b->retry_reason=b->next_bio->retry_reason;
  440. }
  441. int BIO_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
  442.      CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
  443. {
  444. return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_BIO, argl, argp,
  445. new_func, dup_func, free_func);
  446. }
  447. int BIO_set_ex_data(BIO *bio, int idx, void *data)
  448. {
  449. return(CRYPTO_set_ex_data(&(bio->ex_data),idx,data));
  450. }
  451. void *BIO_get_ex_data(BIO *bio, int idx)
  452. {
  453. return(CRYPTO_get_ex_data(&(bio->ex_data),idx));
  454. }
  455. unsigned long BIO_number_read(BIO *bio)
  456. {
  457. if(bio) return bio->num_read;
  458. return 0;
  459. }
  460. unsigned long BIO_number_written(BIO *bio)
  461. {
  462. if(bio) return bio->num_write;
  463. return 0;
  464. }
  465. IMPLEMENT_STACK_OF(BIO)