2000-11-16 14:53:52 +00:00
|
|
|
/* sign.c - signing functions
|
|
|
|
* Copyright (C) 2000 Werner Koch (dd9jn)
|
|
|
|
*
|
|
|
|
* This file is part of GPGME.
|
|
|
|
*
|
|
|
|
* GPGME is free software; you can redistribute it and/or modify
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* GPGME is distributed in the hope that it will be useful,
|
|
|
|
* 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 "util.h"
|
|
|
|
#include "context.h"
|
|
|
|
#include "ops.h"
|
|
|
|
|
|
|
|
|
|
|
|
struct sign_result_s {
|
|
|
|
int no_passphrase;
|
|
|
|
int okay;
|
2000-12-12 13:31:25 +00:00
|
|
|
void *last_pw_handle;
|
2000-11-16 14:53:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
_gpgme_release_sign_result ( SignResult res )
|
|
|
|
{
|
|
|
|
xfree (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
sign_status_handler ( GpgmeCtx ctx, GpgStatusCode code, char *args )
|
|
|
|
{
|
|
|
|
if ( ctx->out_of_core )
|
|
|
|
return;
|
|
|
|
if ( ctx->result_type == RESULT_TYPE_NONE ) {
|
|
|
|
assert ( !ctx->result.sign );
|
|
|
|
ctx->result.sign = xtrycalloc ( 1, sizeof *ctx->result.sign );
|
|
|
|
if ( !ctx->result.sign ) {
|
|
|
|
ctx->out_of_core = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ctx->result_type = RESULT_TYPE_SIGN;
|
|
|
|
}
|
|
|
|
assert ( ctx->result_type == RESULT_TYPE_SIGN );
|
|
|
|
|
|
|
|
switch (code) {
|
|
|
|
case STATUS_EOF:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case STATUS_NEED_PASSPHRASE:
|
|
|
|
case STATUS_NEED_PASSPHRASE_SYM:
|
|
|
|
fprintf (stderr, "Ooops: Need a passphrase - use the agent\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case STATUS_MISSING_PASSPHRASE:
|
|
|
|
fprintf (stderr, "Missing passphrase - stop\n");;
|
|
|
|
ctx->result.sign->no_passphrase = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case STATUS_SIG_CREATED:
|
|
|
|
/* fixme: we have no error return for multible signatures */
|
|
|
|
ctx->result.sign->okay =1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fprintf (stderr, "sign_status: code=%d not handled\n", code );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-12-12 13:31:25 +00:00
|
|
|
static const char *
|
|
|
|
command_handler ( void *opaque, GpgStatusCode code, const char *key )
|
|
|
|
{
|
|
|
|
GpgmeCtx c = opaque;
|
|
|
|
|
|
|
|
if ( c->result_type == RESULT_TYPE_NONE ) {
|
|
|
|
assert ( !c->result.sign );
|
|
|
|
c->result.sign = xtrycalloc ( 1, sizeof *c->result.sign );
|
|
|
|
if ( !c->result.sign ) {
|
|
|
|
c->out_of_core = 1;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
c->result_type = RESULT_TYPE_SIGN;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !code ) {
|
|
|
|
/* We have been called for cleanup */
|
|
|
|
if ( c->passphrase_cb ) {
|
|
|
|
/* Fixme: take the key in account */
|
|
|
|
c->passphrase_cb (c->passphrase_cb_value, 0,
|
|
|
|
&c->result.sign->last_pw_handle );
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !key || !c->passphrase_cb )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if ( code == STATUS_GET_HIDDEN && !strcmp (key, "passphrase.enter") ) {
|
|
|
|
return c->passphrase_cb (c->passphrase_cb_value,
|
|
|
|
"Please enter your Friedrich Willem!",
|
|
|
|
&c->result.sign->last_pw_handle );
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2000-11-16 14:53:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
GpgmeError
|
2000-12-12 13:31:25 +00:00
|
|
|
gpgme_op_sign_start ( GpgmeCtx c, GpgmeData in, GpgmeData out,
|
|
|
|
GpgmeSigMode mode )
|
2000-11-16 14:53:52 +00:00
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
fail_on_pending_request( c );
|
|
|
|
c->pending = 1;
|
|
|
|
|
|
|
|
_gpgme_release_result (c);
|
|
|
|
c->out_of_core = 0;
|
|
|
|
|
2000-12-12 13:31:25 +00:00
|
|
|
|
|
|
|
if ( mode != GPGME_SIG_MODE_NORMAL
|
|
|
|
&& mode != GPGME_SIG_MODE_DETACH
|
|
|
|
&& mode != GPGME_SIG_MODE_CLEAR )
|
|
|
|
return mk_error (Invalid_Value);
|
2000-11-16 14:53:52 +00:00
|
|
|
|
|
|
|
/* create a process object */
|
2000-12-12 13:31:25 +00:00
|
|
|
_gpgme_gpg_release (c->gpg);
|
|
|
|
c->gpg = NULL;
|
2000-11-16 14:53:52 +00:00
|
|
|
rc = _gpgme_gpg_new ( &c->gpg );
|
|
|
|
if (rc)
|
|
|
|
goto leave;
|
|
|
|
|
|
|
|
_gpgme_gpg_set_status_handler ( c->gpg, sign_status_handler, c );
|
2000-12-12 13:31:25 +00:00
|
|
|
if (c->passphrase_cb) {
|
|
|
|
rc = _gpgme_gpg_set_command_handler ( c->gpg, command_handler, c );
|
|
|
|
if (rc)
|
|
|
|
goto leave;
|
|
|
|
}
|
2000-11-16 14:53:52 +00:00
|
|
|
|
|
|
|
/* build the commandline */
|
2000-12-12 13:31:25 +00:00
|
|
|
if ( mode == GPGME_SIG_MODE_CLEAR ) {
|
|
|
|
_gpgme_gpg_add_arg ( c->gpg, "--clearsign" );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
_gpgme_gpg_add_arg ( c->gpg, "--sign" );
|
|
|
|
if ( mode == GPGME_SIG_MODE_DETACH )
|
|
|
|
_gpgme_gpg_add_arg ( c->gpg, "--detach" );
|
|
|
|
if ( c->use_armor )
|
|
|
|
_gpgme_gpg_add_arg ( c->gpg, "--armor" );
|
|
|
|
if ( c->use_textmode )
|
|
|
|
_gpgme_gpg_add_arg ( c->gpg, "--textmode" );
|
|
|
|
}
|
2000-11-16 14:53:52 +00:00
|
|
|
for ( i=0; i < c->verbosity; i++ )
|
|
|
|
_gpgme_gpg_add_arg ( c->gpg, "--verbose" );
|
|
|
|
|
|
|
|
/* Check the supplied data */
|
|
|
|
if ( gpgme_data_get_type (in) == GPGME_DATA_TYPE_NONE ) {
|
|
|
|
rc = mk_error (No_Data);
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
_gpgme_data_set_mode (in, GPGME_DATA_MODE_OUT );
|
|
|
|
if ( !out || gpgme_data_get_type (out) != GPGME_DATA_TYPE_NONE ) {
|
|
|
|
rc = mk_error (Invalid_Value);
|
|
|
|
goto leave;
|
|
|
|
}
|
|
|
|
_gpgme_data_set_mode (out, GPGME_DATA_MODE_IN );
|
|
|
|
|
|
|
|
/* Tell the gpg object about the data */
|
|
|
|
_gpgme_gpg_add_data ( c->gpg, in, 0 );
|
|
|
|
_gpgme_gpg_add_data ( c->gpg, out, 1 );
|
|
|
|
|
|
|
|
/* and kick off the process */
|
|
|
|
rc = _gpgme_gpg_spawn ( c->gpg, c );
|
|
|
|
|
|
|
|
leave:
|
|
|
|
if (rc) {
|
|
|
|
c->pending = 0;
|
|
|
|
_gpgme_gpg_release ( c->gpg ); c->gpg = NULL;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gpgme_op_sign:
|
|
|
|
* @c: The context
|
|
|
|
* @in: Data to be signed
|
|
|
|
* @out: Detached signature
|
2000-12-12 13:31:25 +00:00
|
|
|
* @mode: Signature creation mode
|
2000-11-16 14:53:52 +00:00
|
|
|
*
|
|
|
|
* Create a detached signature for @in and write it to @out.
|
|
|
|
* The data will be signed using either the default key or the ones
|
|
|
|
* defined through @c.
|
2000-12-12 13:31:25 +00:00
|
|
|
* The defined modes for signature create are:
|
|
|
|
* <literal>
|
|
|
|
* GPGME_SIG_MODE_NORMAL (or 0)
|
|
|
|
* GPGME_SIG_MODE_DETACH
|
|
|
|
* GPGME_SIG_MODE_CLEAR
|
|
|
|
* </literal>
|
|
|
|
* Note that the settings done by gpgme_set_armor() and gpgme_set_textmode()
|
|
|
|
* are ignore for @mode GPGME_SIG_MODE_CLEAR.
|
2000-11-16 14:53:52 +00:00
|
|
|
*
|
|
|
|
* Return value: 0 on success or an error code.
|
|
|
|
**/
|
|
|
|
GpgmeError
|
2000-12-12 13:31:25 +00:00
|
|
|
gpgme_op_sign ( GpgmeCtx c, GpgmeData in, GpgmeData out, GpgmeSigMode mode )
|
2000-11-16 14:53:52 +00:00
|
|
|
{
|
2000-12-12 13:31:25 +00:00
|
|
|
GpgmeError err = gpgme_op_sign_start ( c, in, out, mode );
|
2000-11-16 14:53:52 +00:00
|
|
|
if ( !err ) {
|
|
|
|
gpgme_wait (c, 1);
|
|
|
|
if ( c->result_type != RESULT_TYPE_SIGN )
|
|
|
|
err = mk_error (General_Error);
|
|
|
|
else if ( c->out_of_core )
|
|
|
|
err = mk_error (Out_Of_Core);
|
|
|
|
else {
|
|
|
|
assert ( c->result.sign );
|
|
|
|
if ( c->result.sign->no_passphrase )
|
|
|
|
err = mk_error (No_Passphrase);
|
|
|
|
else if (!c->result.sign->okay)
|
|
|
|
err = mk_error (No_Data); /* Hmmm: choose a better error? */
|
|
|
|
}
|
|
|
|
c->pending = 0;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|