1997-12-31 13:32:54 +01:00
|
|
|
/* comment.c - write comment stuff
|
1998-02-24 19:50:46 +01:00
|
|
|
* Copyright (C) 1998 Free Software Foundation, Inc.
|
1997-12-31 13:32:54 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* This file is part of GnuPG.
|
1997-12-31 13:32:54 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
1997-12-31 13:32:54 +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-12-23 13:41:40 +01:00
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
1997-12-31 13:32:54 +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>
|
|
|
|
|
|
|
|
#include "options.h"
|
|
|
|
#include "packet.h"
|
|
|
|
#include "errors.h"
|
|
|
|
#include "iobuf.h"
|
2000-01-24 12:55:49 +01:00
|
|
|
#include <gcrypt.h>
|
1997-12-31 13:32:54 +01:00
|
|
|
#include "util.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "keydb.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
write_comment( IOBUF out, const char *s )
|
|
|
|
{
|
|
|
|
PACKET pkt;
|
|
|
|
size_t n = strlen(s);
|
|
|
|
int rc=0;
|
|
|
|
|
|
|
|
pkt.pkttype = PKT_COMMENT;
|
1998-08-11 19:29:34 +02:00
|
|
|
if( *s != '#' ) {
|
2000-01-24 12:55:49 +01:00
|
|
|
pkt.pkt.comment = gcry_xmalloc( sizeof *pkt.pkt.comment + n );
|
1998-08-11 19:29:34 +02:00
|
|
|
pkt.pkt.comment->len = n+1;
|
|
|
|
*pkt.pkt.comment->data = '#';
|
|
|
|
strcpy(pkt.pkt.comment->data+1, s);
|
|
|
|
}
|
|
|
|
else {
|
2000-01-24 12:55:49 +01:00
|
|
|
pkt.pkt.comment = gcry_xmalloc( sizeof *pkt.pkt.comment + n - 1 );
|
1998-08-11 19:29:34 +02:00
|
|
|
pkt.pkt.comment->len = n;
|
|
|
|
strcpy(pkt.pkt.comment->data, s);
|
|
|
|
}
|
1997-12-31 13:32:54 +01:00
|
|
|
if( (rc = build_packet( out, &pkt )) )
|
2000-01-27 17:50:45 +01:00
|
|
|
log_error("build_packet(comment) failed: %s\n", gpg_errstr(rc) );
|
1997-12-31 13:32:54 +01:00
|
|
|
free_packet( &pkt );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
KBNODE
|
|
|
|
make_comment_node( const char *s )
|
|
|
|
{
|
1998-01-24 17:32:27 +01:00
|
|
|
PACKET *pkt;
|
1997-12-31 13:32:54 +01:00
|
|
|
size_t n = strlen(s);
|
|
|
|
|
2000-01-24 12:55:49 +01:00
|
|
|
pkt = gcry_xcalloc( 1, sizeof *pkt );
|
1997-12-31 13:32:54 +01:00
|
|
|
pkt->pkttype = PKT_COMMENT;
|
2000-01-24 12:55:49 +01:00
|
|
|
pkt->pkt.comment = gcry_xmalloc( sizeof *pkt->pkt.comment + n - 1 );
|
1997-12-31 13:32:54 +01:00
|
|
|
pkt->pkt.comment->len = n;
|
|
|
|
strcpy(pkt->pkt.comment->data, s);
|
|
|
|
return new_kbnode( pkt );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-02-09 18:43:42 +01:00
|
|
|
KBNODE
|
|
|
|
make_mpi_comment_node( const char *s, MPI a )
|
|
|
|
{
|
|
|
|
PACKET *pkt;
|
2000-01-24 12:55:49 +01:00
|
|
|
char *buf, *pp;
|
|
|
|
unsigned n1;
|
1998-02-09 18:43:42 +01:00
|
|
|
size_t n = strlen(s);
|
|
|
|
|
2000-01-24 12:55:49 +01:00
|
|
|
if( gcry_mpi_aprint( GCRYMPI_FMT_PGP, &buf, &n1, a ) )
|
|
|
|
BUG();
|
|
|
|
pkt = gcry_xcalloc( 1, sizeof *pkt );
|
1998-02-09 18:43:42 +01:00
|
|
|
pkt->pkttype = PKT_COMMENT;
|
2000-01-24 12:55:49 +01:00
|
|
|
pkt->pkt.comment = gcry_xmalloc( sizeof *pkt->pkt.comment + n + 1 + n1 );
|
1998-02-09 18:43:42 +01:00
|
|
|
pkt->pkt.comment->len = n+1+2+n1;
|
|
|
|
pp = pkt->pkt.comment->data;
|
|
|
|
memcpy(pp, s, n+1);
|
2000-01-24 12:55:49 +01:00
|
|
|
memcpy(pp+n+1, buf, n1 );
|
|
|
|
gcry_free(buf);
|
1998-02-09 18:43:42 +01:00
|
|
|
return new_kbnode( pkt );
|
|
|
|
}
|
|
|
|
|
|
|
|
|