1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
/* t-getsessioninfo.c - Regression test.
* Copyright (C) 2006 g10 Code GmbH
*
* This file is part of Scute.
*
* Scute is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* Scute is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, see <https://gnu.org/licenses/>.
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include <stdio.h>
#include <stdbool.h>
#include "t-support.h"
int
main (int argc, char *argv[])
{
CK_RV err;
CK_SLOT_ID_PTR slots;
CK_SESSION_HANDLE_PTR sessions;
CK_ULONG slots_count;
unsigned int i;
(void) argc;
(void) argv;
init_cryptoki ();
err = C_GetSlotList (true, NULL, &slots_count);
fail_if_err (err);
if (slots_count == 0)
{
printf ("Skipping test because no token is present.\n");
return 77;
}
printf ("Number of slots with tokens: %lu\n", slots_count);
slots = malloc (sizeof (CK_SLOT_ID) * slots_count);
if (!slots)
fail_if_err (CKR_HOST_MEMORY);
sessions = malloc (sizeof (CK_SESSION_HANDLE) * slots_count);
if (!sessions)
fail_if_err (CKR_HOST_MEMORY);
err = C_GetSlotList (true, slots, &slots_count);
fail_if_err (err);
for (i = 0; i < slots_count; i++)
{
CK_SESSION_INFO info;
printf ("%2i. Slot ID %lu\n", i, slots[i]);
err = C_OpenSession (slots[i], CKF_SERIAL_SESSION, NULL, NULL,
&sessions[i]);
fail_if_err (err);
printf (" Session ID: %lu\n", sessions[i]);
err = C_GetSessionInfo (sessions[i], &info);
fail_if_err (err);
printf (" Slot ID: %lu\n", info.slotID);
printf (" State: %s\n", session_state_str (info.state));
printf (" Flags: %#lx", info.flags);
if (info.flags)
{
bool any = false;
CK_FLAGS xflags = 0;
printf (" == ");
#define DO_FLAG(sym) \
if (info.flags & sym) \
{ \
printf ("%s" #sym, any ? " | " : ""); \
any = true; \
xflags |= sym; \
}
DO_FLAG (CKF_RW_SESSION);
DO_FLAG (CKF_SERIAL_SESSION);
xflags = info.flags & ~xflags;
if (xflags)
printf ("%s%#lx", any ? " | " : "", xflags);
}
printf ("\n");
printf (" Device Error: %lu\n", info.ulDeviceError);
fail_if_err (info.slotID != slots[i] ? CKR_GENERAL_ERROR : 0);
fail_if_err (info.state != CKS_RO_PUBLIC_SESSION
? CKR_GENERAL_ERROR : 0);
fail_if_err (info.flags != CKF_SERIAL_SESSION ? CKR_GENERAL_ERROR : 0);
fail_if_err (info.ulDeviceError ? CKR_GENERAL_ERROR : 0);
}
for (i = 0; i < slots_count; i++)
{
err = C_CloseSession (sessions[i]);
fail_if_err (err);
}
return 0;
}
|