2003-09-27 21:37:53 +02:00
|
|
|
/* cardglue.c - mainly dispatcher for card related functions.
|
* README: Doc --disable-card-support and --without-readline.
* configure.ac: Check for readline. Make enable-card-support the
default. New option --without-readline. Allow the use of either
the development or the stable libusb.
* cardglue.h: Add members for CA fingerprints.
* cardglue.c (agent_release_card_info): Invalid them.
(learn_status_cb): Store them.
* app-common.h, app-openpgp.c, iso7816.c, iso7816.h
* apdu.c, apdu.h, ccid-driver.c, ccid-driver.h
* card-util.c: Updated from current gnupg-1.9.
* ccid-driver.h (CCID_DRIVER_ERR_ABORTED): New.
* ccid-driver.c (ccid_open_reader): Support the stable 0.1 version
of libusb.
(ccid_get_atr): Handle short messages.
* apdu.c (my_rapdu_get_status): Implemented.
* apdu.c: Include <signal.h>.
* apdu.c (reader_table_s): Add function pointers for the backends.
(apdu_close_reader, apdu_get_status, apdu_activate)
(send_apdu): Make use of them.
(new_reader_slot): Intialize them to NULL.
(dump_ccid_reader_status, ct_dump_reader_status): New.
(dump_pcsc_reader_status): New.
(open_ct_reader, open_pcsc_reader, open_ccid_reader)
(open_osc_reader, open_rapdu_reader): Intialize function pointers.
(ct_activate_card, ct_send_apdu, pcsc_send_apdu, osc_send_apdu)
(error_string): Removed. Replaced by apdu_strerror.
(get_ccid_error_string): Removed.
(ct_activate_card): Remove the unused loop.
(reset_ct_reader): Implemented.
(ct_send_apdu): Activate the card if not yet done.
(pcsc_send_apdu): Ditto.
* ccid-driver.h: Add error codes.
* ccid-driver.c: Implement more or less proper error codes all
over the place.
* apdu.c (apdu_send_direct): New.
(get_ccid_error_string): Add some error code mappings.
(send_apdu): Pass error codes along for drivers already supporting
them.
(host_sw_string): New.
(get_ccid_error_string): Use above.
(send_apdu_ccid): Reset the reader if it has not yet been done.
(open_ccid_reader): Don't care if the ATR can't be read.
(apdu_activate_card): New.
(apdu_strerror): New.
(dump_reader_status): Only enable it with opt.VERBOSE.
* iso7816.c (map_sw): Add mappings for the new error codes.
* apdu.c (open_ct_reader, open_pcsc_reader, open_ccid_reader)
(reset_ccid_reader, open_osc_reader): Call dump_reader_status only
in verbose mode.
* app-openpgp.c (do_getattr): Fix for sending CA-FPR.
* app-openpgp.c (app_openpgp_readkey): Fixed check for valid
exponent.
* app-openpgp.c (do_setattr): Sync FORCE_CHV1.
* card-util.c (change_login): Kludge to allow reading data from a
file.
(card_edit): Pass ARG_STRING to change_login.
(card_status): Print CA fingerprints.
(change_cafpr): New.
(card_edit): New command CAFPR.
* errors.h (G10ERR_NO_CARD, G10ERR_CANCELED): New error codes.
* errors.c (g10_errstr): New error codes G10ERR_NO_CARD,
G10ERR_CANCELED.
2004-09-09 20:18:36 +02:00
|
|
|
* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
|
2003-09-27 21:37:53 +02:00
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG 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.
|
|
|
|
*
|
|
|
|
* GnuPG 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>
|
2003-10-02 12:20:12 +02:00
|
|
|
#ifndef ENABLE_CARD_SUPPORT
|
2003-10-29 11:07:44 +01:00
|
|
|
#error not configured for card support.
|
2003-10-02 12:20:12 +02:00
|
|
|
#endif
|
2003-09-27 21:37:53 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2003-09-28 15:41:58 +02:00
|
|
|
#include <stdarg.h>
|
2003-09-27 21:37:53 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "options.h"
|
|
|
|
#include "packet.h"
|
|
|
|
#include "errors.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "status.h"
|
2003-10-29 11:07:44 +01:00
|
|
|
#include "ttyio.h"
|
2003-09-27 21:37:53 +02:00
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
#include "cardglue.h"
|
2003-09-28 15:41:58 +02:00
|
|
|
#include "apdu.h"
|
|
|
|
#include "app-common.h"
|
|
|
|
|
|
|
|
struct ctrl_ctx_s {
|
|
|
|
int (*status_cb)(void *opaque, const char *line);
|
|
|
|
void *status_cb_arg;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static char *default_reader_port;
|
2003-09-30 10:00:08 +02:00
|
|
|
static APP current_app;
|
2003-09-27 21:37:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Create a serialno/fpr string from the serial number and the secret
|
|
|
|
key. caller must free the returned string. There is no error
|
|
|
|
return. [Taken from 1.9's keyid.c]*/
|
|
|
|
char *
|
|
|
|
serialno_and_fpr_from_sk (const unsigned char *sn, size_t snlen,
|
|
|
|
PKT_secret_key *sk)
|
|
|
|
{
|
|
|
|
unsigned char fpr[MAX_FINGERPRINT_LEN];
|
|
|
|
size_t fprlen;
|
|
|
|
char *buffer, *p;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
fingerprint_from_sk (sk, fpr, &fprlen);
|
|
|
|
buffer = p = xmalloc (snlen*2 + 1 + fprlen*2 + 1);
|
|
|
|
for (i=0; i < snlen; i++, p+=2)
|
|
|
|
sprintf (p, "%02X", sn[i]);
|
|
|
|
*p++ = '/';
|
|
|
|
for (i=0; i < fprlen; i++, p+=2)
|
|
|
|
sprintf (p, "%02X", fpr[i]);
|
|
|
|
*p = 0;
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-28 15:41:58 +02:00
|
|
|
/* Send a line with status information via assuan and escape all given
|
|
|
|
buffers. The variable elements are pairs of (char *, size_t),
|
|
|
|
terminated with a (NULL, 0). */
|
|
|
|
void
|
|
|
|
send_status_info (CTRL ctrl, const char *keyword, ...)
|
|
|
|
{
|
|
|
|
va_list arg_ptr;
|
|
|
|
const unsigned char *value;
|
|
|
|
size_t valuelen;
|
|
|
|
char buf[950], *p;
|
|
|
|
size_t n;
|
|
|
|
|
|
|
|
va_start (arg_ptr, keyword);
|
|
|
|
|
|
|
|
p = buf;
|
|
|
|
n = 0;
|
|
|
|
valuelen = strlen (keyword);
|
|
|
|
for ( ; valuelen && n < DIM (buf)-2; n++, valuelen--, keyword++)
|
|
|
|
*p++ = *keyword;
|
|
|
|
|
|
|
|
while ( (value = va_arg (arg_ptr, const unsigned char *)) )
|
|
|
|
{
|
|
|
|
valuelen = va_arg (arg_ptr, size_t);
|
|
|
|
if (!valuelen)
|
|
|
|
continue; /* empty buffer */
|
|
|
|
if (n)
|
|
|
|
{
|
|
|
|
*p++ = ' ';
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
for ( ; valuelen && n < DIM (buf)-2; n++, valuelen--, value++)
|
|
|
|
{
|
|
|
|
if (*value < ' ' || *value == '+')
|
|
|
|
{
|
|
|
|
sprintf (p, "%%%02X", *value);
|
|
|
|
p += 3;
|
|
|
|
}
|
|
|
|
else if (*value == ' ')
|
|
|
|
*p++ = '+';
|
|
|
|
else
|
|
|
|
*p++ = *value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*p = 0;
|
|
|
|
ctrl->status_cb (ctrl->status_cb_arg, buf);
|
|
|
|
|
|
|
|
va_end (arg_ptr);
|
|
|
|
}
|
2003-09-27 21:37:53 +02:00
|
|
|
|
|
|
|
|
2003-09-28 15:41:58 +02:00
|
|
|
void gcry_md_hash_buffer (int algo, void *digest,
|
|
|
|
const void *buffer, size_t length)
|
|
|
|
{
|
|
|
|
MD_HANDLE h = md_open (algo, 0);
|
|
|
|
if (!h)
|
|
|
|
BUG();
|
|
|
|
md_write (h, (byte *) buffer, length);
|
|
|
|
md_final (h);
|
|
|
|
memcpy (digest, md_read (h, algo), md_digest_length (algo));
|
|
|
|
md_close (h);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This is a limited version of the one in 1.9 but it should be
|
|
|
|
sufficient here. */
|
|
|
|
void
|
|
|
|
log_printf (const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list arg_ptr;
|
|
|
|
|
|
|
|
va_start (arg_ptr, fmt);
|
|
|
|
vfprintf (log_stream (), fmt, arg_ptr);
|
|
|
|
va_end (arg_ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Print a hexdump of BUFFER. With TEXT of NULL print just the raw
|
|
|
|
dump, with TEXT just an empty string, print a trailing linefeed,
|
|
|
|
otherwise print an entire debug line. */
|
|
|
|
void
|
|
|
|
log_printhex (const char *text, const void *buffer, size_t length)
|
|
|
|
{
|
|
|
|
if (text && *text)
|
|
|
|
log_debug ("%s ", text);
|
|
|
|
if (length)
|
|
|
|
{
|
|
|
|
const unsigned char *p = buffer;
|
|
|
|
log_printf ("%02X", *p);
|
|
|
|
for (length--, p++; length--; p++)
|
|
|
|
log_printf (" %02X", *p);
|
|
|
|
}
|
|
|
|
if (text)
|
|
|
|
log_printf ("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
app_set_default_reader_port (const char *portstr)
|
|
|
|
{
|
|
|
|
xfree (default_reader_port);
|
|
|
|
default_reader_port = portstr? xstrdup (portstr): NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-08 17:21:20 +02:00
|
|
|
void
|
|
|
|
card_set_reader_port (const char *portstr)
|
|
|
|
{
|
|
|
|
app_set_default_reader_port (portstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-28 15:41:58 +02:00
|
|
|
/* Retrieve the serial number and the time of the last update of the
|
|
|
|
card. The serial number is returned as a malloced string (hex
|
|
|
|
encoded) in SERIAL and the time of update is returned in STAMP. If
|
|
|
|
no update time is available the returned value is 0. Caller must
|
|
|
|
free SERIAL unless the function returns an error. */
|
|
|
|
int
|
|
|
|
app_get_serial_and_stamp (APP app, char **serial, time_t *stamp)
|
|
|
|
{
|
|
|
|
unsigned char *buf, *p;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!app || !serial || !stamp)
|
|
|
|
return gpg_error (GPG_ERR_INV_VALUE);
|
|
|
|
|
|
|
|
*serial = NULL;
|
|
|
|
*stamp = 0; /* not available */
|
|
|
|
|
|
|
|
buf = xtrymalloc (app->serialnolen * 2 + 1);
|
|
|
|
if (!buf)
|
|
|
|
return gpg_error_from_errno (errno);
|
|
|
|
for (p=buf, i=0; i < app->serialnolen; p +=2, i++)
|
|
|
|
sprintf (p, "%02X", app->serialno[i]);
|
|
|
|
*p = 0;
|
|
|
|
*serial = buf;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Release the card info structure. */
|
|
|
|
void
|
|
|
|
agent_release_card_info (struct agent_card_info_s *info)
|
|
|
|
{
|
|
|
|
if (!info)
|
|
|
|
return;
|
|
|
|
|
|
|
|
xfree (info->serialno); info->serialno = NULL;
|
|
|
|
xfree (info->disp_name); info->disp_name = NULL;
|
|
|
|
xfree (info->disp_lang); info->disp_lang = NULL;
|
|
|
|
xfree (info->pubkey_url); info->pubkey_url = NULL;
|
|
|
|
xfree (info->login_data); info->login_data = NULL;
|
|
|
|
info->fpr1valid = info->fpr2valid = info->fpr3valid = 0;
|
* README: Doc --disable-card-support and --without-readline.
* configure.ac: Check for readline. Make enable-card-support the
default. New option --without-readline. Allow the use of either
the development or the stable libusb.
* cardglue.h: Add members for CA fingerprints.
* cardglue.c (agent_release_card_info): Invalid them.
(learn_status_cb): Store them.
* app-common.h, app-openpgp.c, iso7816.c, iso7816.h
* apdu.c, apdu.h, ccid-driver.c, ccid-driver.h
* card-util.c: Updated from current gnupg-1.9.
* ccid-driver.h (CCID_DRIVER_ERR_ABORTED): New.
* ccid-driver.c (ccid_open_reader): Support the stable 0.1 version
of libusb.
(ccid_get_atr): Handle short messages.
* apdu.c (my_rapdu_get_status): Implemented.
* apdu.c: Include <signal.h>.
* apdu.c (reader_table_s): Add function pointers for the backends.
(apdu_close_reader, apdu_get_status, apdu_activate)
(send_apdu): Make use of them.
(new_reader_slot): Intialize them to NULL.
(dump_ccid_reader_status, ct_dump_reader_status): New.
(dump_pcsc_reader_status): New.
(open_ct_reader, open_pcsc_reader, open_ccid_reader)
(open_osc_reader, open_rapdu_reader): Intialize function pointers.
(ct_activate_card, ct_send_apdu, pcsc_send_apdu, osc_send_apdu)
(error_string): Removed. Replaced by apdu_strerror.
(get_ccid_error_string): Removed.
(ct_activate_card): Remove the unused loop.
(reset_ct_reader): Implemented.
(ct_send_apdu): Activate the card if not yet done.
(pcsc_send_apdu): Ditto.
* ccid-driver.h: Add error codes.
* ccid-driver.c: Implement more or less proper error codes all
over the place.
* apdu.c (apdu_send_direct): New.
(get_ccid_error_string): Add some error code mappings.
(send_apdu): Pass error codes along for drivers already supporting
them.
(host_sw_string): New.
(get_ccid_error_string): Use above.
(send_apdu_ccid): Reset the reader if it has not yet been done.
(open_ccid_reader): Don't care if the ATR can't be read.
(apdu_activate_card): New.
(apdu_strerror): New.
(dump_reader_status): Only enable it with opt.VERBOSE.
* iso7816.c (map_sw): Add mappings for the new error codes.
* apdu.c (open_ct_reader, open_pcsc_reader, open_ccid_reader)
(reset_ccid_reader, open_osc_reader): Call dump_reader_status only
in verbose mode.
* app-openpgp.c (do_getattr): Fix for sending CA-FPR.
* app-openpgp.c (app_openpgp_readkey): Fixed check for valid
exponent.
* app-openpgp.c (do_setattr): Sync FORCE_CHV1.
* card-util.c (change_login): Kludge to allow reading data from a
file.
(card_edit): Pass ARG_STRING to change_login.
(card_status): Print CA fingerprints.
(change_cafpr): New.
(card_edit): New command CAFPR.
* errors.h (G10ERR_NO_CARD, G10ERR_CANCELED): New error codes.
* errors.c (g10_errstr): New error codes G10ERR_NO_CARD,
G10ERR_CANCELED.
2004-09-09 20:18:36 +02:00
|
|
|
info->cafpr1valid = info->cafpr2valid = info->cafpr3valid = 0;
|
2003-09-28 15:41:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Open the current card and select the openpgp application. Return
|
|
|
|
an APP context handle to be used for further procesing or NULL on
|
|
|
|
error or if no OpenPGP application exists.*/
|
|
|
|
static APP
|
|
|
|
open_card (void)
|
|
|
|
{
|
2004-09-20 15:15:37 +02:00
|
|
|
int slot = -1;
|
2003-09-28 15:41:58 +02:00
|
|
|
int rc;
|
|
|
|
APP app;
|
2004-09-20 15:15:37 +02:00
|
|
|
int did_shutdown = 0;
|
2003-09-28 15:41:58 +02:00
|
|
|
|
2003-10-10 17:12:02 +02:00
|
|
|
card_close ();
|
2003-10-29 11:07:44 +01:00
|
|
|
|
2004-09-20 15:15:37 +02:00
|
|
|
|
2003-10-29 11:07:44 +01:00
|
|
|
retry:
|
2004-09-20 15:15:37 +02:00
|
|
|
if (did_shutdown)
|
|
|
|
apdu_reset (slot);
|
|
|
|
else
|
2003-09-28 15:41:58 +02:00
|
|
|
{
|
2004-09-20 15:15:37 +02:00
|
|
|
slot = apdu_open_reader (default_reader_port);
|
|
|
|
if (slot == -1)
|
|
|
|
{
|
|
|
|
log_error ("card reader not available\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-09-28 15:41:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
app = xcalloc (1, sizeof *app);
|
|
|
|
app->slot = slot;
|
2004-04-27 10:23:45 +02:00
|
|
|
rc = app_select_openpgp (app);
|
2003-10-29 11:07:44 +01:00
|
|
|
if (rc && !opt.batch)
|
|
|
|
{
|
|
|
|
write_status_text (STATUS_CARDCTRL, "1");
|
|
|
|
|
2004-09-20 15:15:37 +02:00
|
|
|
did_shutdown = !!apdu_shutdown_reader (slot);
|
|
|
|
|
2003-10-29 11:07:44 +01:00
|
|
|
if ( cpr_get_answer_okay_cancel ("cardctrl.insert_card.okay",
|
|
|
|
_("Please insert the card and hit return or enter 'c' to cancel: "),
|
|
|
|
1) )
|
|
|
|
{
|
2004-09-20 15:15:37 +02:00
|
|
|
if (!did_shutdown)
|
|
|
|
apdu_close_reader (slot);
|
2003-10-29 11:07:44 +01:00
|
|
|
xfree (app);
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
}
|
2003-09-28 15:41:58 +02:00
|
|
|
if (rc)
|
|
|
|
{
|
|
|
|
log_info ("selecting openpgp failed: %s\n", gpg_strerror (rc));
|
2003-10-29 11:07:44 +01:00
|
|
|
apdu_close_reader (slot);
|
2003-09-28 15:41:58 +02:00
|
|
|
xfree (app);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
app->initialized = 1;
|
2003-09-30 10:00:08 +02:00
|
|
|
current_app = app;
|
2003-10-29 11:07:44 +01:00
|
|
|
if (is_status_enabled () )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char *p, *buf;
|
|
|
|
|
|
|
|
buf = xmalloc (5 + app->serialnolen * 2 + 1);
|
|
|
|
p = stpcpy (buf, "3 ");
|
|
|
|
for (i=0; i < app->serialnolen; p +=2, i++)
|
|
|
|
sprintf (p, "%02X", app->serialno[i]);
|
|
|
|
write_status_text (STATUS_CARDCTRL, buf);
|
|
|
|
xfree (buf);
|
|
|
|
}
|
|
|
|
|
2003-09-28 15:41:58 +02:00
|
|
|
return app;
|
|
|
|
}
|
2003-09-27 21:37:53 +02:00
|
|
|
|
2003-10-10 17:12:02 +02:00
|
|
|
void
|
|
|
|
card_close (void)
|
|
|
|
{
|
|
|
|
if (current_app)
|
|
|
|
{
|
|
|
|
APP app = current_app;
|
|
|
|
current_app = NULL;
|
|
|
|
|
|
|
|
apdu_close_reader (app->slot);
|
|
|
|
xfree (app);
|
|
|
|
}
|
|
|
|
}
|
2003-09-27 21:37:53 +02:00
|
|
|
|
|
|
|
|
2003-10-29 11:07:44 +01:00
|
|
|
/* Check that the serial number of the current card (as described by
|
|
|
|
APP) matches SERIALNO. If there is no match and we are not in
|
|
|
|
batch mode, present a prompt to insert the desired card. The
|
|
|
|
function return 0 is the present card is okay, -1 if the user
|
|
|
|
selected to insert a new card or an error value. Note that the
|
|
|
|
card context will be closed in all cases except for 0 as return
|
2004-09-20 15:15:37 +02:00
|
|
|
value and if it was possible to merely shutdown the reader. */
|
2003-10-29 11:07:44 +01:00
|
|
|
static int
|
|
|
|
check_card_serialno (APP app, const char *serialno)
|
|
|
|
{
|
|
|
|
const char *s;
|
|
|
|
int ask = 0;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
for (s = serialno, n=0; *s != '/' && hexdigitp (s); s++, n++)
|
|
|
|
;
|
|
|
|
if (n != 32)
|
|
|
|
{
|
|
|
|
log_error ("invalid serial number in keyring detected\n");
|
|
|
|
return gpg_error (GPG_ERR_INV_ID);
|
|
|
|
}
|
|
|
|
if (app->serialnolen != 16)
|
|
|
|
ask = 1;
|
|
|
|
for (s = serialno, n=0; !ask && n < 16; s += 2, n++)
|
|
|
|
if (app->serialno[n] != xtoi_2 (s))
|
|
|
|
ask = 1;
|
|
|
|
if (ask)
|
|
|
|
{
|
|
|
|
char buf[5+32+1];
|
2004-09-20 15:15:37 +02:00
|
|
|
int did_shutdown = 0;
|
2003-10-29 11:07:44 +01:00
|
|
|
|
2004-09-20 15:15:37 +02:00
|
|
|
if (current_app && !apdu_shutdown_reader (current_app->slot))
|
|
|
|
did_shutdown = 1;
|
|
|
|
else
|
|
|
|
card_close ();
|
2003-10-29 11:07:44 +01:00
|
|
|
tty_printf (_("Please remove the current card and "
|
|
|
|
"insert the one with the serial number:\n"
|
|
|
|
" %.*s\n"), 32, serialno);
|
|
|
|
|
|
|
|
sprintf (buf, "1 %.32s", serialno);
|
|
|
|
write_status_text (STATUS_CARDCTRL, buf);
|
|
|
|
|
|
|
|
if ( cpr_get_answer_okay_cancel ("cardctrl.change_card.okay",
|
|
|
|
_("Hit return when ready "
|
|
|
|
"or enter 'c' to cancel: "),
|
|
|
|
1) )
|
2004-09-20 15:15:37 +02:00
|
|
|
{
|
|
|
|
card_close ();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (did_shutdown)
|
|
|
|
apdu_reset (current_app->slot);
|
|
|
|
else
|
|
|
|
card_close ();
|
2003-10-29 11:07:44 +01:00
|
|
|
return gpg_error (GPG_ERR_INV_ID);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-09-28 15:41:58 +02:00
|
|
|
/* Return a new malloced string by unescaping the string S. Escaping
|
|
|
|
is percent escaping and '+'/space mapping. A binary nul will
|
|
|
|
silently be replaced by a 0xFF. Function returns NULL to indicate
|
|
|
|
an out of memory status. */
|
|
|
|
static char *
|
|
|
|
unescape_status_string (const unsigned char *s)
|
|
|
|
{
|
|
|
|
char *buffer, *d;
|
|
|
|
|
|
|
|
buffer = d = xmalloc (strlen (s)+1);
|
|
|
|
while (*s)
|
|
|
|
{
|
|
|
|
if (*s == '%' && s[1] && s[2])
|
|
|
|
{
|
|
|
|
s++;
|
|
|
|
*d = xtoi_2 (s);
|
|
|
|
if (!*d)
|
|
|
|
*d = '\xff';
|
|
|
|
d++;
|
|
|
|
s += 2;
|
|
|
|
}
|
|
|
|
else if (*s == '+')
|
|
|
|
{
|
|
|
|
*d++ = ' ';
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*d++ = *s++;
|
|
|
|
}
|
|
|
|
*d = 0;
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Take a 20 byte hexencoded string and put it into the the provided
|
|
|
|
20 byte buffer FPR in binary format. */
|
|
|
|
static int
|
|
|
|
unhexify_fpr (const char *hexstr, unsigned char *fpr)
|
|
|
|
{
|
|
|
|
const char *s;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
for (s=hexstr, n=0; hexdigitp (s); s++, n++)
|
|
|
|
;
|
|
|
|
if (*s || (n != 40))
|
|
|
|
return 0; /* no fingerprint (invalid or wrong length). */
|
|
|
|
n /= 2;
|
|
|
|
for (s=hexstr, n=0; *s; s += 2, n++)
|
|
|
|
fpr[n] = xtoi_2 (s);
|
|
|
|
return 1; /* okay */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Take the serial number from LINE and return it verbatim in a newly
|
|
|
|
allocated string. We make sure that only hex characters are
|
|
|
|
returned. */
|
|
|
|
static char *
|
|
|
|
store_serialno (const char *line)
|
|
|
|
{
|
|
|
|
const char *s;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
for (s=line; hexdigitp (s); s++)
|
|
|
|
;
|
|
|
|
p = xmalloc (s + 1 - line);
|
|
|
|
memcpy (p, line, s-line);
|
|
|
|
p[s-line] = 0;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
learn_status_cb (void *opaque, const char *line)
|
|
|
|
{
|
|
|
|
struct agent_card_info_s *parm = opaque;
|
|
|
|
const char *keyword = line;
|
|
|
|
int keywordlen;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (keywordlen=0; *line && !spacep (line); line++, keywordlen++)
|
|
|
|
;
|
|
|
|
while (spacep (line))
|
|
|
|
line++;
|
|
|
|
|
|
|
|
if (keywordlen == 8 && !memcmp (keyword, "SERIALNO", keywordlen))
|
|
|
|
{
|
2003-10-02 12:20:12 +02:00
|
|
|
xfree (parm->serialno);
|
2003-09-28 15:41:58 +02:00
|
|
|
parm->serialno = store_serialno (line);
|
|
|
|
}
|
|
|
|
else if (keywordlen == 9 && !memcmp (keyword, "DISP-NAME", keywordlen))
|
|
|
|
{
|
2003-10-02 12:20:12 +02:00
|
|
|
xfree (parm->disp_name);
|
2003-09-28 15:41:58 +02:00
|
|
|
parm->disp_name = unescape_status_string (line);
|
|
|
|
}
|
|
|
|
else if (keywordlen == 9 && !memcmp (keyword, "DISP-LANG", keywordlen))
|
|
|
|
{
|
2003-10-02 12:20:12 +02:00
|
|
|
xfree (parm->disp_lang);
|
2003-09-28 15:41:58 +02:00
|
|
|
parm->disp_lang = unescape_status_string (line);
|
|
|
|
}
|
|
|
|
else if (keywordlen == 8 && !memcmp (keyword, "DISP-SEX", keywordlen))
|
|
|
|
{
|
|
|
|
parm->disp_sex = *line == '1'? 1 : *line == '2' ? 2: 0;
|
|
|
|
}
|
|
|
|
else if (keywordlen == 10 && !memcmp (keyword, "PUBKEY-URL", keywordlen))
|
|
|
|
{
|
2003-10-02 12:20:12 +02:00
|
|
|
xfree (parm->pubkey_url);
|
2003-09-28 15:41:58 +02:00
|
|
|
parm->pubkey_url = unescape_status_string (line);
|
|
|
|
}
|
|
|
|
else if (keywordlen == 10 && !memcmp (keyword, "LOGIN-DATA", keywordlen))
|
|
|
|
{
|
2003-10-02 12:20:12 +02:00
|
|
|
xfree (parm->login_data);
|
2003-09-28 15:41:58 +02:00
|
|
|
parm->login_data = unescape_status_string (line);
|
|
|
|
}
|
|
|
|
else if (keywordlen == 11 && !memcmp (keyword, "SIG-COUNTER", keywordlen))
|
|
|
|
{
|
|
|
|
parm->sig_counter = strtoul (line, NULL, 0);
|
|
|
|
}
|
|
|
|
else if (keywordlen == 10 && !memcmp (keyword, "CHV-STATUS", keywordlen))
|
|
|
|
{
|
|
|
|
char *p, *buf;
|
|
|
|
|
|
|
|
buf = p = unescape_status_string (line);
|
|
|
|
if (buf)
|
|
|
|
{
|
|
|
|
while (spacep (p))
|
|
|
|
p++;
|
|
|
|
parm->chv1_cached = atoi (p);
|
2003-10-25 16:17:24 +02:00
|
|
|
while (*p && !spacep (p))
|
2003-09-28 15:41:58 +02:00
|
|
|
p++;
|
|
|
|
while (spacep (p))
|
|
|
|
p++;
|
|
|
|
for (i=0; *p && i < 3; i++)
|
|
|
|
{
|
|
|
|
parm->chvmaxlen[i] = atoi (p);
|
2003-10-25 16:17:24 +02:00
|
|
|
while (*p && !spacep (p))
|
2003-09-28 15:41:58 +02:00
|
|
|
p++;
|
|
|
|
while (spacep (p))
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
for (i=0; *p && i < 3; i++)
|
|
|
|
{
|
|
|
|
parm->chvretry[i] = atoi (p);
|
2003-10-25 16:17:24 +02:00
|
|
|
while (*p && !spacep (p))
|
2003-09-28 15:41:58 +02:00
|
|
|
p++;
|
|
|
|
while (spacep (p))
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
xfree (buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (keywordlen == 7 && !memcmp (keyword, "KEY-FPR", keywordlen))
|
|
|
|
{
|
|
|
|
int no = atoi (line);
|
2003-10-25 16:17:24 +02:00
|
|
|
while (* line && !spacep (line))
|
2003-09-28 15:41:58 +02:00
|
|
|
line++;
|
|
|
|
while (spacep (line))
|
|
|
|
line++;
|
|
|
|
if (no == 1)
|
|
|
|
parm->fpr1valid = unhexify_fpr (line, parm->fpr1);
|
|
|
|
else if (no == 2)
|
|
|
|
parm->fpr2valid = unhexify_fpr (line, parm->fpr2);
|
|
|
|
else if (no == 3)
|
|
|
|
parm->fpr3valid = unhexify_fpr (line, parm->fpr3);
|
|
|
|
}
|
* README: Doc --disable-card-support and --without-readline.
* configure.ac: Check for readline. Make enable-card-support the
default. New option --without-readline. Allow the use of either
the development or the stable libusb.
* cardglue.h: Add members for CA fingerprints.
* cardglue.c (agent_release_card_info): Invalid them.
(learn_status_cb): Store them.
* app-common.h, app-openpgp.c, iso7816.c, iso7816.h
* apdu.c, apdu.h, ccid-driver.c, ccid-driver.h
* card-util.c: Updated from current gnupg-1.9.
* ccid-driver.h (CCID_DRIVER_ERR_ABORTED): New.
* ccid-driver.c (ccid_open_reader): Support the stable 0.1 version
of libusb.
(ccid_get_atr): Handle short messages.
* apdu.c (my_rapdu_get_status): Implemented.
* apdu.c: Include <signal.h>.
* apdu.c (reader_table_s): Add function pointers for the backends.
(apdu_close_reader, apdu_get_status, apdu_activate)
(send_apdu): Make use of them.
(new_reader_slot): Intialize them to NULL.
(dump_ccid_reader_status, ct_dump_reader_status): New.
(dump_pcsc_reader_status): New.
(open_ct_reader, open_pcsc_reader, open_ccid_reader)
(open_osc_reader, open_rapdu_reader): Intialize function pointers.
(ct_activate_card, ct_send_apdu, pcsc_send_apdu, osc_send_apdu)
(error_string): Removed. Replaced by apdu_strerror.
(get_ccid_error_string): Removed.
(ct_activate_card): Remove the unused loop.
(reset_ct_reader): Implemented.
(ct_send_apdu): Activate the card if not yet done.
(pcsc_send_apdu): Ditto.
* ccid-driver.h: Add error codes.
* ccid-driver.c: Implement more or less proper error codes all
over the place.
* apdu.c (apdu_send_direct): New.
(get_ccid_error_string): Add some error code mappings.
(send_apdu): Pass error codes along for drivers already supporting
them.
(host_sw_string): New.
(get_ccid_error_string): Use above.
(send_apdu_ccid): Reset the reader if it has not yet been done.
(open_ccid_reader): Don't care if the ATR can't be read.
(apdu_activate_card): New.
(apdu_strerror): New.
(dump_reader_status): Only enable it with opt.VERBOSE.
* iso7816.c (map_sw): Add mappings for the new error codes.
* apdu.c (open_ct_reader, open_pcsc_reader, open_ccid_reader)
(reset_ccid_reader, open_osc_reader): Call dump_reader_status only
in verbose mode.
* app-openpgp.c (do_getattr): Fix for sending CA-FPR.
* app-openpgp.c (app_openpgp_readkey): Fixed check for valid
exponent.
* app-openpgp.c (do_setattr): Sync FORCE_CHV1.
* card-util.c (change_login): Kludge to allow reading data from a
file.
(card_edit): Pass ARG_STRING to change_login.
(card_status): Print CA fingerprints.
(change_cafpr): New.
(card_edit): New command CAFPR.
* errors.h (G10ERR_NO_CARD, G10ERR_CANCELED): New error codes.
* errors.c (g10_errstr): New error codes G10ERR_NO_CARD,
G10ERR_CANCELED.
2004-09-09 20:18:36 +02:00
|
|
|
else if (keywordlen == 6 && !memcmp (keyword, "CA-FPR", keywordlen))
|
|
|
|
{
|
|
|
|
int no = atoi (line);
|
|
|
|
while (*line && !spacep (line))
|
|
|
|
line++;
|
|
|
|
while (spacep (line))
|
|
|
|
line++;
|
|
|
|
if (no == 1)
|
|
|
|
parm->cafpr1valid = unhexify_fpr (line, parm->cafpr1);
|
|
|
|
else if (no == 2)
|
|
|
|
parm->cafpr2valid = unhexify_fpr (line, parm->cafpr2);
|
|
|
|
else if (no == 3)
|
|
|
|
parm->cafpr3valid = unhexify_fpr (line, parm->cafpr3);
|
|
|
|
}
|
|
|
|
|
2003-09-28 15:41:58 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Return card info. */
|
|
|
|
int
|
|
|
|
agent_learn (struct agent_card_info_s *info)
|
|
|
|
{
|
|
|
|
APP app;
|
|
|
|
int rc;
|
|
|
|
struct ctrl_ctx_s ctrl;
|
|
|
|
time_t stamp;
|
|
|
|
char *serial;
|
|
|
|
|
2003-09-30 10:00:08 +02:00
|
|
|
app = current_app? current_app : open_card ();
|
2003-09-28 15:41:58 +02:00
|
|
|
if (!app)
|
|
|
|
return gpg_error (GPG_ERR_CARD);
|
|
|
|
|
2003-10-02 12:20:12 +02:00
|
|
|
memset (info, 0, sizeof *info);
|
2003-09-28 15:41:58 +02:00
|
|
|
memset (&ctrl, 0, sizeof ctrl);
|
|
|
|
ctrl.status_cb = learn_status_cb;
|
|
|
|
ctrl.status_cb_arg = info;
|
|
|
|
|
|
|
|
rc = app_get_serial_and_stamp (app, &serial, &stamp);
|
|
|
|
if (!rc)
|
|
|
|
{
|
|
|
|
send_status_info (&ctrl, "SERIALNO", serial, strlen(serial), NULL, 0);
|
|
|
|
xfree (serial);
|
|
|
|
rc = app->fnc.learn_status (app, &ctrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2003-10-02 12:20:12 +02:00
|
|
|
/* Get an attribite from the card. Make sure info is initialized. */
|
|
|
|
int
|
|
|
|
agent_scd_getattr (const char *name, struct agent_card_info_s *info)
|
|
|
|
{
|
|
|
|
APP app;
|
|
|
|
struct ctrl_ctx_s ctrl;
|
|
|
|
|
|
|
|
app = current_app? current_app : open_card ();
|
|
|
|
if (!app)
|
|
|
|
return gpg_error (GPG_ERR_CARD);
|
|
|
|
|
|
|
|
ctrl.status_cb = learn_status_cb;
|
|
|
|
ctrl.status_cb_arg = info;
|
|
|
|
return app->fnc.getattr (app, &ctrl, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-09-30 10:00:08 +02:00
|
|
|
static int
|
|
|
|
pin_cb (void *opaque, const char *info, char **retstr)
|
|
|
|
{
|
|
|
|
char *value;
|
|
|
|
int canceled;
|
2003-10-21 20:22:21 +02:00
|
|
|
int isadmin = (info && strstr (info, "dmin"));
|
|
|
|
|
2003-09-30 10:00:08 +02:00
|
|
|
|
|
|
|
*retstr = NULL;
|
|
|
|
log_debug ("asking for PIN '%s'\n", info);
|
|
|
|
|
2003-10-08 17:21:20 +02:00
|
|
|
value = ask_passphrase (info,
|
2003-10-21 20:22:21 +02:00
|
|
|
isadmin? "passphrase.adminpin.ask"
|
|
|
|
: "passphrase.pin.ask",
|
|
|
|
isadmin? _("Enter Admin PIN: ") : _("Enter PIN: "),
|
2003-10-08 17:21:20 +02:00
|
|
|
&canceled);
|
2003-09-30 10:00:08 +02:00
|
|
|
if (!value && canceled)
|
|
|
|
return -1;
|
|
|
|
else if (!value)
|
|
|
|
return G10ERR_GENERAL;
|
|
|
|
|
|
|
|
*retstr = value;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-09-28 15:41:58 +02:00
|
|
|
/* Send a SETATTR command to the SCdaemon. */
|
|
|
|
int
|
|
|
|
agent_scd_setattr (const char *name,
|
|
|
|
const unsigned char *value, size_t valuelen)
|
|
|
|
{
|
2003-09-30 10:00:08 +02:00
|
|
|
APP app;
|
2003-09-28 15:41:58 +02:00
|
|
|
|
2003-09-30 10:00:08 +02:00
|
|
|
app = current_app? current_app : open_card ();
|
|
|
|
if (!app)
|
|
|
|
return gpg_error (GPG_ERR_CARD);
|
|
|
|
|
|
|
|
return app->fnc.setattr (app, name, pin_cb, NULL, value, valuelen);
|
2003-09-28 15:41:58 +02:00
|
|
|
}
|
|
|
|
|
2003-10-08 17:21:20 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
genkey_status_cb (void *opaque, const char *line)
|
|
|
|
{
|
|
|
|
struct agent_card_genkey_s *parm = opaque;
|
|
|
|
const char *keyword = line;
|
|
|
|
int keywordlen;
|
|
|
|
|
|
|
|
log_debug ("got status line `%s'\n", line);
|
|
|
|
for (keywordlen=0; *line && !spacep (line); line++, keywordlen++)
|
|
|
|
;
|
|
|
|
while (spacep (line))
|
|
|
|
line++;
|
|
|
|
|
|
|
|
if (keywordlen == 7 && !memcmp (keyword, "KEY-FPR", keywordlen))
|
|
|
|
{
|
|
|
|
parm->fprvalid = unhexify_fpr (line, parm->fpr);
|
|
|
|
}
|
|
|
|
if (keywordlen == 8 && !memcmp (keyword, "KEY-DATA", keywordlen))
|
|
|
|
{
|
|
|
|
MPI a;
|
|
|
|
const char *name = line;
|
|
|
|
char *buf;
|
|
|
|
|
2003-10-25 16:17:24 +02:00
|
|
|
while (*line && !spacep (line))
|
2003-10-08 17:21:20 +02:00
|
|
|
line++;
|
|
|
|
while (spacep (line))
|
|
|
|
line++;
|
|
|
|
|
|
|
|
buf = xmalloc ( 2 + strlen (line) + 1);
|
|
|
|
strcpy (stpcpy (buf, "0x"), line);
|
|
|
|
a = mpi_alloc (300);
|
|
|
|
if( mpi_fromstr (a, buf) )
|
|
|
|
log_error ("error parsing received key data\n");
|
|
|
|
else if (*name == 'n' && spacep (name+1))
|
|
|
|
parm->n = a;
|
|
|
|
else if (*name == 'e' && spacep (name+1))
|
|
|
|
parm->e = a;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
log_info ("unknown parameter name in received key data\n");
|
|
|
|
mpi_free (a);
|
|
|
|
}
|
|
|
|
xfree (buf);
|
|
|
|
}
|
|
|
|
else if (keywordlen == 14 && !memcmp (keyword,"KEY-CREATED-AT", keywordlen))
|
|
|
|
{
|
|
|
|
parm->created_at = (u32)strtoul (line, NULL, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-09-28 15:41:58 +02:00
|
|
|
/* Send a GENKEY command to the SCdaemon. */
|
|
|
|
int
|
|
|
|
agent_scd_genkey (struct agent_card_genkey_s *info, int keyno, int force)
|
|
|
|
{
|
2003-10-08 17:21:20 +02:00
|
|
|
APP app;
|
|
|
|
char keynostr[20];
|
|
|
|
struct ctrl_ctx_s ctrl;
|
2003-09-28 15:41:58 +02:00
|
|
|
|
2003-10-08 17:21:20 +02:00
|
|
|
app = current_app? current_app : open_card ();
|
|
|
|
if (!app)
|
|
|
|
return gpg_error (GPG_ERR_CARD);
|
|
|
|
|
|
|
|
memset (info, 0, sizeof *info);
|
|
|
|
sprintf (keynostr, "%d", keyno);
|
|
|
|
ctrl.status_cb = genkey_status_cb;
|
|
|
|
ctrl.status_cb_arg = info;
|
|
|
|
|
|
|
|
return app->fnc.genkey (app, &ctrl, keynostr,
|
|
|
|
force? 1:0,
|
|
|
|
pin_cb, NULL);
|
2003-09-28 15:41:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Send a PKSIGN command to the SCdaemon. */
|
|
|
|
int
|
2003-09-30 10:00:08 +02:00
|
|
|
agent_scd_pksign (const char *serialno, int hashalgo,
|
2003-09-28 15:41:58 +02:00
|
|
|
const unsigned char *indata, size_t indatalen,
|
2003-10-08 17:21:20 +02:00
|
|
|
unsigned char **r_buf, size_t *r_buflen)
|
2003-09-28 15:41:58 +02:00
|
|
|
{
|
2003-09-30 10:00:08 +02:00
|
|
|
APP app;
|
2003-10-29 11:07:44 +01:00
|
|
|
int rc;
|
2003-09-28 15:41:58 +02:00
|
|
|
|
2003-09-30 10:00:08 +02:00
|
|
|
*r_buf = NULL;
|
|
|
|
*r_buflen = 0;
|
2003-10-29 11:07:44 +01:00
|
|
|
retry:
|
2003-09-30 10:00:08 +02:00
|
|
|
app = current_app? current_app : open_card ();
|
|
|
|
if (!app)
|
|
|
|
return gpg_error (GPG_ERR_CARD);
|
|
|
|
|
|
|
|
/* Check that the card's serialnumber is as required.*/
|
2003-10-29 11:07:44 +01:00
|
|
|
rc = check_card_serialno (app, serialno);
|
|
|
|
if (rc == -1)
|
|
|
|
goto retry;
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
2003-09-30 10:00:08 +02:00
|
|
|
|
|
|
|
return app->fnc.sign (app, serialno, hashalgo,
|
|
|
|
pin_cb, NULL,
|
|
|
|
indata, indatalen,
|
|
|
|
r_buf, r_buflen);
|
2003-09-28 15:41:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Send a PKDECRYPT command to the SCdaemon. */
|
|
|
|
int
|
|
|
|
agent_scd_pkdecrypt (const char *serialno,
|
|
|
|
const unsigned char *indata, size_t indatalen,
|
2003-10-09 17:08:12 +02:00
|
|
|
unsigned char **r_buf, size_t *r_buflen)
|
2003-09-28 15:41:58 +02:00
|
|
|
{
|
2003-10-09 17:08:12 +02:00
|
|
|
APP app;
|
2003-10-29 11:07:44 +01:00
|
|
|
int rc;
|
2003-10-09 17:08:12 +02:00
|
|
|
|
|
|
|
*r_buf = NULL;
|
|
|
|
*r_buflen = 0;
|
2003-10-29 11:07:44 +01:00
|
|
|
retry:
|
2003-10-09 17:08:12 +02:00
|
|
|
app = current_app? current_app : open_card ();
|
|
|
|
if (!app)
|
|
|
|
return gpg_error (GPG_ERR_CARD);
|
|
|
|
|
2003-10-29 11:07:44 +01:00
|
|
|
/* Check that the card's serialnumber is as required.*/
|
|
|
|
rc = check_card_serialno (app, serialno);
|
|
|
|
if (rc == -1)
|
|
|
|
goto retry;
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
2003-10-09 17:08:12 +02:00
|
|
|
return app->fnc.decipher (app, serialno,
|
|
|
|
pin_cb, NULL,
|
|
|
|
indata, indatalen,
|
|
|
|
r_buf, r_buflen);
|
2003-09-28 15:41:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Change the PIN of an OpenPGP card or reset the retry counter. */
|
|
|
|
int
|
|
|
|
agent_scd_change_pin (int chvno)
|
|
|
|
{
|
2003-10-10 17:45:11 +02:00
|
|
|
APP app;
|
|
|
|
char chvnostr[20];
|
|
|
|
int reset = 0;
|
|
|
|
|
|
|
|
reset = (chvno >= 100);
|
|
|
|
chvno %= 100;
|
|
|
|
|
|
|
|
app = current_app? current_app : open_card ();
|
|
|
|
if (!app)
|
|
|
|
return gpg_error (GPG_ERR_CARD);
|
2003-09-28 15:41:58 +02:00
|
|
|
|
2003-10-10 17:45:11 +02:00
|
|
|
sprintf (chvnostr, "%d", chvno);
|
|
|
|
return app->fnc.change_pin (app, NULL, chvnostr, reset,
|
|
|
|
pin_cb, NULL);
|
2003-09-28 15:41:58 +02:00
|
|
|
}
|
|
|
|
|
2004-09-20 20:38:39 +02:00
|
|
|
/* Perform a CHECKPIN operation. SERIALNO should be the serial
|
|
|
|
number of the card - optionally followed by the fingerprint;
|
2003-10-21 20:22:21 +02:00
|
|
|
however the fingerprint is ignored here. */
|
|
|
|
int
|
|
|
|
agent_scd_checkpin (const char *serialnobuf)
|
|
|
|
{
|
|
|
|
APP app;
|
|
|
|
|
|
|
|
app = current_app? current_app : open_card ();
|
|
|
|
if (!app)
|
|
|
|
return gpg_error (GPG_ERR_CARD);
|
|
|
|
|
|
|
|
return app->fnc.check_pin (app, serialnobuf, pin_cb, NULL);
|
|
|
|
}
|
|
|
|
|