Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/security/nss/cmd/tests/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  secmodtest.c   Sprache: C

 
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


/*
 * Regression test for bug 588269
 *
 * SECMOD_CloseUserDB should properly close the user DB, and it should
 * be possible to later re-add that same user DB as a new slot
 */


#include "secutil.h"

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

#include "nspr.h"
#include "nss.h"
#include "secerr.h"
#include "pk11pub.h"
#include "plgetopt.h"

void
Usage(char *progName)
{
    fprintf(stderr, "Usage: %s -d dbDir\n", progName);
    exit(1);
}

SECStatus
TestOpenCloseUserDB(char *progName, char *configDir, char *tokenName)
{
    char *modspec = NULL;
    SECStatus rv = SECSuccess;
    PK11SlotInfo *userDbSlot = NULL;

    printf("Loading database <%s> - %s\n", configDir, tokenName);
    modspec = PR_smprintf("configDir='%s' tokenDescription='%s'",
                          configDir, tokenName);
    if (!modspec) {
        rv = SECFailure;
        goto loser;
    }

    userDbSlot = SECMOD_OpenUserDB(modspec);
    PR_smprintf_free(modspec);
    if (!userDbSlot) {
        SECU_PrintError(progName, "couldn't open database");
        rv = SECFailure;
        goto loser;
    }

    printf("Closing database\n");
    rv = SECMOD_CloseUserDB(userDbSlot);

    if (rv != SECSuccess) {
        SECU_PrintError(progName, "couldn't close database");
    }

    PK11_FreeSlot(userDbSlot);

loser:
    return rv;
}

int
main(int argc, char **argv)
{
    PLOptState *optstate;
    PLOptStatus optstatus;
    SECStatus rv = SECFailure;
    char *progName;
    char *dbDir = NULL;

    progName = strrchr(argv[0], '/');
    if (!progName) {
        progName = strrchr(argv[0], '\\');
    }
    progName = progName ? progName + 1 : argv[0];

    optstate = PL_CreateOptState(argc, argv, "d:");
    while ((optstatus = PL_GetNextOpt(optstate)) == PL_OPT_OK) {
        switch (optstate->option) {
            case 'd':
                dbDir = strdup(optstate->value);
                break;
        }
    }
    if (optstatus == PL_OPT_BAD || dbDir == NULL) {
        Usage(progName);
    }

    rv = NSS_NoDB_Init(NULL);
    if (rv != SECSuccess) {
        SECU_PrintError(progName, "unable to initialize NSS");
        goto loser;
    }

    printf("Open and Close Test 1\n");
    rv = TestOpenCloseUserDB(progName, dbDir, "Test Slot 1");
    if (rv != SECSuccess) {
        goto loser;
    }

    printf("Open and Close Test 2\n");
    rv = TestOpenCloseUserDB(progName, dbDir, "Test Slot 2");
    if (rv != SECSuccess) {
        goto loser;
    }

loser:
    if (dbDir)
        free(dbDir);

    if (NSS_Shutdown() != SECSuccess) {
        exit(1);
    }
    PR_Cleanup();

    if (rv != SECSuccess) {
        exit(1);
    }

    return 0;
}

Messung V0.5
C=99 H=67 G=84

¤ Dauer der Verarbeitung: 0.15 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.