bss_file.c revision 160814
168349Sobrien/* crypto/bio/bss_file.c */
2133359Sobrien/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3133359Sobrien * All rights reserved.
4133359Sobrien *
5234449Sobrien * This package is an SSL implementation written
6133359Sobrien * by Eric Young (eay@cryptsoft.com).
7133359Sobrien * The implementation was written so as to conform with Netscapes SSL.
8133359Sobrien *
9133359Sobrien * This library is free for commercial and non-commercial use as long as
10133359Sobrien * the following conditions are aheared to.  The following conditions
11133359Sobrien * apply to all code found in this distribution, be it the RC4, RSA,
12133359Sobrien * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13133359Sobrien * included with this distribution is covered by the same copyright terms
14133359Sobrien * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15234449Sobrien *
16133359Sobrien * Copyright remains Eric Young's, and as such any Copyright notices in
17133359Sobrien * the code are not to be removed.
18133359Sobrien * If this package is used in a product, Eric Young should be given attribution
19133359Sobrien * as the author of the parts of the library used.
20133359Sobrien * This can be in the form of a textual message at program startup or
21133359Sobrien * in documentation (online or textual) provided with the package.
22133359Sobrien *
23133359Sobrien * Redistribution and use in source and binary forms, with or without
24133359Sobrien * modification, are permitted provided that the following conditions
25133359Sobrien * are met:
26133359Sobrien * 1. Redistributions of source code must retain the copyright
27133359Sobrien *    notice, this list of conditions and the following disclaimer.
28133359Sobrien * 2. Redistributions in binary form must reproduce the above copyright
2968349Sobrien *    notice, this list of conditions and the following disclaimer in the
3068349Sobrien *    documentation and/or other materials provided with the distribution.
3168349Sobrien * 3. All advertising materials mentioning features or use of this software
3268349Sobrien *    must display the following acknowledgement:
3368349Sobrien *    "This product includes cryptographic software written by
3468349Sobrien *     Eric Young (eay@cryptsoft.com)"
3568349Sobrien *    The word 'cryptographic' can be left out if the rouines from the library
3668349Sobrien *    being used are not cryptographic related :-).
3768349Sobrien * 4. If you include any Windows specific code (or a derivative thereof) from
3868349Sobrien *    the apps directory (application code) you must include an acknowledgement:
3968349Sobrien *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40103373Sobrien *
41191771Sobrien * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42191771Sobrien * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43234449Sobrien * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44191771Sobrien * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45191771Sobrien * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46133359Sobrien * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4768349Sobrien * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4868349Sobrien * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4968349Sobrien * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
5068349Sobrien * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
5168349Sobrien * SUCH DAMAGE.
5268349Sobrien *
53133359Sobrien * The licence and distribution terms for any publically available version or
54133359Sobrien * derivative of this code cannot be changed.  i.e. this code cannot simply be
5568349Sobrien * copied and put under another distribution licence
56186691Sobrien * [including the GNU Public Licence.]
57175296Sobrien */
58175296Sobrien
59175296Sobrien/*
60175296Sobrien * 03-Dec-1997	rdenny@dc3.com  Fix bug preventing use of stdin/stdout
61175296Sobrien *		with binary data (e.g. asn1parse -inform DER < xxx) under
62133359Sobrien *		Windows
63133359Sobrien */
64133359Sobrien
65133359Sobrien#ifndef HEADER_BSS_FILE_C
66133359Sobrien#define HEADER_BSS_FILE_C
67133359Sobrien
68133359Sobrien#if defined(__linux) || defined(__sun) || defined(__hpux)
69191771Sobrien/* Following definition aliases fopen to fopen64 on above mentioned
70175296Sobrien * platforms. This makes it possible to open and sequentially access
71175296Sobrien * files larger than 2GB from 32-bit application. It does not allow to
72191771Sobrien * traverse them beyond 2GB with fseek/ftell, but on the other hand *no*
73133359Sobrien * 32-bit platform permits that, not with fseek/ftell. Not to mention
74175296Sobrien * that breaking 2GB limit for seeking would require surgery to *our*
75191771Sobrien * API. But sequential access suffices for practical cases when you
76191771Sobrien * can run into large files, such as fingerprinting, so we can let API
77175296Sobrien * alone. For reference, the list of 32-bit platforms which allow for
78175296Sobrien * sequential access of large files without extra "magic" comprise *BSD,
79191771Sobrien * Darwin, IRIX...
80175296Sobrien */
81175296Sobrien#ifndef _FILE_OFFSET_BITS
82175296Sobrien#define _FILE_OFFSET_BITS 64
83133359Sobrien#endif
84133359Sobrien#endif
8568349Sobrien
86234449Sobrien#include <stdio.h>
87234449Sobrien#include <errno.h>
8868349Sobrien#include "cryptlib.h"
89186691Sobrien#include "bio_lcl.h"
90186691Sobrien#include <openssl/err.h>
9168349Sobrien
92133359Sobrien#if !defined(OPENSSL_NO_STDIO)
93133359Sobrien
9468349Sobrienstatic int MS_CALLBACK file_write(BIO *h, const char *buf, int num);
95133359Sobrienstatic int MS_CALLBACK file_read(BIO *h, char *buf, int size);
9668349Sobrienstatic int MS_CALLBACK file_puts(BIO *h, const char *str);
9768349Sobrienstatic int MS_CALLBACK file_gets(BIO *h, char *str, int size);
98234449Sobrienstatic long MS_CALLBACK file_ctrl(BIO *h, int cmd, long arg1, void *arg2);
9968349Sobrienstatic int MS_CALLBACK file_new(BIO *h);
10068349Sobrienstatic int MS_CALLBACK file_free(BIO *data);
10168349Sobrienstatic BIO_METHOD methods_filep=
10268349Sobrien	{
10368349Sobrien	BIO_TYPE_FILE,
10468349Sobrien	"FILE pointer",
10568349Sobrien	file_write,
10668349Sobrien	file_read,
107234449Sobrien	file_puts,
108234449Sobrien	file_gets,
10968349Sobrien	file_ctrl,
11068349Sobrien	file_new,
11168349Sobrien	file_free,
112234449Sobrien	NULL,
113234449Sobrien	};
11468349Sobrien
11568349SobrienBIO *BIO_new_file(const char *filename, const char *mode)
11668349Sobrien	{
117234449Sobrien	BIO *ret;
118234449Sobrien	FILE *file;
119169942Sobrien
120234449Sobrien	if ((file=fopen(filename,mode)) == NULL)
12168349Sobrien		{
12268349Sobrien		SYSerr(SYS_F_FOPEN,get_last_sys_error());
12368349Sobrien		ERR_add_error_data(5,"fopen('",filename,"','",mode,"')");
12468349Sobrien		if (errno == ENOENT)
12568349Sobrien			BIOerr(BIO_F_BIO_NEW_FILE,BIO_R_NO_SUCH_FILE);
12668349Sobrien		else
12768349Sobrien			BIOerr(BIO_F_BIO_NEW_FILE,ERR_R_SYS_LIB);
12868349Sobrien		return(NULL);
12968349Sobrien		}
130234449Sobrien	if ((ret=BIO_new(BIO_s_file_internal())) == NULL)
13168349Sobrien		{
132133359Sobrien		fclose(file);
133133359Sobrien		return(NULL);
13468349Sobrien		}
13568349Sobrien
13668349Sobrien	BIO_clear_flags(ret,BIO_FLAGS_UPLINK); /* we did fopen -> we disengage UPLINK */
13768349Sobrien	BIO_set_fp(ret,file,BIO_CLOSE);
13868349Sobrien	return(ret);
13968349Sobrien	}
14068349Sobrien
14168349SobrienBIO *BIO_new_fp(FILE *stream, int close_flag)
14268349Sobrien	{
143234449Sobrien	BIO *ret;
14468349Sobrien
14568349Sobrien	if ((ret=BIO_new(BIO_s_file())) == NULL)
14668349Sobrien		return(NULL);
14768349Sobrien
14868349Sobrien	BIO_set_flags(ret,BIO_FLAGS_UPLINK); /* redundant, left for documentation puposes */
149234449Sobrien	BIO_set_fp(ret,stream,close_flag);
15068349Sobrien	return(ret);
15168349Sobrien	}
15268349Sobrien
153BIO_METHOD *BIO_s_file(void)
154	{
155	return(&methods_filep);
156	}
157
158static int MS_CALLBACK file_new(BIO *bi)
159	{
160	bi->init=0;
161	bi->num=0;
162	bi->ptr=NULL;
163	bi->flags=BIO_FLAGS_UPLINK; /* default to UPLINK */
164	return(1);
165	}
166
167static int MS_CALLBACK file_free(BIO *a)
168	{
169	if (a == NULL) return(0);
170	if (a->shutdown)
171		{
172		if ((a->init) && (a->ptr != NULL))
173			{
174			if (a->flags&BIO_FLAGS_UPLINK)
175				UP_fclose (a->ptr);
176			else
177				fclose (a->ptr);
178			a->ptr=NULL;
179			a->flags=BIO_FLAGS_UPLINK;
180			}
181		a->init=0;
182		}
183	return(1);
184	}
185
186static int MS_CALLBACK file_read(BIO *b, char *out, int outl)
187	{
188	int ret=0;
189
190	if (b->init && (out != NULL))
191		{
192		if (b->flags&BIO_FLAGS_UPLINK)
193			ret=UP_fread(out,1,(int)outl,b->ptr);
194		else
195			ret=fread(out,1,(int)outl,(FILE *)b->ptr);
196		if(ret == 0 && (b->flags&BIO_FLAGS_UPLINK)?UP_ferror((FILE *)b->ptr):ferror((FILE *)b->ptr))
197			{
198			SYSerr(SYS_F_FREAD,get_last_sys_error());
199			BIOerr(BIO_F_FILE_READ,ERR_R_SYS_LIB);
200			ret=-1;
201			}
202		}
203	return(ret);
204	}
205
206static int MS_CALLBACK file_write(BIO *b, const char *in, int inl)
207	{
208	int ret=0;
209
210	if (b->init && (in != NULL))
211		{
212		if (b->flags&BIO_FLAGS_UPLINK)
213			ret=UP_fwrite(in,(int)inl,1,b->ptr);
214		else
215			ret=fwrite(in,(int)inl,1,(FILE *)b->ptr);
216		if (ret)
217			ret=inl;
218		/* ret=fwrite(in,1,(int)inl,(FILE *)b->ptr); */
219		/* according to Tim Hudson <tjh@cryptsoft.com>, the commented
220		 * out version above can cause 'inl' write calls under
221		 * some stupid stdio implementations (VMS) */
222		}
223	return(ret);
224	}
225
226static long MS_CALLBACK file_ctrl(BIO *b, int cmd, long num, void *ptr)
227	{
228	long ret=1;
229	FILE *fp=(FILE *)b->ptr;
230	FILE **fpp;
231	char p[4];
232
233	switch (cmd)
234		{
235	case BIO_C_FILE_SEEK:
236	case BIO_CTRL_RESET:
237		if (b->flags&BIO_FLAGS_UPLINK)
238			ret=(long)UP_fseek(b->ptr,num,0);
239		else
240			ret=(long)fseek(fp,num,0);
241		break;
242	case BIO_CTRL_EOF:
243		if (b->flags&BIO_FLAGS_UPLINK)
244			ret=(long)UP_feof(fp);
245		else
246			ret=(long)feof(fp);
247		break;
248	case BIO_C_FILE_TELL:
249	case BIO_CTRL_INFO:
250		if (b->flags&BIO_FLAGS_UPLINK)
251			ret=UP_ftell(b->ptr);
252		else
253			ret=ftell(fp);
254		break;
255	case BIO_C_SET_FILE_PTR:
256		file_free(b);
257		b->shutdown=(int)num&BIO_CLOSE;
258		b->ptr=ptr;
259		b->init=1;
260#if BIO_FLAGS_UPLINK!=0
261#if defined(__MINGW32__) && defined(__MSVCRT__) && !defined(_IOB_ENTRIES)
262#define _IOB_ENTRIES 20
263#endif
264#if defined(_IOB_ENTRIES)
265		/* Safety net to catch purely internal BIO_set_fp calls */
266		if ((size_t)ptr >= (size_t)stdin &&
267		    (size_t)ptr <  (size_t)(stdin+_IOB_ENTRIES))
268			BIO_clear_flags(b,BIO_FLAGS_UPLINK);
269#endif
270#endif
271#ifdef UP_fsetmode
272		if (b->flags&BIO_FLAGS_UPLINK)
273			UP_fsetmode(b->ptr,num&BIO_FP_TEXT?'t':'b');
274		else
275#endif
276		{
277#if defined(OPENSSL_SYS_WINDOWS)
278		int fd = fileno((FILE*)ptr);
279		if (num & BIO_FP_TEXT)
280			_setmode(fd,_O_TEXT);
281		else
282			_setmode(fd,_O_BINARY);
283#elif defined(OPENSSL_SYS_NETWARE) && defined(NETWARE_CLIB)
284		int fd = fileno((FILE*)ptr);
285         /* Under CLib there are differences in file modes
286         */
287		if (num & BIO_FP_TEXT)
288			_setmode(fd,O_TEXT);
289		else
290			_setmode(fd,O_BINARY);
291#elif defined(OPENSSL_SYS_MSDOS)
292		int fd = fileno((FILE*)ptr);
293		/* Set correct text/binary mode */
294		if (num & BIO_FP_TEXT)
295			_setmode(fd,_O_TEXT);
296		/* Dangerous to set stdin/stdout to raw (unless redirected) */
297		else
298			{
299			if (fd == STDIN_FILENO || fd == STDOUT_FILENO)
300				{
301				if (isatty(fd) <= 0)
302					_setmode(fd,_O_BINARY);
303				}
304			else
305				_setmode(fd,_O_BINARY);
306			}
307#elif defined(OPENSSL_SYS_OS2)
308		int fd = fileno((FILE*)ptr);
309		if (num & BIO_FP_TEXT)
310			setmode(fd, O_TEXT);
311		else
312			setmode(fd, O_BINARY);
313#endif
314		}
315		break;
316	case BIO_C_SET_FILENAME:
317		file_free(b);
318		b->shutdown=(int)num&BIO_CLOSE;
319		if (num & BIO_FP_APPEND)
320			{
321			if (num & BIO_FP_READ)
322				BUF_strlcpy(p,"a+",sizeof p);
323			else	BUF_strlcpy(p,"a",sizeof p);
324			}
325		else if ((num & BIO_FP_READ) && (num & BIO_FP_WRITE))
326			BUF_strlcpy(p,"r+",sizeof p);
327		else if (num & BIO_FP_WRITE)
328			BUF_strlcpy(p,"w",sizeof p);
329		else if (num & BIO_FP_READ)
330			BUF_strlcpy(p,"r",sizeof p);
331		else
332			{
333			BIOerr(BIO_F_FILE_CTRL,BIO_R_BAD_FOPEN_MODE);
334			ret=0;
335			break;
336			}
337#if defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_OS2) || defined(OPENSSL_SYS_WIN32_CYGWIN)
338		if (!(num & BIO_FP_TEXT))
339			strcat(p,"b");
340		else
341			strcat(p,"t");
342#endif
343#if defined(OPENSSL_SYS_NETWARE)
344		if (!(num & BIO_FP_TEXT))
345			strcat(p,"b");
346		else
347			strcat(p,"t");
348#endif
349		fp=fopen(ptr,p);
350		if (fp == NULL)
351			{
352			SYSerr(SYS_F_FOPEN,get_last_sys_error());
353			ERR_add_error_data(5,"fopen('",ptr,"','",p,"')");
354			BIOerr(BIO_F_FILE_CTRL,ERR_R_SYS_LIB);
355			ret=0;
356			break;
357			}
358		b->ptr=fp;
359		b->init=1;
360		BIO_clear_flags(b,BIO_FLAGS_UPLINK); /* we did fopen -> we disengage UPLINK */
361		break;
362	case BIO_C_GET_FILE_PTR:
363		/* the ptr parameter is actually a FILE ** in this case. */
364		if (ptr != NULL)
365			{
366			fpp=(FILE **)ptr;
367			*fpp=(FILE *)b->ptr;
368			}
369		break;
370	case BIO_CTRL_GET_CLOSE:
371		ret=(long)b->shutdown;
372		break;
373	case BIO_CTRL_SET_CLOSE:
374		b->shutdown=(int)num;
375		break;
376	case BIO_CTRL_FLUSH:
377		if (b->flags&BIO_FLAGS_UPLINK)
378			UP_fflush(b->ptr);
379		else
380			fflush((FILE *)b->ptr);
381		break;
382	case BIO_CTRL_DUP:
383		ret=1;
384		break;
385
386	case BIO_CTRL_WPENDING:
387	case BIO_CTRL_PENDING:
388	case BIO_CTRL_PUSH:
389	case BIO_CTRL_POP:
390	default:
391		ret=0;
392		break;
393		}
394	return(ret);
395	}
396
397static int MS_CALLBACK file_gets(BIO *bp, char *buf, int size)
398	{
399	int ret=0;
400
401	buf[0]='\0';
402	if (bp->flags&BIO_FLAGS_UPLINK)
403		UP_fgets(buf,size,bp->ptr);
404	else
405		fgets(buf,size,(FILE *)bp->ptr);
406	if (buf[0] != '\0')
407		ret=strlen(buf);
408	return(ret);
409	}
410
411static int MS_CALLBACK file_puts(BIO *bp, const char *str)
412	{
413	int n,ret;
414
415	n=strlen(str);
416	ret=file_write(bp,str,n);
417	return(ret);
418	}
419
420#endif /* OPENSSL_NO_STDIO */
421
422#endif /* HEADER_BSS_FILE_C */
423
424
425