2004-12-02 08:48:09 +01:00
|
|
|
|
/* app-p15.c - The pkcs#15 card application.
|
2005-04-27 14:09:21 +02:00
|
|
|
|
* Copyright (C) 2005 Free Software Foundation, Inc.
|
2004-12-02 08:48:09 +01: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
|
2007-07-04 21:49:40 +02:00
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2004-12-02 08:48:09 +01:00
|
|
|
|
* (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
|
2016-11-05 12:02:19 +01:00
|
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2004-12-02 08:48:09 +01:00
|
|
|
|
*/
|
|
|
|
|
|
2006-05-23 18:19:43 +02:00
|
|
|
|
/* Information pertaining to the BELPIC developer card samples:
|
|
|
|
|
|
|
|
|
|
Unblock PUK: "222222111111"
|
|
|
|
|
Reset PIN: "333333111111")
|
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
e.g. the APDUs 00:20:00:02:08:2C:33:33:33:11:11:11:FF
|
2006-05-23 18:19:43 +02:00
|
|
|
|
and 00:24:01:01:08:24:12:34:FF:FF:FF:FF:FF
|
|
|
|
|
should change the PIN into 1234.
|
|
|
|
|
*/
|
|
|
|
|
|
2004-12-02 08:48:09 +01:00
|
|
|
|
#include <config.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
|
|
#include "scdaemon.h"
|
|
|
|
|
|
|
|
|
|
#include "iso7816.h"
|
2017-03-07 12:21:23 +01:00
|
|
|
|
#include "../common/tlv.h"
|
2005-04-27 14:09:21 +02:00
|
|
|
|
#include "apdu.h" /* fixme: we should move the card detection to a
|
|
|
|
|
separate file */
|
|
|
|
|
|
|
|
|
|
/* Types of cards we know and which needs special treatment. */
|
|
|
|
|
typedef enum
|
|
|
|
|
{
|
|
|
|
|
CARD_TYPE_UNKNOWN,
|
|
|
|
|
CARD_TYPE_TCOS,
|
2005-09-06 20:42:13 +02:00
|
|
|
|
CARD_TYPE_MICARDO,
|
|
|
|
|
CARD_TYPE_BELPIC /* Belgian eID card specs. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
}
|
2005-09-06 20:42:13 +02:00
|
|
|
|
card_type_t;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
/* A list card types with ATRs noticed with these cards. */
|
2005-06-16 10:12:03 +02:00
|
|
|
|
#define X(a) ((unsigned char const *)(a))
|
2011-02-04 12:57:53 +01:00
|
|
|
|
static struct
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
size_t atrlen;
|
2005-06-16 10:12:03 +02:00
|
|
|
|
unsigned char const *atr;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
card_type_t type;
|
|
|
|
|
} card_atr_list[] = {
|
2005-06-16 10:12:03 +02:00
|
|
|
|
{ 19, X("\x3B\xBA\x13\x00\x81\x31\x86\x5D\x00\x64\x05\x0A\x02\x01\x31\x80"
|
2011-02-04 12:57:53 +01:00
|
|
|
|
"\x90\x00\x8B"),
|
2005-04-27 14:09:21 +02:00
|
|
|
|
CARD_TYPE_TCOS }, /* SLE44 */
|
2005-06-16 10:12:03 +02:00
|
|
|
|
{ 19, X("\x3B\xBA\x14\x00\x81\x31\x86\x5D\x00\x64\x05\x14\x02\x02\x31\x80"
|
2011-02-04 12:57:53 +01:00
|
|
|
|
"\x90\x00\x91"),
|
2005-04-27 14:09:21 +02:00
|
|
|
|
CARD_TYPE_TCOS }, /* SLE66S */
|
2005-06-16 10:12:03 +02:00
|
|
|
|
{ 19, X("\x3B\xBA\x96\x00\x81\x31\x86\x5D\x00\x64\x05\x60\x02\x03\x31\x80"
|
|
|
|
|
"\x90\x00\x66"),
|
2005-04-27 14:09:21 +02:00
|
|
|
|
CARD_TYPE_TCOS }, /* SLE66P */
|
2005-06-16 10:12:03 +02:00
|
|
|
|
{ 27, X("\x3B\xFF\x94\x00\xFF\x80\xB1\xFE\x45\x1F\x03\x00\x68\xD2\x76\x00"
|
|
|
|
|
"\x00\x28\xFF\x05\x1E\x31\x80\x00\x90\x00\x23"),
|
2005-04-27 14:09:21 +02:00
|
|
|
|
CARD_TYPE_MICARDO }, /* German BMI card */
|
2005-06-16 10:12:03 +02:00
|
|
|
|
{ 19, X("\x3B\x6F\x00\xFF\x00\x68\xD2\x76\x00\x00\x28\xFF\x05\x1E\x31\x80"
|
|
|
|
|
"\x00\x90\x00"),
|
2005-04-27 21:47:53 +02:00
|
|
|
|
CARD_TYPE_MICARDO }, /* German BMI card (ATR due to reader problem) */
|
2005-06-16 10:12:03 +02:00
|
|
|
|
{ 26, X("\x3B\xFE\x94\x00\xFF\x80\xB1\xFA\x45\x1F\x03\x45\x73\x74\x45\x49"
|
|
|
|
|
"\x44\x20\x76\x65\x72\x20\x31\x2E\x30\x43"),
|
2005-04-27 14:09:21 +02:00
|
|
|
|
CARD_TYPE_MICARDO }, /* EstEID (Estonian Big Brother card) */
|
2005-04-27 21:47:53 +02:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{ 0 }
|
|
|
|
|
};
|
2005-06-16 10:12:03 +02:00
|
|
|
|
#undef X
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
|
2005-09-05 16:36:36 +02:00
|
|
|
|
/* The AID of PKCS15. */
|
|
|
|
|
static char const pkcs15_aid[] = { 0xA0, 0, 0, 0, 0x63,
|
|
|
|
|
0x50, 0x4B, 0x43, 0x53, 0x2D, 0x31, 0x35 };
|
|
|
|
|
|
|
|
|
|
/* The Belgian eID variant - they didn't understood why a shared AID
|
|
|
|
|
is useful for a standard. Oh well. */
|
|
|
|
|
static char const pkcs15be_aid[] = { 0xA0, 0, 0, 0x01, 0x77,
|
|
|
|
|
0x50, 0x4B, 0x43, 0x53, 0x2D, 0x31, 0x35 };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The PIN types as defined in pkcs#15 v1.1 */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
typedef enum
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
PIN_TYPE_BCD = 0,
|
|
|
|
|
PIN_TYPE_ASCII_NUMERIC = 1,
|
|
|
|
|
PIN_TYPE_UTF8 = 2,
|
|
|
|
|
PIN_TYPE_HALF_NIBBLE_BCD = 3,
|
|
|
|
|
PIN_TYPE_ISO9564_1 = 4
|
|
|
|
|
} pin_type_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* A bit array with for the key usage flags from the
|
|
|
|
|
commonKeyAttributes. */
|
|
|
|
|
struct keyusage_flags_s
|
|
|
|
|
{
|
|
|
|
|
unsigned int encrypt: 1;
|
|
|
|
|
unsigned int decrypt: 1;
|
|
|
|
|
unsigned int sign: 1;
|
|
|
|
|
unsigned int sign_recover: 1;
|
|
|
|
|
unsigned int wrap: 1;
|
|
|
|
|
unsigned int unwrap: 1;
|
|
|
|
|
unsigned int verify: 1;
|
|
|
|
|
unsigned int verify_recover: 1;
|
|
|
|
|
unsigned int derive: 1;
|
|
|
|
|
unsigned int non_repudiation: 1;
|
|
|
|
|
};
|
|
|
|
|
typedef struct keyusage_flags_s keyusage_flags_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This is an object to store information about a Certificate
|
|
|
|
|
Directory File (CDF) in a format suitable for further processing by
|
|
|
|
|
us. To keep memory management, simple we use a linked list of
|
|
|
|
|
items; i.e. one such object represents one certificate and the list
|
|
|
|
|
the entire CDF. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
struct cdf_object_s
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
/* Link to next item when used in a linked list. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
struct cdf_object_s *next;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
/* Length and allocated buffer with the Id of this object. */
|
|
|
|
|
size_t objidlen;
|
|
|
|
|
unsigned char *objid;
|
|
|
|
|
|
|
|
|
|
/* To avoid reading a certificate more than once, we cache it in an
|
|
|
|
|
allocated memory IMAGE of IMAGELEN. */
|
|
|
|
|
size_t imagelen;
|
|
|
|
|
unsigned char *image;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Set to true if a length and offset is available. */
|
|
|
|
|
int have_off;
|
|
|
|
|
/* The offset and length of the object. They are only valid if
|
|
|
|
|
HAVE_OFF is true and set to 0 if HAVE_OFF is false. */
|
|
|
|
|
unsigned long off, len;
|
|
|
|
|
|
|
|
|
|
/* The length of the path as given in the CDF and the path itself.
|
|
|
|
|
path[0] is the top DF (usually 0x3f00). The path will never be
|
|
|
|
|
empty. */
|
|
|
|
|
size_t pathlen;
|
|
|
|
|
unsigned short path[1];
|
|
|
|
|
};
|
|
|
|
|
typedef struct cdf_object_s *cdf_object_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This is an object to store information about a Private Key
|
|
|
|
|
Directory File (PrKDF) in a format suitable for further processing
|
|
|
|
|
by us. To keep memory management, simple we use a linked list of
|
|
|
|
|
items; i.e. one such object represents one certificate and the list
|
|
|
|
|
the entire PrKDF. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
struct prkdf_object_s
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
/* Link to next item when used in a linked list. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
struct prkdf_object_s *next;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
/* Length and allocated buffer with the Id of this object. */
|
|
|
|
|
size_t objidlen;
|
|
|
|
|
unsigned char *objid;
|
|
|
|
|
|
|
|
|
|
/* Length and allocated buffer with the authId of this object or
|
|
|
|
|
NULL if no authID is known. */
|
|
|
|
|
size_t authidlen;
|
|
|
|
|
unsigned char *authid;
|
|
|
|
|
|
|
|
|
|
/* The key's usage flags. */
|
|
|
|
|
keyusage_flags_t usageflags;
|
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
/* The keyReference and a flag telling whether it is valid. */
|
2005-04-27 14:09:21 +02:00
|
|
|
|
unsigned long key_reference;
|
|
|
|
|
int key_reference_valid;
|
|
|
|
|
|
|
|
|
|
/* Set to true if a length and offset is available. */
|
|
|
|
|
int have_off;
|
|
|
|
|
/* The offset and length of the object. They are only valid if
|
|
|
|
|
HAVE_OFF is true and set to 0 if HAVE_OFF is false. */
|
|
|
|
|
unsigned long off, len;
|
|
|
|
|
|
|
|
|
|
/* The length of the path as given in the PrKDF and the path itself.
|
|
|
|
|
path[0] is the top DF (usually 0x3f00). */
|
|
|
|
|
size_t pathlen;
|
|
|
|
|
unsigned short path[1];
|
|
|
|
|
};
|
|
|
|
|
typedef struct prkdf_object_s *prkdf_object_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This is an object to store information about a Authentication
|
|
|
|
|
Object Directory File (AODF) in a format suitable for further
|
|
|
|
|
processing by us. To keep memory management, simple we use a linked
|
|
|
|
|
list of items; i.e. one such object represents one authentication
|
|
|
|
|
object and the list the entire AOKDF. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
struct aodf_object_s
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
/* Link to next item when used in a linked list. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
struct aodf_object_s *next;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
/* Length and allocated buffer with the Id of this object. */
|
|
|
|
|
size_t objidlen;
|
|
|
|
|
unsigned char *objid;
|
|
|
|
|
|
|
|
|
|
/* Length and allocated buffer with the authId of this object or
|
|
|
|
|
NULL if no authID is known. */
|
|
|
|
|
size_t authidlen;
|
|
|
|
|
unsigned char *authid;
|
|
|
|
|
|
|
|
|
|
/* The PIN Flags. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
struct
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned int case_sensitive: 1;
|
|
|
|
|
unsigned int local: 1;
|
|
|
|
|
unsigned int change_disabled: 1;
|
|
|
|
|
unsigned int unblock_disabled: 1;
|
|
|
|
|
unsigned int initialized: 1;
|
|
|
|
|
unsigned int needs_padding: 1;
|
|
|
|
|
unsigned int unblocking_pin: 1;
|
|
|
|
|
unsigned int so_pin: 1;
|
|
|
|
|
unsigned int disable_allowed: 1;
|
|
|
|
|
unsigned int integrity_protected: 1;
|
|
|
|
|
unsigned int confidentiality_protected: 1;
|
|
|
|
|
unsigned int exchange_ref_data: 1;
|
|
|
|
|
} pinflags;
|
|
|
|
|
|
|
|
|
|
/* The PIN Type. */
|
|
|
|
|
pin_type_t pintype;
|
|
|
|
|
|
|
|
|
|
/* The minimum length of a PIN. */
|
|
|
|
|
unsigned long min_length;
|
|
|
|
|
|
|
|
|
|
/* The stored length of a PIN. */
|
|
|
|
|
unsigned long stored_length;
|
|
|
|
|
|
|
|
|
|
/* The maximum length of a PIN and a flag telling whether it is valid. */
|
|
|
|
|
unsigned long max_length;
|
|
|
|
|
int max_length_valid;
|
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
/* The pinReference and a flag telling whether it is valid. */
|
2005-04-27 14:09:21 +02:00
|
|
|
|
unsigned long pin_reference;
|
|
|
|
|
int pin_reference_valid;
|
|
|
|
|
|
|
|
|
|
/* The padChar and a flag telling whether it is valid. */
|
|
|
|
|
char pad_char;
|
|
|
|
|
int pad_char_valid;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Set to true if a length and offset is available. */
|
|
|
|
|
int have_off;
|
|
|
|
|
/* The offset and length of the object. They are only valid if
|
|
|
|
|
HAVE_OFF is true and set to 0 if HAVE_OFF is false. */
|
|
|
|
|
unsigned long off, len;
|
|
|
|
|
|
|
|
|
|
/* The length of the path as given in the Aodf and the path itself.
|
|
|
|
|
path[0] is the top DF (usually 0x3f00). PATH is optional and thus
|
|
|
|
|
may be NULL. Malloced.*/
|
|
|
|
|
size_t pathlen;
|
|
|
|
|
unsigned short *path;
|
|
|
|
|
};
|
|
|
|
|
typedef struct aodf_object_s *aodf_object_t;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Context local to this application. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
struct app_local_s
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* The home DF. Note, that we don't yet support a multilevel
|
2015-11-16 12:41:46 +01:00
|
|
|
|
hierarchy. Thus we assume this is directly below the MF. */
|
2005-04-27 14:09:21 +02:00
|
|
|
|
unsigned short home_df;
|
|
|
|
|
|
|
|
|
|
/* The type of the card. */
|
|
|
|
|
card_type_t card_type;
|
|
|
|
|
|
2005-09-05 16:36:36 +02:00
|
|
|
|
/* Flag indicating whether we may use direct path selection. */
|
|
|
|
|
int direct_path_selection;
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Structure with the EFIDs of the objects described in the ODF
|
|
|
|
|
file. */
|
2004-12-02 08:48:09 +01:00
|
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
unsigned short private_keys;
|
|
|
|
|
unsigned short public_keys;
|
|
|
|
|
unsigned short trusted_public_keys;
|
|
|
|
|
unsigned short secret_keys;
|
|
|
|
|
unsigned short certificates;
|
|
|
|
|
unsigned short trusted_certificates;
|
|
|
|
|
unsigned short useful_certificates;
|
|
|
|
|
unsigned short data_objects;
|
|
|
|
|
unsigned short auth_objects;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
} odf;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-09-05 16:36:36 +02:00
|
|
|
|
/* The PKCS#15 serialnumber from EF(TokeiNFo) or NULL. Malloced. */
|
|
|
|
|
unsigned char *serialno;
|
|
|
|
|
size_t serialnolen;
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Information on all certificates. */
|
|
|
|
|
cdf_object_t certificate_info;
|
|
|
|
|
/* Information on all trusted certificates. */
|
|
|
|
|
cdf_object_t trusted_certificate_info;
|
|
|
|
|
/* Information on all useful certificates. */
|
|
|
|
|
cdf_object_t useful_certificate_info;
|
|
|
|
|
|
|
|
|
|
/* Information on all private keys. */
|
|
|
|
|
prkdf_object_t private_key_info;
|
|
|
|
|
|
|
|
|
|
/* Information on all authentication objects. */
|
|
|
|
|
aodf_object_t auth_object_info;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/*** Local prototypes. ***/
|
|
|
|
|
static gpg_error_t readcert_by_cdf (app_t app, cdf_object_t cdf,
|
|
|
|
|
unsigned char **r_cert, size_t *r_certlen);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Release the CDF object A */
|
|
|
|
|
static void
|
|
|
|
|
release_cdflist (cdf_object_t a)
|
|
|
|
|
{
|
|
|
|
|
while (a)
|
|
|
|
|
{
|
|
|
|
|
cdf_object_t tmp = a->next;
|
|
|
|
|
xfree (a->image);
|
|
|
|
|
xfree (a->objid);
|
|
|
|
|
xfree (a);
|
|
|
|
|
a = tmp;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Release the PrKDF object A. */
|
|
|
|
|
static void
|
|
|
|
|
release_prkdflist (prkdf_object_t a)
|
|
|
|
|
{
|
|
|
|
|
while (a)
|
|
|
|
|
{
|
|
|
|
|
prkdf_object_t tmp = a->next;
|
|
|
|
|
xfree (a->objid);
|
|
|
|
|
xfree (a->authid);
|
|
|
|
|
xfree (a);
|
|
|
|
|
a = tmp;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Release just one aodf object. */
|
|
|
|
|
void
|
|
|
|
|
release_aodf_object (aodf_object_t a)
|
|
|
|
|
{
|
|
|
|
|
if (a)
|
|
|
|
|
{
|
|
|
|
|
xfree (a->objid);
|
|
|
|
|
xfree (a->authid);
|
|
|
|
|
xfree (a->path);
|
|
|
|
|
xfree (a);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Release the AODF list A. */
|
|
|
|
|
static void
|
|
|
|
|
release_aodflist (aodf_object_t a)
|
|
|
|
|
{
|
|
|
|
|
while (a)
|
|
|
|
|
{
|
|
|
|
|
aodf_object_t tmp = a->next;
|
|
|
|
|
release_aodf_object (a);
|
|
|
|
|
a = tmp;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Release all local resources. */
|
|
|
|
|
static void
|
|
|
|
|
do_deinit (app_t app)
|
|
|
|
|
{
|
|
|
|
|
if (app && app->app_local)
|
|
|
|
|
{
|
|
|
|
|
release_cdflist (app->app_local->certificate_info);
|
|
|
|
|
release_cdflist (app->app_local->trusted_certificate_info);
|
|
|
|
|
release_cdflist (app->app_local->useful_certificate_info);
|
|
|
|
|
release_prkdflist (app->app_local->private_key_info);
|
|
|
|
|
release_aodflist (app->app_local->auth_object_info);
|
2005-09-05 16:36:36 +02:00
|
|
|
|
xfree (app->app_local->serialno);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
xfree (app->app_local);
|
|
|
|
|
app->app_local = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Do a select and a read for the file with EFID. EFID_DESC is a
|
2004-12-02 08:48:09 +01:00
|
|
|
|
desctription of the EF to be used with error messages. On success
|
|
|
|
|
BUFFER and BUFLEN contain the entire content of the EF. The caller
|
2005-04-27 14:09:21 +02:00
|
|
|
|
must free BUFFER only on success. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
static gpg_error_t
|
2004-12-02 08:48:09 +01:00
|
|
|
|
select_and_read_binary (int slot, unsigned short efid, const char *efid_desc,
|
|
|
|
|
unsigned char **buffer, size_t *buflen)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
|
2017-03-06 05:39:46 +01:00
|
|
|
|
err = iso7816_select_file (slot, efid, 0);
|
2004-12-02 08:48:09 +01:00
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error selecting %s (0x%04X): %s\n",
|
|
|
|
|
efid_desc, efid, gpg_strerror (err));
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
err = iso7816_read_binary (slot, 0, 0, buffer, buflen);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error reading %s (0x%04X): %s\n",
|
|
|
|
|
efid_desc, efid, gpg_strerror (err));
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-04-27 21:47:53 +02:00
|
|
|
|
/* This function calls select file to read a file using a complete
|
2011-02-04 12:57:53 +01:00
|
|
|
|
path which may or may not start at the master file (MF). */
|
2005-04-27 14:09:21 +02:00
|
|
|
|
static gpg_error_t
|
|
|
|
|
select_ef_by_path (app_t app, const unsigned short *path, size_t pathlen)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
int i, j;
|
|
|
|
|
|
2005-09-05 16:36:36 +02:00
|
|
|
|
if (!pathlen)
|
|
|
|
|
return gpg_error (GPG_ERR_INV_VALUE);
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (pathlen && *path != 0x3f00 )
|
|
|
|
|
log_debug ("WARNING: relative path selection not yet implemented\n");
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-09-05 16:36:36 +02:00
|
|
|
|
if (app->app_local->direct_path_selection)
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_select_path (app_get_slot (app), path+1, pathlen-1);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (err)
|
|
|
|
|
{
|
2005-09-05 16:36:36 +02:00
|
|
|
|
log_error ("error selecting path ");
|
2005-04-27 14:09:21 +02:00
|
|
|
|
for (j=0; j < pathlen; j++)
|
|
|
|
|
log_printf ("%04hX", path[j]);
|
|
|
|
|
log_printf (": %s\n", gpg_strerror (err));
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-09-05 16:36:36 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* FIXME: Need code to remember the last PATH so that we can decide
|
|
|
|
|
what select commands to send in case the path does not start off
|
|
|
|
|
with 3F00. We might also want to use direct path selection if
|
|
|
|
|
supported by the card. */
|
|
|
|
|
for (i=0; i < pathlen; i++)
|
|
|
|
|
{
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_select_file (app_get_slot (app),
|
|
|
|
|
path[i], !(i+1 == pathlen));
|
2005-09-05 16:36:36 +02:00
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error selecting part %d from path ", i);
|
|
|
|
|
for (j=0; j < pathlen; j++)
|
|
|
|
|
log_printf ("%04hX", path[j]);
|
|
|
|
|
log_printf (": %s\n", gpg_strerror (err));
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-04-27 14:09:21 +02:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Parse a cert Id string (or a key Id string) and return the binary
|
|
|
|
|
object Id string in a newly allocated buffer stored at R_OBJID and
|
|
|
|
|
R_OBJIDLEN. On Error NULL will be stored there and an error code
|
|
|
|
|
returned. On success caller needs to free the buffer at R_OBJID. */
|
|
|
|
|
static gpg_error_t
|
|
|
|
|
parse_certid (app_t app, const char *certid,
|
|
|
|
|
unsigned char **r_objid, size_t *r_objidlen)
|
|
|
|
|
{
|
|
|
|
|
char tmpbuf[10];
|
|
|
|
|
const char *s;
|
|
|
|
|
size_t objidlen;
|
|
|
|
|
unsigned char *objid;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
*r_objid = NULL;
|
|
|
|
|
*r_objidlen = 0;
|
|
|
|
|
|
|
|
|
|
if (app->app_local->home_df)
|
2014-09-18 15:39:50 +02:00
|
|
|
|
snprintf (tmpbuf, sizeof tmpbuf,
|
|
|
|
|
"P15-%04X.", (unsigned int)(app->app_local->home_df & 0xffff));
|
2005-04-27 14:09:21 +02:00
|
|
|
|
else
|
|
|
|
|
strcpy (tmpbuf, "P15.");
|
|
|
|
|
if (strncmp (certid, tmpbuf, strlen (tmpbuf)) )
|
|
|
|
|
{
|
|
|
|
|
if (!strncmp (certid, "P15.", 4)
|
|
|
|
|
|| (!strncmp (certid, "P15-", 4)
|
|
|
|
|
&& hexdigitp (certid+4)
|
|
|
|
|
&& hexdigitp (certid+5)
|
|
|
|
|
&& hexdigitp (certid+6)
|
|
|
|
|
&& hexdigitp (certid+7)
|
|
|
|
|
&& certid[8] == '.'))
|
|
|
|
|
return gpg_error (GPG_ERR_NOT_FOUND);
|
|
|
|
|
return gpg_error (GPG_ERR_INV_ID);
|
|
|
|
|
}
|
|
|
|
|
certid += strlen (tmpbuf);
|
|
|
|
|
|
|
|
|
|
for (s=certid, objidlen=0; hexdigitp (s); s++, objidlen++)
|
|
|
|
|
;
|
|
|
|
|
if (*s || !objidlen || (objidlen%2))
|
|
|
|
|
return gpg_error (GPG_ERR_INV_ID);
|
|
|
|
|
objidlen /= 2;
|
|
|
|
|
objid = xtrymalloc (objidlen);
|
|
|
|
|
if (!objid)
|
2006-09-14 18:50:33 +02:00
|
|
|
|
return gpg_error_from_syserror ();
|
2005-04-27 14:09:21 +02:00
|
|
|
|
for (s=certid, i=0; i < objidlen; i++, s+=2)
|
|
|
|
|
objid[i] = xtoi_2 (s);
|
|
|
|
|
*r_objid = objid;
|
|
|
|
|
*r_objidlen = objidlen;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Find a certificate object by the certificate ID CERTID and store a
|
|
|
|
|
pointer to it at R_CDF. */
|
|
|
|
|
static gpg_error_t
|
|
|
|
|
cdf_object_from_certid (app_t app, const char *certid, cdf_object_t *r_cdf)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
size_t objidlen;
|
|
|
|
|
unsigned char *objid;
|
|
|
|
|
cdf_object_t cdf;
|
|
|
|
|
|
|
|
|
|
err = parse_certid (app, certid, &objid, &objidlen);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
|
|
|
|
for (cdf = app->app_local->certificate_info; cdf; cdf = cdf->next)
|
|
|
|
|
if (cdf->objidlen == objidlen && !memcmp (cdf->objid, objid, objidlen))
|
|
|
|
|
break;
|
|
|
|
|
if (!cdf)
|
|
|
|
|
for (cdf = app->app_local->trusted_certificate_info; cdf; cdf = cdf->next)
|
|
|
|
|
if (cdf->objidlen == objidlen && !memcmp (cdf->objid, objid, objidlen))
|
|
|
|
|
break;
|
|
|
|
|
if (!cdf)
|
|
|
|
|
for (cdf = app->app_local->useful_certificate_info; cdf; cdf = cdf->next)
|
|
|
|
|
if (cdf->objidlen == objidlen && !memcmp (cdf->objid, objid, objidlen))
|
|
|
|
|
break;
|
|
|
|
|
xfree (objid);
|
|
|
|
|
if (!cdf)
|
|
|
|
|
return gpg_error (GPG_ERR_NOT_FOUND);
|
|
|
|
|
*r_cdf = cdf;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Find a private key object by the key Id string KEYIDSTR and store a
|
|
|
|
|
pointer to it at R_PRKDF. */
|
|
|
|
|
static gpg_error_t
|
|
|
|
|
prkdf_object_from_keyidstr (app_t app, const char *keyidstr,
|
|
|
|
|
prkdf_object_t *r_prkdf)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
size_t objidlen;
|
|
|
|
|
unsigned char *objid;
|
|
|
|
|
prkdf_object_t prkdf;
|
|
|
|
|
|
|
|
|
|
err = parse_certid (app, keyidstr, &objid, &objidlen);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
|
|
|
|
for (prkdf = app->app_local->private_key_info; prkdf; prkdf = prkdf->next)
|
|
|
|
|
if (prkdf->objidlen == objidlen && !memcmp (prkdf->objid, objid, objidlen))
|
|
|
|
|
break;
|
|
|
|
|
xfree (objid);
|
|
|
|
|
if (!prkdf)
|
|
|
|
|
return gpg_error (GPG_ERR_NOT_FOUND);
|
|
|
|
|
*r_prkdf = prkdf;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
2004-12-02 08:48:09 +01:00
|
|
|
|
/* Read and parse the Object Directory File and store away the
|
2005-04-27 14:09:21 +02:00
|
|
|
|
pointers. ODF_FID shall contain the FID of the ODF.
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
|
|
|
|
Example of such a file:
|
|
|
|
|
|
|
|
|
|
A0 06 30 04 04 02 60 34 = Private Keys
|
2011-02-04 12:57:53 +01:00
|
|
|
|
A4 06 30 04 04 02 60 35 = Certificates
|
2004-12-02 08:48:09 +01:00
|
|
|
|
A5 06 30 04 04 02 60 36 = TrustedCertificates
|
|
|
|
|
A7 06 30 04 04 02 60 37 = DataObjects
|
|
|
|
|
A8 06 30 04 04 02 60 38 = AuthObjects
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
These are all PathOrObjects using the path CHOICE element. The
|
|
|
|
|
paths are octet strings of length 2. Using this Path CHOICE
|
|
|
|
|
element is recommended, so we only implement that for now.
|
2004-12-02 08:48:09 +01:00
|
|
|
|
*/
|
|
|
|
|
static gpg_error_t
|
2005-04-27 14:09:21 +02:00
|
|
|
|
read_ef_odf (app_t app, unsigned short odf_fid)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
unsigned char *buffer, *p;
|
|
|
|
|
size_t buflen;
|
|
|
|
|
unsigned short value;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
size_t offset;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = select_and_read_binary (app_get_slot (app), odf_fid, "ODF",
|
|
|
|
|
&buffer, &buflen);
|
2004-12-02 08:48:09 +01:00
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (buflen < 8)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
|
|
|
|
log_error ("error: ODF too short\n");
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
return gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
}
|
2005-04-27 14:09:21 +02:00
|
|
|
|
p = buffer;
|
|
|
|
|
while (buflen && *p && *p != 0xff)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if ( buflen >= 8
|
|
|
|
|
&& (p[0] & 0xf0) == 0xA0
|
|
|
|
|
&& !memcmp (p+1, "\x06\x30\x04\x04\x02", 5) )
|
|
|
|
|
{
|
|
|
|
|
offset = 6;
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
else if ( buflen >= 12
|
2005-04-27 14:09:21 +02:00
|
|
|
|
&& (p[0] & 0xf0) == 0xA0
|
2005-09-05 16:36:36 +02:00
|
|
|
|
&& !memcmp (p+1, "\x0a\x30\x08\x04\x06\x3F\x00", 7)
|
|
|
|
|
&& app->app_local->home_df == ((p[8]<<8)|p[9]) )
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
2005-09-05 16:36:36 +02:00
|
|
|
|
/* We only allow a full path if all files are at the same
|
|
|
|
|
level and below the home directory. The extend this we
|
|
|
|
|
would need to make use of new data type capable of
|
|
|
|
|
keeping a full path. */
|
2005-04-27 14:09:21 +02:00
|
|
|
|
offset = 10;
|
|
|
|
|
}
|
|
|
|
|
else
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
|
|
|
|
log_error ("ODF format is not supported by us\n");
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
return gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
}
|
|
|
|
|
switch ((p[0] & 0x0f))
|
|
|
|
|
{
|
|
|
|
|
case 0: value = app->app_local->odf.private_keys; break;
|
|
|
|
|
case 1: value = app->app_local->odf.public_keys; break;
|
|
|
|
|
case 2: value = app->app_local->odf.trusted_public_keys; break;
|
|
|
|
|
case 3: value = app->app_local->odf.secret_keys; break;
|
|
|
|
|
case 4: value = app->app_local->odf.certificates; break;
|
|
|
|
|
case 5: value = app->app_local->odf.trusted_certificates; break;
|
|
|
|
|
case 6: value = app->app_local->odf.useful_certificates; break;
|
|
|
|
|
case 7: value = app->app_local->odf.data_objects; break;
|
|
|
|
|
case 8: value = app->app_local->odf.auth_objects; break;
|
|
|
|
|
default: value = 0; break;
|
|
|
|
|
}
|
|
|
|
|
if (value)
|
|
|
|
|
{
|
2005-04-27 14:09:21 +02:00
|
|
|
|
log_error ("duplicate object type %d in ODF ignored\n",(p[0]&0x0f));
|
2004-12-02 08:48:09 +01:00
|
|
|
|
continue;
|
|
|
|
|
}
|
2005-04-27 14:09:21 +02:00
|
|
|
|
value = ((p[offset] << 8) | p[offset+1]);
|
2004-12-02 08:48:09 +01:00
|
|
|
|
switch ((p[0] & 0x0f))
|
|
|
|
|
{
|
|
|
|
|
case 0: app->app_local->odf.private_keys = value; break;
|
|
|
|
|
case 1: app->app_local->odf.public_keys = value; break;
|
|
|
|
|
case 2: app->app_local->odf.trusted_public_keys = value; break;
|
|
|
|
|
case 3: app->app_local->odf.secret_keys = value; break;
|
|
|
|
|
case 4: app->app_local->odf.certificates = value; break;
|
|
|
|
|
case 5: app->app_local->odf.trusted_certificates = value; break;
|
|
|
|
|
case 6: app->app_local->odf.useful_certificates = value; break;
|
|
|
|
|
case 7: app->app_local->odf.data_objects = value; break;
|
|
|
|
|
case 8: app->app_local->odf.auth_objects = value; break;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
default:
|
2005-04-27 14:09:21 +02:00
|
|
|
|
log_error ("unknown object type %d in ODF ignored\n", (p[0]&0x0f));
|
2004-12-02 08:48:09 +01:00
|
|
|
|
}
|
2005-04-27 14:09:21 +02:00
|
|
|
|
offset += 2;
|
|
|
|
|
|
|
|
|
|
if (buflen < offset)
|
|
|
|
|
break;
|
|
|
|
|
p += offset;
|
|
|
|
|
buflen -= offset;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (buflen)
|
2006-11-20 17:49:41 +01:00
|
|
|
|
log_info ("warning: %u bytes of garbage detected at end of ODF\n",
|
|
|
|
|
(unsigned int)buflen);
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-07-24 16:16:53 +02:00
|
|
|
|
/* Parse the BIT STRING with the keyUsageFlags from the
|
2005-04-27 14:09:21 +02:00
|
|
|
|
CommonKeyAttributes. */
|
|
|
|
|
static gpg_error_t
|
|
|
|
|
parse_keyusage_flags (const unsigned char *der, size_t derlen,
|
|
|
|
|
keyusage_flags_t *usageflags)
|
|
|
|
|
{
|
|
|
|
|
unsigned int bits, mask;
|
|
|
|
|
int i, unused, full;
|
|
|
|
|
|
|
|
|
|
memset (usageflags, 0, sizeof *usageflags);
|
|
|
|
|
if (!derlen)
|
|
|
|
|
return gpg_error (GPG_ERR_INV_OBJ);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
unused = *der++; derlen--;
|
|
|
|
|
if ((!derlen && unused) || unused/8 > derlen)
|
|
|
|
|
return gpg_error (GPG_ERR_ENCODING_PROBLEM);
|
|
|
|
|
full = derlen - (unused+7)/8;
|
|
|
|
|
unused %= 8;
|
|
|
|
|
mask = 0;
|
|
|
|
|
for (i=1; unused; i <<= 1, unused--)
|
|
|
|
|
mask |= i;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* First octet */
|
|
|
|
|
if (derlen)
|
|
|
|
|
{
|
|
|
|
|
bits = *der++; derlen--;
|
|
|
|
|
if (full)
|
|
|
|
|
full--;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
else
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
bits &= ~mask;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
mask = 0;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
bits = 0;
|
|
|
|
|
if ((bits & 0x80)) usageflags->encrypt = 1;
|
|
|
|
|
if ((bits & 0x40)) usageflags->decrypt = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if ((bits & 0x20)) usageflags->sign = 1;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if ((bits & 0x10)) usageflags->sign_recover = 1;
|
|
|
|
|
if ((bits & 0x08)) usageflags->wrap = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if ((bits & 0x04)) usageflags->unwrap = 1;
|
|
|
|
|
if ((bits & 0x02)) usageflags->verify = 1;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if ((bits & 0x01)) usageflags->verify_recover = 1;
|
|
|
|
|
|
|
|
|
|
/* Second octet. */
|
|
|
|
|
if (derlen)
|
|
|
|
|
{
|
|
|
|
|
bits = *der++; derlen--;
|
|
|
|
|
if (full)
|
|
|
|
|
full--;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
else
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
bits &= ~mask;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
bits = 0;
|
|
|
|
|
if ((bits & 0x80)) usageflags->derive = 1;
|
|
|
|
|
if ((bits & 0x40)) usageflags->non_repudiation = 1;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
|
|
|
|
/* Read and parse the Private Key Directory Files. */
|
|
|
|
|
/*
|
|
|
|
|
6034 (privatekeys)
|
|
|
|
|
|
|
|
|
|
30 33 30 11 0C 08 53 4B 2E 43 48 2E 44 53 03 02 030...SK.CH.DS..
|
|
|
|
|
06 80 04 01 07 30 0C 04 01 01 03 03 06 00 40 02 .....0........@.
|
|
|
|
|
02 00 50 A1 10 30 0E 30 08 04 06 3F 00 40 16 00 ..P..0.0...?.@..
|
|
|
|
|
50 02 02 04 00 30 33 30 11 0C 08 53 4B 2E 43 48 P....030...SK.CH
|
|
|
|
|
2E 4B 45 03 02 06 80 04 01 0A 30 0C 04 01 0C 03 .KE.......0.....
|
|
|
|
|
03 06 44 00 02 02 00 52 A1 10 30 0E 30 08 04 06 ..D....R..0.0...
|
|
|
|
|
3F 00 40 16 00 52 02 02 04 00 30 34 30 12 0C 09 ?.@..R....040...
|
|
|
|
|
53 4B 2E 43 48 2E 41 55 54 03 02 06 80 04 01 0A SK.CH.AUT.......
|
|
|
|
|
30 0C 04 01 0D 03 03 06 20 00 02 02 00 51 A1 10 0....... ....Q..
|
|
|
|
|
30 0E 30 08 04 06 3F 00 40 16 00 51 02 02 04 00 0.0...?.@..Q....
|
|
|
|
|
30 37 30 15 0C 0C 53 4B 2E 43 48 2E 44 53 2D 53 070...SK.CH.DS-S
|
|
|
|
|
50 58 03 02 06 80 04 01 0A 30 0C 04 01 02 03 03 PX.......0......
|
|
|
|
|
06 20 00 02 02 00 53 A1 10 30 0E 30 08 04 06 3F . ....S..0.0...?
|
|
|
|
|
00 40 16 00 53 02 02 04 00 00 00 00 00 00 00 00 .@..S...........
|
|
|
|
|
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
|
|
|
|
|
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
0 30 51: SEQUENCE {
|
|
|
|
|
2 30 17: SEQUENCE { -- commonObjectAttributes
|
|
|
|
|
4 0C 8: UTF8String 'SK.CH.DS'
|
|
|
|
|
14 03 2: BIT STRING 6 unused bits
|
|
|
|
|
: '01'B (bit 0)
|
|
|
|
|
18 04 1: OCTET STRING --authid
|
|
|
|
|
: 07
|
|
|
|
|
: }
|
|
|
|
|
21 30 12: SEQUENCE { -- commonKeyAttributes
|
|
|
|
|
23 04 1: OCTET STRING
|
|
|
|
|
: 01
|
|
|
|
|
26 03 3: BIT STRING 6 unused bits
|
|
|
|
|
: '1000000000'B (bit 9)
|
|
|
|
|
31 02 2: INTEGER 80 -- keyReference (optional)
|
|
|
|
|
: }
|
|
|
|
|
35 A1 16: [1] { -- keyAttributes
|
|
|
|
|
37 30 14: SEQUENCE { -- privateRSAKeyAttributes
|
|
|
|
|
39 30 8: SEQUENCE { -- objectValue
|
|
|
|
|
41 04 6: OCTET STRING --path
|
|
|
|
|
: 3F 00 40 16 00 50
|
|
|
|
|
: }
|
|
|
|
|
49 02 2: INTEGER 1024 -- modulus
|
|
|
|
|
: }
|
|
|
|
|
: }
|
|
|
|
|
: }
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
static gpg_error_t
|
2005-04-27 14:09:21 +02:00
|
|
|
|
read_ef_prkdf (app_t app, unsigned short fid, prkdf_object_t *result)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
unsigned char *buffer = NULL;
|
|
|
|
|
size_t buflen;
|
|
|
|
|
const unsigned char *p;
|
|
|
|
|
size_t n, objlen, hdrlen;
|
|
|
|
|
int class, tag, constructed, ndef;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
prkdf_object_t prkdflist = NULL;
|
|
|
|
|
int i;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2004-12-02 08:48:09 +01:00
|
|
|
|
if (!fid)
|
2005-04-27 14:09:21 +02:00
|
|
|
|
return gpg_error (GPG_ERR_NO_DATA); /* No private keys. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = select_and_read_binary (app_get_slot (app), fid, "PrKDF",
|
|
|
|
|
&buffer, &buflen);
|
2004-12-02 08:48:09 +01:00
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2004-12-02 08:48:09 +01:00
|
|
|
|
p = buffer;
|
|
|
|
|
n = buflen;
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* FIXME: This shares a LOT of code with read_ef_cdf! */
|
|
|
|
|
|
2004-12-02 08:48:09 +01:00
|
|
|
|
/* Loop over the records. We stop as soon as we detect a new record
|
2005-04-27 14:09:21 +02:00
|
|
|
|
starting with 0x00 or 0xff as these values are commonly used to
|
|
|
|
|
pad data blocks and are no valid ASN.1 encoding. */
|
|
|
|
|
while (n && *p && *p != 0xff)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
|
|
|
|
const unsigned char *pp;
|
|
|
|
|
size_t nn;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
int where;
|
|
|
|
|
const char *errstr = NULL;
|
|
|
|
|
prkdf_object_t prkdf = NULL;
|
|
|
|
|
unsigned long ul;
|
|
|
|
|
const unsigned char *objid;
|
|
|
|
|
size_t objidlen;
|
|
|
|
|
const unsigned char *authid = NULL;
|
|
|
|
|
size_t authidlen = 0;
|
|
|
|
|
keyusage_flags_t usageflags;
|
|
|
|
|
unsigned long key_reference = 0;
|
|
|
|
|
int key_reference_valid = 0;
|
|
|
|
|
const char *s;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
|
|
|
|
err = parse_ber_header (&p, &n, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > n || tag != TAG_SEQUENCE))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
2005-04-27 14:09:21 +02:00
|
|
|
|
log_error ("error parsing PrKDF record: %s\n", gpg_strerror (err));
|
2004-12-02 08:48:09 +01:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
pp = p;
|
|
|
|
|
nn = objlen;
|
|
|
|
|
p += objlen;
|
|
|
|
|
n -= objlen;
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Parse the commonObjectAttributes. */
|
|
|
|
|
where = __LINE__;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn || tag != TAG_SEQUENCE))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
2005-04-27 14:09:21 +02:00
|
|
|
|
goto parse_error;
|
|
|
|
|
{
|
|
|
|
|
const unsigned char *ppp = pp;
|
|
|
|
|
size_t nnn = objlen;
|
|
|
|
|
|
|
|
|
|
pp += objlen;
|
|
|
|
|
nn -= objlen;
|
|
|
|
|
|
|
|
|
|
/* Search the optional AuthId. We need to skip the optional
|
|
|
|
|
Label (UTF8STRING) and the optional CommonObjectFlags
|
|
|
|
|
(BITSTRING). */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nnn || class != CLASS_UNIVERSAL))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto no_authid;
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
if (tag == TAG_UTF8_STRING)
|
|
|
|
|
{
|
|
|
|
|
ppp += objlen; /* Skip the Label. */
|
|
|
|
|
nnn -= objlen;
|
|
|
|
|
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nnn || class != CLASS_UNIVERSAL))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto no_authid;
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
if (tag == TAG_BIT_STRING)
|
|
|
|
|
{
|
|
|
|
|
ppp += objlen; /* Skip the CommonObjectFlags. */
|
|
|
|
|
nnn -= objlen;
|
|
|
|
|
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nnn || class != CLASS_UNIVERSAL))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto no_authid;
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
if (tag == TAG_OCTET_STRING && objlen)
|
|
|
|
|
{
|
|
|
|
|
authid = ppp;
|
|
|
|
|
authidlen = objlen;
|
|
|
|
|
}
|
|
|
|
|
no_authid:
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Parse the commonKeyAttributes. */
|
|
|
|
|
where = __LINE__;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn || tag != TAG_SEQUENCE))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
2005-04-27 14:09:21 +02:00
|
|
|
|
goto parse_error;
|
|
|
|
|
{
|
|
|
|
|
const unsigned char *ppp = pp;
|
|
|
|
|
size_t nnn = objlen;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
pp += objlen;
|
|
|
|
|
nn -= objlen;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Get the Id. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nnn
|
|
|
|
|
|| class != CLASS_UNIVERSAL || tag != TAG_OCTET_STRING))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
objid = ppp;
|
|
|
|
|
objidlen = objlen;
|
|
|
|
|
ppp += objlen;
|
|
|
|
|
nnn -= objlen;
|
|
|
|
|
|
|
|
|
|
/* Get the KeyUsageFlags. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nnn
|
|
|
|
|
|| class != CLASS_UNIVERSAL || tag != TAG_BIT_STRING))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
err = parse_keyusage_flags (ppp, objlen, &usageflags);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
ppp += objlen;
|
|
|
|
|
nnn -= objlen;
|
|
|
|
|
|
|
|
|
|
/* Find the keyReference */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto leave_cki;
|
|
|
|
|
if (!err && objlen > nnn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
if (class == CLASS_UNIVERSAL && tag == TAG_BOOLEAN)
|
|
|
|
|
{
|
|
|
|
|
/* Skip the native element. */
|
|
|
|
|
ppp += objlen;
|
|
|
|
|
nnn -= objlen;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto leave_cki;
|
|
|
|
|
if (!err && objlen > nnn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
if (class == CLASS_UNIVERSAL && tag == TAG_BIT_STRING)
|
|
|
|
|
{
|
|
|
|
|
/* Skip the accessFlags. */
|
|
|
|
|
ppp += objlen;
|
|
|
|
|
nnn -= objlen;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto leave_cki;
|
|
|
|
|
if (!err && objlen > nnn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
if (class == CLASS_UNIVERSAL && tag == TAG_INTEGER)
|
|
|
|
|
{
|
|
|
|
|
/* Yep, this is the keyReference. */
|
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*ppp++) & 0xff;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nnn--;
|
|
|
|
|
}
|
|
|
|
|
key_reference = ul;
|
|
|
|
|
key_reference_valid = 1;
|
|
|
|
|
}
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
leave_cki:
|
|
|
|
|
;
|
|
|
|
|
}
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Skip subClassAttributes. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && objlen > nn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
if (class == CLASS_CONTEXT && tag == 0)
|
|
|
|
|
{
|
|
|
|
|
pp += objlen;
|
|
|
|
|
nn -= objlen;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
}
|
|
|
|
|
/* Parse the keyAttributes. */
|
|
|
|
|
if (!err && (objlen > nn || class != CLASS_CONTEXT || tag != 1))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
nn = objlen;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && objlen > nn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
if (class == CLASS_UNIVERSAL && tag == TAG_SEQUENCE)
|
|
|
|
|
; /* RSA */
|
|
|
|
|
else if (class == CLASS_CONTEXT)
|
|
|
|
|
{
|
|
|
|
|
switch (tag)
|
|
|
|
|
{
|
|
|
|
|
case 0: errstr = "EC key objects are not supported"; break;
|
|
|
|
|
case 1: errstr = "DH key objects are not supported"; break;
|
|
|
|
|
case 2: errstr = "DSA key objects are not supported"; break;
|
|
|
|
|
case 3: errstr = "KEA key objects are not supported"; break;
|
|
|
|
|
default: errstr = "unknown privateKeyObject"; break;
|
|
|
|
|
}
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nn = objlen;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Check that the reference is a Path object. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && objlen > nn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
if (class != CLASS_UNIVERSAL || tag != TAG_SEQUENCE)
|
|
|
|
|
{
|
|
|
|
|
errstr = "unsupported reference type";
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
nn = objlen;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Parse the Path object. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && objlen > nn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Make sure that the next element is a non zero path and of
|
|
|
|
|
even length (FID are two bytes each). */
|
|
|
|
|
if (class != CLASS_UNIVERSAL || tag != TAG_OCTET_STRING
|
|
|
|
|
|| !objlen || (objlen & 1) )
|
|
|
|
|
{
|
|
|
|
|
errstr = "invalid path reference";
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
/* Create a new PrKDF list item. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
prkdf = xtrycalloc (1, (sizeof *prkdf
|
2005-04-27 14:09:21 +02:00
|
|
|
|
- sizeof(unsigned short)
|
|
|
|
|
+ objlen/2 * sizeof(unsigned short)));
|
|
|
|
|
if (!prkdf)
|
|
|
|
|
{
|
2006-09-14 18:50:33 +02:00
|
|
|
|
err = gpg_error_from_syserror ();
|
2005-04-27 14:09:21 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
prkdf->objidlen = objidlen;
|
|
|
|
|
prkdf->objid = xtrymalloc (objidlen);
|
|
|
|
|
if (!prkdf->objid)
|
|
|
|
|
{
|
2006-09-14 18:50:33 +02:00
|
|
|
|
err = gpg_error_from_syserror ();
|
2005-04-27 14:09:21 +02:00
|
|
|
|
xfree (prkdf);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
memcpy (prkdf->objid, objid, objidlen);
|
|
|
|
|
if (authid)
|
|
|
|
|
{
|
|
|
|
|
prkdf->authidlen = authidlen;
|
|
|
|
|
prkdf->authid = xtrymalloc (authidlen);
|
|
|
|
|
if (!prkdf->authid)
|
|
|
|
|
{
|
2006-09-14 18:50:33 +02:00
|
|
|
|
err = gpg_error_from_syserror ();
|
2005-04-27 14:09:21 +02:00
|
|
|
|
xfree (prkdf->objid);
|
|
|
|
|
xfree (prkdf);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
memcpy (prkdf->authid, authid, authidlen);
|
|
|
|
|
}
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
prkdf->pathlen = objlen/2;
|
|
|
|
|
for (i=0; i < prkdf->pathlen; i++, pp += 2, nn -= 2)
|
|
|
|
|
prkdf->path[i] = ((pp[0] << 8) | pp[1]);
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
prkdf->usageflags = usageflags;
|
|
|
|
|
prkdf->key_reference = key_reference;
|
|
|
|
|
prkdf->key_reference_valid = key_reference_valid;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (nn)
|
|
|
|
|
{
|
|
|
|
|
/* An index and length follows. */
|
|
|
|
|
prkdf->have_off = 1;
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn
|
|
|
|
|
|| class != CLASS_UNIVERSAL || tag != TAG_INTEGER))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*pp++) & 0xff;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nn--;
|
|
|
|
|
}
|
|
|
|
|
prkdf->off = ul;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn
|
|
|
|
|
|| class != CLASS_CONTEXT || tag != 0))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*pp++) & 0xff;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nn--;
|
|
|
|
|
}
|
|
|
|
|
prkdf->len = ul;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
log_debug ("PrKDF %04hX: id=", fid);
|
|
|
|
|
for (i=0; i < prkdf->objidlen; i++)
|
|
|
|
|
log_printf ("%02X", prkdf->objid[i]);
|
|
|
|
|
log_printf (" path=");
|
|
|
|
|
for (i=0; i < prkdf->pathlen; i++)
|
|
|
|
|
log_printf ("%04hX", prkdf->path[i]);
|
|
|
|
|
if (prkdf->have_off)
|
|
|
|
|
log_printf ("[%lu/%lu]", prkdf->off, prkdf->len);
|
|
|
|
|
if (prkdf->authid)
|
|
|
|
|
{
|
|
|
|
|
log_printf (" authid=");
|
|
|
|
|
for (i=0; i < prkdf->authidlen; i++)
|
|
|
|
|
log_printf ("%02X", prkdf->authid[i]);
|
|
|
|
|
}
|
|
|
|
|
if (prkdf->key_reference_valid)
|
|
|
|
|
log_printf (" keyref=0x%02lX", prkdf->key_reference);
|
|
|
|
|
log_printf (" usage=");
|
|
|
|
|
s = "";
|
|
|
|
|
if (prkdf->usageflags.encrypt) log_printf ("%sencrypt", s), s = ",";
|
|
|
|
|
if (prkdf->usageflags.decrypt) log_printf ("%sdecrypt", s), s = ",";
|
|
|
|
|
if (prkdf->usageflags.sign ) log_printf ("%ssign", s), s = ",";
|
|
|
|
|
if (prkdf->usageflags.sign_recover)
|
|
|
|
|
log_printf ("%ssign_recover", s), s = ",";
|
|
|
|
|
if (prkdf->usageflags.wrap ) log_printf ("%swrap", s), s = ",";
|
|
|
|
|
if (prkdf->usageflags.unwrap ) log_printf ("%sunwrap", s), s = ",";
|
|
|
|
|
if (prkdf->usageflags.verify ) log_printf ("%sverify", s), s = ",";
|
|
|
|
|
if (prkdf->usageflags.verify_recover)
|
|
|
|
|
log_printf ("%sverify_recover", s), s = ",";
|
|
|
|
|
if (prkdf->usageflags.derive ) log_printf ("%sderive", s), s = ",";
|
|
|
|
|
if (prkdf->usageflags.non_repudiation)
|
|
|
|
|
log_printf ("%snon_repudiation", s), s = ",";
|
|
|
|
|
log_printf ("\n");
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Put it into the list. */
|
|
|
|
|
prkdf->next = prkdflist;
|
|
|
|
|
prkdflist = prkdf;
|
|
|
|
|
prkdf = NULL;
|
|
|
|
|
continue; /* Ready. */
|
|
|
|
|
|
|
|
|
|
parse_error:
|
|
|
|
|
log_error ("error parsing PrKDF record (%d): %s - skipped\n",
|
|
|
|
|
where, errstr? errstr : gpg_strerror (err));
|
|
|
|
|
if (prkdf)
|
|
|
|
|
{
|
|
|
|
|
xfree (prkdf->objid);
|
|
|
|
|
xfree (prkdf->authid);
|
|
|
|
|
xfree (prkdf);
|
|
|
|
|
}
|
|
|
|
|
err = 0;
|
|
|
|
|
} /* End looping over all records. */
|
|
|
|
|
|
|
|
|
|
leave:
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
if (err)
|
|
|
|
|
release_prkdflist (prkdflist);
|
|
|
|
|
else
|
|
|
|
|
*result = prkdflist;
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Read and parse the Certificate Directory Files identified by FID.
|
|
|
|
|
On success a newlist of CDF object gets stored at RESULT and the
|
|
|
|
|
caller is then responsible of releasing this list. On error a
|
|
|
|
|
error code is returned and RESULT won't get changed. */
|
|
|
|
|
static gpg_error_t
|
|
|
|
|
read_ef_cdf (app_t app, unsigned short fid, cdf_object_t *result)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
unsigned char *buffer = NULL;
|
|
|
|
|
size_t buflen;
|
|
|
|
|
const unsigned char *p;
|
|
|
|
|
size_t n, objlen, hdrlen;
|
|
|
|
|
int class, tag, constructed, ndef;
|
|
|
|
|
cdf_object_t cdflist = NULL;
|
|
|
|
|
int i;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (!fid)
|
|
|
|
|
return gpg_error (GPG_ERR_NO_DATA); /* No certificates. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = select_and_read_binary (app_get_slot (app), fid, "CDF",
|
|
|
|
|
&buffer, &buflen);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
p = buffer;
|
|
|
|
|
n = buflen;
|
|
|
|
|
|
|
|
|
|
/* Loop over the records. We stop as soon as we detect a new record
|
|
|
|
|
starting with 0x00 or 0xff as these values are commonly used to
|
|
|
|
|
pad data blocks and are no valid ASN.1 encoding. */
|
|
|
|
|
while (n && *p && *p != 0xff)
|
|
|
|
|
{
|
|
|
|
|
const unsigned char *pp;
|
|
|
|
|
size_t nn;
|
|
|
|
|
int where;
|
|
|
|
|
const char *errstr = NULL;
|
|
|
|
|
cdf_object_t cdf = NULL;
|
|
|
|
|
unsigned long ul;
|
|
|
|
|
const unsigned char *objid;
|
|
|
|
|
size_t objidlen;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
err = parse_ber_header (&p, &n, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > n || tag != TAG_SEQUENCE))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error parsing CDF record: %s\n", gpg_strerror (err));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
pp = p;
|
|
|
|
|
nn = objlen;
|
|
|
|
|
p += objlen;
|
|
|
|
|
n -= objlen;
|
|
|
|
|
|
|
|
|
|
/* Skip the commonObjectAttributes. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn || tag != TAG_SEQUENCE))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
pp += objlen;
|
|
|
|
|
nn -= objlen;
|
|
|
|
|
|
|
|
|
|
/* Parse the commonCertificateAttributes. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn || tag != TAG_SEQUENCE))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
{
|
|
|
|
|
const unsigned char *ppp = pp;
|
|
|
|
|
size_t nnn = objlen;
|
|
|
|
|
|
|
|
|
|
pp += objlen;
|
|
|
|
|
nn -= objlen;
|
|
|
|
|
|
|
|
|
|
/* Get the Id. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nnn
|
|
|
|
|
|| class != CLASS_UNIVERSAL || tag != TAG_OCTET_STRING))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
objid = ppp;
|
|
|
|
|
objidlen = objlen;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Parse the certAttribute. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn || class != CLASS_CONTEXT || tag != 1))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
nn = objlen;
|
|
|
|
|
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn
|
|
|
|
|
|| class != CLASS_UNIVERSAL || tag != TAG_SEQUENCE))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
nn = objlen;
|
|
|
|
|
|
|
|
|
|
/* Check that the reference is a Path object. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && objlen > nn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
if (class != CLASS_UNIVERSAL || tag != TAG_SEQUENCE)
|
|
|
|
|
{
|
|
|
|
|
errstr = "unsupported reference type";
|
2017-03-06 06:59:02 +01:00
|
|
|
|
goto parse_error;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
}
|
|
|
|
|
nn = objlen;
|
|
|
|
|
|
|
|
|
|
/* Parse the Path object. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && objlen > nn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
|
|
|
|
|
/* Make sure that the next element is a non zero path and of
|
|
|
|
|
even length (FID are two bytes each). */
|
|
|
|
|
if (class != CLASS_UNIVERSAL || tag != TAG_OCTET_STRING
|
|
|
|
|
|| !objlen || (objlen & 1) )
|
|
|
|
|
{
|
|
|
|
|
errstr = "invalid path reference";
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
/* Create a new CDF list item. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
cdf = xtrycalloc (1, (sizeof *cdf
|
2005-04-27 14:09:21 +02:00
|
|
|
|
- sizeof(unsigned short)
|
|
|
|
|
+ objlen/2 * sizeof(unsigned short)));
|
|
|
|
|
if (!cdf)
|
|
|
|
|
{
|
2006-09-14 18:50:33 +02:00
|
|
|
|
err = gpg_error_from_syserror ();
|
2005-04-27 14:09:21 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
cdf->objidlen = objidlen;
|
|
|
|
|
cdf->objid = xtrymalloc (objidlen);
|
|
|
|
|
if (!cdf->objid)
|
|
|
|
|
{
|
2006-09-14 18:50:33 +02:00
|
|
|
|
err = gpg_error_from_syserror ();
|
2005-04-27 14:09:21 +02:00
|
|
|
|
xfree (cdf);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
memcpy (cdf->objid, objid, objidlen);
|
|
|
|
|
|
|
|
|
|
cdf->pathlen = objlen/2;
|
|
|
|
|
for (i=0; i < cdf->pathlen; i++, pp += 2, nn -= 2)
|
|
|
|
|
cdf->path[i] = ((pp[0] << 8) | pp[1]);
|
|
|
|
|
|
|
|
|
|
if (nn)
|
|
|
|
|
{
|
|
|
|
|
/* An index and length follows. */
|
|
|
|
|
cdf->have_off = 1;
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn
|
|
|
|
|
|| class != CLASS_UNIVERSAL || tag != TAG_INTEGER))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*pp++) & 0xff;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nn--;
|
|
|
|
|
}
|
|
|
|
|
cdf->off = ul;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn
|
|
|
|
|
|| class != CLASS_CONTEXT || tag != 0))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*pp++) & 0xff;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nn--;
|
|
|
|
|
}
|
|
|
|
|
cdf->len = ul;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log_debug ("CDF %04hX: id=", fid);
|
|
|
|
|
for (i=0; i < cdf->objidlen; i++)
|
|
|
|
|
log_printf ("%02X", cdf->objid[i]);
|
|
|
|
|
log_printf (" path=");
|
|
|
|
|
for (i=0; i < cdf->pathlen; i++)
|
|
|
|
|
log_printf ("%04hX", cdf->path[i]);
|
|
|
|
|
if (cdf->have_off)
|
|
|
|
|
log_printf ("[%lu/%lu]", cdf->off, cdf->len);
|
|
|
|
|
log_printf ("\n");
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Put it into the list. */
|
|
|
|
|
cdf->next = cdflist;
|
|
|
|
|
cdflist = cdf;
|
|
|
|
|
cdf = NULL;
|
|
|
|
|
continue; /* Ready. */
|
|
|
|
|
|
|
|
|
|
parse_error:
|
|
|
|
|
log_error ("error parsing CDF record (%d): %s - skipped\n",
|
|
|
|
|
where, errstr? errstr : gpg_strerror (err));
|
|
|
|
|
xfree (cdf);
|
|
|
|
|
err = 0;
|
|
|
|
|
} /* End looping over all records. */
|
|
|
|
|
|
|
|
|
|
leave:
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
if (err)
|
|
|
|
|
release_cdflist (cdflist);
|
|
|
|
|
else
|
|
|
|
|
*result = cdflist;
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
SEQUENCE {
|
|
|
|
|
SEQUENCE { -- CommonObjectAttributes
|
|
|
|
|
UTF8String 'specific PIN for DS'
|
|
|
|
|
BIT STRING 0 unused bits
|
|
|
|
|
'00000011'B
|
|
|
|
|
}
|
|
|
|
|
SEQUENCE { -- CommonAuthenticationObjectAttributes
|
|
|
|
|
OCTET STRING
|
|
|
|
|
07 -- iD
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[1] { -- typeAttributes
|
|
|
|
|
SEQUENCE { -- PinAttributes
|
|
|
|
|
BIT STRING 0 unused bits
|
|
|
|
|
'0000100000110010'B -- local,initialized,needs-padding
|
|
|
|
|
-- exchangeRefData
|
|
|
|
|
ENUMERATED 1 -- ascii-numeric
|
|
|
|
|
INTEGER 6 -- minLength
|
|
|
|
|
INTEGER 6 -- storedLength
|
|
|
|
|
INTEGER 8 -- maxLength
|
|
|
|
|
[0]
|
|
|
|
|
02 -- pinReference
|
|
|
|
|
GeneralizedTime 19/04/2002 12:12 GMT -- lastPinChange
|
|
|
|
|
SEQUENCE {
|
|
|
|
|
OCTET STRING
|
|
|
|
|
3F 00 40 16 -- path to DF of PIN
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
/* Read and parse an Authentication Object Directory File identified
|
|
|
|
|
by FID. On success a newlist of AODF objects gets stored at RESULT
|
|
|
|
|
and the caller is responsible of releasing this list. On error a
|
|
|
|
|
error code is returned and RESULT won't get changed. */
|
|
|
|
|
static gpg_error_t
|
|
|
|
|
read_ef_aodf (app_t app, unsigned short fid, aodf_object_t *result)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
unsigned char *buffer = NULL;
|
|
|
|
|
size_t buflen;
|
|
|
|
|
const unsigned char *p;
|
|
|
|
|
size_t n, objlen, hdrlen;
|
|
|
|
|
int class, tag, constructed, ndef;
|
|
|
|
|
aodf_object_t aodflist = NULL;
|
|
|
|
|
int i;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (!fid)
|
|
|
|
|
return gpg_error (GPG_ERR_NO_DATA); /* No authentication objects. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = select_and_read_binary (app_get_slot (app), fid, "AODF",
|
|
|
|
|
&buffer, &buflen);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
p = buffer;
|
|
|
|
|
n = buflen;
|
|
|
|
|
|
|
|
|
|
/* FIXME: This shares a LOT of code with read_ef_prkdf! */
|
|
|
|
|
|
|
|
|
|
/* Loop over the records. We stop as soon as we detect a new record
|
|
|
|
|
starting with 0x00 or 0xff as these values are commonly used to
|
|
|
|
|
pad data blocks and are no valid ASN.1 encoding. */
|
|
|
|
|
while (n && *p && *p != 0xff)
|
|
|
|
|
{
|
|
|
|
|
const unsigned char *pp;
|
|
|
|
|
size_t nn;
|
|
|
|
|
int where;
|
|
|
|
|
const char *errstr = NULL;
|
|
|
|
|
aodf_object_t aodf = NULL;
|
|
|
|
|
unsigned long ul;
|
|
|
|
|
const char *s;
|
|
|
|
|
|
|
|
|
|
err = parse_ber_header (&p, &n, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > n || tag != TAG_SEQUENCE))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error parsing AODF record: %s\n", gpg_strerror (err));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
pp = p;
|
|
|
|
|
nn = objlen;
|
|
|
|
|
p += objlen;
|
|
|
|
|
n -= objlen;
|
|
|
|
|
|
|
|
|
|
/* Allocate memory for a new AODF list item. */
|
|
|
|
|
aodf = xtrycalloc (1, sizeof *aodf);
|
|
|
|
|
if (!aodf)
|
|
|
|
|
goto no_core;
|
|
|
|
|
|
|
|
|
|
/* Parse the commonObjectAttributes. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn || tag != TAG_SEQUENCE))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
{
|
|
|
|
|
const unsigned char *ppp = pp;
|
|
|
|
|
size_t nnn = objlen;
|
|
|
|
|
|
|
|
|
|
pp += objlen;
|
|
|
|
|
nn -= objlen;
|
|
|
|
|
|
|
|
|
|
/* Search the optional AuthId. We need to skip the optional
|
|
|
|
|
Label (UTF8STRING) and the optional CommonObjectFlags
|
|
|
|
|
(BITSTRING). */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nnn || class != CLASS_UNIVERSAL))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto no_authid;
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
if (tag == TAG_UTF8_STRING)
|
|
|
|
|
{
|
|
|
|
|
ppp += objlen; /* Skip the Label. */
|
|
|
|
|
nnn -= objlen;
|
|
|
|
|
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nnn || class != CLASS_UNIVERSAL))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto no_authid;
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
if (tag == TAG_BIT_STRING)
|
|
|
|
|
{
|
|
|
|
|
ppp += objlen; /* Skip the CommonObjectFlags. */
|
|
|
|
|
nnn -= objlen;
|
|
|
|
|
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nnn || class != CLASS_UNIVERSAL))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto no_authid;
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
if (tag == TAG_OCTET_STRING && objlen)
|
|
|
|
|
{
|
|
|
|
|
aodf->authidlen = objlen;
|
|
|
|
|
aodf->authid = xtrymalloc (objlen);
|
|
|
|
|
if (!aodf->authid)
|
|
|
|
|
goto no_core;
|
|
|
|
|
memcpy (aodf->authid, ppp, objlen);
|
|
|
|
|
}
|
|
|
|
|
no_authid:
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Parse the CommonAuthenticationObjectAttributes. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn || tag != TAG_SEQUENCE))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
{
|
|
|
|
|
const unsigned char *ppp = pp;
|
|
|
|
|
size_t nnn = objlen;
|
|
|
|
|
|
|
|
|
|
pp += objlen;
|
|
|
|
|
nn -= objlen;
|
|
|
|
|
|
|
|
|
|
/* Get the Id. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nnn
|
|
|
|
|
|| class != CLASS_UNIVERSAL || tag != TAG_OCTET_STRING))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
|
|
|
|
|
aodf->objidlen = objlen;
|
|
|
|
|
aodf->objid = xtrymalloc (objlen);
|
|
|
|
|
if (!aodf->objid)
|
|
|
|
|
goto no_core;
|
|
|
|
|
memcpy (aodf->objid, ppp, objlen);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Parse the typeAttributes. */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn || class != CLASS_CONTEXT || tag != 1))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
nn = objlen;
|
|
|
|
|
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && objlen > nn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
if (class == CLASS_UNIVERSAL && tag == TAG_SEQUENCE)
|
|
|
|
|
; /* PinAttributes */
|
|
|
|
|
else if (class == CLASS_CONTEXT)
|
|
|
|
|
{
|
|
|
|
|
switch (tag)
|
|
|
|
|
{
|
|
|
|
|
case 0: errstr = "biometric auth types are not supported"; break;
|
|
|
|
|
case 1: errstr = "authKey auth types are not supported"; break;
|
|
|
|
|
case 2: errstr = "external auth type are not supported"; break;
|
|
|
|
|
default: errstr = "unknown privateKeyObject"; break;
|
|
|
|
|
}
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nn = objlen;
|
|
|
|
|
|
|
|
|
|
/* PinFlags */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn || !objlen
|
|
|
|
|
|| class != CLASS_UNIVERSAL || tag != TAG_BIT_STRING))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
unsigned int bits, mask;
|
|
|
|
|
int unused, full;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
unused = *pp++; nn--; objlen--;
|
|
|
|
|
if ((!objlen && unused) || unused/8 > objlen)
|
|
|
|
|
{
|
|
|
|
|
err = gpg_error (GPG_ERR_ENCODING_PROBLEM);
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
full = objlen - (unused+7)/8;
|
|
|
|
|
unused %= 8;
|
|
|
|
|
mask = 0;
|
|
|
|
|
for (i=1; unused; i <<= 1, unused--)
|
|
|
|
|
mask |= i;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* The first octet */
|
|
|
|
|
bits = 0;
|
|
|
|
|
if (objlen)
|
|
|
|
|
{
|
|
|
|
|
bits = *pp++; nn--; objlen--;
|
|
|
|
|
if (full)
|
|
|
|
|
full--;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
else
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
bits &= ~mask;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
mask = 0;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ((bits & 0x80)) /* ASN.1 bit 0. */
|
|
|
|
|
aodf->pinflags.case_sensitive = 1;
|
|
|
|
|
if ((bits & 0x40)) /* ASN.1 bit 1. */
|
|
|
|
|
aodf->pinflags.local = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if ((bits & 0x20))
|
2005-04-27 14:09:21 +02:00
|
|
|
|
aodf->pinflags.change_disabled = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if ((bits & 0x10))
|
2005-04-27 14:09:21 +02:00
|
|
|
|
aodf->pinflags.unblock_disabled = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if ((bits & 0x08))
|
2005-04-27 14:09:21 +02:00
|
|
|
|
aodf->pinflags.initialized = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if ((bits & 0x04))
|
2005-04-27 14:09:21 +02:00
|
|
|
|
aodf->pinflags.needs_padding = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if ((bits & 0x02))
|
2005-04-27 14:09:21 +02:00
|
|
|
|
aodf->pinflags.unblocking_pin = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if ((bits & 0x01))
|
2005-04-27 14:09:21 +02:00
|
|
|
|
aodf->pinflags.so_pin = 1;
|
|
|
|
|
/* The second octet. */
|
|
|
|
|
bits = 0;
|
|
|
|
|
if (objlen)
|
|
|
|
|
{
|
|
|
|
|
bits = *pp++; nn--; objlen--;
|
|
|
|
|
if (full)
|
|
|
|
|
full--;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
else
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
bits &= ~mask;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if ((bits & 0x80))
|
2005-04-27 14:09:21 +02:00
|
|
|
|
aodf->pinflags.disable_allowed = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if ((bits & 0x40))
|
2005-04-27 14:09:21 +02:00
|
|
|
|
aodf->pinflags.integrity_protected = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if ((bits & 0x20))
|
2005-04-27 14:09:21 +02:00
|
|
|
|
aodf->pinflags.confidentiality_protected = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if ((bits & 0x10))
|
2005-04-27 14:09:21 +02:00
|
|
|
|
aodf->pinflags.exchange_ref_data = 1;
|
|
|
|
|
/* Skip remaining bits. */
|
|
|
|
|
pp += objlen;
|
|
|
|
|
nn -= objlen;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* PinType */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn
|
|
|
|
|
|| class != CLASS_UNIVERSAL || tag != TAG_ENUMERATED))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
2017-04-10 06:18:30 +02:00
|
|
|
|
if (!err && objlen > sizeof (ul))
|
2005-04-27 14:09:21 +02:00
|
|
|
|
err = gpg_error (GPG_ERR_UNSUPPORTED_ENCODING);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
|
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*pp++) & 0xff;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nn--;
|
|
|
|
|
}
|
|
|
|
|
aodf->pintype = ul;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* minLength */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn
|
|
|
|
|
|| class != CLASS_UNIVERSAL || tag != TAG_INTEGER))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (!err && objlen > sizeof (ul))
|
|
|
|
|
err = gpg_error (GPG_ERR_UNSUPPORTED_ENCODING);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*pp++) & 0xff;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nn--;
|
|
|
|
|
}
|
|
|
|
|
aodf->min_length = ul;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* storedLength */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nn
|
|
|
|
|
|| class != CLASS_UNIVERSAL || tag != TAG_INTEGER))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (!err && objlen > sizeof (ul))
|
|
|
|
|
err = gpg_error (GPG_ERR_UNSUPPORTED_ENCODING);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*pp++) & 0xff;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nn--;
|
|
|
|
|
}
|
|
|
|
|
aodf->stored_length = ul;
|
|
|
|
|
|
|
|
|
|
/* optional maxLength */
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto ready;
|
|
|
|
|
if (!err && objlen > nn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
if (class == CLASS_UNIVERSAL && tag == TAG_INTEGER)
|
|
|
|
|
{
|
|
|
|
|
if (objlen > sizeof (ul))
|
|
|
|
|
{
|
|
|
|
|
err = gpg_error (GPG_ERR_UNSUPPORTED_ENCODING);
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*pp++) & 0xff;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nn--;
|
|
|
|
|
}
|
|
|
|
|
aodf->max_length = ul;
|
|
|
|
|
aodf->max_length_valid = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto ready;
|
|
|
|
|
if (!err && objlen > nn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Optional pinReference. */
|
|
|
|
|
if (class == CLASS_CONTEXT && tag == 0)
|
|
|
|
|
{
|
|
|
|
|
if (objlen > sizeof (ul))
|
|
|
|
|
{
|
|
|
|
|
err = gpg_error (GPG_ERR_UNSUPPORTED_ENCODING);
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*pp++) & 0xff;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nn--;
|
|
|
|
|
}
|
|
|
|
|
aodf->pin_reference = ul;
|
|
|
|
|
aodf->pin_reference_valid = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto ready;
|
|
|
|
|
if (!err && objlen > nn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Optional padChar. */
|
|
|
|
|
if (class == CLASS_UNIVERSAL && tag == TAG_OCTET_STRING)
|
|
|
|
|
{
|
|
|
|
|
if (objlen != 1)
|
|
|
|
|
{
|
|
|
|
|
errstr = "padChar is not of size(1)";
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
aodf->pad_char = *pp++; nn--;
|
|
|
|
|
aodf->pad_char_valid = 1;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto ready;
|
|
|
|
|
if (!err && objlen > nn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Skip optional lastPinChange. */
|
|
|
|
|
if (class == CLASS_UNIVERSAL && tag == TAG_GENERALIZED_TIME)
|
|
|
|
|
{
|
|
|
|
|
pp += objlen;
|
|
|
|
|
nn -= objlen;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&pp, &nn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_EOF)
|
|
|
|
|
goto ready;
|
|
|
|
|
if (!err && objlen > nn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Optional Path object. */
|
|
|
|
|
if (class == CLASS_UNIVERSAL || tag == TAG_SEQUENCE)
|
|
|
|
|
{
|
|
|
|
|
const unsigned char *ppp = pp;
|
|
|
|
|
size_t nnn = objlen;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
pp += objlen;
|
|
|
|
|
nn -= objlen;
|
|
|
|
|
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && objlen > nnn)
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
|
|
|
|
|
|
|
|
|
/* Make sure that the next element is a non zero FID and of
|
|
|
|
|
even length (FID are two bytes each). */
|
|
|
|
|
if (class != CLASS_UNIVERSAL || tag != TAG_OCTET_STRING
|
|
|
|
|
|| !objlen || (objlen & 1) )
|
|
|
|
|
{
|
|
|
|
|
errstr = "invalid path reference";
|
|
|
|
|
goto parse_error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
aodf->pathlen = objlen/2;
|
|
|
|
|
aodf->path = xtrymalloc (aodf->pathlen);
|
|
|
|
|
if (!aodf->path)
|
|
|
|
|
goto no_core;
|
|
|
|
|
for (i=0; i < aodf->pathlen; i++, ppp += 2, nnn -= 2)
|
|
|
|
|
aodf->path[i] = ((ppp[0] << 8) | ppp[1]);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (nnn)
|
|
|
|
|
{
|
|
|
|
|
/* An index and length follows. */
|
|
|
|
|
aodf->have_off = 1;
|
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nnn
|
|
|
|
|
|| class != CLASS_UNIVERSAL || tag != TAG_INTEGER))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*ppp++) & 0xff;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nnn--;
|
|
|
|
|
}
|
|
|
|
|
aodf->off = ul;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
where = __LINE__;
|
|
|
|
|
err = parse_ber_header (&ppp, &nnn, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > nnn
|
|
|
|
|
|| class != CLASS_CONTEXT || tag != 0))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto parse_error;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*ppp++) & 0xff;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
nnn--;
|
|
|
|
|
}
|
|
|
|
|
aodf->len = ul;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Igonore further objects which might be there due to future
|
|
|
|
|
extensions of pkcs#15. */
|
|
|
|
|
|
|
|
|
|
ready:
|
|
|
|
|
log_debug ("AODF %04hX: id=", fid);
|
|
|
|
|
for (i=0; i < aodf->objidlen; i++)
|
|
|
|
|
log_printf ("%02X", aodf->objid[i]);
|
|
|
|
|
if (aodf->authid)
|
|
|
|
|
{
|
|
|
|
|
log_printf (" authid=");
|
|
|
|
|
for (i=0; i < aodf->authidlen; i++)
|
|
|
|
|
log_printf ("%02X", aodf->authid[i]);
|
|
|
|
|
}
|
|
|
|
|
log_printf (" flags=");
|
|
|
|
|
s = "";
|
|
|
|
|
if (aodf->pinflags.case_sensitive)
|
|
|
|
|
log_printf ("%scase_sensitive", s), s = ",";
|
|
|
|
|
if (aodf->pinflags.local)
|
|
|
|
|
log_printf ("%slocal", s), s = ",";
|
|
|
|
|
if (aodf->pinflags.change_disabled)
|
|
|
|
|
log_printf ("%schange_disabled", s), s = ",";
|
|
|
|
|
if (aodf->pinflags.unblock_disabled)
|
|
|
|
|
log_printf ("%sunblock_disabled", s), s = ",";
|
|
|
|
|
if (aodf->pinflags.initialized)
|
|
|
|
|
log_printf ("%sinitialized", s), s = ",";
|
|
|
|
|
if (aodf->pinflags.needs_padding)
|
|
|
|
|
log_printf ("%sneeds_padding", s), s = ",";
|
|
|
|
|
if (aodf->pinflags.unblocking_pin)
|
|
|
|
|
log_printf ("%sunblocking_pin", s), s = ",";
|
|
|
|
|
if (aodf->pinflags.so_pin)
|
|
|
|
|
log_printf ("%sso_pin", s), s = ",";
|
|
|
|
|
if (aodf->pinflags.disable_allowed)
|
|
|
|
|
log_printf ("%sdisable_allowed", s), s = ",";
|
|
|
|
|
if (aodf->pinflags.integrity_protected)
|
|
|
|
|
log_printf ("%sintegrity_protected", s), s = ",";
|
|
|
|
|
if (aodf->pinflags.confidentiality_protected)
|
|
|
|
|
log_printf ("%sconfidentiality_protected", s), s = ",";
|
|
|
|
|
if (aodf->pinflags.exchange_ref_data)
|
|
|
|
|
log_printf ("%sexchange_ref_data", s), s = ",";
|
|
|
|
|
{
|
|
|
|
|
char numbuf[50];
|
|
|
|
|
switch (aodf->pintype)
|
|
|
|
|
{
|
|
|
|
|
case PIN_TYPE_BCD: s = "bcd"; break;
|
|
|
|
|
case PIN_TYPE_ASCII_NUMERIC: s = "ascii-numeric"; break;
|
|
|
|
|
case PIN_TYPE_UTF8: s = "utf8"; break;
|
|
|
|
|
case PIN_TYPE_HALF_NIBBLE_BCD: s = "half-nibble-bcd"; break;
|
|
|
|
|
case PIN_TYPE_ISO9564_1: s = "iso9564-1"; break;
|
|
|
|
|
default:
|
|
|
|
|
sprintf (numbuf, "%lu", (unsigned long)aodf->pintype);
|
|
|
|
|
s = numbuf;
|
|
|
|
|
}
|
|
|
|
|
log_printf (" type=%s", s);
|
|
|
|
|
}
|
|
|
|
|
log_printf (" min=%lu", aodf->min_length);
|
|
|
|
|
log_printf (" stored=%lu", aodf->stored_length);
|
|
|
|
|
if (aodf->max_length_valid)
|
|
|
|
|
log_printf (" max=%lu", aodf->max_length);
|
|
|
|
|
if (aodf->pad_char_valid)
|
|
|
|
|
log_printf (" pad=0x%02x", aodf->pad_char);
|
|
|
|
|
if (aodf->pin_reference_valid)
|
|
|
|
|
log_printf (" pinref=0x%02lX", aodf->pin_reference);
|
|
|
|
|
if (aodf->pathlen)
|
|
|
|
|
{
|
|
|
|
|
log_printf (" path=");
|
|
|
|
|
for (i=0; i < aodf->pathlen; i++)
|
|
|
|
|
log_printf ("%04hX", aodf->path[i]);
|
|
|
|
|
if (aodf->have_off)
|
|
|
|
|
log_printf ("[%lu/%lu]", aodf->off, aodf->len);
|
|
|
|
|
}
|
|
|
|
|
log_printf ("\n");
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Put it into the list. */
|
|
|
|
|
aodf->next = aodflist;
|
|
|
|
|
aodflist = aodf;
|
|
|
|
|
aodf = NULL;
|
|
|
|
|
continue; /* Ready. */
|
|
|
|
|
|
|
|
|
|
no_core:
|
2006-09-14 18:50:33 +02:00
|
|
|
|
err = gpg_error_from_syserror ();
|
2005-04-27 14:09:21 +02:00
|
|
|
|
release_aodf_object (aodf);
|
|
|
|
|
goto leave;
|
|
|
|
|
|
|
|
|
|
parse_error:
|
|
|
|
|
log_error ("error parsing AODF record (%d): %s - skipped\n",
|
|
|
|
|
where, errstr? errstr : gpg_strerror (err));
|
|
|
|
|
err = 0;
|
|
|
|
|
release_aodf_object (aodf);
|
|
|
|
|
} /* End looping over all records. */
|
|
|
|
|
|
|
|
|
|
leave:
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
if (err)
|
|
|
|
|
release_aodflist (aodflist);
|
|
|
|
|
else
|
|
|
|
|
*result = aodflist;
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
/* Read and parse the EF(TokenInfo).
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
TokenInfo ::= SEQUENCE {
|
|
|
|
|
version INTEGER {v1(0)} (v1,...),
|
|
|
|
|
serialNumber OCTET STRING,
|
2004-12-02 08:48:09 +01:00
|
|
|
|
manufacturerID Label OPTIONAL,
|
|
|
|
|
label [0] Label OPTIONAL,
|
|
|
|
|
tokenflags TokenFlags,
|
|
|
|
|
seInfo SEQUENCE OF SecurityEnvironmentInfo OPTIONAL,
|
|
|
|
|
recordInfo [1] RecordInfo OPTIONAL,
|
|
|
|
|
supportedAlgorithms [2] SEQUENCE OF AlgorithmInfo OPTIONAL,
|
|
|
|
|
...,
|
|
|
|
|
issuerId [3] Label OPTIONAL,
|
|
|
|
|
holderId [4] Label OPTIONAL,
|
|
|
|
|
lastUpdate [5] LastUpdate OPTIONAL,
|
|
|
|
|
preferredLanguage PrintableString OPTIONAL -- In accordance with
|
2011-02-04 12:57:53 +01:00
|
|
|
|
-- IETF RFC 1766
|
2004-12-02 08:48:09 +01:00
|
|
|
|
} (CONSTRAINED BY { -- Each AlgorithmInfo.reference value must be unique --})
|
|
|
|
|
|
|
|
|
|
TokenFlags ::= BIT STRING {
|
2009-12-15 12:03:17 +01:00
|
|
|
|
readOnly (0),
|
2004-12-02 08:48:09 +01:00
|
|
|
|
loginRequired (1),
|
|
|
|
|
prnGeneration (2),
|
|
|
|
|
eidCompliant (3)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5032:
|
|
|
|
|
|
|
|
|
|
30 31 02 01 00 04 04 05 45 36 9F 0C 0C 44 2D 54 01......E6...D-T
|
|
|
|
|
72 75 73 74 20 47 6D 62 48 80 14 4F 66 66 69 63 rust GmbH..Offic
|
|
|
|
|
65 20 69 64 65 6E 74 69 74 79 20 63 61 72 64 03 e identity card.
|
|
|
|
|
02 00 40 20 63 61 72 64 03 02 00 40 00 00 00 00 ..@ card...@....
|
|
|
|
|
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
|
|
|
|
|
|
|
|
|
|
0 49: SEQUENCE {
|
|
|
|
|
2 1: INTEGER 0
|
|
|
|
|
5 4: OCTET STRING 05 45 36 9F
|
|
|
|
|
11 12: UTF8String 'D-Trust GmbH'
|
|
|
|
|
25 20: [0] 'Office identity card'
|
|
|
|
|
47 2: BIT STRING
|
|
|
|
|
: '00000010'B (bit 1)
|
|
|
|
|
: Error: Spurious zero bits in bitstring.
|
|
|
|
|
: }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
2005-09-05 16:36:36 +02:00
|
|
|
|
static gpg_error_t
|
|
|
|
|
read_ef_tokeninfo (app_t app)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
unsigned char *buffer = NULL;
|
|
|
|
|
size_t buflen;
|
|
|
|
|
const unsigned char *p;
|
|
|
|
|
size_t n, objlen, hdrlen;
|
|
|
|
|
int class, tag, constructed, ndef;
|
|
|
|
|
unsigned long ul;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = select_and_read_binary (app_get_slot (app), 0x5032, "TokenInfo",
|
2005-09-05 16:36:36 +02:00
|
|
|
|
&buffer, &buflen);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-09-05 16:36:36 +02:00
|
|
|
|
p = buffer;
|
|
|
|
|
n = buflen;
|
|
|
|
|
|
|
|
|
|
err = parse_ber_header (&p, &n, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > n || tag != TAG_SEQUENCE))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error parsing TokenInfo: %s\n", gpg_strerror (err));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
n = objlen;
|
|
|
|
|
|
|
|
|
|
/* Version. */
|
|
|
|
|
err = parse_ber_header (&p, &n, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > n || tag != TAG_INTEGER))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto leave;
|
|
|
|
|
|
|
|
|
|
for (ul=0; objlen; objlen--)
|
|
|
|
|
{
|
|
|
|
|
ul <<= 8;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ul |= (*p++) & 0xff;
|
2005-09-05 16:36:36 +02:00
|
|
|
|
n--;
|
|
|
|
|
}
|
|
|
|
|
if (ul)
|
|
|
|
|
{
|
|
|
|
|
log_error ("invalid version %lu in TokenInfo\n", ul);
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* serialNumber. */
|
|
|
|
|
err = parse_ber_header (&p, &n, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (!err && (objlen > n || tag != TAG_OCTET_STRING || !objlen))
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
if (err)
|
|
|
|
|
goto leave;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-09-05 16:36:36 +02:00
|
|
|
|
xfree (app->app_local->serialno);
|
|
|
|
|
app->app_local->serialno = xtrymalloc (objlen);
|
|
|
|
|
if (!app->app_local->serialno)
|
|
|
|
|
{
|
2006-09-14 18:50:33 +02:00
|
|
|
|
err = gpg_error_from_syserror ();
|
2005-09-05 16:36:36 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
memcpy (app->app_local->serialno, p, objlen);
|
|
|
|
|
app->app_local->serialnolen = objlen;
|
2017-11-27 15:00:25 +01:00
|
|
|
|
log_printhex (p, objlen, "Serialnumber from EF(TokenInfo) is:");
|
2005-09-05 16:36:36 +02:00
|
|
|
|
|
|
|
|
|
leave:
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Get all the basic information from the pkcs#15 card, check the
|
|
|
|
|
structure and initialize our local context. This is used once at
|
|
|
|
|
application initialization. */
|
2004-12-02 08:48:09 +01:00
|
|
|
|
static gpg_error_t
|
2005-04-27 14:09:21 +02:00
|
|
|
|
read_p15_info (app_t app)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
2005-04-27 14:09:21 +02:00
|
|
|
|
gpg_error_t err;
|
|
|
|
|
|
2005-09-05 16:36:36 +02:00
|
|
|
|
if (!read_ef_tokeninfo (app))
|
|
|
|
|
{
|
|
|
|
|
/* If we don't have a serial number yet but the TokenInfo provides
|
|
|
|
|
one, use that. */
|
2019-06-19 08:50:40 +02:00
|
|
|
|
if (!app->card->serialno && app->app_local->serialno)
|
2005-09-05 16:36:36 +02:00
|
|
|
|
{
|
2019-06-19 08:50:40 +02:00
|
|
|
|
app->card->serialno = app->app_local->serialno;
|
|
|
|
|
app->card->serialnolen = app->app_local->serialnolen;
|
2005-09-05 16:36:36 +02:00
|
|
|
|
app->app_local->serialno = NULL;
|
|
|
|
|
app->app_local->serialnolen = 0;
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = app_munge_serialno (app->card);
|
2005-09-05 16:36:36 +02:00
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Read the ODF so that we know the location of all directory
|
|
|
|
|
files. */
|
2005-09-05 16:36:36 +02:00
|
|
|
|
/* Fixme: We might need to get a non-standard ODF FID from TokenInfo. */
|
2005-04-27 14:09:21 +02:00
|
|
|
|
err = read_ef_odf (app, 0x5031);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
|
|
|
|
/* Read certificate information. */
|
|
|
|
|
assert (!app->app_local->certificate_info);
|
|
|
|
|
assert (!app->app_local->trusted_certificate_info);
|
|
|
|
|
assert (!app->app_local->useful_certificate_info);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
err = read_ef_cdf (app, app->app_local->odf.certificates,
|
2005-04-27 14:09:21 +02:00
|
|
|
|
&app->app_local->certificate_info);
|
|
|
|
|
if (!err || gpg_err_code (err) == GPG_ERR_NO_DATA)
|
2011-02-04 12:57:53 +01:00
|
|
|
|
err = read_ef_cdf (app, app->app_local->odf.trusted_certificates,
|
2005-04-27 14:09:21 +02:00
|
|
|
|
&app->app_local->trusted_certificate_info);
|
|
|
|
|
if (!err || gpg_err_code (err) == GPG_ERR_NO_DATA)
|
2011-02-04 12:57:53 +01:00
|
|
|
|
err = read_ef_cdf (app, app->app_local->odf.useful_certificates,
|
2005-04-27 14:09:21 +02:00
|
|
|
|
&app->app_local->useful_certificate_info);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_NO_DATA)
|
|
|
|
|
err = 0;
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Read information about private keys. */
|
|
|
|
|
assert (!app->app_local->private_key_info);
|
|
|
|
|
err = read_ef_prkdf (app, app->app_local->odf.private_keys,
|
|
|
|
|
&app->app_local->private_key_info);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_NO_DATA)
|
|
|
|
|
err = 0;
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
|
|
|
|
/* Read information about authentication objects. */
|
|
|
|
|
assert (!app->app_local->auth_object_info);
|
|
|
|
|
err = read_ef_aodf (app, app->app_local->odf.auth_objects,
|
|
|
|
|
&app->app_local->auth_object_info);
|
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_NO_DATA)
|
|
|
|
|
err = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return err;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Helper to do_learn_status: Send information about all certificates
|
|
|
|
|
listed in CERTINFO back. Use CERTTYPE as type of the
|
|
|
|
|
certificate. */
|
2004-12-02 08:48:09 +01:00
|
|
|
|
static gpg_error_t
|
2005-04-27 14:09:21 +02:00
|
|
|
|
send_certinfo (app_t app, ctrl_t ctrl, const char *certtype,
|
|
|
|
|
cdf_object_t certinfo)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
2005-04-27 14:09:21 +02:00
|
|
|
|
for (; certinfo; certinfo = certinfo->next)
|
|
|
|
|
{
|
|
|
|
|
char *buf, *p;
|
|
|
|
|
|
|
|
|
|
buf = xtrymalloc (9 + certinfo->objidlen*2 + 1);
|
|
|
|
|
if (!buf)
|
2006-09-14 18:50:33 +02:00
|
|
|
|
return gpg_error_from_syserror ();
|
2005-04-27 14:09:21 +02:00
|
|
|
|
p = stpcpy (buf, "P15");
|
|
|
|
|
if (app->app_local->home_df)
|
|
|
|
|
{
|
2014-09-18 15:39:50 +02:00
|
|
|
|
snprintf (p, 6, "-%04X",
|
|
|
|
|
(unsigned int)(app->app_local->home_df & 0xffff));
|
2005-04-27 14:09:21 +02:00
|
|
|
|
p += 5;
|
|
|
|
|
}
|
|
|
|
|
p = stpcpy (p, ".");
|
2008-11-03 11:54:18 +01:00
|
|
|
|
bin2hex (certinfo->objid, certinfo->objidlen, p);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
send_status_info (ctrl, "CERTINFO",
|
|
|
|
|
certtype, strlen (certtype),
|
2011-02-04 12:57:53 +01:00
|
|
|
|
buf, strlen (buf),
|
2005-04-27 14:09:21 +02:00
|
|
|
|
NULL, (size_t)0);
|
|
|
|
|
xfree (buf);
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
/* Get the keygrip of the private key object PRKDF. On success the
|
|
|
|
|
keygrip gets returned in the caller provided 41 byte buffer
|
|
|
|
|
R_GRIPSTR. */
|
|
|
|
|
static gpg_error_t
|
|
|
|
|
keygripstr_from_prkdf (app_t app, prkdf_object_t prkdf, char *r_gripstr)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
cdf_object_t cdf;
|
|
|
|
|
unsigned char *der;
|
|
|
|
|
size_t derlen;
|
|
|
|
|
ksba_cert_t cert;
|
|
|
|
|
|
|
|
|
|
/* FIXME: We should check whether a public key directory file and a
|
|
|
|
|
matching public key for PRKDF is available. This should make
|
|
|
|
|
extraction of the key much easier. My current test card doesn't
|
|
|
|
|
have one, so we can only use the fallback solution bu looking for
|
|
|
|
|
a matching certificate and extract the key from there. */
|
|
|
|
|
|
|
|
|
|
/* Look for a matching certificate. A certificate matches if the Id
|
2014-07-24 16:16:53 +02:00
|
|
|
|
matches the one of the private key info. */
|
2005-04-27 14:09:21 +02:00
|
|
|
|
for (cdf = app->app_local->certificate_info; cdf; cdf = cdf->next)
|
|
|
|
|
if (cdf->objidlen == prkdf->objidlen
|
|
|
|
|
&& !memcmp (cdf->objid, prkdf->objid, prkdf->objidlen))
|
|
|
|
|
break;
|
|
|
|
|
if (!cdf)
|
|
|
|
|
for (cdf = app->app_local->trusted_certificate_info; cdf; cdf = cdf->next)
|
|
|
|
|
if (cdf->objidlen == prkdf->objidlen
|
|
|
|
|
&& !memcmp (cdf->objid, prkdf->objid, prkdf->objidlen))
|
|
|
|
|
break;
|
|
|
|
|
if (!cdf)
|
|
|
|
|
for (cdf = app->app_local->useful_certificate_info; cdf; cdf = cdf->next)
|
|
|
|
|
if (cdf->objidlen == prkdf->objidlen
|
|
|
|
|
&& !memcmp (cdf->objid, prkdf->objid, prkdf->objidlen))
|
|
|
|
|
break;
|
|
|
|
|
if (!cdf)
|
|
|
|
|
return gpg_error (GPG_ERR_NOT_FOUND);
|
|
|
|
|
|
|
|
|
|
err = readcert_by_cdf (app, cdf, &der, &derlen);
|
2004-12-02 08:48:09 +01:00
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
err = ksba_cert_new (&cert);
|
|
|
|
|
if (!err)
|
|
|
|
|
err = ksba_cert_init_from_mem (cert, der, derlen);
|
|
|
|
|
xfree (der);
|
|
|
|
|
if (!err)
|
|
|
|
|
err = app_help_get_keygrip_string (cert, r_gripstr);
|
|
|
|
|
ksba_cert_release (cert);
|
|
|
|
|
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Helper to do_learn_status: Send information about all known
|
|
|
|
|
keypairs back. FIXME: much code duplication from
|
2014-07-24 16:16:53 +02:00
|
|
|
|
send_certinfo(). */
|
2005-04-27 14:09:21 +02:00
|
|
|
|
static gpg_error_t
|
|
|
|
|
send_keypairinfo (app_t app, ctrl_t ctrl, prkdf_object_t keyinfo)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
|
|
|
|
|
for (; keyinfo; keyinfo = keyinfo->next)
|
|
|
|
|
{
|
|
|
|
|
char gripstr[40+1];
|
|
|
|
|
char *buf, *p;
|
2008-11-03 11:54:18 +01:00
|
|
|
|
int j;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
buf = xtrymalloc (9 + keyinfo->objidlen*2 + 1);
|
|
|
|
|
if (!buf)
|
2006-09-14 18:50:33 +02:00
|
|
|
|
return gpg_error_from_syserror ();
|
2005-04-27 14:09:21 +02:00
|
|
|
|
p = stpcpy (buf, "P15");
|
|
|
|
|
if (app->app_local->home_df)
|
|
|
|
|
{
|
2017-01-23 16:32:44 +01:00
|
|
|
|
snprintf (p, 6, "-%04X",
|
2014-09-18 15:39:50 +02:00
|
|
|
|
(unsigned int)(app->app_local->home_df & 0xffff));
|
2005-04-27 14:09:21 +02:00
|
|
|
|
p += 5;
|
|
|
|
|
}
|
|
|
|
|
p = stpcpy (p, ".");
|
2008-11-03 11:54:18 +01:00
|
|
|
|
bin2hex (keyinfo->objid, keyinfo->objidlen, p);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
err = keygripstr_from_prkdf (app, keyinfo, gripstr);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("can't get keygrip from ");
|
|
|
|
|
for (j=0; j < keyinfo->pathlen; j++)
|
|
|
|
|
log_printf ("%04hX", keyinfo->path[j]);
|
|
|
|
|
log_printf (": %s\n", gpg_strerror (err));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
assert (strlen (gripstr) == 40);
|
|
|
|
|
send_status_info (ctrl, "KEYPAIRINFO",
|
|
|
|
|
gripstr, 40,
|
2011-02-04 12:57:53 +01:00
|
|
|
|
buf, strlen (buf),
|
2005-04-27 14:09:21 +02:00
|
|
|
|
NULL, (size_t)0);
|
|
|
|
|
}
|
|
|
|
|
xfree (buf);
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This is the handler for the LEARN command. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
static gpg_error_t
|
2009-03-18 12:18:56 +01:00
|
|
|
|
do_learn_status (app_t app, ctrl_t ctrl, unsigned int flags)
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
|
2019-09-04 10:43:18 +02:00
|
|
|
|
if ((flags & APP_LEARN_FLAG_KEYPAIRINFO))
|
2009-03-18 12:18:56 +01:00
|
|
|
|
err = 0;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
err = send_certinfo (app, ctrl, "100", app->app_local->certificate_info);
|
|
|
|
|
if (!err)
|
|
|
|
|
err = send_certinfo (app, ctrl, "101",
|
|
|
|
|
app->app_local->trusted_certificate_info);
|
|
|
|
|
if (!err)
|
|
|
|
|
err = send_certinfo (app, ctrl, "102",
|
|
|
|
|
app->app_local->useful_certificate_info);
|
|
|
|
|
}
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (!err)
|
|
|
|
|
err = send_keypairinfo (app, ctrl, app->app_local->private_key_info);
|
|
|
|
|
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Read a certifciate using the information in CDF and return the
|
|
|
|
|
certificate in a newly llocated buffer R_CERT and its length
|
|
|
|
|
R_CERTLEN. */
|
|
|
|
|
static gpg_error_t
|
|
|
|
|
readcert_by_cdf (app_t app, cdf_object_t cdf,
|
|
|
|
|
unsigned char **r_cert, size_t *r_certlen)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
unsigned char *buffer = NULL;
|
|
|
|
|
const unsigned char *p, *save_p;
|
|
|
|
|
size_t buflen, n;
|
|
|
|
|
int class, tag, constructed, ndef;
|
|
|
|
|
size_t totobjlen, objlen, hdrlen;
|
|
|
|
|
int rootca;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
*r_cert = NULL;
|
|
|
|
|
*r_certlen = 0;
|
|
|
|
|
|
|
|
|
|
/* First check whether it has been cached. */
|
|
|
|
|
if (cdf->image)
|
|
|
|
|
{
|
|
|
|
|
*r_cert = xtrymalloc (cdf->imagelen);
|
|
|
|
|
if (!*r_cert)
|
2006-09-14 18:50:33 +02:00
|
|
|
|
return gpg_error_from_syserror ();
|
2005-04-27 14:09:21 +02:00
|
|
|
|
memcpy (*r_cert, cdf->image, cdf->imagelen);
|
|
|
|
|
*r_certlen = cdf->imagelen;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Read the entire file. fixme: This could be optimized by first
|
|
|
|
|
reading the header to figure out how long the certificate
|
|
|
|
|
actually is. */
|
|
|
|
|
err = select_ef_by_path (app, cdf->path, cdf->pathlen);
|
|
|
|
|
if (err)
|
|
|
|
|
goto leave;
|
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_read_binary (app_get_slot (app), cdf->off, cdf->len,
|
|
|
|
|
&buffer, &buflen);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (!err && (!buflen || *buffer == 0xff))
|
|
|
|
|
err = gpg_error (GPG_ERR_NOT_FOUND);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error reading certificate with Id ");
|
|
|
|
|
for (i=0; i < cdf->objidlen; i++)
|
|
|
|
|
log_printf ("%02X", cdf->objid[i]);
|
|
|
|
|
log_printf (": %s\n", gpg_strerror (err));
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Check whether this is really a certificate. */
|
|
|
|
|
p = buffer;
|
|
|
|
|
n = buflen;
|
|
|
|
|
err = parse_ber_header (&p, &n, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (err)
|
|
|
|
|
goto leave;
|
|
|
|
|
|
|
|
|
|
if (class == CLASS_UNIVERSAL && tag == TAG_SEQUENCE && constructed)
|
|
|
|
|
rootca = 0;
|
|
|
|
|
else if ( class == CLASS_UNIVERSAL && tag == TAG_SET && constructed )
|
|
|
|
|
rootca = 1;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
totobjlen = objlen + hdrlen;
|
|
|
|
|
assert (totobjlen <= buflen);
|
|
|
|
|
|
|
|
|
|
err = parse_ber_header (&p, &n, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
|
|
|
|
if (err)
|
|
|
|
|
goto leave;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (!rootca
|
|
|
|
|
&& class == CLASS_UNIVERSAL && tag == TAG_OBJECT_ID && !constructed)
|
|
|
|
|
{
|
|
|
|
|
/* The certificate seems to be contained in a userCertificate
|
|
|
|
|
container. Skip this and assume the following sequence is
|
|
|
|
|
the certificate. */
|
|
|
|
|
if (n < objlen)
|
|
|
|
|
{
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
p += objlen;
|
|
|
|
|
n -= objlen;
|
|
|
|
|
save_p = p;
|
|
|
|
|
err = parse_ber_header (&p, &n, &class, &tag, &constructed,
|
|
|
|
|
&ndef, &objlen, &hdrlen);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if (err)
|
2005-04-27 14:09:21 +02:00
|
|
|
|
goto leave;
|
|
|
|
|
if ( !(class == CLASS_UNIVERSAL && tag == TAG_SEQUENCE && constructed) )
|
|
|
|
|
{
|
|
|
|
|
err = gpg_error (GPG_ERR_INV_OBJ);
|
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
totobjlen = objlen + hdrlen;
|
|
|
|
|
assert (save_p + totobjlen <= buffer + buflen);
|
|
|
|
|
memmove (buffer, save_p, totobjlen);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*r_cert = buffer;
|
|
|
|
|
buffer = NULL;
|
|
|
|
|
*r_certlen = totobjlen;
|
|
|
|
|
|
|
|
|
|
/* Try to cache it. */
|
|
|
|
|
if (!cdf->image && (cdf->image = xtrymalloc (*r_certlen)))
|
|
|
|
|
{
|
|
|
|
|
memcpy (cdf->image, *r_cert, *r_certlen);
|
|
|
|
|
cdf->imagelen = *r_certlen;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
leave:
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Handler for the READCERT command.
|
|
|
|
|
|
|
|
|
|
Read the certificate with id CERTID (as returned by learn_status in
|
|
|
|
|
the CERTINFO status lines) and return it in the freshly allocated
|
|
|
|
|
buffer to be stored at R_CERT and its length at R_CERTLEN. A error
|
|
|
|
|
code will be returned on failure and R_CERT and R_CERTLEN will be
|
2014-07-24 16:16:53 +02:00
|
|
|
|
set to (NULL,0). */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
static gpg_error_t
|
2005-04-27 14:09:21 +02:00
|
|
|
|
do_readcert (app_t app, const char *certid,
|
|
|
|
|
unsigned char **r_cert, size_t *r_certlen)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
cdf_object_t cdf;
|
|
|
|
|
|
|
|
|
|
*r_cert = NULL;
|
|
|
|
|
*r_certlen = 0;
|
|
|
|
|
err = cdf_object_from_certid (app, certid, &cdf);
|
|
|
|
|
if (!err)
|
2014-07-24 16:16:53 +02:00
|
|
|
|
err = readcert_by_cdf (app, cdf, r_cert, r_certlen);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
return err;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-09-09 13:18:08 +02:00
|
|
|
|
|
|
|
|
|
/* Implement the GETATTR command. This is similar to the LEARN
|
|
|
|
|
command but returns just one value via the status interface. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
static gpg_error_t
|
2005-09-09 13:18:08 +02:00
|
|
|
|
do_getattr (app_t app, ctrl_t ctrl, const char *name)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
|
|
|
|
|
if (!strcmp (name, "$AUTHKEYID"))
|
|
|
|
|
{
|
|
|
|
|
char *buf, *p;
|
|
|
|
|
prkdf_object_t prkdf;
|
|
|
|
|
|
|
|
|
|
/* We return the ID of the first private keycapable of
|
|
|
|
|
signing. */
|
|
|
|
|
for (prkdf = app->app_local->private_key_info; prkdf;
|
|
|
|
|
prkdf = prkdf->next)
|
|
|
|
|
if (prkdf->usageflags.sign)
|
|
|
|
|
break;
|
|
|
|
|
if (prkdf)
|
|
|
|
|
{
|
|
|
|
|
buf = xtrymalloc (9 + prkdf->objidlen*2 + 1);
|
|
|
|
|
if (!buf)
|
2006-09-14 18:50:33 +02:00
|
|
|
|
return gpg_error_from_syserror ();
|
2005-09-09 13:18:08 +02:00
|
|
|
|
p = stpcpy (buf, "P15");
|
|
|
|
|
if (app->app_local->home_df)
|
|
|
|
|
{
|
2017-01-23 16:32:44 +01:00
|
|
|
|
snprintf (p, 6, "-%04X",
|
2014-09-18 15:39:50 +02:00
|
|
|
|
(unsigned int)(app->app_local->home_df & 0xffff));
|
2005-09-09 13:18:08 +02:00
|
|
|
|
p += 5;
|
|
|
|
|
}
|
|
|
|
|
p = stpcpy (p, ".");
|
2008-11-03 11:54:18 +01:00
|
|
|
|
bin2hex (prkdf->objid, prkdf->objidlen, p);
|
2005-09-09 13:18:08 +02:00
|
|
|
|
|
|
|
|
|
send_status_info (ctrl, name, buf, strlen (buf), NULL, 0);
|
|
|
|
|
xfree (buf);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (!strcmp (name, "$DISPSERIALNO"))
|
|
|
|
|
{
|
|
|
|
|
/* For certain cards we return special IDs. There is no
|
|
|
|
|
general rule for it so we need to decide case by case. */
|
|
|
|
|
if (app->app_local->card_type == CARD_TYPE_BELPIC)
|
|
|
|
|
{
|
2006-10-23 16:02:13 +02:00
|
|
|
|
/* The eID card has a card number printed on the front matter
|
2005-09-09 13:18:08 +02:00
|
|
|
|
which seems to be a good indication. */
|
|
|
|
|
unsigned char *buffer;
|
|
|
|
|
const unsigned char *p;
|
|
|
|
|
size_t buflen, n;
|
|
|
|
|
unsigned short path[] = { 0x3F00, 0xDF01, 0x4031 };
|
|
|
|
|
|
|
|
|
|
err = select_ef_by_path (app, path, DIM(path) );
|
|
|
|
|
if (!err)
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_read_binary (app_get_slot (app), 0, 0,
|
|
|
|
|
&buffer, &buflen);
|
2005-09-09 13:18:08 +02:00
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error accessing EF(ID): %s\n", gpg_strerror (err));
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p = find_tlv (buffer, buflen, 1, &n);
|
|
|
|
|
if (p && n == 12)
|
|
|
|
|
{
|
|
|
|
|
char tmp[12+2+1];
|
|
|
|
|
memcpy (tmp, p, 3);
|
|
|
|
|
tmp[3] = '-';
|
|
|
|
|
memcpy (tmp+4, p+3, 7);
|
|
|
|
|
tmp[11] = '-';
|
|
|
|
|
memcpy (tmp+12, p+10, 2);
|
|
|
|
|
tmp[14] = 0;
|
|
|
|
|
send_status_info (ctrl, name, tmp, strlen (tmp), NULL, 0);
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
return gpg_error (GPG_ERR_INV_NAME);
|
2005-09-09 13:18:08 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-04-27 21:47:53 +02:00
|
|
|
|
/* Micardo cards require special treatment. This is a helper for the
|
|
|
|
|
crypto functions to manage the security environment. We expect that
|
|
|
|
|
the key file has already been selected. FID is the one of the
|
|
|
|
|
selected key. */
|
|
|
|
|
static gpg_error_t
|
|
|
|
|
micardo_mse (app_t app, unsigned short fid)
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
int recno;
|
|
|
|
|
unsigned short refdata = 0;
|
|
|
|
|
int se_num;
|
|
|
|
|
unsigned char msebuf[10];
|
|
|
|
|
|
|
|
|
|
/* Read the KeyD file containing extra information on keys. */
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_select_file (app_get_slot (app), 0x0013, 0);
|
2005-04-27 21:47:53 +02:00
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error reading EF_keyD: %s\n", gpg_strerror (err));
|
|
|
|
|
return err;
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 21:47:53 +02:00
|
|
|
|
for (recno = 1, se_num = -1; ; recno++)
|
|
|
|
|
{
|
|
|
|
|
unsigned char *buffer;
|
|
|
|
|
size_t buflen;
|
|
|
|
|
size_t n, nn;
|
|
|
|
|
const unsigned char *p, *pp;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_read_record (app_get_slot (app), recno, 1, 0,
|
|
|
|
|
&buffer, &buflen);
|
2005-04-27 21:47:53 +02:00
|
|
|
|
if (gpg_err_code (err) == GPG_ERR_NOT_FOUND)
|
|
|
|
|
break; /* ready */
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error reading EF_keyD record: %s\n",
|
|
|
|
|
gpg_strerror (err));
|
|
|
|
|
return err;
|
|
|
|
|
}
|
2017-11-27 15:00:25 +01:00
|
|
|
|
log_printhex (buffer, buflen, "keyD record:");
|
2005-04-27 21:47:53 +02:00
|
|
|
|
p = find_tlv (buffer, buflen, 0x83, &n);
|
|
|
|
|
if (p && n == 4 && ((p[2]<<8)|p[3]) == fid)
|
|
|
|
|
{
|
|
|
|
|
refdata = ((p[0]<<8)|p[1]);
|
|
|
|
|
/* Locate the SE DO and the there included sec env number. */
|
|
|
|
|
p = find_tlv (buffer, buflen, 0x7b, &n);
|
|
|
|
|
if (p && n)
|
|
|
|
|
{
|
|
|
|
|
pp = find_tlv (p, n, 0x80, &nn);
|
|
|
|
|
if (pp && nn == 1)
|
|
|
|
|
{
|
|
|
|
|
se_num = *pp;
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
break; /* found. */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
}
|
|
|
|
|
if (se_num == -1)
|
|
|
|
|
{
|
|
|
|
|
log_error ("CRT for keyfile %04hX not found\n", fid);
|
|
|
|
|
return gpg_error (GPG_ERR_NOT_FOUND);
|
|
|
|
|
}
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
|
|
|
|
|
2005-04-27 21:47:53 +02:00
|
|
|
|
/* Restore the security environment to SE_NUM if needed */
|
|
|
|
|
if (se_num)
|
|
|
|
|
{
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_manage_security_env (app_get_slot (app),
|
|
|
|
|
0xf3, se_num, NULL, 0);
|
2005-04-27 21:47:53 +02:00
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("restoring SE to %d failed: %s\n",
|
|
|
|
|
se_num, gpg_strerror (err));
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set the DST reference data. */
|
|
|
|
|
msebuf[0] = 0x83;
|
|
|
|
|
msebuf[1] = 0x03;
|
|
|
|
|
msebuf[2] = 0x80;
|
|
|
|
|
msebuf[3] = (refdata >> 8);
|
|
|
|
|
msebuf[4] = refdata;
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_manage_security_env (app_get_slot (app), 0x41, 0xb6, msebuf, 5);
|
2005-04-27 21:47:53 +02:00
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("setting SE to reference file %04hX failed: %s\n",
|
|
|
|
|
refdata, gpg_strerror (err));
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
/* Handler for the PKSIGN command.
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
Create the signature and return the allocated result in OUTDATA.
|
|
|
|
|
If a PIN is required, the PINCB will be used to ask for the PIN;
|
|
|
|
|
that callback should return the PIN in an allocated buffer and
|
|
|
|
|
store that as the 3rd argument. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
static gpg_error_t
|
2020-01-07 18:45:33 +01:00
|
|
|
|
do_sign (app_t app, ctrl_t ctrl, const char *keyidstr, int hashalgo,
|
2005-05-18 12:48:06 +02:00
|
|
|
|
gpg_error_t (*pincb)(void*, const char *, char **),
|
2005-04-27 14:09:21 +02:00
|
|
|
|
void *pincb_arg,
|
|
|
|
|
const void *indata, size_t indatalen,
|
|
|
|
|
unsigned char **outdata, size_t *outdatalen )
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
2005-04-27 14:09:21 +02:00
|
|
|
|
static unsigned char sha1_prefix[15] = /* Object ID is 1.3.14.3.2.26 */
|
|
|
|
|
{ 0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2b, 0x0e, 0x03,
|
|
|
|
|
0x02, 0x1a, 0x05, 0x00, 0x04, 0x14 };
|
|
|
|
|
static unsigned char rmd160_prefix[15] = /* Object ID is 1.3.36.3.2.1 */
|
|
|
|
|
{ 0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2b, 0x24, 0x03,
|
|
|
|
|
0x02, 0x01, 0x05, 0x00, 0x04, 0x14 };
|
|
|
|
|
|
2004-12-02 08:48:09 +01:00
|
|
|
|
gpg_error_t err;
|
|
|
|
|
int i;
|
2006-10-24 16:45:34 +02:00
|
|
|
|
unsigned char data[36]; /* Must be large enough for a SHA-1 digest
|
|
|
|
|
+ the largest OID prefix above and also
|
|
|
|
|
fit the 36 bytes of md5sha1. */
|
2005-04-27 14:09:21 +02:00
|
|
|
|
prkdf_object_t prkdf; /* The private key object. */
|
|
|
|
|
aodf_object_t aodf; /* The associated authentication object. */
|
2005-09-06 20:42:13 +02:00
|
|
|
|
int no_data_padding = 0; /* True if the card want the data without padding.*/
|
|
|
|
|
int mse_done = 0; /* Set to true if the MSE has been done. */
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
2020-01-07 18:45:33 +01:00
|
|
|
|
(void)ctrl;
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (!keyidstr || !*keyidstr)
|
|
|
|
|
return gpg_error (GPG_ERR_INV_VALUE);
|
2006-10-24 16:45:34 +02:00
|
|
|
|
if (indatalen != 20 && indatalen != 16 && indatalen != 35 && indatalen != 36)
|
2005-04-27 14:09:21 +02:00
|
|
|
|
return gpg_error (GPG_ERR_INV_VALUE);
|
|
|
|
|
|
|
|
|
|
err = prkdf_object_from_keyidstr (app, keyidstr, &prkdf);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
2005-04-27 21:47:53 +02:00
|
|
|
|
if (!(prkdf->usageflags.sign || prkdf->usageflags.sign_recover
|
|
|
|
|
||prkdf->usageflags.non_repudiation))
|
|
|
|
|
{
|
|
|
|
|
log_error ("key %s may not be used for signing\n", keyidstr);
|
|
|
|
|
return gpg_error (GPG_ERR_WRONG_KEY_USAGE);
|
|
|
|
|
}
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (!prkdf->authid)
|
|
|
|
|
{
|
|
|
|
|
log_error ("no authentication object defined for %s\n", keyidstr);
|
|
|
|
|
/* fixme: we might want to go ahead and do without PIN
|
|
|
|
|
verification. */
|
|
|
|
|
return gpg_error (GPG_ERR_UNSUPPORTED_OPERATION);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Find the authentication object to this private key object. */
|
|
|
|
|
for (aodf = app->app_local->auth_object_info; aodf; aodf = aodf->next)
|
2011-02-04 12:57:53 +01:00
|
|
|
|
if (aodf->objidlen == prkdf->authidlen
|
2005-04-27 14:09:21 +02:00
|
|
|
|
&& !memcmp (aodf->objid, prkdf->authid, prkdf->authidlen))
|
|
|
|
|
break;
|
|
|
|
|
if (!aodf)
|
|
|
|
|
{
|
|
|
|
|
log_error ("authentication object for %s missing\n", keyidstr);
|
|
|
|
|
return gpg_error (GPG_ERR_INV_CARD);
|
|
|
|
|
}
|
|
|
|
|
if (aodf->authid)
|
|
|
|
|
{
|
|
|
|
|
log_error ("PIN verification is protected by an "
|
|
|
|
|
"additional authentication token\n");
|
|
|
|
|
return gpg_error (GPG_ERR_BAD_PIN_METHOD);
|
|
|
|
|
}
|
|
|
|
|
if (aodf->pinflags.integrity_protected
|
|
|
|
|
|| aodf->pinflags.confidentiality_protected)
|
|
|
|
|
{
|
2010-01-08 20:18:49 +01:00
|
|
|
|
log_error ("PIN verification requires unsupported protection method\n");
|
2005-04-27 14:09:21 +02:00
|
|
|
|
return gpg_error (GPG_ERR_BAD_PIN_METHOD);
|
|
|
|
|
}
|
|
|
|
|
if (!aodf->stored_length && aodf->pinflags.needs_padding)
|
|
|
|
|
{
|
|
|
|
|
log_error ("PIN verification requires padding but no length known\n");
|
|
|
|
|
return gpg_error (GPG_ERR_INV_CARD);
|
|
|
|
|
}
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 21:47:53 +02:00
|
|
|
|
/* Select the key file. Note that this may change the security
|
|
|
|
|
environment thus we do it before PIN verification. */
|
|
|
|
|
err = select_ef_by_path (app, prkdf->path, prkdf->pathlen);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error selecting file for key %s: %s\n",
|
|
|
|
|
keyidstr, gpg_strerror (errno));
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
2005-09-06 20:42:13 +02:00
|
|
|
|
|
|
|
|
|
/* Due to the fact that the non-repudiation signature on a BELPIC
|
2006-10-23 16:02:13 +02:00
|
|
|
|
card requires a verify immediately before the DSO we set the
|
More cleanup of "allow to".
* README, agent/command.c, agent/keyformat.txt, common/i18n.c,
common/iobuf.c, common/keyserver.h, dirmngr/cdblib.c,
dirmngr/ldap-wrapper.c, doc/DETAILS, doc/TRANSLATE,
doc/announce-2.1.txt, doc/gpg.texi, doc/gpgsm.texi,
doc/scdaemon.texi, doc/tools.texi, doc/whats-new-in-2.1.txt,
g10/export.c, g10/getkey.c, g10/import.c, g10/keyedit.c, m4/ksba.m4,
m4/libgcrypt.m4, m4/ntbtls.m4, po/ca.po, po/cs.po, po/da.po,
po/de.po, po/el.po, po/eo.po, po/es.po, po/et.po, po/fi.po,
po/fr.po, po/gl.po, po/hu.po, po/id.po, po/it.po, po/ja.po,
po/nb.po, po/pl.po, po/pt.po, po/ro.po, po/ru.po, po/sk.po,
po/sv.po, po/tr.po, po/uk.po, po/zh_CN.po, po/zh_TW.po,
scd/app-p15.c, scd/ccid-driver.c, scd/command.c, sm/gpgsm.c,
sm/sign.c, tools/gpgconf-comp.c, tools/gpgtar.h: replace "Allow to"
with clearer text.
In standard English, the normal construction is "${XXX} allows ${YYY}
to" -- that is, the subject (${XXX}) of the sentence is allowing the
object (${YYY}) to do something. When the object is missing, the
phrasing sounds awkward, even if the object is implied by context.
There's almost always a better construction that isn't as awkward.
These changes should make the language a bit clearer.
Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
2016-08-02 04:19:17 +02:00
|
|
|
|
MSE before we do the verification. Other cards might also allow
|
|
|
|
|
this but I don't want to break anything, thus we do it only
|
2005-09-06 20:42:13 +02:00
|
|
|
|
for the BELPIC card here. */
|
|
|
|
|
if (app->app_local->card_type == CARD_TYPE_BELPIC)
|
|
|
|
|
{
|
|
|
|
|
unsigned char mse[5];
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-09-06 20:42:13 +02:00
|
|
|
|
mse[0] = 4; /* Length of the template. */
|
|
|
|
|
mse[1] = 0x80; /* Algorithm reference tag. */
|
2008-09-29 17:02:55 +02:00
|
|
|
|
if (hashalgo == MD_USER_TLS_MD5SHA1)
|
2006-10-24 16:45:34 +02:00
|
|
|
|
mse[2] = 0x01; /* Let card do pkcs#1 0xFF padding. */
|
|
|
|
|
else
|
|
|
|
|
mse[2] = 0x02; /* RSASSA-PKCS1-v1.5 using SHA1. */
|
2005-09-06 20:42:13 +02:00
|
|
|
|
mse[3] = 0x84; /* Private key reference tag. */
|
|
|
|
|
mse[4] = prkdf->key_reference_valid? prkdf->key_reference : 0x82;
|
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_manage_security_env (app_get_slot (app),
|
2005-09-06 20:42:13 +02:00
|
|
|
|
0x41, 0xB6,
|
|
|
|
|
mse, sizeof mse);
|
|
|
|
|
no_data_padding = 1;
|
|
|
|
|
mse_done = 1;
|
|
|
|
|
}
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("MSE failed: %s\n", gpg_strerror (err));
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Now that we have all the information available, prepare and run
|
|
|
|
|
the PIN verification.*/
|
|
|
|
|
if (1)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
2005-04-27 14:09:21 +02:00
|
|
|
|
char *pinvalue;
|
|
|
|
|
size_t pinvaluelen;
|
|
|
|
|
const char *errstr;
|
|
|
|
|
const char *s;
|
2005-09-06 20:42:13 +02:00
|
|
|
|
|
|
|
|
|
if (prkdf->usageflags.non_repudiation
|
|
|
|
|
&& app->app_local->card_type == CARD_TYPE_BELPIC)
|
|
|
|
|
err = pincb (pincb_arg, "PIN (qualified signature!)", &pinvalue);
|
|
|
|
|
else
|
|
|
|
|
err = pincb (pincb_arg, "PIN", &pinvalue);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_info ("PIN callback returned error: %s\n", gpg_strerror (err));
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We might need to cope with UTF8 things here. Not sure how
|
|
|
|
|
min_length etc. are exactly defined, for now we take them as
|
|
|
|
|
a plain octet count. */
|
|
|
|
|
|
|
|
|
|
if (strlen (pinvalue) < aodf->min_length)
|
|
|
|
|
{
|
|
|
|
|
log_error ("PIN is too short; minimum length is %lu\n",
|
2011-02-04 12:57:53 +01:00
|
|
|
|
aodf->min_length);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
err = gpg_error (GPG_ERR_BAD_PIN);
|
|
|
|
|
}
|
|
|
|
|
else if (aodf->stored_length && strlen (pinvalue) > aodf->stored_length)
|
|
|
|
|
{
|
|
|
|
|
/* This would otherwise truncate the PIN silently. */
|
|
|
|
|
log_error ("PIN is too large; maximum length is %lu\n",
|
|
|
|
|
aodf->stored_length);
|
|
|
|
|
err = gpg_error (GPG_ERR_BAD_PIN);
|
|
|
|
|
}
|
|
|
|
|
else if (aodf->max_length_valid && strlen (pinvalue) > aodf->max_length)
|
|
|
|
|
{
|
|
|
|
|
log_error ("PIN is too large; maximum length is %lu\n",
|
|
|
|
|
aodf->max_length);
|
|
|
|
|
err = gpg_error (GPG_ERR_BAD_PIN);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (err)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
2005-04-27 14:09:21 +02:00
|
|
|
|
xfree (pinvalue);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
errstr = NULL;
|
|
|
|
|
err = 0;
|
|
|
|
|
switch (aodf->pintype)
|
|
|
|
|
{
|
|
|
|
|
case PIN_TYPE_BCD:
|
|
|
|
|
case PIN_TYPE_ASCII_NUMERIC:
|
|
|
|
|
for (s=pinvalue; digitp (s); s++)
|
|
|
|
|
;
|
|
|
|
|
if (*s)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
2005-04-27 14:09:21 +02:00
|
|
|
|
errstr = "Non-numeric digits found in PIN";
|
|
|
|
|
err = gpg_error (GPG_ERR_BAD_PIN);
|
2004-12-02 08:48:09 +01:00
|
|
|
|
}
|
2005-04-27 14:09:21 +02:00
|
|
|
|
break;
|
|
|
|
|
case PIN_TYPE_UTF8:
|
|
|
|
|
break;
|
|
|
|
|
case PIN_TYPE_HALF_NIBBLE_BCD:
|
2011-02-04 12:57:53 +01:00
|
|
|
|
errstr = "PIN type Half-Nibble-BCD is not supported";
|
2005-04-27 14:09:21 +02:00
|
|
|
|
break;
|
|
|
|
|
case PIN_TYPE_ISO9564_1:
|
|
|
|
|
errstr = "PIN type ISO9564-1 is not supported";
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
errstr = "Unknown PIN type";
|
|
|
|
|
break;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
}
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (errstr)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
2005-04-27 14:09:21 +02:00
|
|
|
|
log_error ("can't verify PIN: %s\n", errstr);
|
|
|
|
|
xfree (pinvalue);
|
|
|
|
|
return err? err : gpg_error (GPG_ERR_BAD_PIN_METHOD);
|
|
|
|
|
}
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-09-06 20:42:13 +02:00
|
|
|
|
|
|
|
|
|
if (aodf->pintype == PIN_TYPE_BCD )
|
|
|
|
|
{
|
|
|
|
|
char *paddedpin;
|
|
|
|
|
int ndigits;
|
|
|
|
|
|
|
|
|
|
for (ndigits=0, s=pinvalue; *s; ndigits++, s++)
|
|
|
|
|
;
|
|
|
|
|
paddedpin = xtrymalloc (aodf->stored_length+1);
|
|
|
|
|
if (!paddedpin)
|
|
|
|
|
{
|
2006-09-14 18:50:33 +02:00
|
|
|
|
err = gpg_error_from_syserror ();
|
2005-09-06 20:42:13 +02:00
|
|
|
|
xfree (pinvalue);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
paddedpin[i++] = 0x20 | (ndigits & 0x0f);
|
|
|
|
|
for (s=pinvalue; i < aodf->stored_length && *s && s[1]; s = s+2 )
|
|
|
|
|
paddedpin[i++] = (((*s - '0') << 4) | ((s[1] - '0') & 0x0f));
|
|
|
|
|
if (i < aodf->stored_length && *s)
|
2011-02-04 12:57:53 +01:00
|
|
|
|
paddedpin[i++] = (((*s - '0') << 4)
|
2005-09-06 20:42:13 +02:00
|
|
|
|
|((aodf->pad_char_valid?aodf->pad_char:0)&0x0f));
|
|
|
|
|
|
|
|
|
|
if (aodf->pinflags.needs_padding)
|
|
|
|
|
while (i < aodf->stored_length)
|
|
|
|
|
paddedpin[i++] = aodf->pad_char_valid? aodf->pad_char : 0;
|
|
|
|
|
|
|
|
|
|
xfree (pinvalue);
|
|
|
|
|
pinvalue = paddedpin;
|
|
|
|
|
pinvaluelen = i;
|
|
|
|
|
}
|
|
|
|
|
else if (aodf->pinflags.needs_padding)
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
char *paddedpin;
|
|
|
|
|
|
|
|
|
|
paddedpin = xtrymalloc (aodf->stored_length+1);
|
|
|
|
|
if (!paddedpin)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
2006-09-14 18:50:33 +02:00
|
|
|
|
err = gpg_error_from_syserror ();
|
2005-04-27 14:09:21 +02:00
|
|
|
|
xfree (pinvalue);
|
|
|
|
|
return err;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
}
|
2005-04-27 14:09:21 +02:00
|
|
|
|
for (i=0, s=pinvalue; i < aodf->stored_length && *s; i++, s++)
|
|
|
|
|
paddedpin[i] = *s;
|
|
|
|
|
/* Not sure what padding char to use if none has been set.
|
|
|
|
|
For now we use 0x00; maybe a space would be better. */
|
|
|
|
|
for (; i < aodf->stored_length; i++)
|
|
|
|
|
paddedpin[i] = aodf->pad_char_valid? aodf->pad_char : 0;
|
|
|
|
|
paddedpin[i] = 0;
|
|
|
|
|
pinvaluelen = i;
|
|
|
|
|
xfree (pinvalue);
|
|
|
|
|
pinvalue = paddedpin;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
pinvaluelen = strlen (pinvalue);
|
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_verify (app_get_slot (app),
|
2005-04-27 14:09:21 +02:00
|
|
|
|
aodf->pin_reference_valid? aodf->pin_reference : 0,
|
|
|
|
|
pinvalue, pinvaluelen);
|
|
|
|
|
xfree (pinvalue);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("PIN verification failed: %s\n", gpg_strerror (err));
|
|
|
|
|
return err;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
}
|
2005-04-27 14:09:21 +02:00
|
|
|
|
log_debug ("PIN verification succeeded\n");
|
2004-12-02 08:48:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Prepare the DER object from INDATA. */
|
2006-10-24 16:45:34 +02:00
|
|
|
|
if (indatalen == 36)
|
|
|
|
|
{
|
|
|
|
|
/* No ASN.1 container used. */
|
2008-09-29 17:02:55 +02:00
|
|
|
|
if (hashalgo != MD_USER_TLS_MD5SHA1)
|
2006-10-24 16:45:34 +02:00
|
|
|
|
return gpg_error (GPG_ERR_UNSUPPORTED_ALGORITHM);
|
|
|
|
|
memcpy (data, indata, indatalen);
|
|
|
|
|
}
|
|
|
|
|
else if (indatalen == 35)
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
/* Alright, the caller was so kind to send us an already
|
|
|
|
|
prepared DER object. Check that it is what we want and that
|
|
|
|
|
it matches the hash algorithm. */
|
|
|
|
|
if (hashalgo == GCRY_MD_SHA1 && !memcmp (indata, sha1_prefix, 15))
|
|
|
|
|
;
|
|
|
|
|
else if (hashalgo == GCRY_MD_RMD160
|
|
|
|
|
&& !memcmp (indata, rmd160_prefix, 15))
|
|
|
|
|
;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
else
|
2005-04-27 14:09:21 +02:00
|
|
|
|
return gpg_error (GPG_ERR_UNSUPPORTED_ALGORITHM);
|
|
|
|
|
memcpy (data, indata, indatalen);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Need to prepend the prefix. */
|
|
|
|
|
if (hashalgo == GCRY_MD_SHA1)
|
|
|
|
|
memcpy (data, sha1_prefix, 15);
|
|
|
|
|
else if (hashalgo == GCRY_MD_RMD160)
|
|
|
|
|
memcpy (data, rmd160_prefix, 15);
|
2011-02-04 12:57:53 +01:00
|
|
|
|
else
|
2005-04-27 14:09:21 +02:00
|
|
|
|
return gpg_error (GPG_ERR_UNSUPPORTED_ALGORITHM);
|
|
|
|
|
memcpy (data+15, indata, indatalen);
|
|
|
|
|
}
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Manage security environment needs to be weaked for certain cards. */
|
2005-09-06 20:42:13 +02:00
|
|
|
|
if (mse_done)
|
|
|
|
|
err = 0;
|
|
|
|
|
else if (app->app_local->card_type == CARD_TYPE_TCOS)
|
2005-04-27 14:09:21 +02:00
|
|
|
|
{
|
|
|
|
|
/* TCOS creates signatures always using the local key 0. MSE
|
|
|
|
|
may not be used. */
|
|
|
|
|
}
|
|
|
|
|
else if (app->app_local->card_type == CARD_TYPE_MICARDO)
|
|
|
|
|
{
|
2005-04-27 21:47:53 +02:00
|
|
|
|
if (!prkdf->pathlen)
|
|
|
|
|
err = gpg_error (GPG_ERR_BUG);
|
|
|
|
|
else
|
|
|
|
|
err = micardo_mse (app, prkdf->path[prkdf->pathlen-1]);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
}
|
|
|
|
|
else if (prkdf->key_reference_valid)
|
|
|
|
|
{
|
|
|
|
|
unsigned char mse[3];
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
mse[0] = 0x84; /* Select asym. key. */
|
|
|
|
|
mse[1] = 1;
|
|
|
|
|
mse[2] = prkdf->key_reference;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_manage_security_env (app_get_slot (app),
|
2005-04-27 14:09:21 +02:00
|
|
|
|
0x41, 0xB6,
|
|
|
|
|
mse, sizeof mse);
|
2005-04-27 21:47:53 +02:00
|
|
|
|
}
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("MSE failed: %s\n", gpg_strerror (err));
|
|
|
|
|
return err;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
}
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
2008-09-29 17:02:55 +02:00
|
|
|
|
if (hashalgo == MD_USER_TLS_MD5SHA1)
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_compute_ds (app_get_slot (app),
|
|
|
|
|
0, data, 36, 0, outdata, outdatalen);
|
2006-10-24 16:45:34 +02:00
|
|
|
|
else if (no_data_padding)
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_compute_ds (app_get_slot (app),
|
|
|
|
|
0, data+15, 20, 0,outdata,outdatalen);
|
2005-09-06 20:42:13 +02:00
|
|
|
|
else
|
2019-06-19 08:50:40 +02:00
|
|
|
|
err = iso7816_compute_ds (app_get_slot (app),
|
|
|
|
|
0, data, 35, 0, outdata, outdatalen);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
return err;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
/* Handler for the PKAUTH command.
|
2005-09-09 13:18:08 +02:00
|
|
|
|
|
2006-10-10 13:11:04 +02:00
|
|
|
|
This is basically the same as the PKSIGN command but we first check
|
2005-09-09 13:18:08 +02:00
|
|
|
|
that the requested key is suitable for authentication; that is, it
|
|
|
|
|
must match the criteria used for the attribute $AUTHKEYID. See
|
|
|
|
|
do_sign for calling conventions; there is no HASHALGO, though. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
static gpg_error_t
|
2020-01-07 18:45:33 +01:00
|
|
|
|
do_auth (app_t app, ctrl_t ctrl, const char *keyidstr,
|
2005-09-09 13:18:08 +02:00
|
|
|
|
gpg_error_t (*pincb)(void*, const char *, char **),
|
|
|
|
|
void *pincb_arg,
|
|
|
|
|
const void *indata, size_t indatalen,
|
|
|
|
|
unsigned char **outdata, size_t *outdatalen )
|
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
prkdf_object_t prkdf;
|
2006-10-24 16:45:34 +02:00
|
|
|
|
int algo;
|
2005-09-09 13:18:08 +02:00
|
|
|
|
|
|
|
|
|
if (!keyidstr || !*keyidstr)
|
|
|
|
|
return gpg_error (GPG_ERR_INV_VALUE);
|
|
|
|
|
|
|
|
|
|
err = prkdf_object_from_keyidstr (app, keyidstr, &prkdf);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
if (!prkdf->usageflags.sign)
|
|
|
|
|
{
|
|
|
|
|
log_error ("key %s may not be used for authentication\n", keyidstr);
|
|
|
|
|
return gpg_error (GPG_ERR_WRONG_KEY_USAGE);
|
|
|
|
|
}
|
2006-10-24 16:45:34 +02:00
|
|
|
|
|
2008-09-29 17:02:55 +02:00
|
|
|
|
algo = indatalen == 36? MD_USER_TLS_MD5SHA1 : GCRY_MD_SHA1;
|
2020-01-07 18:45:33 +01:00
|
|
|
|
return do_sign (app, ctrl, keyidstr, algo, pincb, pincb_arg,
|
2005-09-09 13:18:08 +02:00
|
|
|
|
indata, indatalen, outdata, outdatalen);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-09-05 16:36:36 +02:00
|
|
|
|
|
|
|
|
|
/* Assume that EF(DIR) has been selected. Read its content and figure
|
2005-09-06 20:42:13 +02:00
|
|
|
|
out the home EF of pkcs#15. Return that home DF or 0 if not found
|
|
|
|
|
and the value at the address of BELPIC indicates whether it was
|
|
|
|
|
found by the belpic aid. */
|
2005-09-05 16:36:36 +02:00
|
|
|
|
static unsigned short
|
2005-09-06 20:42:13 +02:00
|
|
|
|
read_home_df (int slot, int *r_belpic)
|
2005-09-05 16:36:36 +02:00
|
|
|
|
{
|
|
|
|
|
gpg_error_t err;
|
|
|
|
|
unsigned char *buffer;
|
|
|
|
|
const unsigned char *p, *pp;
|
|
|
|
|
size_t buflen, n, nn;
|
|
|
|
|
unsigned short result = 0;
|
|
|
|
|
|
2005-09-06 20:42:13 +02:00
|
|
|
|
*r_belpic = 0;
|
|
|
|
|
|
2005-09-05 16:36:36 +02:00
|
|
|
|
err = iso7816_read_binary (slot, 0, 0, &buffer, &buflen);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
log_error ("error reading EF{DIR}: %s\n", gpg_strerror (err));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* FIXME: We need to scan all records. */
|
|
|
|
|
p = find_tlv (buffer, buflen, 0x61, &n);
|
|
|
|
|
if (p && n)
|
|
|
|
|
{
|
|
|
|
|
pp = find_tlv (p, n, 0x4f, &nn);
|
2005-09-06 20:42:13 +02:00
|
|
|
|
if (pp && ((nn == sizeof pkcs15_aid && !memcmp (pp, pkcs15_aid, nn))
|
|
|
|
|
|| (*r_belpic = (nn == sizeof pkcs15be_aid
|
|
|
|
|
&& !memcmp (pp, pkcs15be_aid, nn)))))
|
2005-09-05 16:36:36 +02:00
|
|
|
|
{
|
|
|
|
|
pp = find_tlv (p, n, 0x50, &nn);
|
|
|
|
|
if (pp) /* fixme: Filter log value? */
|
2012-06-05 19:29:22 +02:00
|
|
|
|
log_info ("pkcs#15 application label from EF(DIR) is '%.*s'\n",
|
2005-09-05 16:36:36 +02:00
|
|
|
|
(int)nn, pp);
|
|
|
|
|
pp = find_tlv (p, n, 0x51, &nn);
|
|
|
|
|
if (pp && nn == 4 && *pp == 0x3f && !pp[1])
|
|
|
|
|
{
|
|
|
|
|
result = ((pp[2] << 8) | pp[3]);
|
|
|
|
|
log_info ("pkcs#15 application directory is 0x%04hX\n", result);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
xfree (buffer);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2005-04-27 14:09:21 +02:00
|
|
|
|
|
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
|
/*
|
|
|
|
|
Select the PKCS#15 application on the card in SLOT.
|
2005-09-05 16:36:36 +02:00
|
|
|
|
*/
|
2005-04-27 14:09:21 +02:00
|
|
|
|
gpg_error_t
|
|
|
|
|
app_select_p15 (app_t app)
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
2019-06-19 08:50:40 +02:00
|
|
|
|
int slot = app_get_slot (app);
|
2004-12-02 08:48:09 +01:00
|
|
|
|
int rc;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
unsigned short def_home_df = 0;
|
|
|
|
|
card_type_t card_type = CARD_TYPE_UNKNOWN;
|
2005-09-05 16:36:36 +02:00
|
|
|
|
int direct = 0;
|
2005-09-06 20:42:13 +02:00
|
|
|
|
int is_belpic = 0;
|
|
|
|
|
|
2005-11-28 12:52:25 +01:00
|
|
|
|
rc = iso7816_select_application (slot, pkcs15_aid, sizeof pkcs15_aid, 0);
|
2005-09-05 16:36:36 +02:00
|
|
|
|
if (rc)
|
|
|
|
|
{ /* Not found: Try to locate it from 2F00. We use direct path
|
|
|
|
|
selection here because it seems that the Belgian eID card
|
|
|
|
|
does only allow for that. Many other cards supports this
|
2005-11-28 12:52:25 +01:00
|
|
|
|
selection method too. Note, that we don't use
|
|
|
|
|
select_application above for the Belgian card - the call
|
|
|
|
|
works but it seems that it did not switch to the correct DF.
|
|
|
|
|
Using the 2f02 just works. */
|
2005-09-05 16:36:36 +02:00
|
|
|
|
unsigned short path[1] = { 0x2f00 };
|
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
rc = iso7816_select_path (app_get_slot (app), path, 1);
|
2005-09-05 16:36:36 +02:00
|
|
|
|
if (!rc)
|
|
|
|
|
{
|
|
|
|
|
direct = 1;
|
2005-09-06 20:42:13 +02:00
|
|
|
|
def_home_df = read_home_df (slot, &is_belpic);
|
2005-09-05 16:36:36 +02:00
|
|
|
|
if (def_home_df)
|
|
|
|
|
{
|
|
|
|
|
path[0] = def_home_df;
|
2019-06-19 08:50:40 +02:00
|
|
|
|
rc = iso7816_select_path (app_get_slot (app), path, 1);
|
2005-09-05 16:36:36 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (rc)
|
|
|
|
|
{ /* Still not found: Try the default DF. */
|
2005-04-27 14:09:21 +02:00
|
|
|
|
def_home_df = 0x5015;
|
2017-03-06 05:39:46 +01:00
|
|
|
|
rc = iso7816_select_file (slot, def_home_df, 1);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
}
|
|
|
|
|
if (!rc)
|
|
|
|
|
{
|
2005-09-06 20:42:13 +02:00
|
|
|
|
/* Determine the type of the card. The general case is to look
|
|
|
|
|
it up from the ATR table. For the Belgian eID card we know
|
|
|
|
|
it instantly from the AID. */
|
|
|
|
|
if (is_belpic)
|
|
|
|
|
{
|
|
|
|
|
card_type = CARD_TYPE_BELPIC;
|
|
|
|
|
}
|
2005-04-27 14:09:21 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
2005-09-06 20:42:13 +02:00
|
|
|
|
unsigned char *atr;
|
|
|
|
|
size_t atrlen;
|
|
|
|
|
int i;
|
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
atr = apdu_get_atr (app_get_slot (app), &atrlen);
|
2005-09-06 20:42:13 +02:00
|
|
|
|
if (!atr)
|
|
|
|
|
rc = gpg_error (GPG_ERR_INV_CARD);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (i=0; card_atr_list[i].atrlen; i++)
|
|
|
|
|
if (card_atr_list[i].atrlen == atrlen
|
|
|
|
|
&& !memcmp (card_atr_list[i].atr, atr, atrlen))
|
|
|
|
|
{
|
|
|
|
|
card_type = card_atr_list[i].type;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
xfree (atr);
|
|
|
|
|
}
|
2005-04-27 14:09:21 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2004-12-02 08:48:09 +01:00
|
|
|
|
if (!rc)
|
|
|
|
|
{
|
2019-06-19 14:30:16 +02:00
|
|
|
|
app->apptype = APPTYPE_P15;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
|
|
|
|
|
app->app_local = xtrycalloc (1, sizeof *app->app_local);
|
|
|
|
|
if (!app->app_local)
|
|
|
|
|
{
|
2006-09-14 18:50:33 +02:00
|
|
|
|
rc = gpg_error_from_syserror ();
|
2004-12-02 08:48:09 +01:00
|
|
|
|
goto leave;
|
|
|
|
|
}
|
|
|
|
|
|
2005-04-27 14:09:21 +02:00
|
|
|
|
/* Set the home DF. Note that we currently can't do that if the
|
|
|
|
|
selection via application ID worked. This will store 0 there
|
|
|
|
|
instead. FIXME: We either need to figure the home_df via the
|
|
|
|
|
DIR file or using the return values from the select file
|
|
|
|
|
APDU. */
|
|
|
|
|
app->app_local->home_df = def_home_df;
|
|
|
|
|
|
|
|
|
|
/* Store the card type. FIXME: We might want to put this into
|
|
|
|
|
the common APP structure. */
|
|
|
|
|
app->app_local->card_type = card_type;
|
|
|
|
|
|
2005-09-05 16:36:36 +02:00
|
|
|
|
/* Store whether we may and should use direct path selection. */
|
|
|
|
|
app->app_local->direct_path_selection = direct;
|
|
|
|
|
|
2005-04-27 21:47:53 +02:00
|
|
|
|
/* Read basic information and thus check whether this is a real
|
2004-12-02 08:48:09 +01:00
|
|
|
|
card. */
|
|
|
|
|
rc = read_p15_info (app);
|
2005-04-27 14:09:21 +02:00
|
|
|
|
if (rc)
|
|
|
|
|
goto leave;
|
|
|
|
|
|
|
|
|
|
/* Special serial number munging. We need to check for a German
|
|
|
|
|
prototype card right here because we need to access to
|
|
|
|
|
EF(TokenInfo). We mark such a serial number by the using a
|
|
|
|
|
prefix of FF0100. */
|
2019-06-19 08:50:40 +02:00
|
|
|
|
if (app->card->serialnolen == 12
|
|
|
|
|
&& !memcmp (app->card->serialno, "\xD2\x76\0\0\0\0\0\0\0\0\0\0", 12))
|
2004-12-02 08:48:09 +01:00
|
|
|
|
{
|
|
|
|
|
/* This is a German card with a silly serial number. Try to get
|
2005-04-27 14:09:21 +02:00
|
|
|
|
the serial number from the EF(TokenInfo). . */
|
|
|
|
|
unsigned char *p;
|
|
|
|
|
|
|
|
|
|
/* FIXME: actually get it from EF(TokenInfo). */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2019-06-19 08:50:40 +02:00
|
|
|
|
p = xtrymalloc (3 + app->card->serialnolen);
|
2004-12-02 08:48:09 +01:00
|
|
|
|
if (!p)
|
|
|
|
|
rc = gpg_error (gpg_err_code_from_errno (errno));
|
|
|
|
|
else
|
|
|
|
|
{
|
2005-04-27 14:09:21 +02:00
|
|
|
|
memcpy (p, "\xff\x01", 3);
|
2019-06-19 08:50:40 +02:00
|
|
|
|
memcpy (p+3, app->card->serialno, app->card->serialnolen);
|
|
|
|
|
app->card->serialnolen += 3;
|
|
|
|
|
xfree (app->card->serialno);
|
|
|
|
|
app->card->serialno = p;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
app->fnc.deinit = do_deinit;
|
2020-01-07 18:45:33 +01:00
|
|
|
|
app->fnc.prep_reselect = NULL;
|
scd: Add an re-select mechanism to switch apps.
* scd/app-common.h (struct app_ctx_s): Add func ptr 'reselect'.
* scd/app-piv.c (do_reselect): New.
(app_select_piv): Move AID constant to file scope.
* scd/app-openpgp.c (do_reselect): New.
(app_select_openpgp): Move AID constant to file scope.
* scd/app.c (apptype_from_name): New.
(check_application_conflict): Check against all apps of the card.
Always set current_apptype.
(select_additional_application): New.
(maybe_switch_app): New.
(app_write_learn_status, app_readcert, app_readkey, app_getattr)
(app_setattr, app_sign, app_auth, app_decipher, app_writecert)
(app_writekey, app_genkey, app_change_pin, app_check_pin): Use it here.
(app_do_with_keygrip): Force reselect on success.
(app_new_register): Move setting of CURRENT_APPTYPE to ...
(select_application): here so that it will be set to the requested
card.
* scd/command.c (open_card_with_request): Select additional
application if possible.
--
Noet that we will likely need to rework this even more so to get well
defined semantics for card access.
Signed-off-by: Werner Koch <wk@gnupg.org>
2019-06-25 08:30:04 +02:00
|
|
|
|
app->fnc.reselect = NULL;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
app->fnc.learn_status = do_learn_status;
|
|
|
|
|
app->fnc.readcert = do_readcert;
|
2005-09-09 13:18:08 +02:00
|
|
|
|
app->fnc.getattr = do_getattr;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
app->fnc.setattr = NULL;
|
|
|
|
|
app->fnc.genkey = NULL;
|
|
|
|
|
app->fnc.sign = do_sign;
|
2005-09-09 13:18:08 +02:00
|
|
|
|
app->fnc.auth = do_auth;
|
2005-04-27 14:09:21 +02:00
|
|
|
|
app->fnc.decipher = NULL;
|
2004-12-02 08:48:09 +01:00
|
|
|
|
app->fnc.change_pin = NULL;
|
|
|
|
|
app->fnc.check_pin = NULL;
|
|
|
|
|
|
|
|
|
|
leave:
|
|
|
|
|
if (rc)
|
2005-04-27 14:09:21 +02:00
|
|
|
|
do_deinit (app);
|
2004-12-02 08:48:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
|
}
|