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

其他游戏

开发平台:

Visual C++

  1. /* crypto/bio/bss_acpt.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. #ifndef OPENSSL_NO_SOCK
  64. #ifdef OPENSSL_SYS_WIN16
  65. #define SOCKET_PROTOCOL 0 /* more microsoft stupidity */
  66. #else
  67. #define SOCKET_PROTOCOL IPPROTO_TCP
  68. #endif
  69. #if (defined(OPENSSL_SYS_VMS) && __VMS_VER < 70000000)
  70. /* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */
  71. #undef FIONBIO
  72. #endif
  73. typedef struct bio_accept_st
  74. {
  75. int state;
  76. char *param_addr;
  77. int accept_sock;
  78. int accept_nbio;
  79. char *addr;
  80. int nbio;
  81. /* If 0, it means normal, if 1, do a connect on bind failure,
  82.  * and if there is no-one listening, bind with SO_REUSEADDR.
  83.  * If 2, always use SO_REUSEADDR. */
  84. int bind_mode;
  85. BIO *bio_chain;
  86. } BIO_ACCEPT;
  87. static int acpt_write(BIO *h, const char *buf, int num);
  88. static int acpt_read(BIO *h, char *buf, int size);
  89. static int acpt_puts(BIO *h, const char *str);
  90. static long acpt_ctrl(BIO *h, int cmd, long arg1, void *arg2);
  91. static int acpt_new(BIO *h);
  92. static int acpt_free(BIO *data);
  93. static int acpt_state(BIO *b, BIO_ACCEPT *c);
  94. static void acpt_close_socket(BIO *data);
  95. BIO_ACCEPT *BIO_ACCEPT_new(void );
  96. void BIO_ACCEPT_free(BIO_ACCEPT *a);
  97. #define ACPT_S_BEFORE 1
  98. #define ACPT_S_GET_ACCEPT_SOCKET 2
  99. #define ACPT_S_OK 3
  100. static BIO_METHOD methods_acceptp=
  101. {
  102. BIO_TYPE_ACCEPT,
  103. "socket accept",
  104. acpt_write,
  105. acpt_read,
  106. acpt_puts,
  107. NULL, /* connect_gets, */
  108. acpt_ctrl,
  109. acpt_new,
  110. acpt_free,
  111. NULL,
  112. };
  113. BIO_METHOD *BIO_s_accept(void)
  114. {
  115. return(&methods_acceptp);
  116. }
  117. static int acpt_new(BIO *bi)
  118. {
  119. BIO_ACCEPT *ba;
  120. bi->init=0;
  121. bi->num=INVALID_SOCKET;
  122. bi->flags=0;
  123. if ((ba=BIO_ACCEPT_new()) == NULL)
  124. return(0);
  125. bi->ptr=(char *)ba;
  126. ba->state=ACPT_S_BEFORE;
  127. bi->shutdown=1;
  128. return(1);
  129. }
  130. BIO_ACCEPT *BIO_ACCEPT_new(void)
  131. {
  132. BIO_ACCEPT *ret;
  133. if ((ret=(BIO_ACCEPT *)OPENSSL_malloc(sizeof(BIO_ACCEPT))) == NULL)
  134. return(NULL);
  135. memset(ret,0,sizeof(BIO_ACCEPT));
  136. ret->accept_sock=INVALID_SOCKET;
  137. ret->bind_mode=BIO_BIND_NORMAL;
  138. return(ret);
  139. }
  140. void BIO_ACCEPT_free(BIO_ACCEPT *a)
  141. {
  142. if(a == NULL)
  143.     return;
  144. if (a->param_addr != NULL) OPENSSL_free(a->param_addr);
  145. if (a->addr != NULL) OPENSSL_free(a->addr);
  146. if (a->bio_chain != NULL) BIO_free(a->bio_chain);
  147. OPENSSL_free(a);
  148. }
  149. static void acpt_close_socket(BIO *bio)
  150. {
  151. BIO_ACCEPT *c;
  152. c=(BIO_ACCEPT *)bio->ptr;
  153. if (c->accept_sock != INVALID_SOCKET)
  154. {
  155. shutdown(c->accept_sock,2);
  156. closesocket(c->accept_sock);
  157. c->accept_sock=INVALID_SOCKET;
  158. bio->num=INVALID_SOCKET;
  159. }
  160. }
  161. static int acpt_free(BIO *a)
  162. {
  163. BIO_ACCEPT *data;
  164. if (a == NULL) return(0);
  165. data=(BIO_ACCEPT *)a->ptr;
  166.  
  167. if (a->shutdown)
  168. {
  169. acpt_close_socket(a);
  170. BIO_ACCEPT_free(data);
  171. a->ptr=NULL;
  172. a->flags=0;
  173. a->init=0;
  174. }
  175. return(1);
  176. }
  177. static int acpt_state(BIO *b, BIO_ACCEPT *c)
  178. {
  179. BIO *bio=NULL,*dbio;
  180. int s= -1;
  181. int i;
  182. again:
  183. switch (c->state)
  184. {
  185. case ACPT_S_BEFORE:
  186. if (c->param_addr == NULL)
  187. {
  188. BIOerr(BIO_F_ACPT_STATE,BIO_R_NO_ACCEPT_PORT_SPECIFIED);
  189. return(-1);
  190. }
  191. s=BIO_get_accept_socket(c->param_addr,c->bind_mode);
  192. if (s == INVALID_SOCKET)
  193. return(-1);
  194. if (c->accept_nbio)
  195. {
  196. if (!BIO_socket_nbio(s,1))
  197. {
  198. closesocket(s);
  199. BIOerr(BIO_F_ACPT_STATE,BIO_R_ERROR_SETTING_NBIO_ON_ACCEPT_SOCKET);
  200. return(-1);
  201. }
  202. }
  203. c->accept_sock=s;
  204. b->num=s;
  205. c->state=ACPT_S_GET_ACCEPT_SOCKET;
  206. return(1);
  207. /* break; */
  208. case ACPT_S_GET_ACCEPT_SOCKET:
  209. if (b->next_bio != NULL)
  210. {
  211. c->state=ACPT_S_OK;
  212. goto again;
  213. }
  214. BIO_clear_retry_flags(b);
  215. b->retry_reason=0;
  216. i=BIO_accept(c->accept_sock,&(c->addr));
  217. /* -2 return means we should retry */
  218. if(i == -2)
  219. {
  220. BIO_set_retry_special(b);
  221. b->retry_reason=BIO_RR_ACCEPT;
  222. return -1;
  223. }
  224. if (i < 0) return(i);
  225. bio=BIO_new_socket(i,BIO_CLOSE);
  226. if (bio == NULL) goto err;
  227. BIO_set_callback(bio,BIO_get_callback(b));
  228. BIO_set_callback_arg(bio,BIO_get_callback_arg(b));
  229. if (c->nbio)
  230. {
  231. if (!BIO_socket_nbio(i,1))
  232. {
  233. BIOerr(BIO_F_ACPT_STATE,BIO_R_ERROR_SETTING_NBIO_ON_ACCEPTED_SOCKET);
  234. goto err;
  235. }
  236. }
  237. /* If the accept BIO has an bio_chain, we dup it and
  238.  * put the new socket at the end. */
  239. if (c->bio_chain != NULL)
  240. {
  241. if ((dbio=BIO_dup_chain(c->bio_chain)) == NULL)
  242. goto err;
  243. if (!BIO_push(dbio,bio)) goto err;
  244. bio=dbio;
  245. }
  246. if (BIO_push(b,bio) == NULL) goto err;
  247. c->state=ACPT_S_OK;
  248. return(1);
  249. err:
  250. if (bio != NULL)
  251. BIO_free(bio);
  252. else if (s >= 0)
  253. closesocket(s);
  254. return(0);
  255. /* break; */
  256. case ACPT_S_OK:
  257. if (b->next_bio == NULL)
  258. {
  259. c->state=ACPT_S_GET_ACCEPT_SOCKET;
  260. goto again;
  261. }
  262. return(1);
  263. /* break; */
  264. default:
  265. return(0);
  266. /* break; */
  267. }
  268. }
  269. static int acpt_read(BIO *b, char *out, int outl)
  270. {
  271. int ret=0;
  272. BIO_ACCEPT *data;
  273. BIO_clear_retry_flags(b);
  274. data=(BIO_ACCEPT *)b->ptr;
  275. while (b->next_bio == NULL)
  276. {
  277. ret=acpt_state(b,data);
  278. if (ret <= 0) return(ret);
  279. }
  280. ret=BIO_read(b->next_bio,out,outl);
  281. BIO_copy_next_retry(b);
  282. return(ret);
  283. }
  284. static int acpt_write(BIO *b, const char *in, int inl)
  285. {
  286. int ret;
  287. BIO_ACCEPT *data;
  288. BIO_clear_retry_flags(b);
  289. data=(BIO_ACCEPT *)b->ptr;
  290. while (b->next_bio == NULL)
  291. {
  292. ret=acpt_state(b,data);
  293. if (ret <= 0) return(ret);
  294. }
  295. ret=BIO_write(b->next_bio,in,inl);
  296. BIO_copy_next_retry(b);
  297. return(ret);
  298. }
  299. static long acpt_ctrl(BIO *b, int cmd, long num, void *ptr)
  300. {
  301. BIO *dbio;
  302. int *ip;
  303. long ret=1;
  304. BIO_ACCEPT *data;
  305. char **pp;
  306. data=(BIO_ACCEPT *)b->ptr;
  307. switch (cmd)
  308. {
  309. case BIO_CTRL_RESET:
  310. ret=0;
  311. data->state=ACPT_S_BEFORE;
  312. acpt_close_socket(b);
  313. b->flags=0;
  314. break;
  315. case BIO_C_DO_STATE_MACHINE:
  316. /* use this one to start the connection */
  317. ret=(long)acpt_state(b,data);
  318. break;
  319. case BIO_C_SET_ACCEPT:
  320. if (ptr != NULL)
  321. {
  322. if (num == 0)
  323. {
  324. b->init=1;
  325. if (data->param_addr != NULL)
  326. OPENSSL_free(data->param_addr);
  327. data->param_addr=BUF_strdup(ptr);
  328. }
  329. else if (num == 1)
  330. {
  331. data->accept_nbio=(ptr != NULL);
  332. }
  333. else if (num == 2)
  334. {
  335. if (data->bio_chain != NULL)
  336. BIO_free(data->bio_chain);
  337. data->bio_chain=(BIO *)ptr;
  338. }
  339. }
  340. break;
  341. case BIO_C_SET_NBIO:
  342. data->nbio=(int)num;
  343. break;
  344. case BIO_C_SET_FD:
  345. b->init=1;
  346. b->num= *((int *)ptr);
  347. data->accept_sock=b->num;
  348. data->state=ACPT_S_GET_ACCEPT_SOCKET;
  349. b->shutdown=(int)num;
  350. b->init=1;
  351. break;
  352. case BIO_C_GET_FD:
  353. if (b->init)
  354. {
  355. ip=(int *)ptr;
  356. if (ip != NULL)
  357. *ip=data->accept_sock;
  358. ret=data->accept_sock;
  359. }
  360. else
  361. ret= -1;
  362. break;
  363. case BIO_C_GET_ACCEPT:
  364. if (b->init)
  365. {
  366. if (ptr != NULL)
  367. {
  368. pp=(char **)ptr;
  369. *pp=data->param_addr;
  370. }
  371. else
  372. ret= -1;
  373. }
  374. else
  375. ret= -1;
  376. break;
  377. case BIO_CTRL_GET_CLOSE:
  378. ret=b->shutdown;
  379. break;
  380. case BIO_CTRL_SET_CLOSE:
  381. b->shutdown=(int)num;
  382. break;
  383. case BIO_CTRL_PENDING:
  384. case BIO_CTRL_WPENDING:
  385. ret=0;
  386. break;
  387. case BIO_CTRL_FLUSH:
  388. break;
  389. case BIO_C_SET_BIND_MODE:
  390. data->bind_mode=(int)num;
  391. break;
  392. case BIO_C_GET_BIND_MODE:
  393. ret=(long)data->bind_mode;
  394. break;
  395. case BIO_CTRL_DUP:
  396. dbio=(BIO *)ptr;
  397. /* if (data->param_port) EAY EAY
  398. BIO_set_port(dbio,data->param_port);
  399. if (data->param_hostname)
  400. BIO_set_hostname(dbio,data->param_hostname);
  401. BIO_set_nbio(dbio,data->nbio); */
  402. break;
  403. default:
  404. ret=0;
  405. break;
  406. }
  407. return(ret);
  408. }
  409. static int acpt_puts(BIO *bp, const char *str)
  410. {
  411. int n,ret;
  412. n=strlen(str);
  413. ret=acpt_write(bp,str,n);
  414. return(ret);
  415. }
  416. BIO *BIO_new_accept(char *str)
  417. {
  418. BIO *ret;
  419. ret=BIO_new(BIO_s_accept());
  420. if (ret == NULL) return(NULL);
  421. if (BIO_set_accept_port(ret,str))
  422. return(ret);
  423. else
  424. {
  425. BIO_free(ret);
  426. return(NULL);
  427. }
  428. }
  429. #endif