LCOV - code coverage report
Current view: top level - pkcs11/gkm - gkm-dh-private-key.c (source / functions) Coverage Total Hit
Test: coverage.info Lines: 58.0 % 81 47
Test Date: 2024-04-08 13:24:42 Functions: 100.0 % 11 11

            Line data    Source code
       1              : /*
       2              :  * gnome-keyring
       3              :  *
       4              :  * Copyright (C) 2008 Stefan Walter
       5              :  *
       6              :  * This program is free software; you can redistribute it and/or modify
       7              :  * it under the terms of the GNU Lesser General Public License as
       8              :  * published by the Free Software Foundation; either version 2.1 of
       9              :  * the License, or (at your option) any later version.
      10              :  *
      11              :  * This program is distributed in the hope that it will be useful, but
      12              :  * WITHOUT ANY WARRANTY; without even the implied warranty of
      13              :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      14              :  * Lesser General Public License for more details.
      15              :  *
      16              :  * You should have received a copy of the GNU Lesser General Public
      17              :  * License along with this program; if not, see
      18              :  * <http://www.gnu.org/licenses/>.
      19              :  */
      20              : 
      21              : #include "config.h"
      22              : 
      23              : #include "pkcs11/pkcs11.h"
      24              : 
      25              : #include "gkm-attributes.h"
      26              : #include "gkm-crypto.h"
      27              : #define DEBUG_FLAG GKM_DEBUG_OBJECT
      28              : #include "gkm-debug.h"
      29              : #include "gkm-factory.h"
      30              : #include "gkm-dh-private-key.h"
      31              : #include "gkm-session.h"
      32              : #include "gkm-transaction.h"
      33              : #include "gkm-util.h"
      34              : 
      35              : struct _GkmDhPrivateKey {
      36              :         GkmDhKey parent;
      37              :         gcry_mpi_t value;
      38              : };
      39              : 
      40           17 : G_DEFINE_TYPE (GkmDhPrivateKey, gkm_dh_private_key, GKM_TYPE_DH_KEY);
      41              : 
      42              : /* -----------------------------------------------------------------------------
      43              :  * INTERNAL
      44              :  */
      45              : 
      46              : static GkmObject*
      47            1 : factory_create_dh_private_key (GkmSession *session, GkmTransaction *transaction,
      48              :                                CK_ATTRIBUTE_PTR attrs, CK_ULONG n_attrs)
      49              : {
      50              :         GkmManager *manager;
      51            1 :         gcry_mpi_t prime = NULL;
      52            1 :         gcry_mpi_t base = NULL;
      53            1 :         gcry_mpi_t value = NULL;
      54              :         CK_ATTRIBUTE_PTR idattr;
      55              :         GkmObject *object;
      56              : 
      57            2 :         if (!gkm_attributes_find_mpi (attrs, n_attrs, CKA_PRIME, &prime) ||
      58            2 :             !gkm_attributes_find_mpi (attrs, n_attrs, CKA_BASE, &base) ||
      59            1 :             !gkm_attributes_find_mpi (attrs, n_attrs, CKA_VALUE, &value)) {
      60            0 :                 gcry_mpi_release (prime);
      61            0 :                 gcry_mpi_release (base);
      62            0 :                 gcry_mpi_release (value);
      63            0 :                 gkm_transaction_fail (transaction, CKR_TEMPLATE_INCOMPLETE);
      64            0 :                 return NULL;
      65              :         }
      66              : 
      67            1 :         manager = gkm_manager_for_template (attrs, n_attrs, session);
      68            1 :         idattr = gkm_attributes_find (attrs, n_attrs, CKA_ID);
      69              : 
      70            1 :         object = GKM_OBJECT (gkm_dh_private_key_new (gkm_session_get_module (session),
      71              :                                                     manager, prime, base, value,
      72              :                                                     idattr ? g_memdup (idattr->pValue, idattr->ulValueLen) : NULL,
      73              :                                                     idattr ? idattr->ulValueLen : 0));
      74            1 :         gkm_attributes_consume (attrs, n_attrs, CKA_PRIME, CKA_BASE, CKA_VALUE, G_MAXULONG);
      75              : 
      76            1 :         gkm_session_complete_object_creation (session, transaction, object,
      77              :                                               TRUE, attrs, n_attrs);
      78            1 :         return object;
      79              : }
      80              : 
      81              : /* -----------------------------------------------------------------------------
      82              :  * DH_PRIVATE_KEY
      83              :  */
      84              : 
      85              : static CK_RV
      86           10 : gkm_dh_private_key_real_get_attribute (GkmObject *base, GkmSession *session, CK_ATTRIBUTE* attr)
      87              : {
      88           10 :         GkmDhPrivateKey *self = GKM_DH_PRIVATE_KEY (base);
      89              : 
      90           10 :         switch (attr->type)
      91              :         {
      92              : 
      93            3 :         case CKA_CLASS:
      94            3 :                 return gkm_attribute_set_ulong (attr, CKO_PRIVATE_KEY);
      95              : 
      96            0 :         case CKA_PRIVATE:
      97            0 :                 return gkm_attribute_set_bool (attr, TRUE);
      98              : 
      99            0 :         case CKA_SENSITIVE:
     100            0 :                 return gkm_attribute_set_bool (attr, FALSE);
     101              : 
     102            0 :         case CKA_DECRYPT:
     103            0 :                 return gkm_attribute_set_bool (attr, FALSE);
     104              : 
     105            0 :         case CKA_SIGN:
     106            0 :                 return gkm_attribute_set_bool (attr, FALSE);
     107              : 
     108            0 :         case CKA_SIGN_RECOVER:
     109            0 :                 return gkm_attribute_set_bool (attr, FALSE);
     110              : 
     111            1 :         case CKA_DERIVE:
     112            1 :                 return gkm_attribute_set_bool (attr, TRUE);
     113              : 
     114            0 :         case CKA_UNWRAP:
     115            0 :                 return gkm_attribute_set_bool (attr, FALSE);
     116              : 
     117            0 :         case CKA_EXTRACTABLE:
     118            0 :                 return gkm_attribute_set_bool (attr, TRUE);
     119              : 
     120            0 :         case CKA_ALWAYS_SENSITIVE:
     121            0 :                 return gkm_attribute_set_bool (attr, FALSE);
     122              : 
     123            0 :         case CKA_NEVER_EXTRACTABLE:
     124            0 :                 return gkm_attribute_set_bool (attr, FALSE);
     125              : 
     126            0 :         case CKA_WRAP_WITH_TRUSTED:
     127            0 :                 return gkm_attribute_set_bool (attr, FALSE);
     128              : 
     129            0 :         case CKA_UNWRAP_TEMPLATE:
     130            0 :                 gkm_debug ("CKR_ATTRIBUTE_TYPE_INVALID: no CKA_UNWRAP_TEMPLATE attribute");
     131            0 :                 return CKR_ATTRIBUTE_TYPE_INVALID;
     132              : 
     133            0 :         case CKA_ALWAYS_AUTHENTICATE:
     134            0 :                 return gkm_attribute_set_bool (attr, FALSE);
     135              : 
     136            0 :         case CKA_VALUE:
     137            0 :                 return gkm_attribute_set_mpi (attr, self->value);
     138              : 
     139            0 :         case CKA_VALUE_BITS:
     140            0 :                 return gkm_attribute_set_ulong (attr, gcry_mpi_get_nbits (self->value));
     141              :         };
     142              : 
     143            6 :         return GKM_OBJECT_CLASS (gkm_dh_private_key_parent_class)->get_attribute (base, session, attr);
     144              : }
     145              : 
     146              : static void
     147            1 : gkm_dh_private_key_init (GkmDhPrivateKey *self)
     148              : {
     149              : 
     150            1 : }
     151              : 
     152              : static void
     153            1 : gkm_dh_private_key_finalize (GObject *obj)
     154              : {
     155            1 :         GkmDhPrivateKey *self = GKM_DH_PRIVATE_KEY (obj);
     156              : 
     157            1 :         gcry_mpi_release (self->value);
     158            1 :         self->value = NULL;
     159              : 
     160            1 :         G_OBJECT_CLASS (gkm_dh_private_key_parent_class)->finalize (obj);
     161            1 : }
     162              : 
     163              : static void
     164            1 : gkm_dh_private_key_class_init (GkmDhPrivateKeyClass *klass)
     165              : {
     166            1 :         GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
     167            1 :         GkmObjectClass *gkm_class = GKM_OBJECT_CLASS (klass);
     168              : 
     169            1 :         gkm_dh_private_key_parent_class = g_type_class_peek_parent (klass);
     170              : 
     171            1 :         gobject_class->finalize = gkm_dh_private_key_finalize;
     172              : 
     173            1 :         gkm_class->get_attribute = gkm_dh_private_key_real_get_attribute;
     174            1 : }
     175              : 
     176              : /* -----------------------------------------------------------------------------
     177              :  * PRIVATE
     178              :  */
     179              : 
     180              : GkmFactory*
     181          287 : gkm_dh_private_key_get_factory (void)
     182              : {
     183              :         static CK_OBJECT_CLASS klass = CKO_PRIVATE_KEY;
     184              :         static CK_KEY_TYPE type = CKK_DH;
     185              : 
     186              :         static CK_ATTRIBUTE attributes[] = {
     187              :                 { CKA_CLASS, &klass, sizeof (klass) },
     188              :                 { CKA_KEY_TYPE, &type, sizeof (type) }
     189              :         };
     190              : 
     191              :         static GkmFactory factory = {
     192              :                 attributes,
     193              :                 G_N_ELEMENTS (attributes),
     194              :                 factory_create_dh_private_key
     195              :         };
     196              : 
     197          287 :         return &factory;
     198              : }
     199              : 
     200              : GkmDhPrivateKey*
     201            1 : gkm_dh_private_key_new (GkmModule *module, GkmManager *manager,
     202              :                         gcry_mpi_t prime, gcry_mpi_t base, gcry_mpi_t value,
     203              :                         gpointer id, gsize n_id)
     204              : {
     205              :         GkmDhPrivateKey *key;
     206              : 
     207            1 :         key = g_object_new (GKM_TYPE_DH_PRIVATE_KEY,
     208              :                             "manager", manager,
     209              :                             "module", module,
     210              :                             NULL);
     211              : 
     212            1 :         gkm_dh_key_initialize (GKM_DH_KEY (key), prime, base, id, n_id);
     213            1 :         key->value = value;
     214            1 :         return key;
     215              : }
     216              : 
     217              : gcry_mpi_t
     218            1 : gkm_dh_private_key_get_value (GkmDhPrivateKey *self)
     219              : {
     220            1 :         g_return_val_if_fail (GKM_IS_DH_PRIVATE_KEY (self), NULL);
     221            1 :         return self->value;
     222              : }
        

Generated by: LCOV version 2.0-1