Coverage Report

Created: 2025-07-01 06:25

/src/nss/lib/pk11wrap/pk11slot.c
Line
Count
Source (jump to first uncovered line)
1
/* This Source Code Form is subject to the terms of the Mozilla Public
2
 * License, v. 2.0. If a copy of the MPL was not distributed with this
3
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
/*
5
 * Deal with PKCS #11 Slots.
6
 */
7
8
#include <stddef.h>
9
10
#include "seccomon.h"
11
#include "secmod.h"
12
#include "nssilock.h"
13
#include "secmodi.h"
14
#include "secmodti.h"
15
#include "pkcs11t.h"
16
#include "pk11func.h"
17
#include "secitem.h"
18
#include "secerr.h"
19
20
#include "dev.h"
21
#include "dev3hack.h"
22
#include "pkim.h"
23
#include "utilpars.h"
24
#include "pkcs11uri.h"
25
26
/*************************************************************
27
 * local static and global data
28
 *************************************************************/
29
30
/*
31
 * This array helps parsing between names, mechanisms, and flags.
32
 * to make the config files understand more entries, add them
33
 * to this table.
34
 */
35
const PK11DefaultArrayEntry PK11_DefaultArray[] = {
36
    { "RSA", SECMOD_RSA_FLAG, CKM_RSA_PKCS },
37
    { "DSA", SECMOD_DSA_FLAG, CKM_DSA },
38
    { "ECC", SECMOD_ECC_FLAG, CKM_ECDSA },
39
    { "EDDSA", SECMOD_ECC_FLAG, CKM_EDDSA },
40
    { "DH", SECMOD_DH_FLAG, CKM_DH_PKCS_DERIVE },
41
    { "RC2", SECMOD_RC2_FLAG, CKM_RC2_CBC },
42
    { "RC4", SECMOD_RC4_FLAG, CKM_RC4 },
43
    { "DES", SECMOD_DES_FLAG, CKM_DES_CBC },
44
    { "AES", SECMOD_AES_FLAG, CKM_AES_CBC },
45
    { "Camellia", SECMOD_CAMELLIA_FLAG, CKM_CAMELLIA_CBC },
46
    { "SEED", SECMOD_SEED_FLAG, CKM_SEED_CBC },
47
    { "RC5", SECMOD_RC5_FLAG, CKM_RC5_CBC },
48
    { "SHA-1", SECMOD_SHA1_FLAG, CKM_SHA_1 },
49
    /*  { "SHA224", SECMOD_SHA256_FLAG, CKM_SHA224 }, */
50
    { "SHA256", SECMOD_SHA256_FLAG, CKM_SHA256 },
51
    /*  { "SHA384", SECMOD_SHA512_FLAG, CKM_SHA384 }, */
52
    { "SHA512", SECMOD_SHA512_FLAG, CKM_SHA512 },
53
    { "MD5", SECMOD_MD5_FLAG, CKM_MD5 },
54
    { "MD2", SECMOD_MD2_FLAG, CKM_MD2 },
55
    { "SSL", SECMOD_SSL_FLAG, CKM_SSL3_PRE_MASTER_KEY_GEN },
56
    { "TLS", SECMOD_TLS_FLAG, CKM_TLS_MASTER_KEY_DERIVE },
57
    { "SKIPJACK", SECMOD_FORTEZZA_FLAG, CKM_SKIPJACK_CBC64 },
58
    { "Publicly-readable certs", SECMOD_FRIENDLY_FLAG, CKM_INVALID_MECHANISM },
59
    { "Random Num Generator", SECMOD_RANDOM_FLAG, CKM_FAKE_RANDOM },
60
};
61
const int num_pk11_default_mechanisms =
62
    sizeof(PK11_DefaultArray) / sizeof(PK11_DefaultArray[0]);
63
64
const PK11DefaultArrayEntry *
65
PK11_GetDefaultArray(int *size)
66
0
{
67
0
    if (size) {
68
0
        *size = num_pk11_default_mechanisms;
69
0
    }
70
0
    return PK11_DefaultArray;
71
0
}
72
73
/*
74
 * These  slotlists are lists of modules which provide default support for
75
 *  a given algorithm or mechanism.
76
 */
77
static PK11SlotList
78
    pk11_seedSlotList,
79
    pk11_camelliaSlotList,
80
    pk11_aesSlotList,
81
    pk11_desSlotList,
82
    pk11_rc4SlotList,
83
    pk11_rc2SlotList,
84
    pk11_rc5SlotList,
85
    pk11_sha1SlotList,
86
    pk11_md5SlotList,
87
    pk11_md2SlotList,
88
    pk11_rsaSlotList,
89
    pk11_dsaSlotList,
90
    pk11_dhSlotList,
91
    pk11_ecSlotList,
92
    pk11_ideaSlotList,
93
    pk11_sslSlotList,
94
    pk11_tlsSlotList,
95
    pk11_randomSlotList,
96
    pk11_sha256SlotList,
97
    pk11_sha512SlotList; /* slots do SHA512 and SHA384 */
98
99
/************************************************************
100
 * Generic Slot List and Slot List element manipulations
101
 ************************************************************/
102
103
/*
104
 * allocate a new list
105
 */
106
PK11SlotList *
107
PK11_NewSlotList(void)
108
0
{
109
0
    PK11SlotList *list;
110
111
0
    list = (PK11SlotList *)PORT_Alloc(sizeof(PK11SlotList));
112
0
    if (list == NULL)
113
0
        return NULL;
114
0
    list->head = NULL;
115
0
    list->tail = NULL;
116
0
    list->lock = PZ_NewLock(nssILockList);
117
0
    if (list->lock == NULL) {
118
0
        PORT_Free(list);
119
0
        return NULL;
120
0
    }
121
122
0
    return list;
123
0
}
124
125
/*
126
 * free a list element when all the references go away.
127
 */
128
SECStatus
129
PK11_FreeSlotListElement(PK11SlotList *list, PK11SlotListElement *le)
130
0
{
131
0
    PRBool freeit = PR_FALSE;
132
133
0
    if (list == NULL || le == NULL) {
134
0
        PORT_SetError(SEC_ERROR_INVALID_ARGS);
135
0
        return SECFailure;
136
0
    }
137
138
0
    PZ_Lock(list->lock);
139
0
    if (le->refCount-- == 1) {
140
0
        freeit = PR_TRUE;
141
0
    }
142
0
    PZ_Unlock(list->lock);
143
0
    if (freeit) {
144
0
        PK11_FreeSlot(le->slot);
145
0
        PORT_Free(le);
146
0
    }
147
0
    return SECSuccess;
148
0
}
149
150
static void
151
pk11_FreeSlotListStatic(PK11SlotList *list)
152
0
{
153
0
    PK11SlotListElement *le, *next;
154
0
    if (list == NULL)
155
0
        return;
156
157
0
    for (le = list->head; le; le = next) {
158
0
        next = le->next;
159
0
        PK11_FreeSlotListElement(list, le);
160
0
    }
161
0
    if (list->lock) {
162
0
        PZ_DestroyLock(list->lock);
163
0
    }
164
0
    list->lock = NULL;
165
0
    list->head = NULL;
166
0
}
167
168
/*
169
 * if we are freeing the list, we must be the only ones with a pointer
170
 * to the list.
171
 */
172
void
173
PK11_FreeSlotList(PK11SlotList *list)
174
0
{
175
0
    pk11_FreeSlotListStatic(list);
176
0
    PORT_Free(list);
177
0
}
178
179
/*
180
 * add a slot to a list
181
 * "slot" is the slot to be added. Ownership is not transferred.
182
 * "sorted" indicates whether or not the slot should be inserted according to
183
 *   cipherOrder of the associated module. PR_FALSE indicates that the slot
184
 *   should be inserted to the head of the list.
185
 */
186
SECStatus
187
PK11_AddSlotToList(PK11SlotList *list, PK11SlotInfo *slot, PRBool sorted)
188
0
{
189
0
    PK11SlotListElement *le;
190
0
    PK11SlotListElement *element;
191
192
0
    le = (PK11SlotListElement *)PORT_Alloc(sizeof(PK11SlotListElement));
193
0
    if (le == NULL)
194
0
        return SECFailure;
195
196
0
    le->slot = PK11_ReferenceSlot(slot);
197
0
    le->prev = NULL;
198
0
    le->refCount = 1;
199
0
    PZ_Lock(list->lock);
200
0
    element = list->head;
201
    /* Insertion sort, with higher cipherOrders are sorted first in the list */
202
0
    while (element && sorted && (element->slot->module->cipherOrder > le->slot->module->cipherOrder)) {
203
0
        element = element->next;
204
0
    }
205
0
    if (element) {
206
0
        le->prev = element->prev;
207
0
        element->prev = le;
208
0
        le->next = element;
209
0
    } else {
210
0
        le->prev = list->tail;
211
0
        le->next = NULL;
212
0
        list->tail = le;
213
0
    }
214
0
    if (le->prev)
215
0
        le->prev->next = le;
216
0
    if (list->head == element)
217
0
        list->head = le;
218
0
    PZ_Unlock(list->lock);
219
220
0
    return SECSuccess;
221
0
}
222
223
/*
224
 * remove a slot entry from the list
225
 */
226
SECStatus
227
PK11_DeleteSlotFromList(PK11SlotList *list, PK11SlotListElement *le)
228
0
{
229
0
    PZ_Lock(list->lock);
230
0
    if (le->prev)
231
0
        le->prev->next = le->next;
232
0
    else
233
0
        list->head = le->next;
234
0
    if (le->next)
235
0
        le->next->prev = le->prev;
236
0
    else
237
0
        list->tail = le->prev;
238
0
    le->next = le->prev = NULL;
239
0
    PZ_Unlock(list->lock);
240
0
    PK11_FreeSlotListElement(list, le);
241
0
    return SECSuccess;
242
0
}
243
244
/*
245
 * Move a list to the end of the target list.
246
 * NOTE: There is no locking here... This assumes BOTH lists are private copy
247
 * lists. It also does not re-sort the target list.
248
 */
249
SECStatus
250
pk11_MoveListToList(PK11SlotList *target, PK11SlotList *src)
251
0
{
252
0
    if (src->head == NULL)
253
0
        return SECSuccess;
254
255
0
    if (target->tail == NULL) {
256
0
        target->head = src->head;
257
0
    } else {
258
0
        target->tail->next = src->head;
259
0
    }
260
0
    src->head->prev = target->tail;
261
0
    target->tail = src->tail;
262
0
    src->head = src->tail = NULL;
263
0
    return SECSuccess;
264
0
}
265
266
/*
267
 * get an element from the list with a reference. You must own the list.
268
 */
269
PK11SlotListElement *
270
PK11_GetFirstRef(PK11SlotList *list)
271
0
{
272
0
    PK11SlotListElement *le;
273
274
0
    le = list->head;
275
0
    if (le != NULL)
276
0
        (le)->refCount++;
277
0
    return le;
278
0
}
279
280
/*
281
 * get the next element from the list with a reference. You must own the list.
282
 */
283
PK11SlotListElement *
284
PK11_GetNextRef(PK11SlotList *list, PK11SlotListElement *le, PRBool restart)
285
0
{
286
0
    PK11SlotListElement *new_le;
287
0
    new_le = le->next;
288
0
    if (new_le)
289
0
        new_le->refCount++;
290
0
    PK11_FreeSlotListElement(list, le);
291
0
    return new_le;
292
0
}
293
294
/*
295
 * get an element safely from the list. This just makes sure that if
296
 * this element is not deleted while we deal with it.
297
 */
298
PK11SlotListElement *
299
PK11_GetFirstSafe(PK11SlotList *list)
300
0
{
301
0
    PK11SlotListElement *le;
302
303
0
    PZ_Lock(list->lock);
304
0
    le = list->head;
305
0
    if (le != NULL)
306
0
        (le)->refCount++;
307
0
    PZ_Unlock(list->lock);
308
0
    return le;
309
0
}
310
311
/*
312
 * NOTE: if this element gets deleted, we can no longer safely traverse using
313
 * it's pointers. We can either terminate the loop, or restart from the
314
 * beginning. This is controlled by the restart option.
315
 */
316
PK11SlotListElement *
317
PK11_GetNextSafe(PK11SlotList *list, PK11SlotListElement *le, PRBool restart)
318
0
{
319
0
    PK11SlotListElement *new_le;
320
0
    PZ_Lock(list->lock);
321
0
    new_le = le->next;
322
0
    if (le->next == NULL) {
323
        /* if the prev and next fields are NULL then either this element
324
         * has been removed and we need to walk the list again (if restart
325
         * is true) or this was the only element on the list */
326
0
        if ((le->prev == NULL) && restart && (list->head != le)) {
327
0
            new_le = list->head;
328
0
        }
329
0
    }
330
0
    if (new_le)
331
0
        new_le->refCount++;
332
0
    PZ_Unlock(list->lock);
333
0
    PK11_FreeSlotListElement(list, le);
334
0
    return new_le;
335
0
}
336
337
/*
338
 * Find the element that holds this slot
339
 */
340
PK11SlotListElement *
341
PK11_FindSlotElement(PK11SlotList *list, PK11SlotInfo *slot)
342
0
{
343
0
    PK11SlotListElement *le;
344
345
0
    for (le = PK11_GetFirstSafe(list); le;
346
0
         le = PK11_GetNextSafe(list, le, PR_TRUE)) {
347
0
        if (le->slot == slot)
348
0
            return le;
349
0
    }
350
0
    return NULL;
351
0
}
352
353
/************************************************************
354
 * Generic Slot Utilities
355
 ************************************************************/
356
/*
357
 * Create a new slot structure
358
 */
359
PK11SlotInfo *
360
PK11_NewSlotInfo(SECMODModule *mod)
361
0
{
362
0
    PK11SlotInfo *slot;
363
364
0
    slot = (PK11SlotInfo *)PORT_Alloc(sizeof(PK11SlotInfo));
365
0
    if (slot == NULL) {
366
0
        return slot;
367
0
    }
368
0
    slot->freeListLock = PZ_NewLock(nssILockFreelist);
369
0
    if (slot->freeListLock == NULL) {
370
0
        PORT_Free(slot);
371
0
        return NULL;
372
0
    }
373
0
    slot->nssTokenLock = PZ_NewLock(nssILockOther);
374
0
    if (slot->nssTokenLock == NULL) {
375
0
        PZ_DestroyLock(slot->freeListLock);
376
0
        PORT_Free(slot);
377
0
        return NULL;
378
0
    }
379
0
    slot->sessionLock = mod->isThreadSafe ? PZ_NewLock(nssILockSession) : mod->refLock;
380
0
    if (slot->sessionLock == NULL) {
381
0
        PZ_DestroyLock(slot->nssTokenLock);
382
0
        PZ_DestroyLock(slot->freeListLock);
383
0
        PORT_Free(slot);
384
0
        return NULL;
385
0
    }
386
0
    slot->freeSymKeysWithSessionHead = NULL;
387
0
    slot->freeSymKeysHead = NULL;
388
0
    slot->keyCount = 0;
389
0
    slot->maxKeyCount = 0;
390
0
    slot->functionList = NULL;
391
0
    slot->needTest = PR_TRUE;
392
0
    slot->isPerm = PR_FALSE;
393
0
    slot->isHW = PR_FALSE;
394
0
    slot->isInternal = PR_FALSE;
395
0
    slot->isThreadSafe = PR_FALSE;
396
0
    slot->disabled = PR_FALSE;
397
0
    slot->series = 1;
398
0
    slot->flagSeries = 0;
399
0
    slot->flagState = PR_FALSE;
400
0
    slot->wrapKey = 0;
401
0
    slot->wrapMechanism = CKM_INVALID_MECHANISM;
402
0
    slot->refKeys[0] = CK_INVALID_HANDLE;
403
0
    slot->reason = PK11_DIS_NONE;
404
0
    slot->readOnly = PR_TRUE;
405
0
    slot->needLogin = PR_FALSE;
406
0
    slot->hasRandom = PR_FALSE;
407
0
    slot->defRWSession = PR_FALSE;
408
0
    slot->protectedAuthPath = PR_FALSE;
409
0
    slot->flags = 0;
410
0
    slot->session = CK_INVALID_HANDLE;
411
0
    slot->slotID = 0;
412
0
    slot->defaultFlags = 0;
413
0
    slot->refCount = 1;
414
0
    slot->askpw = 0;
415
0
    slot->timeout = 0;
416
0
    slot->mechanismList = NULL;
417
0
    slot->mechanismCount = 0;
418
0
    slot->cert_array = NULL;
419
0
    slot->cert_count = 0;
420
0
    slot->slot_name[0] = 0;
421
0
    slot->token_name[0] = 0;
422
0
    PORT_Memset(slot->serial, ' ', sizeof(slot->serial));
423
0
    PORT_Memset(&slot->tokenInfo, 0, sizeof(slot->tokenInfo));
424
0
    slot->module = NULL;
425
0
    slot->authTransact = 0;
426
0
    slot->authTime = LL_ZERO;
427
0
    slot->minPassword = 0;
428
0
    slot->maxPassword = 0;
429
0
    slot->hasRootCerts = PR_FALSE;
430
0
    slot->hasRootTrust = PR_FALSE;
431
0
    slot->nssToken = NULL;
432
0
    slot->profileList = NULL;
433
0
    slot->profileCount = 0;
434
0
    return slot;
435
0
}
436
437
/* create a new reference to a slot so it doesn't go away */
438
PK11SlotInfo *
439
PK11_ReferenceSlot(PK11SlotInfo *slot)
440
0
{
441
0
    PR_ATOMIC_INCREMENT(&slot->refCount);
442
0
    return slot;
443
0
}
444
445
/* Destroy all info on a slot we have built up */
446
void
447
PK11_DestroySlot(PK11SlotInfo *slot)
448
0
{
449
    /* free up the cached keys and sessions */
450
0
    PK11_CleanKeyList(slot);
451
452
    /* free up all the sessions on this slot */
453
0
    if (slot->functionList) {
454
0
        PK11_GETTAB(slot)
455
0
            ->C_CloseAllSessions(slot->slotID);
456
0
    }
457
458
0
    if (slot->mechanismList) {
459
0
        PORT_Free(slot->mechanismList);
460
0
    }
461
0
    if (slot->profileList) {
462
0
        PORT_Free(slot->profileList);
463
0
    }
464
0
    if (slot->isThreadSafe && slot->sessionLock) {
465
0
        PZ_DestroyLock(slot->sessionLock);
466
0
    }
467
0
    slot->sessionLock = NULL;
468
0
    if (slot->freeListLock) {
469
0
        PZ_DestroyLock(slot->freeListLock);
470
0
        slot->freeListLock = NULL;
471
0
    }
472
0
    if (slot->nssTokenLock) {
473
0
        PZ_DestroyLock(slot->nssTokenLock);
474
0
        slot->nssTokenLock = NULL;
475
0
    }
476
477
    /* finally Tell our parent module that we've gone away so it can unload */
478
0
    if (slot->module) {
479
0
        SECMOD_SlotDestroyModule(slot->module, PR_TRUE);
480
0
    }
481
482
    /* ok, well not quit finally... now we free the memory */
483
0
    PORT_Free(slot);
484
0
}
485
486
/* We're all done with the slot, free it */
487
void
488
PK11_FreeSlot(PK11SlotInfo *slot)
489
0
{
490
0
    if (PR_ATOMIC_DECREMENT(&slot->refCount) == 0) {
491
0
        PK11_DestroySlot(slot);
492
0
    }
493
0
}
494
495
void
496
PK11_EnterSlotMonitor(PK11SlotInfo *slot)
497
0
{
498
0
    PZ_Lock(slot->sessionLock);
499
0
}
500
501
void
502
PK11_ExitSlotMonitor(PK11SlotInfo *slot)
503
0
{
504
0
    PZ_Unlock(slot->sessionLock);
505
0
}
506
507
/***********************************************************
508
 * Functions to find specific slots.
509
 ***********************************************************/
510
PRBool
511
SECMOD_HasRootCerts(void)
512
0
{
513
0
    SECMODModuleList *mlp;
514
0
    SECMODModuleList *modules;
515
0
    SECMODListLock *moduleLock = SECMOD_GetDefaultModuleListLock();
516
0
    int i;
517
0
    PRBool found = PR_FALSE;
518
519
0
    if (!moduleLock) {
520
0
        PORT_SetError(SEC_ERROR_NOT_INITIALIZED);
521
0
        return found;
522
0
    }
523
524
    /* work through all the slots */
525
0
    SECMOD_GetReadLock(moduleLock);
526
0
    modules = SECMOD_GetDefaultModuleList();
527
0
    for (mlp = modules; mlp != NULL; mlp = mlp->next) {
528
0
        for (i = 0; i < mlp->module->slotCount; i++) {
529
0
            PK11SlotInfo *tmpSlot = mlp->module->slots[i];
530
0
            if (PK11_IsPresent(tmpSlot)) {
531
0
                if (tmpSlot->hasRootCerts) {
532
0
                    found = PR_TRUE;
533
0
                    break;
534
0
                }
535
0
            }
536
0
        }
537
0
        if (found)
538
0
            break;
539
0
    }
540
0
    SECMOD_ReleaseReadLock(moduleLock);
541
542
0
    return found;
543
0
}
544
545
/***********************************************************
546
 * Functions to find specific slots.
547
 ***********************************************************/
548
PK11SlotList *
549
PK11_FindSlotsByNames(const char *dllName, const char *slotName,
550
                      const char *tokenName, PRBool presentOnly)
551
0
{
552
0
    SECMODModuleList *mlp;
553
0
    SECMODModuleList *modules;
554
0
    SECMODListLock *moduleLock = SECMOD_GetDefaultModuleListLock();
555
0
    int i;
556
0
    PK11SlotList *slotList = NULL;
557
0
    PRUint32 slotcount = 0;
558
0
    SECStatus rv = SECSuccess;
559
560
0
    if (!moduleLock) {
561
0
        PORT_SetError(SEC_ERROR_NOT_INITIALIZED);
562
0
        return slotList;
563
0
    }
564
565
0
    slotList = PK11_NewSlotList();
566
0
    if (!slotList) {
567
0
        PORT_SetError(SEC_ERROR_NO_MEMORY);
568
0
        return slotList;
569
0
    }
570
571
0
    if (((NULL == dllName) || (0 == *dllName)) &&
572
0
        ((NULL == slotName) || (0 == *slotName)) &&
573
0
        ((NULL == tokenName) || (0 == *tokenName))) {
574
        /* default to softoken */
575
        /* PK11_GetInternalKeySlot increments the refcount on the internal slot,
576
         * but so does PK11_AddSlotToList. To avoid erroneously increasing the
577
         * refcount twice, we get our own reference to the internal slot and
578
         * decrement its refcount when we're done with it. */
579
0
        PK11SlotInfo *internalKeySlot = PK11_GetInternalKeySlot();
580
0
        PK11_AddSlotToList(slotList, internalKeySlot, PR_TRUE);
581
0
        PK11_FreeSlot(internalKeySlot);
582
0
        return slotList;
583
0
    }
584
585
    /* work through all the slots */
586
0
    SECMOD_GetReadLock(moduleLock);
587
0
    modules = SECMOD_GetDefaultModuleList();
588
0
    for (mlp = modules; mlp != NULL; mlp = mlp->next) {
589
0
        PORT_Assert(mlp->module);
590
0
        if (!mlp->module) {
591
0
            rv = SECFailure;
592
0
            break;
593
0
        }
594
0
        if ((!dllName) || (mlp->module->dllName &&
595
0
                           (0 == PORT_Strcmp(mlp->module->dllName, dllName)))) {
596
0
            for (i = 0; i < mlp->module->slotCount; i++) {
597
0
                PK11SlotInfo *tmpSlot = (mlp->module->slots ? mlp->module->slots[i] : NULL);
598
0
                PORT_Assert(tmpSlot);
599
0
                if (!tmpSlot) {
600
0
                    rv = SECFailure;
601
0
                    break;
602
0
                }
603
0
                if ((PR_FALSE == presentOnly || PK11_IsPresent(tmpSlot)) &&
604
0
                    ((!tokenName) ||
605
0
                     (0 == PORT_Strcmp(tmpSlot->token_name, tokenName))) &&
606
0
                    ((!slotName) ||
607
0
                     (0 == PORT_Strcmp(tmpSlot->slot_name, slotName)))) {
608
0
                    PK11_AddSlotToList(slotList, tmpSlot, PR_TRUE);
609
0
                    slotcount++;
610
0
                }
611
0
            }
612
0
        }
613
0
    }
614
0
    SECMOD_ReleaseReadLock(moduleLock);
615
616
0
    if ((0 == slotcount) || (SECFailure == rv)) {
617
0
        PORT_SetError(SEC_ERROR_NO_TOKEN);
618
0
        PK11_FreeSlotList(slotList);
619
0
        slotList = NULL;
620
0
    }
621
622
0
    if (SECFailure == rv) {
623
0
        PORT_SetError(SEC_ERROR_LIBRARY_FAILURE);
624
0
    }
625
626
0
    return slotList;
627
0
}
628
629
typedef PRBool (*PK11SlotMatchFunc)(PK11SlotInfo *slot, const void *arg);
630
631
static PRBool
632
pk11_MatchSlotByTokenName(PK11SlotInfo *slot, const void *arg)
633
0
{
634
0
    return PORT_Strcmp(slot->token_name, arg) == 0;
635
0
}
636
637
static PRBool
638
pk11_MatchSlotBySerial(PK11SlotInfo *slot, const void *arg)
639
0
{
640
0
    return PORT_Memcmp(slot->serial, arg, sizeof(slot->serial)) == 0;
641
0
}
642
643
static PRBool
644
pk11_MatchSlotByTokenURI(PK11SlotInfo *slot, const void *arg)
645
0
{
646
0
    return pk11_MatchUriTokenInfo(slot, (PK11URI *)arg);
647
0
}
648
649
static PK11SlotInfo *
650
pk11_FindSlot(const void *arg, PK11SlotMatchFunc func)
651
0
{
652
0
    SECMODListLock *moduleLock = SECMOD_GetDefaultModuleListLock();
653
0
    SECMODModuleList *mlp;
654
0
    SECMODModuleList *modules;
655
0
    int i;
656
0
    PK11SlotInfo *slot = NULL;
657
658
0
    if (!moduleLock) {
659
0
        PORT_SetError(SEC_ERROR_NOT_INITIALIZED);
660
0
        return slot;
661
0
    }
662
    /* work through all the slots */
663
0
    SECMOD_GetReadLock(moduleLock);
664
0
    modules = SECMOD_GetDefaultModuleList();
665
0
    for (mlp = modules; mlp != NULL; mlp = mlp->next) {
666
0
        for (i = 0; i < mlp->module->slotCount; i++) {
667
0
            PK11SlotInfo *tmpSlot = mlp->module->slots[i];
668
0
            if (PK11_IsPresent(tmpSlot)) {
669
0
                if (func(tmpSlot, arg)) {
670
0
                    slot = PK11_ReferenceSlot(tmpSlot);
671
0
                    break;
672
0
                }
673
0
            }
674
0
        }
675
0
        if (slot != NULL)
676
0
            break;
677
0
    }
678
0
    SECMOD_ReleaseReadLock(moduleLock);
679
680
0
    if (slot == NULL) {
681
0
        PORT_SetError(SEC_ERROR_NO_TOKEN);
682
0
    }
683
684
0
    return slot;
685
0
}
686
687
static PK11SlotInfo *
688
pk11_FindSlotByTokenURI(const char *uriString)
689
0
{
690
0
    PK11SlotInfo *slot = NULL;
691
0
    PK11URI *uri;
692
693
0
    uri = PK11URI_ParseURI(uriString);
694
0
    if (!uri) {
695
0
        PORT_SetError(SEC_ERROR_INVALID_ARGS);
696
0
        return slot;
697
0
    }
698
699
0
    slot = pk11_FindSlot(uri, pk11_MatchSlotByTokenURI);
700
0
    PK11URI_DestroyURI(uri);
701
0
    return slot;
702
0
}
703
704
PK11SlotInfo *
705
PK11_FindSlotByName(const char *name)
706
0
{
707
0
    if ((name == NULL) || (*name == 0)) {
708
0
        return PK11_GetInternalKeySlot();
709
0
    }
710
711
0
    if (!PORT_Strncasecmp(name, "pkcs11:", strlen("pkcs11:"))) {
712
0
        return pk11_FindSlotByTokenURI(name);
713
0
    }
714
715
0
    return pk11_FindSlot(name, pk11_MatchSlotByTokenName);
716
0
}
717
718
PK11SlotInfo *
719
PK11_FindSlotBySerial(char *serial)
720
0
{
721
0
    return pk11_FindSlot(serial, pk11_MatchSlotBySerial);
722
0
}
723
724
/*
725
 * notification stub. If we ever get interested in any events that
726
 * the pkcs11 functions may pass back to use, we can catch them here...
727
 * currently pdata is a slotinfo structure.
728
 */
729
CK_RV
730
pk11_notify(CK_SESSION_HANDLE session, CK_NOTIFICATION event,
731
            CK_VOID_PTR pdata)
732
0
{
733
0
    return CKR_OK;
734
0
}
735
736
/*
737
 * grab a new RW session
738
 * !!! has a side effect of grabbing the Monitor if either the slot's default
739
 * session is RW or the slot is not thread safe. Monitor is release in function
740
 * below
741
 */
742
CK_SESSION_HANDLE
743
PK11_GetRWSession(PK11SlotInfo *slot)
744
0
{
745
0
    CK_SESSION_HANDLE rwsession;
746
0
    CK_RV crv;
747
0
    PRBool haveMonitor = PR_FALSE;
748
749
0
    if (!slot->isThreadSafe || slot->defRWSession) {
750
0
        PK11_EnterSlotMonitor(slot);
751
0
        haveMonitor = PR_TRUE;
752
0
    }
753
0
    if (slot->defRWSession) {
754
0
        PORT_Assert(slot->session != CK_INVALID_HANDLE);
755
0
        if (slot->session != CK_INVALID_HANDLE)
756
0
            return slot->session;
757
0
    }
758
759
0
    crv = PK11_GETTAB(slot)->C_OpenSession(slot->slotID,
760
0
                                           CKF_RW_SESSION | CKF_SERIAL_SESSION,
761
0
                                           slot, pk11_notify, &rwsession);
762
0
    PORT_Assert(rwsession != CK_INVALID_HANDLE || crv != CKR_OK);
763
0
    if (crv != CKR_OK || rwsession == CK_INVALID_HANDLE) {
764
0
        if (crv == CKR_OK)
765
0
            crv = CKR_DEVICE_ERROR;
766
0
        if (haveMonitor)
767
0
            PK11_ExitSlotMonitor(slot);
768
0
        PORT_SetError(PK11_MapError(crv));
769
0
        return CK_INVALID_HANDLE;
770
0
    }
771
0
    if (slot->defRWSession) { /* we have the monitor */
772
0
        slot->session = rwsession;
773
0
    }
774
0
    return rwsession;
775
0
}
776
777
PRBool
778
PK11_RWSessionHasLock(PK11SlotInfo *slot, CK_SESSION_HANDLE session_handle)
779
0
{
780
0
    PRBool hasLock;
781
0
    hasLock = (PRBool)(!slot->isThreadSafe ||
782
0
                       (slot->defRWSession && slot->session != CK_INVALID_HANDLE));
783
0
    return hasLock;
784
0
}
785
786
static PRBool
787
pk11_RWSessionIsDefault(PK11SlotInfo *slot, CK_SESSION_HANDLE rwsession)
788
0
{
789
0
    PRBool isDefault;
790
0
    isDefault = (PRBool)(slot->session == rwsession &&
791
0
                         slot->defRWSession &&
792
0
                         slot->session != CK_INVALID_HANDLE);
793
0
    return isDefault;
794
0
}
795
796
/*
797
 * close the rwsession and restore our readonly session
798
 * !!! has a side effect of releasing the Monitor if either the slot's default
799
 * session is RW or the slot is not thread safe.
800
 */
801
void
802
PK11_RestoreROSession(PK11SlotInfo *slot, CK_SESSION_HANDLE rwsession)
803
0
{
804
0
    PORT_Assert(rwsession != CK_INVALID_HANDLE);
805
0
    if (rwsession != CK_INVALID_HANDLE) {
806
0
        PRBool doExit = PK11_RWSessionHasLock(slot, rwsession);
807
0
        if (!pk11_RWSessionIsDefault(slot, rwsession))
808
0
            PK11_GETTAB(slot)
809
0
                ->C_CloseSession(rwsession);
810
0
        if (doExit)
811
0
            PK11_ExitSlotMonitor(slot);
812
0
    }
813
0
}
814
815
/************************************************************
816
 * Manage the built-In Slot Lists
817
 ************************************************************/
818
819
/* Init the static built int slot list (should actually integrate
820
 * with PK11_NewSlotList */
821
static void
822
pk11_InitSlotListStatic(PK11SlotList *list)
823
0
{
824
0
    list->lock = PZ_NewLock(nssILockList);
825
0
    list->head = NULL;
826
0
}
827
828
/* initialize the system slotlists */
829
SECStatus
830
PK11_InitSlotLists(void)
831
0
{
832
0
    pk11_InitSlotListStatic(&pk11_seedSlotList);
833
0
    pk11_InitSlotListStatic(&pk11_camelliaSlotList);
834
0
    pk11_InitSlotListStatic(&pk11_aesSlotList);
835
0
    pk11_InitSlotListStatic(&pk11_desSlotList);
836
0
    pk11_InitSlotListStatic(&pk11_rc4SlotList);
837
0
    pk11_InitSlotListStatic(&pk11_rc2SlotList);
838
0
    pk11_InitSlotListStatic(&pk11_rc5SlotList);
839
0
    pk11_InitSlotListStatic(&pk11_md5SlotList);
840
0
    pk11_InitSlotListStatic(&pk11_md2SlotList);
841
0
    pk11_InitSlotListStatic(&pk11_sha1SlotList);
842
0
    pk11_InitSlotListStatic(&pk11_rsaSlotList);
843
0
    pk11_InitSlotListStatic(&pk11_dsaSlotList);
844
0
    pk11_InitSlotListStatic(&pk11_dhSlotList);
845
0
    pk11_InitSlotListStatic(&pk11_ecSlotList);
846
0
    pk11_InitSlotListStatic(&pk11_ideaSlotList);
847
0
    pk11_InitSlotListStatic(&pk11_sslSlotList);
848
0
    pk11_InitSlotListStatic(&pk11_tlsSlotList);
849
0
    pk11_InitSlotListStatic(&pk11_randomSlotList);
850
0
    pk11_InitSlotListStatic(&pk11_sha256SlotList);
851
0
    pk11_InitSlotListStatic(&pk11_sha512SlotList);
852
0
    return SECSuccess;
853
0
}
854
855
void
856
PK11_DestroySlotLists(void)
857
0
{
858
0
    pk11_FreeSlotListStatic(&pk11_seedSlotList);
859
0
    pk11_FreeSlotListStatic(&pk11_camelliaSlotList);
860
0
    pk11_FreeSlotListStatic(&pk11_aesSlotList);
861
0
    pk11_FreeSlotListStatic(&pk11_desSlotList);
862
0
    pk11_FreeSlotListStatic(&pk11_rc4SlotList);
863
0
    pk11_FreeSlotListStatic(&pk11_rc2SlotList);
864
0
    pk11_FreeSlotListStatic(&pk11_rc5SlotList);
865
0
    pk11_FreeSlotListStatic(&pk11_md5SlotList);
866
0
    pk11_FreeSlotListStatic(&pk11_md2SlotList);
867
0
    pk11_FreeSlotListStatic(&pk11_sha1SlotList);
868
0
    pk11_FreeSlotListStatic(&pk11_rsaSlotList);
869
0
    pk11_FreeSlotListStatic(&pk11_dsaSlotList);
870
0
    pk11_FreeSlotListStatic(&pk11_dhSlotList);
871
0
    pk11_FreeSlotListStatic(&pk11_ecSlotList);
872
0
    pk11_FreeSlotListStatic(&pk11_ideaSlotList);
873
0
    pk11_FreeSlotListStatic(&pk11_sslSlotList);
874
0
    pk11_FreeSlotListStatic(&pk11_tlsSlotList);
875
0
    pk11_FreeSlotListStatic(&pk11_randomSlotList);
876
0
    pk11_FreeSlotListStatic(&pk11_sha256SlotList);
877
0
    pk11_FreeSlotListStatic(&pk11_sha512SlotList);
878
0
    return;
879
0
}
880
881
/* return a system slot list based on mechanism */
882
PK11SlotList *
883
PK11_GetSlotList(CK_MECHANISM_TYPE type)
884
0
{
885
/* XXX a workaround for Bugzilla bug #55267 */
886
#if defined(HPUX) && defined(__LP64__)
887
    if (CKM_INVALID_MECHANISM == type)
888
        return NULL;
889
#endif
890
0
    switch (type) {
891
0
        case CKM_SEED_CBC:
892
0
        case CKM_SEED_ECB:
893
0
            return &pk11_seedSlotList;
894
0
        case CKM_CAMELLIA_CBC:
895
0
        case CKM_CAMELLIA_ECB:
896
0
            return &pk11_camelliaSlotList;
897
0
        case CKM_AES_CBC:
898
0
        case CKM_AES_CCM:
899
0
        case CKM_AES_CTR:
900
0
        case CKM_AES_CTS:
901
0
        case CKM_AES_GCM:
902
0
        case CKM_AES_ECB:
903
0
            return &pk11_aesSlotList;
904
0
        case CKM_DES_CBC:
905
0
        case CKM_DES_ECB:
906
0
        case CKM_DES3_ECB:
907
0
        case CKM_DES3_CBC:
908
0
            return &pk11_desSlotList;
909
0
        case CKM_RC4:
910
0
            return &pk11_rc4SlotList;
911
0
        case CKM_RC5_CBC:
912
0
            return &pk11_rc5SlotList;
913
0
        case CKM_SHA_1:
914
0
            return &pk11_sha1SlotList;
915
0
        case CKM_SHA224:
916
0
        case CKM_SHA256:
917
0
        case CKM_SHA3_224:
918
0
        case CKM_SHA3_256:
919
0
            return &pk11_sha256SlotList;
920
0
        case CKM_SHA384:
921
0
        case CKM_SHA512:
922
0
        case CKM_SHA3_384:
923
0
        case CKM_SHA3_512:
924
0
            return &pk11_sha512SlotList;
925
0
        case CKM_MD5:
926
0
            return &pk11_md5SlotList;
927
0
        case CKM_MD2:
928
0
            return &pk11_md2SlotList;
929
0
        case CKM_RC2_ECB:
930
0
        case CKM_RC2_CBC:
931
0
            return &pk11_rc2SlotList;
932
0
        case CKM_RSA_PKCS:
933
0
        case CKM_RSA_PKCS_KEY_PAIR_GEN:
934
0
        case CKM_RSA_X_509:
935
0
            return &pk11_rsaSlotList;
936
0
        case CKM_DSA:
937
0
            return &pk11_dsaSlotList;
938
0
        case CKM_DH_PKCS_KEY_PAIR_GEN:
939
0
        case CKM_DH_PKCS_DERIVE:
940
0
            return &pk11_dhSlotList;
941
0
        case CKM_EDDSA:
942
0
        case CKM_EC_EDWARDS_KEY_PAIR_GEN:
943
0
        case CKM_ECDSA:
944
0
        case CKM_ECDSA_SHA1:
945
0
        case CKM_EC_KEY_PAIR_GEN: /* aka CKM_ECDSA_KEY_PAIR_GEN */
946
0
        case CKM_NSS_ECDHE_NO_PAIRWISE_CHECK_KEY_PAIR_GEN:
947
0
        case CKM_ECDH1_DERIVE:
948
0
        case CKM_NSS_KYBER_KEY_PAIR_GEN: /* Bug 1893029 */
949
0
        case CKM_NSS_KYBER:
950
0
        case CKM_NSS_ML_KEM_KEY_PAIR_GEN: /* Bug 1893029 */
951
0
        case CKM_NSS_ML_KEM:
952
0
            return &pk11_ecSlotList;
953
0
        case CKM_SSL3_PRE_MASTER_KEY_GEN:
954
0
        case CKM_SSL3_MASTER_KEY_DERIVE:
955
0
        case CKM_SSL3_SHA1_MAC:
956
0
        case CKM_SSL3_MD5_MAC:
957
0
            return &pk11_sslSlotList;
958
0
        case CKM_TLS_MASTER_KEY_DERIVE:
959
0
        case CKM_TLS_KEY_AND_MAC_DERIVE:
960
0
        case CKM_NSS_TLS_KEY_AND_MAC_DERIVE_SHA256:
961
0
            return &pk11_tlsSlotList;
962
0
        case CKM_IDEA_CBC:
963
0
        case CKM_IDEA_ECB:
964
0
            return &pk11_ideaSlotList;
965
0
        case CKM_FAKE_RANDOM:
966
0
            return &pk11_randomSlotList;
967
0
    }
968
0
    return NULL;
969
0
}
970
971
/*
972
 * load the static SlotInfo structures used to select a PKCS11 slot.
973
 * preSlotInfo has a list of all the default flags for the slots on this
974
 * module.
975
 */
976
void
977
PK11_LoadSlotList(PK11SlotInfo *slot, PK11PreSlotInfo *psi, int count)
978
0
{
979
0
    int i;
980
981
0
    for (i = 0; i < count; i++) {
982
0
        if (psi[i].slotID == slot->slotID)
983
0
            break;
984
0
    }
985
986
0
    if (i == count)
987
0
        return;
988
989
0
    slot->defaultFlags = psi[i].defaultFlags;
990
0
    slot->askpw = psi[i].askpw;
991
0
    slot->timeout = psi[i].timeout;
992
0
    slot->hasRootCerts = psi[i].hasRootCerts;
993
994
    /* if the slot is already disabled, don't load them into the
995
     * default slot lists. We get here so we can save the default
996
     * list value. */
997
0
    if (slot->disabled)
998
0
        return;
999
1000
    /* if the user has disabled us, don't load us in */
1001
0
    if (slot->defaultFlags & PK11_DISABLE_FLAG) {
1002
0
        slot->disabled = PR_TRUE;
1003
0
        slot->reason = PK11_DIS_USER_SELECTED;
1004
        /* free up sessions and things?? */
1005
0
        return;
1006
0
    }
1007
1008
0
    for (i = 0; i < num_pk11_default_mechanisms; i++) {
1009
0
        if (slot->defaultFlags & PK11_DefaultArray[i].flag) {
1010
0
            CK_MECHANISM_TYPE mechanism = PK11_DefaultArray[i].mechanism;
1011
0
            PK11SlotList *slotList = PK11_GetSlotList(mechanism);
1012
1013
0
            if (slotList)
1014
0
                PK11_AddSlotToList(slotList, slot, PR_FALSE);
1015
0
        }
1016
0
    }
1017
1018
0
    return;
1019
0
}
1020
1021
/*
1022
 * update a slot to its new attribute according to the slot list
1023
 * returns: SECSuccess if nothing to do or add/delete is successful
1024
 */
1025
SECStatus
1026
PK11_UpdateSlotAttribute(PK11SlotInfo *slot,
1027
                         const PK11DefaultArrayEntry *entry,
1028
                         PRBool add)
1029
/* add: PR_TRUE if want to turn on */
1030
0
{
1031
0
    SECStatus result = SECSuccess;
1032
0
    PK11SlotList *slotList = PK11_GetSlotList(entry->mechanism);
1033
1034
0
    if (add) { /* trying to turn on a mechanism */
1035
1036
        /* turn on the default flag in the slot */
1037
0
        slot->defaultFlags |= entry->flag;
1038
1039
        /* add this slot to the list */
1040
0
        if (slotList != NULL)
1041
0
            result = PK11_AddSlotToList(slotList, slot, PR_FALSE);
1042
1043
0
    } else { /* trying to turn off */
1044
1045
        /* turn OFF the flag in the slot */
1046
0
        slot->defaultFlags &= ~entry->flag;
1047
1048
0
        if (slotList) {
1049
            /* find the element in the list & delete it */
1050
0
            PK11SlotListElement *le = PK11_FindSlotElement(slotList, slot);
1051
1052
            /* remove the slot from the list */
1053
0
            if (le)
1054
0
                result = PK11_DeleteSlotFromList(slotList, le);
1055
0
        }
1056
0
    }
1057
0
    return result;
1058
0
}
1059
1060
/*
1061
 * clear a slot off of all of it's default list
1062
 */
1063
void
1064
PK11_ClearSlotList(PK11SlotInfo *slot)
1065
0
{
1066
0
    int i;
1067
1068
0
    if (slot->disabled)
1069
0
        return;
1070
0
    if (slot->defaultFlags == 0)
1071
0
        return;
1072
1073
0
    for (i = 0; i < num_pk11_default_mechanisms; i++) {
1074
0
        if (slot->defaultFlags & PK11_DefaultArray[i].flag) {
1075
0
            CK_MECHANISM_TYPE mechanism = PK11_DefaultArray[i].mechanism;
1076
0
            PK11SlotList *slotList = PK11_GetSlotList(mechanism);
1077
0
            PK11SlotListElement *le = NULL;
1078
1079
0
            if (slotList)
1080
0
                le = PK11_FindSlotElement(slotList, slot);
1081
1082
0
            if (le) {
1083
0
                PK11_DeleteSlotFromList(slotList, le);
1084
0
                PK11_FreeSlotListElement(slotList, le);
1085
0
            }
1086
0
        }
1087
0
    }
1088
0
}
1089
1090
/******************************************************************
1091
 *           Slot initialization
1092
 ******************************************************************/
1093
/*
1094
 * turn a PKCS11 Static Label into a string
1095
 */
1096
char *
1097
PK11_MakeString(PLArenaPool *arena, char *space,
1098
                char *staticString, int stringLen)
1099
0
{
1100
0
    int i;
1101
0
    char *newString;
1102
0
    for (i = (stringLen - 1); i >= 0; i--) {
1103
0
        if (staticString[i] != ' ')
1104
0
            break;
1105
0
    }
1106
    /* move i to point to the last space */
1107
0
    i++;
1108
0
    if (arena) {
1109
0
        newString = (char *)PORT_ArenaAlloc(arena, i + 1 /* space for NULL */);
1110
0
    } else if (space) {
1111
0
        newString = space;
1112
0
    } else {
1113
0
        newString = (char *)PORT_Alloc(i + 1 /* space for NULL */);
1114
0
    }
1115
0
    if (newString == NULL)
1116
0
        return NULL;
1117
1118
0
    if (i)
1119
0
        PORT_Memcpy(newString, staticString, i);
1120
0
    newString[i] = 0;
1121
1122
0
    return newString;
1123
0
}
1124
1125
/*
1126
 * check if a null-terminated string matches with a PKCS11 Static Label
1127
 */
1128
PRBool
1129
pk11_MatchString(const char *string,
1130
                 const char *staticString, size_t staticStringLen)
1131
0
{
1132
0
    size_t i = staticStringLen;
1133
1134
    /* move i to point to the last space */
1135
0
    while (i > 0) {
1136
0
        if (staticString[i - 1] != ' ')
1137
0
            break;
1138
0
        i--;
1139
0
    }
1140
1141
0
    if (strlen(string) == i && memcmp(string, staticString, i) == 0) {
1142
0
        return PR_TRUE;
1143
0
    }
1144
1145
0
    return PR_FALSE;
1146
0
}
1147
1148
/*
1149
 * Reads in the slots mechanism list for later use
1150
 */
1151
SECStatus
1152
PK11_ReadMechanismList(PK11SlotInfo *slot)
1153
0
{
1154
0
    CK_ULONG count;
1155
0
    CK_RV crv;
1156
0
    PRUint32 i;
1157
1158
0
    if (slot->mechanismList) {
1159
0
        PORT_Free(slot->mechanismList);
1160
0
        slot->mechanismList = NULL;
1161
0
    }
1162
0
    slot->mechanismCount = 0;
1163
1164
0
    if (!slot->isThreadSafe)
1165
0
        PK11_EnterSlotMonitor(slot);
1166
0
    crv = PK11_GETTAB(slot)->C_GetMechanismList(slot->slotID, NULL, &count);
1167
0
    if (crv != CKR_OK) {
1168
0
        if (!slot->isThreadSafe)
1169
0
            PK11_ExitSlotMonitor(slot);
1170
0
        PORT_SetError(PK11_MapError(crv));
1171
0
        return SECFailure;
1172
0
    }
1173
1174
0
    slot->mechanismList = (CK_MECHANISM_TYPE *)
1175
0
        PORT_Alloc(count * sizeof(CK_MECHANISM_TYPE));
1176
0
    if (slot->mechanismList == NULL) {
1177
0
        if (!slot->isThreadSafe)
1178
0
            PK11_ExitSlotMonitor(slot);
1179
0
        return SECFailure;
1180
0
    }
1181
0
    crv = PK11_GETTAB(slot)->C_GetMechanismList(slot->slotID,
1182
0
                                                slot->mechanismList, &count);
1183
0
    if (!slot->isThreadSafe)
1184
0
        PK11_ExitSlotMonitor(slot);
1185
0
    if (crv != CKR_OK) {
1186
0
        PORT_Free(slot->mechanismList);
1187
0
        slot->mechanismList = NULL;
1188
0
        PORT_SetError(PK11_MapError(crv));
1189
0
        return SECSuccess;
1190
0
    }
1191
0
    slot->mechanismCount = count;
1192
0
    PORT_Memset(slot->mechanismBits, 0, sizeof(slot->mechanismBits));
1193
1194
0
    for (i = 0; i < count; i++) {
1195
0
        CK_MECHANISM_TYPE mech = slot->mechanismList[i];
1196
0
        if (mech < 0x7ff) {
1197
0
            slot->mechanismBits[mech & 0xff] |= 1 << (mech >> 8);
1198
0
        }
1199
0
    }
1200
0
    return SECSuccess;
1201
0
}
1202
1203
static SECStatus
1204
pk11_ReadProfileList(PK11SlotInfo *slot)
1205
0
{
1206
0
    CK_ATTRIBUTE findTemp[2];
1207
0
    CK_ATTRIBUTE *attrs;
1208
0
    CK_BBOOL cktrue = CK_TRUE;
1209
0
    CK_OBJECT_CLASS oclass = CKO_PROFILE;
1210
0
    size_t tsize;
1211
0
    int objCount;
1212
0
    CK_OBJECT_HANDLE *handles = NULL;
1213
0
    int i;
1214
1215
0
    attrs = findTemp;
1216
0
    PK11_SETATTRS(attrs, CKA_TOKEN, &cktrue, sizeof(cktrue));
1217
0
    attrs++;
1218
0
    PK11_SETATTRS(attrs, CKA_CLASS, &oclass, sizeof(oclass));
1219
0
    attrs++;
1220
0
    tsize = attrs - findTemp;
1221
0
    PORT_Assert(tsize <= sizeof(findTemp) / sizeof(CK_ATTRIBUTE));
1222
1223
0
    if (slot->profileList) {
1224
0
        PORT_Free(slot->profileList);
1225
0
        slot->profileList = NULL;
1226
0
    }
1227
0
    slot->profileCount = 0;
1228
1229
0
    objCount = 0;
1230
0
    handles = pk11_FindObjectsByTemplate(slot, findTemp, tsize, &objCount);
1231
0
    if (handles == NULL) {
1232
0
        if (objCount < 0) {
1233
0
            return SECFailure; /* error code is set */
1234
0
        }
1235
0
        PORT_Assert(objCount == 0);
1236
0
        return SECSuccess;
1237
0
    }
1238
1239
0
    slot->profileList = (CK_PROFILE_ID *)
1240
0
        PORT_Alloc(objCount * sizeof(CK_PROFILE_ID));
1241
0
    if (slot->profileList == NULL) {
1242
0
        PORT_Free(handles);
1243
0
        return SECFailure; /* error code is set */
1244
0
    }
1245
1246
0
    for (i = 0; i < objCount; i++) {
1247
0
        CK_ULONG value;
1248
1249
0
        value = PK11_ReadULongAttribute(slot, handles[i], CKA_PROFILE_ID);
1250
0
        if (value == CK_UNAVAILABLE_INFORMATION) {
1251
0
            continue;
1252
0
        }
1253
0
        slot->profileList[slot->profileCount++] = value;
1254
0
    }
1255
1256
0
    PORT_Free(handles);
1257
0
    return SECSuccess;
1258
0
}
1259
1260
static PRBool
1261
pk11_HasProfile(PK11SlotInfo *slot, CK_PROFILE_ID id)
1262
0
{
1263
0
    int i;
1264
1265
0
    for (i = 0; i < slot->profileCount; i++) {
1266
0
        if (slot->profileList[i] == id) {
1267
0
            return PR_TRUE;
1268
0
        }
1269
0
    }
1270
0
    return PR_FALSE;
1271
0
}
1272
1273
/*
1274
 * initialize a new token
1275
 * unlike initialize slot, this can be called multiple times in the lifetime
1276
 * of NSS. It reads the information associated with a card or token,
1277
 * that is not going to change unless the card or token changes.
1278
 */
1279
SECStatus
1280
PK11_InitToken(PK11SlotInfo *slot, PRBool loadCerts)
1281
0
{
1282
0
    CK_RV crv;
1283
0
    SECStatus rv;
1284
0
    PRStatus status;
1285
0
    NSSToken *nssToken;
1286
1287
    /* set the slot flags to the current token values */
1288
0
    if (!slot->isThreadSafe)
1289
0
        PK11_EnterSlotMonitor(slot);
1290
0
    crv = PK11_GETTAB(slot)->C_GetTokenInfo(slot->slotID, &slot->tokenInfo);
1291
0
    if (!slot->isThreadSafe)
1292
0
        PK11_ExitSlotMonitor(slot);
1293
0
    if (crv != CKR_OK) {
1294
0
        PORT_SetError(PK11_MapError(crv));
1295
0
        return SECFailure;
1296
0
    }
1297
1298
    /* set the slot flags to the current token values */
1299
0
    slot->series++; /* allow other objects to detect that the
1300
                     * slot is different */
1301
0
    slot->flags = slot->tokenInfo.flags;
1302
0
    slot->needLogin = ((slot->tokenInfo.flags & CKF_LOGIN_REQUIRED) ? PR_TRUE : PR_FALSE);
1303
0
    slot->readOnly = ((slot->tokenInfo.flags & CKF_WRITE_PROTECTED) ? PR_TRUE : PR_FALSE);
1304
1305
0
    slot->hasRandom = ((slot->tokenInfo.flags & CKF_RNG) ? PR_TRUE : PR_FALSE);
1306
0
    slot->protectedAuthPath =
1307
0
        ((slot->tokenInfo.flags & CKF_PROTECTED_AUTHENTICATION_PATH)
1308
0
             ? PR_TRUE
1309
0
             : PR_FALSE);
1310
0
    slot->lastLoginCheck = 0;
1311
0
    slot->lastState = 0;
1312
    /* on some platforms Active Card incorrectly sets the
1313
     * CKF_PROTECTED_AUTHENTICATION_PATH bit when it doesn't mean to. */
1314
0
    if (slot->isActiveCard) {
1315
0
        slot->protectedAuthPath = PR_FALSE;
1316
0
    }
1317
0
    (void)PK11_MakeString(NULL, slot->token_name,
1318
0
                          (char *)slot->tokenInfo.label, sizeof(slot->tokenInfo.label));
1319
0
    slot->minPassword = slot->tokenInfo.ulMinPinLen;
1320
0
    slot->maxPassword = slot->tokenInfo.ulMaxPinLen;
1321
0
    PORT_Memcpy(slot->serial, slot->tokenInfo.serialNumber, sizeof(slot->serial));
1322
1323
0
    nssToken = PK11Slot_GetNSSToken(slot);
1324
0
    nssToken_UpdateName(nssToken); /* null token is OK */
1325
0
    (void)nssToken_Destroy(nssToken);
1326
1327
0
    slot->defRWSession = (PRBool)((!slot->readOnly) &&
1328
0
                                  (slot->tokenInfo.ulMaxSessionCount == 1));
1329
0
    rv = PK11_ReadMechanismList(slot);
1330
0
    if (rv != SECSuccess)
1331
0
        return rv;
1332
1333
0
    slot->hasRSAInfo = PR_FALSE;
1334
0
    slot->RSAInfoFlags = 0;
1335
1336
    /* initialize the maxKeyCount value */
1337
0
    if (slot->tokenInfo.ulMaxSessionCount == 0) {
1338
0
        slot->maxKeyCount = 800; /* should be #define or a config param */
1339
0
    } else if (slot->tokenInfo.ulMaxSessionCount < 20) {
1340
        /* don't have enough sessions to keep that many keys around */
1341
0
        slot->maxKeyCount = 0;
1342
0
    } else {
1343
0
        slot->maxKeyCount = slot->tokenInfo.ulMaxSessionCount / 2;
1344
0
    }
1345
1346
    /* Make sure our session handle is valid */
1347
0
    if (slot->session == CK_INVALID_HANDLE) {
1348
        /* we know we don't have a valid session, go get one */
1349
0
        CK_SESSION_HANDLE session;
1350
1351
        /* session should be Readonly, serial */
1352
0
        if (!slot->isThreadSafe)
1353
0
            PK11_EnterSlotMonitor(slot);
1354
0
        crv = PK11_GETTAB(slot)->C_OpenSession(slot->slotID,
1355
0
                                               (slot->defRWSession ? CKF_RW_SESSION : 0) | CKF_SERIAL_SESSION,
1356
0
                                               slot, pk11_notify, &session);
1357
0
        if (!slot->isThreadSafe)
1358
0
            PK11_ExitSlotMonitor(slot);
1359
0
        if (crv != CKR_OK) {
1360
0
            PORT_SetError(PK11_MapError(crv));
1361
0
            return SECFailure;
1362
0
        }
1363
0
        slot->session = session;
1364
0
    } else {
1365
        /* The session we have may be defunct (the token associated with it)
1366
         * has been removed   */
1367
0
        CK_SESSION_INFO sessionInfo;
1368
1369
0
        if (!slot->isThreadSafe)
1370
0
            PK11_EnterSlotMonitor(slot);
1371
0
        crv = PK11_GETTAB(slot)->C_GetSessionInfo(slot->session, &sessionInfo);
1372
0
        if (crv == CKR_DEVICE_ERROR) {
1373
0
            PK11_GETTAB(slot)
1374
0
                ->C_CloseSession(slot->session);
1375
0
            crv = CKR_SESSION_CLOSED;
1376
0
        }
1377
0
        if ((crv == CKR_SESSION_CLOSED) || (crv == CKR_SESSION_HANDLE_INVALID)) {
1378
0
            crv = PK11_GETTAB(slot)->C_OpenSession(slot->slotID,
1379
0
                                                   (slot->defRWSession ? CKF_RW_SESSION : 0) | CKF_SERIAL_SESSION,
1380
0
                                                   slot, pk11_notify, &slot->session);
1381
0
            if (crv != CKR_OK) {
1382
0
                PORT_SetError(PK11_MapError(crv));
1383
0
                slot->session = CK_INVALID_HANDLE;
1384
0
                if (!slot->isThreadSafe)
1385
0
                    PK11_ExitSlotMonitor(slot);
1386
0
                return SECFailure;
1387
0
            }
1388
0
        }
1389
0
        if (!slot->isThreadSafe)
1390
0
            PK11_ExitSlotMonitor(slot);
1391
0
    }
1392
1393
0
    nssToken = PK11Slot_GetNSSToken(slot);
1394
0
    status = nssToken_Refresh(nssToken); /* null token is OK */
1395
0
    (void)nssToken_Destroy(nssToken);
1396
0
    if (status != PR_SUCCESS)
1397
0
        return SECFailure;
1398
1399
    /* Not all tokens have profile objects or even recognize what profile
1400
     * objects are it's OK for pk11_ReadProfileList to fail */
1401
0
    (void)pk11_ReadProfileList(slot);
1402
1403
0
    if (!(slot->isInternal) && (slot->hasRandom)) {
1404
        /* if this slot has a random number generater, use it to add entropy
1405
         * to the internal slot. */
1406
0
        PK11SlotInfo *int_slot = PK11_GetInternalSlot();
1407
1408
0
        if (int_slot) {
1409
0
            unsigned char random_bytes[32];
1410
1411
            /* if this slot can issue random numbers, get some entropy from
1412
             * that random number generater and give it to our internal token.
1413
             */
1414
0
            PK11_EnterSlotMonitor(slot);
1415
0
            crv = PK11_GETTAB(slot)->C_GenerateRandom(slot->session, random_bytes, sizeof(random_bytes));
1416
0
            PK11_ExitSlotMonitor(slot);
1417
0
            if (crv == CKR_OK) {
1418
0
                PK11_EnterSlotMonitor(int_slot);
1419
0
                PK11_GETTAB(int_slot)
1420
0
                    ->C_SeedRandom(int_slot->session,
1421
0
                                   random_bytes, sizeof(random_bytes));
1422
0
                PK11_ExitSlotMonitor(int_slot);
1423
0
            }
1424
1425
            /* Now return the favor and send entropy to the token's random
1426
             * number generater */
1427
0
            PK11_EnterSlotMonitor(int_slot);
1428
0
            crv = PK11_GETTAB(int_slot)->C_GenerateRandom(int_slot->session,
1429
0
                                                          random_bytes, sizeof(random_bytes));
1430
0
            PK11_ExitSlotMonitor(int_slot);
1431
0
            if (crv == CKR_OK) {
1432
0
                PK11_EnterSlotMonitor(slot);
1433
0
                crv = PK11_GETTAB(slot)->C_SeedRandom(slot->session,
1434
0
                                                      random_bytes, sizeof(random_bytes));
1435
0
                PK11_ExitSlotMonitor(slot);
1436
0
            }
1437
0
            PK11_FreeSlot(int_slot);
1438
0
        }
1439
0
    }
1440
    /* work around a problem in softoken where it incorrectly
1441
     * reports databases opened read only as read/write. */
1442
0
    if (slot->isInternal && !slot->readOnly) {
1443
0
        CK_SESSION_HANDLE session = CK_INVALID_HANDLE;
1444
1445
        /* try to open a R/W session */
1446
0
        crv = PK11_GETTAB(slot)->C_OpenSession(slot->slotID,
1447
0
                                               CKF_RW_SESSION | CKF_SERIAL_SESSION, slot, pk11_notify, &session);
1448
        /* what a well behaved token should return if you open
1449
         * a RW session on a read only token */
1450
0
        if (crv == CKR_TOKEN_WRITE_PROTECTED) {
1451
0
            slot->readOnly = PR_TRUE;
1452
0
        } else if (crv == CKR_OK) {
1453
0
            CK_SESSION_INFO sessionInfo;
1454
1455
            /* Because of a second bug in softoken, which silently returns
1456
             * a RO session, we need to check what type of session we got. */
1457
0
            crv = PK11_GETTAB(slot)->C_GetSessionInfo(session, &sessionInfo);
1458
0
            if (crv == CKR_OK) {
1459
0
                if ((sessionInfo.flags & CKF_RW_SESSION) == 0) {
1460
                    /* session was readonly, so this softoken slot must be readonly */
1461
0
                    slot->readOnly = PR_TRUE;
1462
0
                }
1463
0
            }
1464
0
            PK11_GETTAB(slot)
1465
0
                ->C_CloseSession(session);
1466
0
        }
1467
0
    }
1468
1469
0
    return SECSuccess;
1470
0
}
1471
1472
/*
1473
 * initialize a new token
1474
 * unlike initialize slot, this can be called multiple times in the lifetime
1475
 * of NSS. It reads the information associated with a card or token,
1476
 * that is not going to change unless the card or token changes.
1477
 */
1478
SECStatus
1479
PK11_TokenRefresh(PK11SlotInfo *slot)
1480
0
{
1481
0
    CK_RV crv;
1482
1483
    /* set the slot flags to the current token values */
1484
0
    if (!slot->isThreadSafe)
1485
0
        PK11_EnterSlotMonitor(slot);
1486
0
    crv = PK11_GETTAB(slot)->C_GetTokenInfo(slot->slotID, &slot->tokenInfo);
1487
0
    if (!slot->isThreadSafe)
1488
0
        PK11_ExitSlotMonitor(slot);
1489
0
    if (crv != CKR_OK) {
1490
0
        PORT_SetError(PK11_MapError(crv));
1491
0
        return SECFailure;
1492
0
    }
1493
1494
0
    slot->flags = slot->tokenInfo.flags;
1495
0
    slot->needLogin = ((slot->tokenInfo.flags & CKF_LOGIN_REQUIRED) ? PR_TRUE : PR_FALSE);
1496
0
    slot->readOnly = ((slot->tokenInfo.flags & CKF_WRITE_PROTECTED) ? PR_TRUE : PR_FALSE);
1497
0
    slot->hasRandom = ((slot->tokenInfo.flags & CKF_RNG) ? PR_TRUE : PR_FALSE);
1498
0
    slot->protectedAuthPath =
1499
0
        ((slot->tokenInfo.flags & CKF_PROTECTED_AUTHENTICATION_PATH)
1500
0
             ? PR_TRUE
1501
0
             : PR_FALSE);
1502
    /* on some platforms Active Card incorrectly sets the
1503
     * CKF_PROTECTED_AUTHENTICATION_PATH bit when it doesn't mean to. */
1504
0
    if (slot->isActiveCard) {
1505
0
        slot->protectedAuthPath = PR_FALSE;
1506
0
    }
1507
0
    return SECSuccess;
1508
0
}
1509
1510
static PRBool
1511
pk11_isRootSlot(PK11SlotInfo *slot)
1512
0
{
1513
0
    CK_ATTRIBUTE findTemp[1];
1514
0
    CK_ATTRIBUTE *attrs;
1515
0
    CK_OBJECT_CLASS oclass = CKO_NSS_BUILTIN_ROOT_LIST;
1516
0
    size_t tsize;
1517
0
    CK_OBJECT_HANDLE handle;
1518
1519
0
    attrs = findTemp;
1520
0
    PK11_SETATTRS(attrs, CKA_CLASS, &oclass, sizeof(oclass));
1521
0
    attrs++;
1522
0
    tsize = attrs - findTemp;
1523
0
    PORT_Assert(tsize <= sizeof(findTemp) / sizeof(CK_ATTRIBUTE));
1524
1525
0
    handle = pk11_FindObjectByTemplate(slot, findTemp, tsize);
1526
0
    if (handle == CK_INVALID_HANDLE) {
1527
0
        return PR_FALSE;
1528
0
    }
1529
0
    return PR_TRUE;
1530
0
}
1531
1532
/*
1533
 * Initialize the slot :
1534
 * This initialization code is called on each slot a module supports when
1535
 * it is loaded. It does the bringup initialization. The difference between
1536
 * this and InitToken is Init slot does those one time initialization stuff,
1537
 * usually associated with the reader, while InitToken may get called multiple
1538
 * times as tokens are removed and re-inserted.
1539
 */
1540
void
1541
PK11_InitSlot(SECMODModule *mod, CK_SLOT_ID slotID, PK11SlotInfo *slot)
1542
0
{
1543
0
    SECStatus rv;
1544
0
    CK_SLOT_INFO slotInfo;
1545
1546
0
    slot->functionList = mod->functionList;
1547
0
    slot->isInternal = mod->internal;
1548
0
    slot->slotID = slotID;
1549
0
    slot->isThreadSafe = mod->isThreadSafe;
1550
0
    slot->hasRSAInfo = PR_FALSE;
1551
0
    slot->module = mod; /* NOTE: we don't make a reference here because
1552
                         * modules have references to their slots. This
1553
                         * works because modules keep implicit references
1554
                         * from their slots, and won't unload and disappear
1555
                         * until all their slots have been freed */
1556
1557
0
    if (PK11_GetSlotInfo(slot, &slotInfo) != SECSuccess) {
1558
0
        slot->disabled = PR_TRUE;
1559
0
        slot->reason = PK11_DIS_COULD_NOT_INIT_TOKEN;
1560
0
        return;
1561
0
    }
1562
1563
    /* test to make sure claimed mechanism work */
1564
0
    slot->needTest = mod->internal ? PR_FALSE : PR_TRUE;
1565
0
    (void)PK11_MakeString(NULL, slot->slot_name,
1566
0
                          (char *)slotInfo.slotDescription, sizeof(slotInfo.slotDescription));
1567
0
    slot->isHW = (PRBool)((slotInfo.flags & CKF_HW_SLOT) == CKF_HW_SLOT);
1568
0
#define ACTIVE_CARD "ActivCard SA"
1569
0
    slot->isActiveCard = (PRBool)(PORT_Strncmp((char *)slotInfo.manufacturerID,
1570
0
                                               ACTIVE_CARD, sizeof(ACTIVE_CARD) - 1) == 0);
1571
0
    if ((slotInfo.flags & CKF_REMOVABLE_DEVICE) == 0) {
1572
0
        slot->isPerm = PR_TRUE;
1573
        /* permanment slots must have the token present always */
1574
0
        if ((slotInfo.flags & CKF_TOKEN_PRESENT) == 0) {
1575
0
            slot->disabled = PR_TRUE;
1576
0
            slot->reason = PK11_DIS_TOKEN_NOT_PRESENT;
1577
0
            return; /* nothing else to do */
1578
0
        }
1579
0
    }
1580
    /* if the token is present, initialize it */
1581
0
    if ((slotInfo.flags & CKF_TOKEN_PRESENT) != 0) {
1582
0
        rv = PK11_InitToken(slot, PR_TRUE);
1583
        /* the only hard failures are on permanent devices, or function
1584
         * verify failures... function verify failures are already handled
1585
         * by tokenInit */
1586
0
        if ((rv != SECSuccess) && (slot->isPerm) && (!slot->disabled)) {
1587
0
            slot->disabled = PR_TRUE;
1588
0
            slot->reason = PK11_DIS_COULD_NOT_INIT_TOKEN;
1589
0
        }
1590
0
        if (rv == SECSuccess && pk11_isRootSlot(slot)) {
1591
0
            if (!slot->hasRootCerts) {
1592
0
                slot->module->trustOrder = 100;
1593
0
            }
1594
0
            slot->hasRootCerts = PR_TRUE;
1595
0
        }
1596
0
    }
1597
0
    if ((slotInfo.flags & CKF_USER_PIN_INITIALIZED) != 0) {
1598
0
        slot->flags |= CKF_USER_PIN_INITIALIZED;
1599
0
    }
1600
0
}
1601
1602
/*********************************************************************
1603
 *            Slot mapping utility functions.
1604
 *********************************************************************/
1605
1606
/*
1607
 * determine if the token is present. If the token is present, make sure
1608
 * we have a valid session handle. Also set the value of needLogin
1609
 * appropriately.
1610
 */
1611
static PRBool
1612
pk11_IsPresentCertLoad(PK11SlotInfo *slot, PRBool loadCerts)
1613
0
{
1614
0
    CK_SLOT_INFO slotInfo;
1615
0
    CK_SESSION_INFO sessionInfo;
1616
0
    CK_RV crv;
1617
1618
    /* disabled slots are never present */
1619
0
    if (slot->disabled) {
1620
0
        return PR_FALSE;
1621
0
    }
1622
1623
    /* permanent slots are always present */
1624
0
    if (slot->isPerm && (slot->session != CK_INVALID_HANDLE)) {
1625
0
        return PR_TRUE;
1626
0
    }
1627
1628
0
    NSSToken *nssToken = PK11Slot_GetNSSToken(slot);
1629
0
    if (nssToken) {
1630
0
        PRBool present = nssToken_IsPresent(nssToken);
1631
0
        (void)nssToken_Destroy(nssToken);
1632
0
        return present;
1633
0
    }
1634
1635
    /* removable slots have a flag that says they are present */
1636
0
    if (PK11_GetSlotInfo(slot, &slotInfo) != SECSuccess) {
1637
0
        return PR_FALSE;
1638
0
    }
1639
1640
0
    if ((slotInfo.flags & CKF_TOKEN_PRESENT) == 0) {
1641
        /* if the slot is no longer present, close the session */
1642
0
        if (slot->session != CK_INVALID_HANDLE) {
1643
0
            if (!slot->isThreadSafe) {
1644
0
                PK11_EnterSlotMonitor(slot);
1645
0
            }
1646
0
            PK11_GETTAB(slot)
1647
0
                ->C_CloseSession(slot->session);
1648
0
            slot->session = CK_INVALID_HANDLE;
1649
0
            if (!slot->isThreadSafe) {
1650
0
                PK11_ExitSlotMonitor(slot);
1651
0
            }
1652
0
        }
1653
0
        return PR_FALSE;
1654
0
    }
1655
1656
    /* use the session Info to determine if the card has been removed and then
1657
     * re-inserted */
1658
0
    if (slot->session != CK_INVALID_HANDLE) {
1659
0
        if (slot->isThreadSafe) {
1660
0
            PK11_EnterSlotMonitor(slot);
1661
0
        }
1662
0
        crv = PK11_GETTAB(slot)->C_GetSessionInfo(slot->session, &sessionInfo);
1663
0
        if (crv != CKR_OK) {
1664
0
            PK11_GETTAB(slot)
1665
0
                ->C_CloseSession(slot->session);
1666
0
            slot->session = CK_INVALID_HANDLE;
1667
0
        }
1668
0
        if (slot->isThreadSafe) {
1669
0
            PK11_ExitSlotMonitor(slot);
1670
0
        }
1671
0
    }
1672
1673
    /* card has not been removed, current token info is correct */
1674
0
    if (slot->session != CK_INVALID_HANDLE)
1675
0
        return PR_TRUE;
1676
1677
    /* initialize the token info state */
1678
0
    if (PK11_InitToken(slot, loadCerts) != SECSuccess) {
1679
0
        return PR_FALSE;
1680
0
    }
1681
1682
0
    return PR_TRUE;
1683
0
}
1684
1685
/*
1686
 * old version of the routine
1687
 */
1688
PRBool
1689
PK11_IsPresent(PK11SlotInfo *slot)
1690
0
{
1691
0
    return pk11_IsPresentCertLoad(slot, PR_TRUE);
1692
0
}
1693
1694
/* is the slot disabled? */
1695
PRBool
1696
PK11_IsDisabled(PK11SlotInfo *slot)
1697
0
{
1698
0
    return slot->disabled;
1699
0
}
1700
1701
/* and why? */
1702
PK11DisableReasons
1703
PK11_GetDisabledReason(PK11SlotInfo *slot)
1704
0
{
1705
0
    return slot->reason;
1706
0
}
1707
1708
/* returns PR_TRUE if successfully disable the slot */
1709
/* returns PR_FALSE otherwise */
1710
PRBool
1711
PK11_UserDisableSlot(PK11SlotInfo *slot)
1712
0
{
1713
1714
    /* Prevent users from disabling the internal module. */
1715
0
    if (slot->isInternal) {
1716
0
        PORT_SetError(SEC_ERROR_INVALID_ARGS);
1717
0
        return PR_FALSE;
1718
0
    }
1719
1720
0
    slot->defaultFlags |= PK11_DISABLE_FLAG;
1721
0
    slot->disabled = PR_TRUE;
1722
0
    slot->reason = PK11_DIS_USER_SELECTED;
1723
1724
0
    return PR_TRUE;
1725
0
}
1726
1727
PRBool
1728
PK11_UserEnableSlot(PK11SlotInfo *slot)
1729
0
{
1730
1731
0
    slot->defaultFlags &= ~PK11_DISABLE_FLAG;
1732
0
    slot->disabled = PR_FALSE;
1733
0
    slot->reason = PK11_DIS_NONE;
1734
0
    return PR_TRUE;
1735
0
}
1736
1737
PRBool
1738
PK11_HasRootCerts(PK11SlotInfo *slot)
1739
0
{
1740
0
    return slot->hasRootCerts;
1741
0
}
1742
1743
/* Get the module this slot is attached to */
1744
SECMODModule *
1745
PK11_GetModule(PK11SlotInfo *slot)
1746
0
{
1747
0
    return slot->module;
1748
0
}
1749
1750
/* return the default flags of a slot */
1751
unsigned long
1752
PK11_GetDefaultFlags(PK11SlotInfo *slot)
1753
0
{
1754
0
    return slot->defaultFlags;
1755
0
}
1756
1757
/*
1758
 * The following wrapper functions allow us to export an opaque slot
1759
 * function to the rest of libsec and the world... */
1760
PRBool
1761
PK11_IsReadOnly(PK11SlotInfo *slot)
1762
0
{
1763
0
    return slot->readOnly;
1764
0
}
1765
1766
PRBool
1767
PK11_IsHW(PK11SlotInfo *slot)
1768
0
{
1769
0
    return slot->isHW;
1770
0
}
1771
1772
PRBool
1773
PK11_IsRemovable(PK11SlotInfo *slot)
1774
0
{
1775
0
    return !slot->isPerm;
1776
0
}
1777
1778
PRBool
1779
PK11_IsInternal(PK11SlotInfo *slot)
1780
0
{
1781
0
    return slot->isInternal;
1782
0
}
1783
1784
PRBool
1785
PK11_IsInternalKeySlot(PK11SlotInfo *slot)
1786
0
{
1787
0
    PK11SlotInfo *int_slot;
1788
0
    PRBool result;
1789
1790
0
    if (!slot->isInternal) {
1791
0
        return PR_FALSE;
1792
0
    }
1793
1794
0
    int_slot = PK11_GetInternalKeySlot();
1795
0
    result = (int_slot == slot) ? PR_TRUE : PR_FALSE;
1796
0
    PK11_FreeSlot(int_slot);
1797
0
    return result;
1798
0
}
1799
1800
PRBool
1801
PK11_NeedLogin(PK11SlotInfo *slot)
1802
0
{
1803
0
    return slot->needLogin;
1804
0
}
1805
1806
PRBool
1807
PK11_IsFriendly(PK11SlotInfo *slot)
1808
0
{
1809
    /* internal slot always has public readable certs */
1810
0
    return (PRBool)(slot->isInternal ||
1811
0
                    pk11_HasProfile(slot, CKP_PUBLIC_CERTIFICATES_TOKEN) ||
1812
0
                    ((slot->defaultFlags & SECMOD_FRIENDLY_FLAG) ==
1813
0
                     SECMOD_FRIENDLY_FLAG));
1814
0
}
1815
1816
char *
1817
PK11_GetTokenName(PK11SlotInfo *slot)
1818
0
{
1819
0
    return slot->token_name;
1820
0
}
1821
1822
char *
1823
PK11_GetTokenURI(PK11SlotInfo *slot)
1824
0
{
1825
0
    PK11URI *uri;
1826
0
    char *ret = NULL;
1827
0
    char label[32 + 1], manufacturer[32 + 1], serial[16 + 1], model[16 + 1];
1828
0
    PK11URIAttribute attrs[4];
1829
0
    size_t nattrs = 0;
1830
1831
0
    PK11_MakeString(NULL, label, (char *)slot->tokenInfo.label,
1832
0
                    sizeof(slot->tokenInfo.label));
1833
0
    if (*label != '\0') {
1834
0
        attrs[nattrs].name = PK11URI_PATTR_TOKEN;
1835
0
        attrs[nattrs].value = label;
1836
0
        nattrs++;
1837
0
    }
1838
1839
0
    PK11_MakeString(NULL, manufacturer, (char *)slot->tokenInfo.manufacturerID,
1840
0
                    sizeof(slot->tokenInfo.manufacturerID));
1841
0
    if (*manufacturer != '\0') {
1842
0
        attrs[nattrs].name = PK11URI_PATTR_MANUFACTURER;
1843
0
        attrs[nattrs].value = manufacturer;
1844
0
        nattrs++;
1845
0
    }
1846
1847
0
    PK11_MakeString(NULL, serial, (char *)slot->tokenInfo.serialNumber,
1848
0
                    sizeof(slot->tokenInfo.serialNumber));
1849
0
    if (*serial != '\0') {
1850
0
        attrs[nattrs].name = PK11URI_PATTR_SERIAL;
1851
0
        attrs[nattrs].value = serial;
1852
0
        nattrs++;
1853
0
    }
1854
1855
0
    PK11_MakeString(NULL, model, (char *)slot->tokenInfo.model,
1856
0
                    sizeof(slot->tokenInfo.model));
1857
0
    if (*model != '\0') {
1858
0
        attrs[nattrs].name = PK11URI_PATTR_MODEL;
1859
0
        attrs[nattrs].value = model;
1860
0
        nattrs++;
1861
0
    }
1862
1863
0
    uri = PK11URI_CreateURI(attrs, nattrs, NULL, 0);
1864
0
    if (uri == NULL) {
1865
0
        PORT_SetError(SEC_ERROR_LIBRARY_FAILURE);
1866
0
        return NULL;
1867
0
    }
1868
1869
0
    ret = PK11URI_FormatURI(NULL, uri);
1870
0
    PK11URI_DestroyURI(uri);
1871
1872
0
    if (ret == NULL) {
1873
0
        PORT_SetError(SEC_ERROR_LIBRARY_FAILURE);
1874
0
    }
1875
1876
0
    return ret;
1877
0
}
1878
1879
char *
1880
PK11_GetSlotName(PK11SlotInfo *slot)
1881
0
{
1882
0
    return slot->slot_name;
1883
0
}
1884
1885
int
1886
PK11_GetSlotSeries(PK11SlotInfo *slot)
1887
0
{
1888
0
    return slot->series;
1889
0
}
1890
1891
int
1892
PK11_GetCurrentWrapIndex(PK11SlotInfo *slot)
1893
0
{
1894
0
    return slot->wrapKey;
1895
0
}
1896
1897
CK_SLOT_ID
1898
PK11_GetSlotID(PK11SlotInfo *slot)
1899
0
{
1900
0
    return slot->slotID;
1901
0
}
1902
1903
SECMODModuleID
1904
PK11_GetModuleID(PK11SlotInfo *slot)
1905
0
{
1906
0
    return slot->module->moduleID;
1907
0
}
1908
1909
static void
1910
pk11_zeroTerminatedToBlankPadded(CK_CHAR *buffer, size_t buffer_size)
1911
0
{
1912
0
    CK_CHAR *walk = buffer;
1913
0
    CK_CHAR *end = buffer + buffer_size;
1914
1915
    /* find the NULL */
1916
0
    while (walk < end && *walk != '\0') {
1917
0
        walk++;
1918
0
    }
1919
1920
    /* clear out the buffer */
1921
0
    while (walk < end) {
1922
0
        *walk++ = ' ';
1923
0
    }
1924
0
}
1925
1926
/* return the slot info structure */
1927
SECStatus
1928
PK11_GetSlotInfo(PK11SlotInfo *slot, CK_SLOT_INFO *info)
1929
0
{
1930
0
    CK_RV crv;
1931
1932
0
    if (!slot->isThreadSafe)
1933
0
        PK11_EnterSlotMonitor(slot);
1934
    /*
1935
     * some buggy drivers do not fill the buffer completely,
1936
     * erase the buffer first
1937
     */
1938
0
    PORT_Memset(info->slotDescription, ' ', sizeof(info->slotDescription));
1939
0
    PORT_Memset(info->manufacturerID, ' ', sizeof(info->manufacturerID));
1940
0
    crv = PK11_GETTAB(slot)->C_GetSlotInfo(slot->slotID, info);
1941
0
    pk11_zeroTerminatedToBlankPadded(info->slotDescription,
1942
0
                                     sizeof(info->slotDescription));
1943
0
    pk11_zeroTerminatedToBlankPadded(info->manufacturerID,
1944
0
                                     sizeof(info->manufacturerID));
1945
0
    if (!slot->isThreadSafe)
1946
0
        PK11_ExitSlotMonitor(slot);
1947
0
    if (crv != CKR_OK) {
1948
0
        PORT_SetError(PK11_MapError(crv));
1949
0
        return SECFailure;
1950
0
    }
1951
0
    return SECSuccess;
1952
0
}
1953
1954
/*  return the token info structure */
1955
SECStatus
1956
PK11_GetTokenInfo(PK11SlotInfo *slot, CK_TOKEN_INFO *info)
1957
0
{
1958
0
    CK_RV crv;
1959
0
    if (!slot->isThreadSafe)
1960
0
        PK11_EnterSlotMonitor(slot);
1961
    /*
1962
     * some buggy drivers do not fill the buffer completely,
1963
     * erase the buffer first
1964
     */
1965
0
    PORT_Memset(info->label, ' ', sizeof(info->label));
1966
0
    PORT_Memset(info->manufacturerID, ' ', sizeof(info->manufacturerID));
1967
0
    PORT_Memset(info->model, ' ', sizeof(info->model));
1968
0
    PORT_Memset(info->serialNumber, ' ', sizeof(info->serialNumber));
1969
0
    crv = PK11_GETTAB(slot)->C_GetTokenInfo(slot->slotID, info);
1970
0
    pk11_zeroTerminatedToBlankPadded(info->label, sizeof(info->label));
1971
0
    pk11_zeroTerminatedToBlankPadded(info->manufacturerID,
1972
0
                                     sizeof(info->manufacturerID));
1973
0
    pk11_zeroTerminatedToBlankPadded(info->model, sizeof(info->model));
1974
0
    pk11_zeroTerminatedToBlankPadded(info->serialNumber,
1975
0
                                     sizeof(info->serialNumber));
1976
0
    if (!slot->isThreadSafe)
1977
0
        PK11_ExitSlotMonitor(slot);
1978
0
    if (crv != CKR_OK) {
1979
0
        PORT_SetError(PK11_MapError(crv));
1980
0
        return SECFailure;
1981
0
    }
1982
0
    return SECSuccess;
1983
0
}
1984
1985
PRBool
1986
pk11_MatchUriTokenInfo(PK11SlotInfo *slot, PK11URI *uri)
1987
0
{
1988
0
    const char *value;
1989
1990
0
    value = PK11URI_GetPathAttribute(uri, PK11URI_PATTR_TOKEN);
1991
0
    if (value) {
1992
0
        if (!pk11_MatchString(value, (char *)slot->tokenInfo.label,
1993
0
                              sizeof(slot->tokenInfo.label))) {
1994
0
            return PR_FALSE;
1995
0
        }
1996
0
    }
1997
1998
0
    value = PK11URI_GetPathAttribute(uri, PK11URI_PATTR_MANUFACTURER);
1999
0
    if (value) {
2000
0
        if (!pk11_MatchString(value, (char *)slot->tokenInfo.manufacturerID,
2001
0
                              sizeof(slot->tokenInfo.manufacturerID))) {
2002
0
            return PR_FALSE;
2003
0
        }
2004
0
    }
2005
2006
0
    value = PK11URI_GetPathAttribute(uri, PK11URI_PATTR_SERIAL);
2007
0
    if (value) {
2008
0
        if (!pk11_MatchString(value, (char *)slot->tokenInfo.serialNumber,
2009
0
                              sizeof(slot->tokenInfo.serialNumber))) {
2010
0
            return PR_FALSE;
2011
0
        }
2012
0
    }
2013
2014
0
    value = PK11URI_GetPathAttribute(uri, PK11URI_PATTR_MODEL);
2015
0
    if (value) {
2016
0
        if (!pk11_MatchString(value, (char *)slot->tokenInfo.model,
2017
0
                              sizeof(slot->tokenInfo.model))) {
2018
0
            return PR_FALSE;
2019
0
        }
2020
0
    }
2021
2022
0
    return PR_TRUE;
2023
0
}
2024
2025
/* Find out if we need to initialize the user's pin */
2026
PRBool
2027
PK11_NeedUserInit(PK11SlotInfo *slot)
2028
0
{
2029
0
    PRBool needUserInit = (PRBool)((slot->flags & CKF_USER_PIN_INITIALIZED) == 0);
2030
2031
0
    if (needUserInit) {
2032
0
        CK_TOKEN_INFO info;
2033
0
        SECStatus rv;
2034
2035
        /* see if token has been initialized off line */
2036
0
        rv = PK11_GetTokenInfo(slot, &info);
2037
0
        if (rv == SECSuccess) {
2038
0
            slot->flags = info.flags;
2039
0
        }
2040
0
    }
2041
0
    return (PRBool)((slot->flags & CKF_USER_PIN_INITIALIZED) == 0);
2042
0
}
2043
2044
static PK11SlotInfo *pk11InternalKeySlot = NULL;
2045
2046
/*
2047
 * Set a new default internal keyslot. If one has already been set, clear it.
2048
 * Passing NULL falls back to the NSS normally selected default internal key
2049
 * slot.
2050
 */
2051
void
2052
pk11_SetInternalKeySlot(PK11SlotInfo *slot)
2053
0
{
2054
0
    if (pk11InternalKeySlot) {
2055
0
        PK11_FreeSlot(pk11InternalKeySlot);
2056
0
    }
2057
0
    pk11InternalKeySlot = slot ? PK11_ReferenceSlot(slot) : NULL;
2058
0
}
2059
2060
/*
2061
 * Set a new default internal keyslot if the normal key slot has not already
2062
 * been overridden. Subsequent calls to this function will be ignored unless
2063
 * pk11_SetInternalKeySlot is used to clear the current default.
2064
 */
2065
void
2066
pk11_SetInternalKeySlotIfFirst(PK11SlotInfo *slot)
2067
0
{
2068
0
    if (pk11InternalKeySlot) {
2069
0
        return;
2070
0
    }
2071
0
    pk11InternalKeySlot = slot ? PK11_ReferenceSlot(slot) : NULL;
2072
0
}
2073
2074
/*
2075
 * Swap out a default internal keyslot.  Caller owns the Slot Reference
2076
 */
2077
PK11SlotInfo *
2078
pk11_SwapInternalKeySlot(PK11SlotInfo *slot)
2079
0
{
2080
0
    PK11SlotInfo *swap = pk11InternalKeySlot;
2081
2082
0
    pk11InternalKeySlot = slot ? PK11_ReferenceSlot(slot) : NULL;
2083
0
    return swap;
2084
0
}
2085
2086
/* get the internal key slot. FIPS has only one slot for both key slots and
2087
 * default slots */
2088
PK11SlotInfo *
2089
PK11_GetInternalKeySlot(void)
2090
0
{
2091
0
    SECMODModule *mod;
2092
2093
0
    if (pk11InternalKeySlot) {
2094
0
        return PK11_ReferenceSlot(pk11InternalKeySlot);
2095
0
    }
2096
2097
0
    mod = SECMOD_GetInternalModule();
2098
0
    PORT_Assert(mod != NULL);
2099
0
    if (!mod) {
2100
0
        PORT_SetError(SEC_ERROR_NO_MODULE);
2101
0
        return NULL;
2102
0
    }
2103
0
    return PK11_ReferenceSlot(mod->isFIPS ? mod->slots[0] : mod->slots[1]);
2104
0
}
2105
2106
/* get the internal default slot */
2107
PK11SlotInfo *
2108
PK11_GetInternalSlot(void)
2109
0
{
2110
0
    SECMODModule *mod = SECMOD_GetInternalModule();
2111
0
    PORT_Assert(mod != NULL);
2112
0
    if (!mod) {
2113
0
        PORT_SetError(SEC_ERROR_NO_MODULE);
2114
0
        return NULL;
2115
0
    }
2116
0
    if (mod->isFIPS) {
2117
0
        return PK11_GetInternalKeySlot();
2118
0
    }
2119
0
    return PK11_ReferenceSlot(mod->slots[0]);
2120
0
}
2121
2122
/*
2123
 * check if a given slot supports the requested mechanism
2124
 */
2125
PRBool
2126
PK11_DoesMechanism(PK11SlotInfo *slot, CK_MECHANISM_TYPE type)
2127
0
{
2128
0
    int i;
2129
2130
    /* CKM_FAKE_RANDOM is not a real PKCS mechanism. It's a marker to
2131
     * tell us we're looking form someone that has implemented get
2132
     * random bits */
2133
0
    if (type == CKM_FAKE_RANDOM) {
2134
0
        return slot->hasRandom;
2135
0
    }
2136
2137
    /* for most mechanism, bypass the linear lookup */
2138
0
    if (type < 0x7ff) {
2139
0
        return (slot->mechanismBits[type & 0xff] & (1 << (type >> 8))) ? PR_TRUE : PR_FALSE;
2140
0
    }
2141
2142
0
    for (i = 0; i < (int)slot->mechanismCount; i++) {
2143
0
        if (slot->mechanismList[i] == type)
2144
0
            return PR_TRUE;
2145
0
    }
2146
0
    return PR_FALSE;
2147
0
}
2148
2149
PRBool pk11_filterSlot(PK11SlotInfo *slot, CK_MECHANISM_TYPE mechanism,
2150
                       CK_FLAGS mechanismInfoFlags, unsigned int keySize);
2151
/*
2152
 * Check that the given mechanism has the appropriate flags. This function
2153
 * presumes that slot can already do the given mechanism.
2154
 */
2155
PRBool
2156
PK11_DoesMechanismFlag(PK11SlotInfo *slot, CK_MECHANISM_TYPE type,
2157
                       CK_FLAGS flags)
2158
0
{
2159
0
    return !pk11_filterSlot(slot, type, flags, 0);
2160
0
}
2161
2162
/*
2163
 * Return true if a token that can do the desired mechanism exists.
2164
 * This allows us to have hardware tokens that can do function XYZ magically
2165
 * allow SSL Ciphers to appear if they are plugged in.
2166
 */
2167
PRBool
2168
PK11_TokenExists(CK_MECHANISM_TYPE type)
2169
0
{
2170
0
    SECMODModuleList *mlp;
2171
0
    SECMODModuleList *modules;
2172
0
    SECMODListLock *moduleLock = SECMOD_GetDefaultModuleListLock();
2173
0
    PK11SlotInfo *slot;
2174
0
    PRBool found = PR_FALSE;
2175
0
    int i;
2176
2177
0
    if (!moduleLock) {
2178
0
        PORT_SetError(SEC_ERROR_NOT_INITIALIZED);
2179
0
        return found;
2180
0
    }
2181
    /* we only need to know if there is a token that does this mechanism.
2182
     * check the internal module first because it's fast, and supports
2183
     * almost everything. */
2184
0
    slot = PK11_GetInternalSlot();
2185
0
    if (slot) {
2186
0
        found = PK11_DoesMechanism(slot, type);
2187
0
        PK11_FreeSlot(slot);
2188
0
    }
2189
0
    if (found)
2190
0
        return PR_TRUE; /* bypass getting module locks */
2191
2192
0
    SECMOD_GetReadLock(moduleLock);
2193
0
    modules = SECMOD_GetDefaultModuleList();
2194
0
    for (mlp = modules; mlp != NULL && (!found); mlp = mlp->next) {
2195
0
        for (i = 0; i < mlp->module->slotCount; i++) {
2196
0
            slot = mlp->module->slots[i];
2197
0
            if (PK11_IsPresent(slot)) {
2198
0
                if (PK11_DoesMechanism(slot, type)) {
2199
0
                    found = PR_TRUE;
2200
0
                    break;
2201
0
                }
2202
0
            }
2203
0
        }
2204
0
    }
2205
0
    SECMOD_ReleaseReadLock(moduleLock);
2206
0
    return found;
2207
0
}
2208
2209
/*
2210
 * get all the currently available tokens in a list.
2211
 * that can perform the given mechanism. If mechanism is CKM_INVALID_MECHANISM,
2212
 * get all the tokens. Make sure tokens that need authentication are put at
2213
 * the end of this list.
2214
 */
2215
PK11SlotList *
2216
PK11_GetAllTokens(CK_MECHANISM_TYPE type, PRBool needRW, PRBool loadCerts,
2217
                  void *wincx)
2218
0
{
2219
0
    PK11SlotList *list;
2220
0
    PK11SlotList *loginList;
2221
0
    PK11SlotList *friendlyList;
2222
0
    SECMODModuleList *mlp;
2223
0
    SECMODModuleList *modules;
2224
0
    SECMODListLock *moduleLock;
2225
0
    int i;
2226
2227
0
    moduleLock = SECMOD_GetDefaultModuleListLock();
2228
0
    if (!moduleLock) {
2229
0
        PORT_SetError(SEC_ERROR_NOT_INITIALIZED);
2230
0
        return NULL;
2231
0
    }
2232
2233
0
    list = PK11_NewSlotList();
2234
0
    loginList = PK11_NewSlotList();
2235
0
    friendlyList = PK11_NewSlotList();
2236
0
    if ((list == NULL) || (loginList == NULL) || (friendlyList == NULL)) {
2237
0
        if (list)
2238
0
            PK11_FreeSlotList(list);
2239
0
        if (loginList)
2240
0
            PK11_FreeSlotList(loginList);
2241
0
        if (friendlyList)
2242
0
            PK11_FreeSlotList(friendlyList);
2243
0
        return NULL;
2244
0
    }
2245
2246
0
    SECMOD_GetReadLock(moduleLock);
2247
2248
0
    modules = SECMOD_GetDefaultModuleList();
2249
0
    for (mlp = modules; mlp != NULL; mlp = mlp->next) {
2250
0
        for (i = 0; i < mlp->module->slotCount; i++) {
2251
0
            PK11SlotInfo *slot = mlp->module->slots[i];
2252
2253
0
            if (pk11_IsPresentCertLoad(slot, loadCerts)) {
2254
0
                if (needRW && slot->readOnly)
2255
0
                    continue;
2256
0
                if ((type == CKM_INVALID_MECHANISM) || PK11_DoesMechanism(slot, type)) {
2257
0
                    if (pk11_LoginStillRequired(slot, wincx)) {
2258
0
                        if (PK11_IsFriendly(slot)) {
2259
0
                            PK11_AddSlotToList(friendlyList, slot, PR_TRUE);
2260
0
                        } else {
2261
0
                            PK11_AddSlotToList(loginList, slot, PR_TRUE);
2262
0
                        }
2263
0
                    } else {
2264
0
                        PK11_AddSlotToList(list, slot, PR_TRUE);
2265
0
                    }
2266
0
                }
2267
0
            }
2268
0
        }
2269
0
    }
2270
0
    SECMOD_ReleaseReadLock(moduleLock);
2271
2272
0
    pk11_MoveListToList(list, friendlyList);
2273
0
    PK11_FreeSlotList(friendlyList);
2274
0
    pk11_MoveListToList(list, loginList);
2275
0
    PK11_FreeSlotList(loginList);
2276
2277
0
    return list;
2278
0
}
2279
2280
/*
2281
 * NOTE: This routine is working from a private List generated by
2282
 * PK11_GetAllTokens. That is why it does not need to lock.
2283
 */
2284
PK11SlotList *
2285
PK11_GetPrivateKeyTokens(CK_MECHANISM_TYPE type, PRBool needRW, void *wincx)
2286
0
{
2287
0
    PK11SlotList *list = PK11_GetAllTokens(type, needRW, PR_TRUE, wincx);
2288
0
    PK11SlotListElement *le, *next;
2289
0
    SECStatus rv;
2290
2291
0
    if (list == NULL)
2292
0
        return list;
2293
2294
0
    for (le = list->head; le; le = next) {
2295
0
        next = le->next; /* save the pointer here in case we have to
2296
                          * free the element later */
2297
0
        rv = PK11_Authenticate(le->slot, PR_TRUE, wincx);
2298
0
        if (rv != SECSuccess) {
2299
0
            PK11_DeleteSlotFromList(list, le);
2300
0
            continue;
2301
0
        }
2302
0
    }
2303
0
    return list;
2304
0
}
2305
2306
/*
2307
 * returns true if the slot doesn't conform to the requested attributes
2308
 */
2309
PRBool
2310
pk11_filterSlot(PK11SlotInfo *slot, CK_MECHANISM_TYPE mechanism,
2311
                CK_FLAGS mechanismInfoFlags, unsigned int keySize)
2312
0
{
2313
0
    CK_MECHANISM_INFO mechanism_info;
2314
0
    CK_RV crv = CKR_OK;
2315
2316
    /* handle the only case where we don't actually fetch the mechanisms
2317
     * on the fly */
2318
0
    if ((keySize == 0) && (mechanism == CKM_RSA_PKCS) && (slot->hasRSAInfo)) {
2319
0
        mechanism_info.flags = slot->RSAInfoFlags;
2320
0
    } else {
2321
0
        if (!slot->isThreadSafe)
2322
0
            PK11_EnterSlotMonitor(slot);
2323
0
        crv = PK11_GETTAB(slot)->C_GetMechanismInfo(slot->slotID, mechanism,
2324
0
                                                    &mechanism_info);
2325
0
        if (!slot->isThreadSafe)
2326
0
            PK11_ExitSlotMonitor(slot);
2327
        /* if we were getting the RSA flags, save them */
2328
0
        if ((crv == CKR_OK) && (mechanism == CKM_RSA_PKCS) && (!slot->hasRSAInfo)) {
2329
0
            slot->RSAInfoFlags = mechanism_info.flags;
2330
0
            slot->hasRSAInfo = PR_TRUE;
2331
0
        }
2332
0
    }
2333
    /* couldn't get the mechanism info */
2334
0
    if (crv != CKR_OK) {
2335
0
        return PR_TRUE;
2336
0
    }
2337
0
    if (keySize && ((mechanism_info.ulMinKeySize > keySize) || (mechanism_info.ulMaxKeySize < keySize))) {
2338
        /* Token can do mechanism, but not at the key size we
2339
         * want */
2340
0
        return PR_TRUE;
2341
0
    }
2342
0
    if (mechanismInfoFlags && ((mechanism_info.flags & mechanismInfoFlags) !=
2343
0
                               mechanismInfoFlags)) {
2344
0
        return PR_TRUE;
2345
0
    }
2346
0
    return PR_FALSE;
2347
0
}
2348
2349
/*
2350
 * Find the best slot which supports the given set of mechanisms and key sizes.
2351
 * In normal cases this should grab the first slot on the list with no fuss.
2352
 * The size array is presumed to match one for one with the mechanism type
2353
 * array, which allows you to specify the required key size for each
2354
 * mechanism in the list. Whether key size is in bits or bytes is mechanism
2355
 * dependent. Typically asymetric keys are in bits and symetric keys are in
2356
 * bytes.
2357
 */
2358
PK11SlotInfo *
2359
PK11_GetBestSlotMultipleWithAttributes(CK_MECHANISM_TYPE *type,
2360
                                       CK_FLAGS *mechanismInfoFlags, unsigned int *keySize,
2361
                                       unsigned int mech_count, void *wincx)
2362
0
{
2363
0
    PK11SlotList *list = NULL;
2364
0
    PK11SlotListElement *le;
2365
0
    PK11SlotInfo *slot = NULL;
2366
0
    PRBool freeit = PR_FALSE;
2367
0
    PRBool listNeedLogin = PR_FALSE;
2368
0
    unsigned int i;
2369
0
    SECStatus rv;
2370
2371
0
    list = PK11_GetSlotList(type[0]);
2372
2373
0
    if ((list == NULL) || (list->head == NULL)) {
2374
        /* We need to look up all the tokens for the mechanism */
2375
0
        list = PK11_GetAllTokens(type[0], PR_FALSE, PR_TRUE, wincx);
2376
0
        freeit = PR_TRUE;
2377
0
    }
2378
2379
    /* no one can do it! */
2380
0
    if (list == NULL) {
2381
0
        PORT_SetError(SEC_ERROR_NO_TOKEN);
2382
0
        return NULL;
2383
0
    }
2384
2385
0
    PORT_SetError(0);
2386
2387
0
    listNeedLogin = PR_FALSE;
2388
0
    for (i = 0; i < mech_count; i++) {
2389
0
        if ((type[i] != CKM_FAKE_RANDOM) &&
2390
0
            (type[i] != CKM_SHA_1) &&
2391
0
            (type[i] != CKM_SHA224) &&
2392
0
            (type[i] != CKM_SHA256) &&
2393
0
            (type[i] != CKM_SHA384) &&
2394
0
            (type[i] != CKM_SHA512) &&
2395
0
            (type[i] != CKM_MD5) &&
2396
0
            (type[i] != CKM_MD2)) {
2397
0
            listNeedLogin = PR_TRUE;
2398
0
            break;
2399
0
        }
2400
0
    }
2401
2402
0
    for (le = PK11_GetFirstSafe(list); le;
2403
0
         le = PK11_GetNextSafe(list, le, PR_TRUE)) {
2404
0
        if (PK11_IsPresent(le->slot)) {
2405
0
            PRBool doExit = PR_FALSE;
2406
0
            for (i = 0; i < mech_count; i++) {
2407
0
                if (!PK11_DoesMechanism(le->slot, type[i])) {
2408
0
                    doExit = PR_TRUE;
2409
0
                    break;
2410
0
                }
2411
0
                if ((mechanismInfoFlags && mechanismInfoFlags[i]) ||
2412
0
                    (keySize && keySize[i])) {
2413
0
                    if (pk11_filterSlot(le->slot, type[i],
2414
0
                                        mechanismInfoFlags ? mechanismInfoFlags[i] : 0,
2415
0
                                        keySize ? keySize[i] : 0)) {
2416
0
                        doExit = PR_TRUE;
2417
0
                        break;
2418
0
                    }
2419
0
                }
2420
0
            }
2421
2422
0
            if (doExit)
2423
0
                continue;
2424
2425
0
            if (listNeedLogin && le->slot->needLogin) {
2426
0
                rv = PK11_Authenticate(le->slot, PR_TRUE, wincx);
2427
0
                if (rv != SECSuccess)
2428
0
                    continue;
2429
0
            }
2430
0
            slot = le->slot;
2431
0
            PK11_ReferenceSlot(slot);
2432
0
            PK11_FreeSlotListElement(list, le);
2433
0
            if (freeit) {
2434
0
                PK11_FreeSlotList(list);
2435
0
            }
2436
0
            return slot;
2437
0
        }
2438
0
    }
2439
0
    if (freeit) {
2440
0
        PK11_FreeSlotList(list);
2441
0
    }
2442
0
    if (PORT_GetError() == 0) {
2443
0
        PORT_SetError(SEC_ERROR_NO_TOKEN);
2444
0
    }
2445
0
    return NULL;
2446
0
}
2447
2448
PK11SlotInfo *
2449
PK11_GetBestSlotMultiple(CK_MECHANISM_TYPE *type,
2450
                         unsigned int mech_count, void *wincx)
2451
0
{
2452
0
    return PK11_GetBestSlotMultipleWithAttributes(type, NULL, NULL,
2453
0
                                                  mech_count, wincx);
2454
0
}
2455
2456
/* original get best slot now calls the multiple version with only one type */
2457
PK11SlotInfo *
2458
PK11_GetBestSlot(CK_MECHANISM_TYPE type, void *wincx)
2459
0
{
2460
0
    return PK11_GetBestSlotMultipleWithAttributes(&type, NULL, NULL, 1, wincx);
2461
0
}
2462
2463
PK11SlotInfo *
2464
PK11_GetBestSlotWithAttributes(CK_MECHANISM_TYPE type, CK_FLAGS mechanismFlags,
2465
                               unsigned int keySize, void *wincx)
2466
0
{
2467
0
    return PK11_GetBestSlotMultipleWithAttributes(&type, &mechanismFlags,
2468
0
                                                  &keySize, 1, wincx);
2469
0
}
2470
2471
int
2472
PK11_GetBestKeyLength(PK11SlotInfo *slot, CK_MECHANISM_TYPE mechanism)
2473
0
{
2474
0
    CK_MECHANISM_INFO mechanism_info;
2475
0
    CK_RV crv;
2476
2477
0
    if (!slot->isThreadSafe)
2478
0
        PK11_EnterSlotMonitor(slot);
2479
0
    crv = PK11_GETTAB(slot)->C_GetMechanismInfo(slot->slotID,
2480
0
                                                mechanism, &mechanism_info);
2481
0
    if (!slot->isThreadSafe)
2482
0
        PK11_ExitSlotMonitor(slot);
2483
0
    if (crv != CKR_OK)
2484
0
        return 0;
2485
2486
0
    if (mechanism_info.ulMinKeySize == mechanism_info.ulMaxKeySize)
2487
0
        return 0;
2488
0
    return mechanism_info.ulMaxKeySize;
2489
0
}
2490
2491
/*
2492
 * This function uses the existing PKCS #11 module to find the
2493
 * longest supported key length in the preferred token for a mechanism.
2494
 * This varies from the above function in that 1) it returns the key length
2495
 * even for fixed key algorithms, and 2) it looks through the tokens
2496
 * generally rather than for a specific token. This is used in liu of
2497
 * a PK11_GetKeyLength function in pk11mech.c since we can actually read
2498
 * supported key lengths from PKCS #11.
2499
 *
2500
 * For symmetric key operations the length is returned in bytes.
2501
 */
2502
int
2503
PK11_GetMaxKeyLength(CK_MECHANISM_TYPE mechanism)
2504
0
{
2505
0
    CK_MECHANISM_INFO mechanism_info;
2506
0
    PK11SlotList *list = NULL;
2507
0
    PK11SlotListElement *le;
2508
0
    PRBool freeit = PR_FALSE;
2509
0
    int keyLength = 0;
2510
2511
0
    list = PK11_GetSlotList(mechanism);
2512
2513
0
    if ((list == NULL) || (list->head == NULL)) {
2514
        /* We need to look up all the tokens for the mechanism */
2515
0
        list = PK11_GetAllTokens(mechanism, PR_FALSE, PR_FALSE, NULL);
2516
0
        freeit = PR_TRUE;
2517
0
    }
2518
2519
    /* no tokens recognize this mechanism */
2520
0
    if (list == NULL) {
2521
0
        PORT_SetError(SEC_ERROR_INVALID_ALGORITHM);
2522
0
        return 0;
2523
0
    }
2524
2525
0
    for (le = PK11_GetFirstSafe(list); le;
2526
0
         le = PK11_GetNextSafe(list, le, PR_TRUE)) {
2527
0
        PK11SlotInfo *slot = le->slot;
2528
0
        CK_RV crv;
2529
0
        if (PK11_IsPresent(slot)) {
2530
0
            if (!slot->isThreadSafe)
2531
0
                PK11_EnterSlotMonitor(slot);
2532
0
            crv = PK11_GETTAB(slot)->C_GetMechanismInfo(slot->slotID,
2533
0
                                                        mechanism, &mechanism_info);
2534
0
            if (!slot->isThreadSafe)
2535
0
                PK11_ExitSlotMonitor(slot);
2536
0
            if ((crv == CKR_OK) && (mechanism_info.ulMaxKeySize != 0) && (mechanism_info.ulMaxKeySize != 0xffffffff)) {
2537
0
                keyLength = mechanism_info.ulMaxKeySize;
2538
0
                break;
2539
0
            }
2540
0
        }
2541
0
    }
2542
2543
    /* fallback to pk11_GetPredefinedKeyLength for fixed key size algorithms */
2544
0
    if (keyLength == 0) {
2545
0
        CK_KEY_TYPE keyType;
2546
0
        keyType = PK11_GetKeyType(mechanism, 0);
2547
0
        keyLength = pk11_GetPredefinedKeyLength(keyType);
2548
0
    }
2549
2550
0
    if (le)
2551
0
        PK11_FreeSlotListElement(list, le);
2552
0
    if (freeit)
2553
0
        PK11_FreeSlotList(list);
2554
0
    return keyLength;
2555
0
}
2556
2557
SECStatus
2558
PK11_SeedRandom(PK11SlotInfo *slot, unsigned char *data, int len)
2559
0
{
2560
0
    CK_RV crv;
2561
2562
0
    PK11_EnterSlotMonitor(slot);
2563
0
    crv = PK11_GETTAB(slot)->C_SeedRandom(slot->session, data, (CK_ULONG)len);
2564
0
    PK11_ExitSlotMonitor(slot);
2565
0
    if (crv != CKR_OK) {
2566
0
        PORT_SetError(PK11_MapError(crv));
2567
0
        return SECFailure;
2568
0
    }
2569
0
    return SECSuccess;
2570
0
}
2571
2572
SECStatus
2573
PK11_GenerateRandomOnSlot(PK11SlotInfo *slot, unsigned char *data, int len)
2574
0
{
2575
0
    CK_RV crv;
2576
2577
0
    if (!slot->isInternal)
2578
0
        PK11_EnterSlotMonitor(slot);
2579
0
    crv = PK11_GETTAB(slot)->C_GenerateRandom(slot->session, data,
2580
0
                                              (CK_ULONG)len);
2581
0
    if (!slot->isInternal)
2582
0
        PK11_ExitSlotMonitor(slot);
2583
0
    if (crv != CKR_OK) {
2584
0
        PORT_SetError(PK11_MapError(crv));
2585
0
        return SECFailure;
2586
0
    }
2587
0
    return SECSuccess;
2588
0
}
2589
2590
/* Attempts to update the Best Slot for "FAKE RANDOM" generation.
2591
** If that's not the internal slot, then it also attempts to update the
2592
** internal slot.
2593
** The return value indicates if the INTERNAL slot was updated OK.
2594
*/
2595
SECStatus
2596
PK11_RandomUpdate(void *data, size_t bytes)
2597
0
{
2598
0
    PK11SlotInfo *slot;
2599
0
    PRBool bestIsInternal;
2600
0
    SECStatus status;
2601
2602
0
    slot = PK11_GetBestSlot(CKM_FAKE_RANDOM, NULL);
2603
0
    if (slot == NULL) {
2604
0
        slot = PK11_GetInternalSlot();
2605
0
        if (!slot)
2606
0
            return SECFailure;
2607
0
    }
2608
2609
0
    bestIsInternal = PK11_IsInternal(slot);
2610
0
    status = PK11_SeedRandom(slot, data, bytes);
2611
0
    PK11_FreeSlot(slot);
2612
2613
0
    if (!bestIsInternal) {
2614
        /* do internal slot, too. */
2615
0
        slot = PK11_GetInternalSlot();
2616
0
        PORT_Assert(slot);
2617
0
        if (!slot) {
2618
0
            return SECFailure;
2619
0
        }
2620
0
        status = PK11_SeedRandom(slot, data, bytes);
2621
0
        PK11_FreeSlot(slot);
2622
0
    }
2623
0
    return status;
2624
0
}
2625
2626
SECStatus
2627
PK11_GenerateRandom(unsigned char *data, int len)
2628
0
{
2629
0
    PK11SlotInfo *slot;
2630
0
    SECStatus rv;
2631
2632
0
    slot = PK11_GetBestSlot(CKM_FAKE_RANDOM, NULL);
2633
0
    if (slot == NULL)
2634
0
        return SECFailure;
2635
2636
0
    rv = PK11_GenerateRandomOnSlot(slot, data, len);
2637
0
    PK11_FreeSlot(slot);
2638
0
    return rv;
2639
0
}
2640
2641
/*
2642
 * Reset the token to it's initial state. For the internal module, this will
2643
 * Purge your keydb, and reset your cert db certs to USER_INIT.
2644
 */
2645
SECStatus
2646
PK11_ResetToken(PK11SlotInfo *slot, char *sso_pwd)
2647
0
{
2648
0
    unsigned char tokenName[32];
2649
0
    size_t tokenNameLen;
2650
0
    CK_RV crv;
2651
2652
    /* reconstruct the token name */
2653
0
    tokenNameLen = PORT_Strlen(slot->token_name);
2654
0
    if (tokenNameLen > sizeof(tokenName)) {
2655
0
        tokenNameLen = sizeof(tokenName);
2656
0
    }
2657
2658
0
    PORT_Memcpy(tokenName, slot->token_name, tokenNameLen);
2659
0
    if (tokenNameLen < sizeof(tokenName)) {
2660
0
        PORT_Memset(&tokenName[tokenNameLen], ' ',
2661
0
                    sizeof(tokenName) - tokenNameLen);
2662
0
    }
2663
2664
    /* initialize the token */
2665
0
    PK11_EnterSlotMonitor(slot);
2666
2667
    /* first shutdown the token. Existing sessions will get closed here */
2668
0
    PK11_GETTAB(slot)
2669
0
        ->C_CloseAllSessions(slot->slotID);
2670
0
    slot->session = CK_INVALID_HANDLE;
2671
2672
    /* now re-init the token */
2673
0
    crv = PK11_GETTAB(slot)->C_InitToken(slot->slotID,
2674
0
                                         (unsigned char *)sso_pwd, sso_pwd ? PORT_Strlen(sso_pwd) : 0, tokenName);
2675
2676
    /* finally bring the token back up */
2677
0
    PK11_InitToken(slot, PR_TRUE);
2678
0
    PK11_ExitSlotMonitor(slot);
2679
0
    if (crv != CKR_OK) {
2680
0
        PORT_SetError(PK11_MapError(crv));
2681
0
        return SECFailure;
2682
0
    }
2683
0
    NSSToken *token = PK11Slot_GetNSSToken(slot);
2684
0
    if (token) {
2685
0
        nssTrustDomain_UpdateCachedTokenCerts(token->trustDomain, token);
2686
0
        (void)nssToken_Destroy(token);
2687
0
    }
2688
0
    return SECSuccess;
2689
0
}
2690
2691
void
2692
PK11Slot_SetNSSToken(PK11SlotInfo *sl, NSSToken *nsst)
2693
0
{
2694
0
    NSSToken *old;
2695
0
    if (nsst) {
2696
0
        nsst = nssToken_AddRef(nsst);
2697
0
    }
2698
2699
0
    PZ_Lock(sl->nssTokenLock);
2700
0
    old = sl->nssToken;
2701
0
    sl->nssToken = nsst;
2702
0
    PZ_Unlock(sl->nssTokenLock);
2703
2704
0
    if (old) {
2705
0
        (void)nssToken_Destroy(old);
2706
0
    }
2707
0
}
2708
2709
NSSToken *
2710
PK11Slot_GetNSSToken(PK11SlotInfo *sl)
2711
0
{
2712
0
    NSSToken *rv = NULL;
2713
2714
0
    PZ_Lock(sl->nssTokenLock);
2715
0
    if (sl->nssToken) {
2716
0
        rv = nssToken_AddRef(sl->nssToken);
2717
0
    }
2718
0
    PZ_Unlock(sl->nssTokenLock);
2719
2720
0
    return rv;
2721
0
}
2722
2723
PRBool
2724
pk11slot_GetFIPSStatus(PK11SlotInfo *slot, CK_SESSION_HANDLE session,
2725
                       CK_OBJECT_HANDLE object, CK_ULONG operationType)
2726
0
{
2727
0
    SECMODModule *mod = slot->module;
2728
0
    CK_RV crv;
2729
0
    CK_ULONG fipsState = CKS_NSS_FIPS_NOT_OK;
2730
2731
    /* handle the obvious conditions:
2732
     * 1) the module doesn't have a fipsIndicator - fips state must be false */
2733
0
    if (mod->fipsIndicator == NULL) {
2734
0
        return PR_FALSE;
2735
0
    }
2736
    /* 2) the session doesn't exist - fips state must be false */
2737
0
    if (session == CK_INVALID_HANDLE) {
2738
0
        return PR_FALSE;
2739
0
    }
2740
2741
    /* go fetch the state */
2742
0
    crv = mod->fipsIndicator(session, object, operationType, &fipsState);
2743
0
    if (crv != CKR_OK) {
2744
0
        return PR_FALSE;
2745
0
    }
2746
0
    return (fipsState == CKS_NSS_FIPS_OK) ? PR_TRUE : PR_FALSE;
2747
0
}
2748
2749
PRBool
2750
PK11_SlotGetLastFIPSStatus(PK11SlotInfo *slot)
2751
0
{
2752
0
    return pk11slot_GetFIPSStatus(slot, slot->session, CK_INVALID_HANDLE,
2753
0
                                  CKT_NSS_SESSION_LAST_CHECK);
2754
0
}
2755
2756
/*
2757
 * wait for a token to change it's state. The application passes in the expected
2758
 * new state in event.
2759
 */
2760
PK11TokenStatus
2761
PK11_WaitForTokenEvent(PK11SlotInfo *slot, PK11TokenEvent event,
2762
                       PRIntervalTime timeout, PRIntervalTime latency, int series)
2763
0
{
2764
0
    PRIntervalTime first_time = 0;
2765
0
    PRBool first_time_set = PR_FALSE;
2766
0
    PRBool waitForRemoval;
2767
2768
0
    if (slot->isPerm) {
2769
0
        return PK11TokenNotRemovable;
2770
0
    }
2771
0
    if (latency == 0) {
2772
0
        latency = PR_SecondsToInterval(5);
2773
0
    }
2774
0
    waitForRemoval = (PRBool)(event == PK11TokenRemovedOrChangedEvent);
2775
2776
0
    if (series == 0) {
2777
0
        series = PK11_GetSlotSeries(slot);
2778
0
    }
2779
0
    while (PK11_IsPresent(slot) == waitForRemoval) {
2780
0
        PRIntervalTime interval;
2781
2782
0
        if (waitForRemoval && series != PK11_GetSlotSeries(slot)) {
2783
0
            return PK11TokenChanged;
2784
0
        }
2785
0
        if (timeout == PR_INTERVAL_NO_WAIT) {
2786
0
            return waitForRemoval ? PK11TokenPresent : PK11TokenRemoved;
2787
0
        }
2788
0
        if (timeout != PR_INTERVAL_NO_TIMEOUT) {
2789
0
            interval = PR_IntervalNow();
2790
0
            if (!first_time_set) {
2791
0
                first_time = interval;
2792
0
                first_time_set = PR_TRUE;
2793
0
            }
2794
0
            if ((interval - first_time) > timeout) {
2795
0
                return waitForRemoval ? PK11TokenPresent : PK11TokenRemoved;
2796
0
            }
2797
0
        }
2798
0
        PR_Sleep(latency);
2799
0
    }
2800
0
    return waitForRemoval ? PK11TokenRemoved : PK11TokenPresent;
2801
0
}