1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-11 23:59:50 +02:00
gnupg/g10/openfile.c

134 lines
3.3 KiB
C
Raw Normal View History

1997-11-24 12:04:11 +01:00
/* openfile.c
1998-02-24 19:50:46 +01:00
* Copyright (C) 1998 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
1998-02-24 19:50:46 +01:00
* This file is part of GNUPG.
1997-11-18 15:06:00 +01:00
*
1998-02-24 19:50:46 +01:00
* GNUPG is free software; you can redistribute it and/or modify
1997-11-18 15:06:00 +01:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
1998-02-24 19:50:46 +01:00
* GNUPG is distributed in the hope that it will be useful,
1997-11-18 15:06:00 +01:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <errno.h>
1997-11-18 15:06:00 +01:00
#include <unistd.h>
#include "util.h"
#include "memory.h"
#include "ttyio.h"
#include "options.h"
#include "main.h"
1998-08-08 21:27:00 +02:00
#include "status.h"
#include "i18n.h"
1997-11-18 15:06:00 +01:00
/****************
1998-04-14 19:51:16 +02:00
* Check whether FNAME exists and ask if it's okay to overwrite an
1997-11-18 15:06:00 +01:00
* existing one.
1998-08-08 21:27:00 +02:00
* Returns: True: it's okay to overwrite or the file does not exist
* False: Do not overwrite
1997-11-18 15:06:00 +01:00
*/
int
overwrite_filep( const char *fname )
{
1998-03-09 22:44:06 +01:00
if( !fname || (*fname == '-' && !fname[1]) )
1998-08-08 21:27:00 +02:00
return 1; /* writing to stdout is always okay */
1997-11-18 15:06:00 +01:00
1998-08-08 21:27:00 +02:00
if( access( fname, F_OK ) )
return 1; /* does not exist */
1997-11-18 15:06:00 +01:00
1998-08-08 21:27:00 +02:00
/* fixme: add some backup stuff in case of overwrite */
if( opt.answer_yes )
return 1;
if( opt.answer_no || opt.batch )
return 0; /* do not overwrite */
tty_printf(_("File '%s' exists. "), fname);
if( cpr_get_answer_is_yes(N_("openfile.overwrite.okay"),
_("Overwrite (y/N)? ")) )
return 1;
1997-11-18 15:06:00 +01:00
return 0;
}
1997-11-24 12:04:11 +01:00
/****************
* Make an output filename for the inputfile INAME.
* Returns an IOBUF
1998-02-24 19:50:46 +01:00
* Mode 0 = use ".gpg"
* 1 = use ".asc"
* 2 = use ".sig"
1997-11-24 12:04:11 +01:00
*/
IOBUF
open_outfile( const char *iname, int mode )
1997-11-24 12:04:11 +01:00
{
IOBUF a = NULL;
1998-03-09 22:44:06 +01:00
if( (!iname || (*iname=='-' && !iname[1])) && !opt.outfile ) {
1997-11-24 12:04:11 +01:00
if( !(a = iobuf_create(NULL)) )
log_error("can't open [stdout]: %s\n", strerror(errno) );
else if( opt.verbose )
log_info("writing to stdout\n");
}
else {
char *buf=NULL;
const char *name;
if( opt.outfile )
name = opt.outfile;
else {
buf = m_alloc(strlen(iname)+4+1);
strcpy(stpcpy(buf,iname), mode==1 ? ".asc" :
1998-02-24 19:50:46 +01:00
mode==2 ? ".sig" : ".gpg");
1997-11-24 12:04:11 +01:00
name = buf;
}
1998-08-08 21:27:00 +02:00
if( overwrite_filep( name ) ) {
1997-11-24 12:04:11 +01:00
if( !(a = iobuf_create( name )) )
log_error("can't create %s: %s\n", name, strerror(errno) );
else if( opt.verbose )
log_info("writing to '%s'\n", name );
}
m_free(buf);
}
return a;
}
/****************
1998-02-26 17:56:31 +01:00
* Try to open a file without the extension ".sig" or ".asc"
* Return NULL if such a file is not available.
*/
IOBUF
open_sigfile( const char *iname )
{
IOBUF a = NULL;
size_t len;
1998-03-09 22:44:06 +01:00
if( iname && !(*iname == '-' && !iname[1]) ) {
len = strlen(iname);
1998-02-26 17:56:31 +01:00
if( len > 4 && ( !strcmp(iname + len - 4, ".sig")
|| !strcmp(iname + len - 4, ".asc")) ) {
char *buf;
buf = m_strdup(iname);
buf[len-4] = 0 ;
a = iobuf_open( buf );
1998-07-14 19:10:28 +02:00
if( opt.verbose )
log_info("assuming signed data in '%s'\n", buf );
m_free(buf);
}
}
return a;
}