1997-12-31 13:32:54 +01:00
|
|
|
/* comment.c - write comment stuff
|
2003-06-18 21:56:13 +02:00
|
|
|
* Copyright (C) 1998, 2003 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
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1997-12-31 13:32:54 +01: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,
|
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
|
2007-07-04 21:49:40 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
1997-12-31 13:32:54 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "options.h"
|
|
|
|
#include "packet.h"
|
2007-11-19 17:03:50 +01:00
|
|
|
#include "status.h"
|
1997-12-31 13:32:54 +01:00
|
|
|
#include "iobuf.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "keydb.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2003-06-18 21:56:13 +02:00
|
|
|
write_comment( iobuf_t out, const char *s )
|
1997-12-31 13:32:54 +01:00
|
|
|
{
|
|
|
|
PACKET pkt;
|
|
|
|
size_t n = strlen(s);
|
|
|
|
int rc=0;
|
|
|
|
|
|
|
|
pkt.pkttype = PKT_COMMENT;
|
1998-08-11 19:29:34 +02:00
|
|
|
if( *s != '#' ) {
|
2003-06-18 21:56:13 +02:00
|
|
|
pkt.pkt.comment = 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 {
|
2003-06-18 21:56:13 +02:00
|
|
|
pkt.pkt.comment = 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 )) )
|
2003-06-18 21:56:13 +02:00
|
|
|
log_error("build_packet(comment) failed: %s\n", gpg_strerror (rc) );
|
1997-12-31 13:32:54 +01:00
|
|
|
free_packet( &pkt );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
KBNODE
|
2003-07-29 10:53:19 +02:00
|
|
|
make_comment_node_from_buffer (const char *s, size_t n)
|
1997-12-31 13:32:54 +01:00
|
|
|
{
|
1998-01-24 17:32:27 +01:00
|
|
|
PACKET *pkt;
|
1997-12-31 13:32:54 +01:00
|
|
|
|
2003-07-29 10:53:19 +02:00
|
|
|
pkt = gcry_xcalloc( 1, sizeof *pkt );
|
1997-12-31 13:32:54 +01:00
|
|
|
pkt->pkttype = PKT_COMMENT;
|
2003-07-29 10:53:19 +02: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 );
|
|
|
|
}
|
|
|
|
|
2003-07-29 10:53:19 +02:00
|
|
|
KBNODE
|
|
|
|
make_comment_node( const char *s )
|
|
|
|
{
|
|
|
|
return make_comment_node_from_buffer (s, strlen (s));
|
|
|
|
}
|
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
|
1998-02-09 18:43:42 +01:00
|
|
|
KBNODE
|
2003-06-18 21:56:13 +02:00
|
|
|
make_mpi_comment_node( const char *s, gcry_mpi_t a )
|
1998-02-09 18:43:42 +01:00
|
|
|
{
|
2002-06-29 15:46:34 +02:00
|
|
|
PACKET *pkt;
|
2003-06-18 21:56:13 +02:00
|
|
|
byte *buf, *pp;
|
|
|
|
size_t n1, nb1;
|
2002-06-29 15:46:34 +02:00
|
|
|
size_t n = strlen(s);
|
1998-02-09 18:43:42 +01:00
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
nb1 = mpi_get_nbits( a );
|
2003-07-28 10:59:18 +02:00
|
|
|
if (gcry_mpi_print (GCRYMPI_FMT_PGP, NULL, 0, &n1, a))
|
2003-06-18 21:56:13 +02:00
|
|
|
BUG ();
|
|
|
|
/* fixme: allocate it on the stack */
|
|
|
|
buf = xmalloc (n1);
|
2003-07-28 10:59:18 +02:00
|
|
|
if (gcry_mpi_print (GCRYMPI_FMT_PGP, buf, n1, &n1, a))
|
2003-06-18 21:56:13 +02:00
|
|
|
BUG ();
|
|
|
|
|
|
|
|
pkt = xcalloc (1, sizeof *pkt );
|
2002-06-29 15:46:34 +02:00
|
|
|
pkt->pkttype = PKT_COMMENT;
|
2003-06-18 21:56:13 +02:00
|
|
|
pkt->pkt.comment = xmalloc ( sizeof *pkt->pkt.comment + n + 2 + n1 );
|
2002-06-29 15:46:34 +02:00
|
|
|
pkt->pkt.comment->len = n+1+2+n1;
|
|
|
|
pp = pkt->pkt.comment->data;
|
|
|
|
memcpy(pp, s, n+1);
|
2003-06-18 21:56:13 +02:00
|
|
|
memcpy(pp+n+1, buf, n1 );
|
|
|
|
xfree (buf);
|
2002-06-29 15:46:34 +02:00
|
|
|
return new_kbnode( pkt );
|
|
|
|
}
|