1998-04-20 17:58:36 +02:00
|
|
|
/* dearmor.c - Armor utility
|
2006-04-19 13:26:11 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
1998-04-20 17:58:36 +02:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* This file is part of GnuPG.
|
1998-04-20 17:58:36 +02:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
1998-04-20 17:58:36 +02:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1998-04-20 17:58:36 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
1998-04-20 17:58:36 +02: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
|
2007-07-04 21:49:40 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
1998-04-20 17:58:36 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2003-06-18 21:56:13 +02:00
|
|
|
#include "gpg.h"
|
2007-11-19 17:03:50 +01:00
|
|
|
#include "status.h"
|
1998-04-20 17:58:36 +02:00
|
|
|
#include "iobuf.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "filter.h"
|
|
|
|
#include "packet.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "main.h"
|
2006-04-19 13:26:11 +02:00
|
|
|
#include "i18n.h"
|
1998-04-20 17:58:36 +02:00
|
|
|
|
|
|
|
/****************
|
|
|
|
* Take an armor file and write it out without armor
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
dearmor_file( const char *fname )
|
|
|
|
{
|
2006-12-06 11:16:50 +01:00
|
|
|
armor_filter_context_t *afx;
|
2006-04-19 13:26:11 +02:00
|
|
|
IOBUF inp = NULL, out = NULL;
|
1998-04-20 17:58:36 +02:00
|
|
|
int rc = 0;
|
|
|
|
int c;
|
|
|
|
|
2006-12-06 11:16:50 +01:00
|
|
|
afx = new_armor_context ();
|
1998-04-20 17:58:36 +02:00
|
|
|
|
|
|
|
/* prepare iobufs */
|
2006-04-19 13:26:11 +02:00
|
|
|
inp = iobuf_open(fname);
|
|
|
|
if (inp && is_secured_file (iobuf_get_fd (inp)))
|
|
|
|
{
|
|
|
|
iobuf_close (inp);
|
|
|
|
inp = NULL;
|
2010-04-01 15:24:55 +02:00
|
|
|
gpg_err_set_errno (EPERM);
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
|
|
|
if (!inp) {
|
2006-09-14 18:50:33 +02:00
|
|
|
rc = gpg_error_from_syserror ();
|
2012-06-05 19:29:22 +02:00
|
|
|
log_error(_("can't open '%s': %s\n"), fname? fname: "[stdin]",
|
1998-04-20 17:58:36 +02:00
|
|
|
strerror(errno) );
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
2006-12-06 11:16:50 +01:00
|
|
|
push_armor_filter ( afx, inp );
|
1998-04-20 17:58:36 +02:00
|
|
|
|
2014-06-25 20:25:28 +02:00
|
|
|
if( (rc = open_outfile (-1, fname, 0, 0, &out)) )
|
1998-04-20 17:58:36 +02:00
|
|
|
goto leave;
|
1998-08-11 19:29:34 +02:00
|
|
|
|
1998-04-20 17:58:36 +02:00
|
|
|
while( (c = iobuf_get(inp)) != -1 )
|
|
|
|
iobuf_put( out, c );
|
|
|
|
|
|
|
|
leave:
|
|
|
|
if( rc )
|
|
|
|
iobuf_cancel(out);
|
|
|
|
else
|
|
|
|
iobuf_close(out);
|
|
|
|
iobuf_close(inp);
|
2006-12-06 11:16:50 +01:00
|
|
|
release_armor_context (afx);
|
1998-04-20 17:58:36 +02:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/****************
|
|
|
|
* Take file and write it out with armor
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
enarmor_file( const char *fname )
|
|
|
|
{
|
2006-12-06 11:16:50 +01:00
|
|
|
armor_filter_context_t *afx;
|
2006-04-19 13:26:11 +02:00
|
|
|
IOBUF inp = NULL, out = NULL;
|
1998-04-20 17:58:36 +02:00
|
|
|
int rc = 0;
|
|
|
|
int c;
|
|
|
|
|
2006-12-06 11:16:50 +01:00
|
|
|
afx = new_armor_context ();
|
1998-04-20 17:58:36 +02:00
|
|
|
|
|
|
|
/* prepare iobufs */
|
2006-04-19 13:26:11 +02:00
|
|
|
inp = iobuf_open(fname);
|
|
|
|
if (inp && is_secured_file (iobuf_get_fd (inp)))
|
|
|
|
{
|
|
|
|
iobuf_close (inp);
|
|
|
|
inp = NULL;
|
2010-04-01 15:24:55 +02:00
|
|
|
gpg_err_set_errno (EPERM);
|
2006-04-19 13:26:11 +02:00
|
|
|
}
|
|
|
|
if (!inp) {
|
2006-09-14 18:50:33 +02:00
|
|
|
rc = gpg_error_from_syserror ();
|
2012-06-05 19:29:22 +02:00
|
|
|
log_error(_("can't open '%s': %s\n"), fname? fname: "[stdin]",
|
2006-04-19 13:26:11 +02:00
|
|
|
strerror(errno) );
|
1998-04-20 17:58:36 +02:00
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-25 20:25:28 +02:00
|
|
|
if( (rc = open_outfile (-1, fname, 1, 0, &out )) )
|
1998-04-20 17:58:36 +02:00
|
|
|
goto leave;
|
|
|
|
|
2006-12-06 11:16:50 +01:00
|
|
|
afx->what = 4;
|
|
|
|
afx->hdrlines = "Comment: Use \"gpg --dearmor\" for unpacking\n";
|
|
|
|
push_armor_filter ( afx, out );
|
1998-04-20 17:58:36 +02:00
|
|
|
|
|
|
|
while( (c = iobuf_get(inp)) != -1 )
|
|
|
|
iobuf_put( out, c );
|
|
|
|
|
|
|
|
|
|
|
|
leave:
|
|
|
|
if( rc )
|
|
|
|
iobuf_cancel(out);
|
|
|
|
else
|
|
|
|
iobuf_close(out);
|
|
|
|
iobuf_close(inp);
|
2006-12-06 11:16:50 +01:00
|
|
|
release_armor_context (afx);
|
1998-04-20 17:58:36 +02:00
|
|
|
return rc;
|
|
|
|
}
|