Blob Blame History Raw
/*
 * COPYRIGHT (c) International Business Machines Corp. 2005-2017
 *
 * This program is provided under the terms of the Common Public License,
 * version 1.0 (CPL-1.0). Any use, reproduction or distribution for this
 * software constitutes recipient's acceptance of CPL-1.0 terms which can be
 * found in the file LICENSE file or at
 * https://opensource.org/licenses/cpl1.0.php
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <memory.h>

#include <dlfcn.h>

#include "pkcs11types.h"
#include "regress.h"
#include "common.c"

int do_LoginLogout(CK_FUNCTION_LIST * funcs, CK_SLOT_ID slot_id,
                   CK_USER_TYPE userType, char *pass)
{
    CK_RV rc;
    CK_SESSION_HANDLE session;
    CK_FLAGS flags = CKF_SERIAL_SESSION;

    if (userType == CKU_SO) {
        flags |= CKF_RW_SESSION;
    }

    rc = funcs->C_OpenSession(slot_id, flags, NULL, NULL, &session);
    if (rc != CKR_OK) {
        show_error("C_OpenSession", rc);
        return rc;
    }
    rc = funcs->C_Login(session, userType, (CK_CHAR_PTR) pass, strlen(pass));
    if (rc != CKR_OK) {
        show_error("C_Login", rc);
        return rc;
    }

    printf("Logged in successfully, logging out...\n");

    rc = funcs->C_Logout(session);
    if (rc != CKR_OK) {
        show_error("C_Logout", rc);
        return rc;
    }

    printf("Logged out.\n");

    rc = funcs->C_CloseSession(session);
    if (rc != CKR_OK) {
        show_error("C_CloseSession", rc);
        return (int) rc;
    }

    return rc;
}

int main(int argc, char **argv)
{
    CK_C_INITIALIZE_ARGS cinit_args;
    CK_USER_TYPE userType = CKU_USER;
    CK_SLOT_ID slot_id = 0;
    CK_RV rc = 0;
    char *pass = NULL;
    int i;

    for (i = 1; i < argc; i++) {
        if (strcmp(argv[i], "-pass") == 0) {
            ++i;
            pass = argv[i];
        } else if (strcmp(argv[i], "-slot") == 0) {
            ++i;
            slot_id = atoi(argv[i]);
        } else if (strcmp(argv[i], "-user") == 0) {
            userType = CKU_USER;
            if (pass == NULL)
                pass = "12345678";
        } else if (strcmp(argv[i], "-so") == 0) {
            userType = CKU_SO;
            if (pass == NULL)
                pass = "87654321";
        } else {
            printf
                ("usage:  %s [-slot <num>] [-h] [-pass passwd] [-user|-so]\n\n",
                 argv[0]);
            printf("By default, Slot #%lu is used, as user\n\n", SLOT_ID);
            return -1;
        }
    }

    if (slot_id != SLOT_ID)
        printf("Using user specified slot %lu.\n", slot_id);

    rc = do_GetFunctionList();
    if (funcs == NULL)
        return -1;

    memset(&cinit_args, 0, sizeof(cinit_args));
    cinit_args.flags = CKF_OS_LOCKING_OK;

    rc = funcs->C_Initialize(&cinit_args);
    if (rc != CKR_OK) {
        show_error("C_Initialize", rc);
        return -1;
    }

    rc = do_LoginLogout(funcs, slot_id, userType, pass);

    funcs->C_Finalize(NULL);

    return rc;
}