1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-18 00:49:50 +02:00
gnupg/g10/plaintext.c

318 lines
7.0 KiB
C
Raw Normal View History

1997-11-18 15:06:00 +01:00
/* plaintext.c - process an plaintext packet
* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
* This file is part of GnuPG.
1997-11-18 15:06:00 +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.
*
* 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 <errno.h>
#include <assert.h>
1997-11-18 15:06:00 +01:00
#include "util.h"
#include "memory.h"
#include "options.h"
#include "packet.h"
#include "ttyio.h"
1997-11-24 12:04:11 +01:00
#include "filter.h"
#include "main.h"
1998-08-08 21:27:00 +02:00
#include "status.h"
1998-03-09 22:44:06 +01:00
#include "i18n.h"
1997-11-18 15:06:00 +01:00
1998-07-08 11:29:43 +02:00
1997-11-18 15:06:00 +01:00
/****************
1997-11-24 12:04:11 +01:00
* Handle a plaintext packet. If MFX is not NULL, update the MDs
* Note: we should use the filter stuff here, but we have to add some
* easy mimic to set a read limit, so we calculate only the
* bytes from the plaintext.
1997-11-18 15:06:00 +01:00
*/
int
1998-07-08 11:29:43 +02:00
handle_plaintext( PKT_plaintext *pt, md_filter_context_t *mfx,
int nooutput, int clearsig )
1997-11-18 15:06:00 +01:00
{
1998-06-25 12:19:08 +02:00
char *fname = NULL;
1997-11-18 15:06:00 +01:00
FILE *fp = NULL;
int rc = 0;
int c;
1998-02-12 00:22:09 +01:00
int convert = pt->mode == 't';
1997-11-18 15:06:00 +01:00
/* create the filename as C string */
1998-06-25 12:19:08 +02:00
if( nooutput )
;
else if( opt.outfile ) {
1997-11-18 15:06:00 +01:00
fname = m_alloc( strlen( opt.outfile ) + 1);
strcpy(fname, opt.outfile );
}
1998-09-29 18:15:15 +02:00
else if( pt->namelen == 8 && !memcmp( pt->name, "_CONSOLE", 8 ) ) {
log_info(_("data not saved; use option \"--output\" to save it\n"));
nooutput = 1;
}
1997-11-18 15:06:00 +01:00
else {
fname = m_alloc( pt->namelen +1 );
memcpy( fname, pt->name, pt->namelen );
fname[pt->namelen] = 0;
}
1998-06-25 12:19:08 +02:00
if( nooutput )
;
else if( !*fname || (*fname=='-' && !fname[1])) {
1998-03-09 22:44:06 +01:00
/* no filename or "-" given; write to stdout */
1997-12-20 18:23:29 +01:00
fp = stdout;
1997-11-18 15:06:00 +01:00
}
1998-08-08 21:27:00 +02:00
else if( !overwrite_filep( fname ) ) {
rc = G10ERR_CREATE_FILE;
1997-11-18 15:06:00 +01:00
goto leave;
1998-07-14 19:10:28 +02:00
}
1997-11-18 15:06:00 +01:00
1998-06-25 12:19:08 +02:00
if( fp || nooutput )
1997-11-18 15:06:00 +01:00
;
else if( !(fp = fopen(fname,"wb")) ) {
log_error("Error creating `%s': %s\n", fname, strerror(errno) );
1998-07-14 19:10:28 +02:00
rc = G10ERR_CREATE_FILE;
1997-11-18 15:06:00 +01:00
goto leave;
}
if( pt->len ) {
assert( !clearsig );
1997-11-18 15:06:00 +01:00
for( ; pt->len; pt->len-- ) {
if( (c = iobuf_get(pt->buf)) == -1 ) {
1998-05-26 15:38:00 +02:00
log_error("Problem reading source (%u bytes remaining)\n",
(unsigned)pt->len);
1997-11-18 15:06:00 +01:00
rc = G10ERR_READ_FILE;
goto leave;
}
if( mfx->md )
md_putc(mfx->md, c );
if( convert && c == '\r' )
1998-07-08 11:29:43 +02:00
continue; /* fixme: this hack might be too simple */
1998-06-25 12:19:08 +02:00
if( fp ) {
if( putc( c, fp ) == EOF ) {
log_error("Error writing to `%s': %s\n",
1998-06-25 12:19:08 +02:00
fname, strerror(errno) );
rc = G10ERR_WRITE_FILE;
goto leave;
}
1997-11-18 15:06:00 +01:00
}
}
}
else if( !clearsig ) {
1997-11-18 15:06:00 +01:00
while( (c = iobuf_get(pt->buf)) != -1 ) {
if( mfx->md )
md_putc(mfx->md, c );
if( convert && c == '\r' )
1998-07-08 11:29:43 +02:00
continue; /* fixme: this hack might be too simple */
1998-06-25 12:19:08 +02:00
if( fp ) {
if( putc( c, fp ) == EOF ) {
log_error("Error writing to `%s': %s\n",
1998-06-25 12:19:08 +02:00
fname, strerror(errno) );
rc = G10ERR_WRITE_FILE;
goto leave;
}
1997-11-18 15:06:00 +01:00
}
}
pt->buf = NULL;
1997-11-18 15:06:00 +01:00
}
else { /* clear text signature - don't hash the last cr,lf */
int state = 0;
while( (c = iobuf_get(pt->buf)) != -1 ) {
if( fp ) {
if( putc( c, fp ) == EOF ) {
log_error("Error writing to `%s': %s\n",
fname, strerror(errno) );
rc = G10ERR_WRITE_FILE;
goto leave;
}
}
if( !mfx->md )
continue;
if( state == 2 ) {
md_putc(mfx->md, '\r' );
md_putc(mfx->md, '\n' );
state = 0;
}
if( !state ) {
if( c == '\r' )
state = 1;
else
md_putc(mfx->md, c );
}
else if( state == 1 ) {
if( c == '\n' )
state = 2;
else {
md_putc(mfx->md, '\r' );
if( c == '\r' )
state = 1;
else {
state = 0;
md_putc(mfx->md, c );
}
}
}
}
pt->buf = NULL;
}
1997-11-18 15:06:00 +01:00
if( fp && fp != stdout && fclose(fp) ) {
log_error("Error closing `%s': %s\n", fname, strerror(errno) );
1997-11-18 15:06:00 +01:00
fp = NULL;
rc = G10ERR_WRITE_FILE;
goto leave;
}
fp = NULL;
leave:
if( fp && fp != stdout )
fclose(fp);
m_free(fname);
return rc;
}
1997-12-03 11:20:03 +01:00
/****************
* Ask for the detached datafile and calculate the digest from it.
* INFILE is the name of the input file.
1997-12-03 11:20:03 +01:00
*/
int
ask_for_detached_datafile( md_filter_context_t *mfx, const char *inname )
1997-12-03 11:20:03 +01:00
{
char *answer = NULL;
IOBUF fp;
1997-12-03 11:20:03 +01:00
int rc = 0;
int c;
fp = open_sigfile( inname ); /* open default file */
1998-02-12 00:22:09 +01:00
if( !fp && !opt.batch ) {
int any=0;
tty_printf("Detached signature.\n");
do {
m_free(answer);
answer = cpr_get("detached_signature.filename",
_("Please enter name of data file: "));
1998-08-08 21:27:00 +02:00
cpr_kill_prompt();
if( any && !*answer ) {
rc = G10ERR_READ_FILE;
goto leave;
}
fp = iobuf_open(answer);
if( !fp && errno == ENOENT ) {
tty_printf("No such file, try again or hit enter to quit.\n");
any++;
}
else if( !fp ) {
log_error("can't open `%s': %s\n", answer, strerror(errno) );
rc = G10ERR_READ_FILE;
goto leave;
}
} while( !fp );
1997-12-03 11:20:03 +01:00
}
1998-02-12 00:22:09 +01:00
if( !fp ) {
1998-02-26 17:56:31 +01:00
if( opt.verbose )
1998-11-10 13:59:59 +01:00
log_info(_("reading stdin ...\n"));
1998-02-12 00:22:09 +01:00
while( (c = getchar()) != EOF ) {
if( mfx->md )
md_putc(mfx->md, c );
}
}
else {
while( (c = iobuf_get(fp)) != -1 ) {
if( mfx->md )
md_putc(mfx->md, c );
}
iobuf_close(fp);
1997-12-03 11:20:03 +01:00
}
leave:
m_free(answer);
return rc;
}
1998-07-14 19:10:28 +02:00
static void
do_hash( MD_HANDLE md, MD_HANDLE md2, IOBUF fp, int textmode )
1998-07-14 19:10:28 +02:00
{
text_filter_context_t tfx;
int c;
if( textmode ) {
memset( &tfx, 0, sizeof tfx);
iobuf_push_filter( fp, text_filter, &tfx );
}
if( md2 ) { /* work around a strange behaviour in pgp2 */
while( (c = iobuf_get(fp)) != -1 ) {
if( c == '\n' )
md_putc(md2, '\r' );
md_putc(md, c );
md_putc(md2, c );
}
}
else {
while( (c = iobuf_get(fp)) != -1 )
md_putc(md, c );
}
1998-07-14 19:10:28 +02:00
}
1998-03-09 22:44:06 +01:00
/****************
* Hash the given files and append the hash to hash context md.
* If FILES is NULL, hash stdin.
*/
int
hash_datafiles( MD_HANDLE md, MD_HANDLE md2, STRLIST files,
1998-07-14 19:10:28 +02:00
const char *sigfilename, int textmode )
1998-03-09 22:44:06 +01:00
{
IOBUF fp;
STRLIST sl=NULL;
1998-07-14 19:10:28 +02:00
if( !files ) {
/* check whether we can open the signed material */
1998-07-14 19:10:28 +02:00
fp = open_sigfile( sigfilename );
if( fp ) {
do_hash( md, md2, fp, textmode );
1998-07-14 19:10:28 +02:00
iobuf_close(fp);
return 0;
}
/* no we can't (no sigfile) - read signed stuff from stdin */
1998-03-09 22:44:06 +01:00
add_to_strlist( &sl, "-");
1998-07-14 19:10:28 +02:00
}
1998-03-09 22:44:06 +01:00
else
sl = files;
for( ; sl; sl = sl->next ) {
fp = iobuf_open( sl->d );
if( !fp ) {
log_error(_("can't open signed data `%s'\n"),
1998-03-09 22:44:06 +01:00
print_fname_stdin(sl->d));
if( !files )
free_strlist(sl);
return G10ERR_OPEN_FILE;
}
do_hash( md, md2, fp, textmode );
1998-03-09 22:44:06 +01:00
iobuf_close(fp);
}
if( !files )
free_strlist(sl);
return 0;
}