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

其他游戏

开发平台:

Visual C++

  1. /* crypto/bio/bss_file.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. /*
  59.  * 03-Dec-1997 rdenny@dc3.com  Fix bug preventing use of stdin/stdout
  60.  * with binary data (e.g. asn1parse -inform DER < xxx) under
  61.  * Windows
  62.  */
  63. #ifndef HEADER_BSS_FILE_C
  64. #define HEADER_BSS_FILE_C
  65. #if defined(__linux) || defined(__sun) || defined(__hpux)
  66. /* Following definition aliases fopen to fopen64 on above mentioned
  67.  * platforms. This makes it possible to open and sequentially access
  68.  * files larger than 2GB from 32-bit application. It does not allow to
  69.  * traverse them beyond 2GB with fseek/ftell, but on the other hand *no*
  70.  * 32-bit platform permits that, not with fseek/ftell. Not to mention
  71.  * that breaking 2GB limit for seeking would require surgery to *our*
  72.  * API. But sequential access suffices for practical cases when you
  73.  * can run into large files, such as fingerprinting, so we can let API
  74.  * alone. For reference, the list of 32-bit platforms which allow for
  75.  * sequential access of large files without extra "magic" comprise *BSD,
  76.  * Darwin, IRIX...
  77.  */
  78. #ifndef _FILE_OFFSET_BITS
  79. #define _FILE_OFFSET_BITS 64
  80. #endif
  81. #endif
  82. #include <stdio.h>
  83. #include <errno.h>
  84. #include "cryptlib.h"
  85. #include "bio_lcl.h"
  86. #include <openssl/err.h>
  87. #if !defined(OPENSSL_NO_STDIO)
  88. static int MS_CALLBACK file_write(BIO *h, const char *buf, int num);
  89. static int MS_CALLBACK file_read(BIO *h, char *buf, int size);
  90. static int MS_CALLBACK file_puts(BIO *h, const char *str);
  91. static int MS_CALLBACK file_gets(BIO *h, char *str, int size);
  92. static long MS_CALLBACK file_ctrl(BIO *h, int cmd, long arg1, void *arg2);
  93. static int MS_CALLBACK file_new(BIO *h);
  94. static int MS_CALLBACK file_free(BIO *data);
  95. static BIO_METHOD methods_filep=
  96. {
  97. BIO_TYPE_FILE,
  98. "FILE pointer",
  99. file_write,
  100. file_read,
  101. file_puts,
  102. file_gets,
  103. file_ctrl,
  104. file_new,
  105. file_free,
  106. NULL,
  107. };
  108. BIO *BIO_new_file(const char *filename, const char *mode)
  109. {
  110. BIO *ret;
  111. FILE *file;
  112. if ((file=fopen(filename,mode)) == NULL)
  113. {
  114. SYSerr(SYS_F_FOPEN,get_last_sys_error());
  115. ERR_add_error_data(5,"fopen('",filename,"','",mode,"')");
  116. if (errno == ENOENT)
  117. BIOerr(BIO_F_BIO_NEW_FILE,BIO_R_NO_SUCH_FILE);
  118. else
  119. BIOerr(BIO_F_BIO_NEW_FILE,ERR_R_SYS_LIB);
  120. return(NULL);
  121. }
  122. if ((ret=BIO_new(BIO_s_file_internal())) == NULL)
  123. {
  124. fclose(file);
  125. return(NULL);
  126. }
  127. BIO_clear_flags(ret,BIO_FLAGS_UPLINK); /* we did fopen -> we disengage UPLINK */
  128. BIO_set_fp(ret,file,BIO_CLOSE);
  129. return(ret);
  130. }
  131. BIO *BIO_new_fp(FILE *stream, int close_flag)
  132. {
  133. BIO *ret;
  134. if ((ret=BIO_new(BIO_s_file())) == NULL)
  135. return(NULL);
  136. BIO_set_flags(ret,BIO_FLAGS_UPLINK); /* redundant, left for documentation puposes */
  137. BIO_set_fp(ret,stream,close_flag);
  138. return(ret);
  139. }
  140. BIO_METHOD *BIO_s_file(void)
  141. {
  142. return(&methods_filep);
  143. }
  144. static int MS_CALLBACK file_new(BIO *bi)
  145. {
  146. bi->init=0;
  147. bi->num=0;
  148. bi->ptr=NULL;
  149. bi->flags=BIO_FLAGS_UPLINK; /* default to UPLINK */
  150. return(1);
  151. }
  152. static int MS_CALLBACK file_free(BIO *a)
  153. {
  154. if (a == NULL) return(0);
  155. if (a->shutdown)
  156. {
  157. if ((a->init) && (a->ptr != NULL))
  158. {
  159. if (a->flags&BIO_FLAGS_UPLINK)
  160. UP_fclose (a->ptr);
  161. else
  162. fclose (a->ptr);
  163. a->ptr=NULL;
  164. a->flags=BIO_FLAGS_UPLINK;
  165. }
  166. a->init=0;
  167. }
  168. return(1);
  169. }
  170. static int MS_CALLBACK file_read(BIO *b, char *out, int outl)
  171. {
  172. int ret=0;
  173. if (b->init && (out != NULL))
  174. {
  175. if (b->flags&BIO_FLAGS_UPLINK)
  176. ret=UP_fread(out,1,(int)outl,b->ptr);
  177. else
  178. ret=fread(out,1,(int)outl,(FILE *)b->ptr);
  179. if(ret == 0 && (b->flags&BIO_FLAGS_UPLINK)?UP_ferror((FILE *)b->ptr):ferror((FILE *)b->ptr))
  180. {
  181. SYSerr(SYS_F_FREAD,get_last_sys_error());
  182. BIOerr(BIO_F_FILE_READ,ERR_R_SYS_LIB);
  183. ret=-1;
  184. }
  185. }
  186. return(ret);
  187. }
  188. static int MS_CALLBACK file_write(BIO *b, const char *in, int inl)
  189. {
  190. int ret=0;
  191. if (b->init && (in != NULL))
  192. {
  193. if (b->flags&BIO_FLAGS_UPLINK)
  194. ret=UP_fwrite(in,(int)inl,1,b->ptr);
  195. else
  196. ret=fwrite(in,(int)inl,1,(FILE *)b->ptr);
  197. if (ret)
  198. ret=inl;
  199. /* ret=fwrite(in,1,(int)inl,(FILE *)b->ptr); */
  200. /* according to Tim Hudson <tjh@cryptsoft.com>, the commented
  201.  * out version above can cause 'inl' write calls under
  202.  * some stupid stdio implementations (VMS) */
  203. }
  204. return(ret);
  205. }
  206. static long MS_CALLBACK file_ctrl(BIO *b, int cmd, long num, void *ptr)
  207. {
  208. long ret=1;
  209. FILE *fp=(FILE *)b->ptr;
  210. FILE **fpp;
  211. char p[4];
  212. switch (cmd)
  213. {
  214. case BIO_C_FILE_SEEK:
  215. case BIO_CTRL_RESET:
  216. if (b->flags&BIO_FLAGS_UPLINK)
  217. ret=(long)UP_fseek(b->ptr,num,0);
  218. else
  219. ret=(long)fseek(fp,num,0);
  220. break;
  221. case BIO_CTRL_EOF:
  222. if (b->flags&BIO_FLAGS_UPLINK)
  223. ret=(long)UP_feof(fp);
  224. else
  225. ret=(long)feof(fp);
  226. break;
  227. case BIO_C_FILE_TELL:
  228. case BIO_CTRL_INFO:
  229. if (b->flags&BIO_FLAGS_UPLINK)
  230. ret=UP_ftell(b->ptr);
  231. else
  232. ret=ftell(fp);
  233. break;
  234. case BIO_C_SET_FILE_PTR:
  235. file_free(b);
  236. b->shutdown=(int)num&BIO_CLOSE;
  237. b->ptr=ptr;
  238. b->init=1;
  239. #if BIO_FLAGS_UPLINK!=0
  240. #if defined(__MINGW32__) && defined(__MSVCRT__) && !defined(_IOB_ENTRIES)
  241. #define _IOB_ENTRIES 20
  242. #endif
  243. #if defined(_IOB_ENTRIES)
  244. /* Safety net to catch purely internal BIO_set_fp calls */
  245. if ((size_t)ptr >= (size_t)stdin &&
  246.     (size_t)ptr <  (size_t)(stdin+_IOB_ENTRIES))
  247. BIO_clear_flags(b,BIO_FLAGS_UPLINK);
  248. #endif
  249. #endif
  250. #ifdef UP_fsetmode
  251. if (b->flags&BIO_FLAGS_UPLINK)
  252. UP_fsetmode(b->ptr,num&BIO_FP_TEXT?'t':'b');
  253. else
  254. #endif
  255. {
  256. #if defined(OPENSSL_SYS_WINDOWS)
  257. int fd = fileno((FILE*)ptr);
  258. if (num & BIO_FP_TEXT)
  259. _setmode(fd,_O_TEXT);
  260. else
  261. _setmode(fd,_O_BINARY);
  262. #elif defined(OPENSSL_SYS_NETWARE) && defined(NETWARE_CLIB)
  263. int fd = fileno((FILE*)ptr);
  264.          /* Under CLib there are differences in file modes
  265.          */
  266. if (num & BIO_FP_TEXT)
  267. _setmode(fd,O_TEXT);
  268. else
  269. _setmode(fd,O_BINARY);
  270. #elif defined(OPENSSL_SYS_MSDOS)
  271. int fd = fileno((FILE*)ptr);
  272. /* Set correct text/binary mode */
  273. if (num & BIO_FP_TEXT)
  274. _setmode(fd,_O_TEXT);
  275. /* Dangerous to set stdin/stdout to raw (unless redirected) */
  276. else
  277. {
  278. if (fd == STDIN_FILENO || fd == STDOUT_FILENO)
  279. {
  280. if (isatty(fd) <= 0)
  281. _setmode(fd,_O_BINARY);
  282. }
  283. else
  284. _setmode(fd,_O_BINARY);
  285. }
  286. #elif defined(OPENSSL_SYS_OS2)
  287. int fd = fileno((FILE*)ptr);
  288. if (num & BIO_FP_TEXT)
  289. setmode(fd, O_TEXT);
  290. else
  291. setmode(fd, O_BINARY);
  292. #endif
  293. }
  294. break;
  295. case BIO_C_SET_FILENAME:
  296. file_free(b);
  297. b->shutdown=(int)num&BIO_CLOSE;
  298. if (num & BIO_FP_APPEND)
  299. {
  300. if (num & BIO_FP_READ)
  301. BUF_strlcpy(p,"a+",sizeof p);
  302. else BUF_strlcpy(p,"a",sizeof p);
  303. }
  304. else if ((num & BIO_FP_READ) && (num & BIO_FP_WRITE))
  305. BUF_strlcpy(p,"r+",sizeof p);
  306. else if (num & BIO_FP_WRITE)
  307. BUF_strlcpy(p,"w",sizeof p);
  308. else if (num & BIO_FP_READ)
  309. BUF_strlcpy(p,"r",sizeof p);
  310. else
  311. {
  312. BIOerr(BIO_F_FILE_CTRL,BIO_R_BAD_FOPEN_MODE);
  313. ret=0;
  314. break;
  315. }
  316. #if defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_OS2) || defined(OPENSSL_SYS_WIN32_CYGWIN)
  317. if (!(num & BIO_FP_TEXT))
  318. strcat(p,"b");
  319. else
  320. strcat(p,"t");
  321. #endif
  322. #if defined(OPENSSL_SYS_NETWARE)
  323. if (!(num & BIO_FP_TEXT))
  324. strcat(p,"b");
  325. else
  326. strcat(p,"t");
  327. #endif
  328. fp=fopen(ptr,p);
  329. if (fp == NULL)
  330. {
  331. SYSerr(SYS_F_FOPEN,get_last_sys_error());
  332. ERR_add_error_data(5,"fopen('",ptr,"','",p,"')");
  333. BIOerr(BIO_F_FILE_CTRL,ERR_R_SYS_LIB);
  334. ret=0;
  335. break;
  336. }
  337. b->ptr=fp;
  338. b->init=1;
  339. BIO_clear_flags(b,BIO_FLAGS_UPLINK); /* we did fopen -> we disengage UPLINK */
  340. break;
  341. case BIO_C_GET_FILE_PTR:
  342. /* the ptr parameter is actually a FILE ** in this case. */
  343. if (ptr != NULL)
  344. {
  345. fpp=(FILE **)ptr;
  346. *fpp=(FILE *)b->ptr;
  347. }
  348. break;
  349. case BIO_CTRL_GET_CLOSE:
  350. ret=(long)b->shutdown;
  351. break;
  352. case BIO_CTRL_SET_CLOSE:
  353. b->shutdown=(int)num;
  354. break;
  355. case BIO_CTRL_FLUSH:
  356. if (b->flags&BIO_FLAGS_UPLINK)
  357. UP_fflush(b->ptr);
  358. else
  359. fflush((FILE *)b->ptr);
  360. break;
  361. case BIO_CTRL_DUP:
  362. ret=1;
  363. break;
  364. case BIO_CTRL_WPENDING:
  365. case BIO_CTRL_PENDING:
  366. case BIO_CTRL_PUSH:
  367. case BIO_CTRL_POP:
  368. default:
  369. ret=0;
  370. break;
  371. }
  372. return(ret);
  373. }
  374. static int MS_CALLBACK file_gets(BIO *bp, char *buf, int size)
  375. {
  376. int ret=0;
  377. buf[0]='';
  378. if (bp->flags&BIO_FLAGS_UPLINK)
  379. UP_fgets(buf,size,bp->ptr);
  380. else
  381. fgets(buf,size,(FILE *)bp->ptr);
  382. if (buf[0] != '')
  383. ret=strlen(buf);
  384. return(ret);
  385. }
  386. static int MS_CALLBACK file_puts(BIO *bp, const char *str)
  387. {
  388. int n,ret;
  389. n=strlen(str);
  390. ret=file_write(bp,str,n);
  391. return(ret);
  392. }
  393. #endif /* OPENSSL_NO_STDIO */
  394. #endif /* HEADER_BSS_FILE_C */