summaryrefslogtreecommitdiffstats
path: root/security/nss/cmd/signver/signver.c
blob: 4e89e9d0e389590ea7407c351f65228ea11631b9 (plain)
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
/* 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/. */

#include "secutil.h"
#include "secmod.h"
#include "cert.h"
#include "secoid.h"
#include "nss.h"

/* NSPR 2.0 header files */
#include "prinit.h"
#include "prprf.h"
#include "prsystem.h"
#include "prmem.h"
/* Portable layer header files */
#include "plstr.h"
#include "sechash.h" /* for HASH_GetHashObject() */

static PRBool debugInfo;
static PRBool verbose;
static PRBool doVerify;
static PRBool displayAll;

static const char *const usageInfo[] = {
    "signver - verify a detached PKCS7 signature - Version " NSS_VERSION,
    "Commands:",
    " -A                    display all information from pkcs #7",
    " -V                    verify the signed object and display result",
    "Options:",
    " -a                    signature file is ASCII",
    " -d certdir            directory containing cert database",
    " -i dataFileName       input file containing signed data (default stdin)",
    " -o outputFileName     output file name, default stdout",
    " -s signatureFileName  input file for signature (default stdin)",
    " -v                    display verbose reason for failure"
};
static int nUsageInfo = sizeof(usageInfo) / sizeof(char *);

extern int SV_PrintPKCS7ContentInfo(FILE *, SECItem *);

static void
Usage(char *progName, FILE *outFile)
{
    int i;
    fprintf(outFile, "Usage:  %s [ commands ] options\n", progName);
    for (i = 0; i < nUsageInfo; i++)
        fprintf(outFile, "%s\n", usageInfo[i]);
    exit(-1);
}

static HASH_HashType
AlgorithmToHashType(SECAlgorithmID *digestAlgorithms)
{
    SECOidTag tag = SECOID_GetAlgorithmTag(digestAlgorithms);
    HASH_HashType hash = HASH_GetHashTypeByOidTag(tag);
    return hash;
}

static SECStatus
DigestContent(SECItem *digest, SECItem *content, HASH_HashType hashType)
{
    unsigned int maxLen = digest->len;
    unsigned int len = HASH_ResultLen(hashType);
    SECStatus rv;

    if (len > maxLen) {
        PORT_SetError(SEC_ERROR_OUTPUT_LEN);
        return SECFailure;
    }

    rv = HASH_HashBuf(hashType, digest->data, content->data, content->len);
    if (rv == SECSuccess)
        digest->len = len;
    return rv;
}

enum {
    cmd_DisplayAllPCKS7Info = 0,
    cmd_VerifySignedObj
};

enum {
    opt_ASCII,
    opt_CertDir,
    opt_InputDataFile,
    opt_OutputFile,
    opt_InputSigFile,
    opt_PrintWhyFailure,
    opt_DebugInfo
};

static secuCommandFlag signver_commands[] =
    {
      { /* cmd_DisplayAllPCKS7Info*/ 'A', PR_FALSE, 0, PR_FALSE },
      { /* cmd_VerifySignedObj  */ 'V', PR_FALSE, 0, PR_FALSE }
    };

static secuCommandFlag signver_options[] =
    {
      { /* opt_ASCII            */ 'a', PR_FALSE, 0, PR_FALSE },
      { /* opt_CertDir          */ 'd', PR_TRUE, 0, PR_FALSE },
      { /* opt_InputDataFile    */ 'i', PR_TRUE, 0, PR_FALSE },
      { /* opt_OutputFile       */ 'o', PR_TRUE, 0, PR_FALSE },
      { /* opt_InputSigFile     */ 's', PR_TRUE, 0, PR_FALSE },
      { /* opt_PrintWhyFailure  */ 'v', PR_FALSE, 0, PR_FALSE },
      { /* opt_DebugInfo                */ 0, PR_FALSE, 0, PR_FALSE, "debug" }
    };

int
main(int argc, char **argv)
{
    PRFileDesc *contentFile = NULL;
    PRFileDesc *signFile = PR_STDIN;
    FILE *outFile = stdout;
    char *progName;
    SECStatus rv;
    int result = 1;
    SECItem pkcs7der, content;
    secuCommand signver;

    pkcs7der.data = NULL;
    content.data = NULL;

    signver.numCommands = sizeof(signver_commands) / sizeof(secuCommandFlag);
    signver.numOptions = sizeof(signver_options) / sizeof(secuCommandFlag);
    signver.commands = signver_commands;
    signver.options = signver_options;

#ifdef XP_PC
    progName = strrchr(argv[0], '\\');
#else
    progName = strrchr(argv[0], '/');
#endif
    progName = progName ? progName + 1 : argv[0];

    rv = SECU_ParseCommandLine(argc, argv, progName, &signver);
    if (SECSuccess != rv) {
        Usage(progName, outFile);
    }
    debugInfo = signver.options[opt_DebugInfo].activated;
    verbose = signver.options[opt_PrintWhyFailure].activated;
    doVerify = signver.commands[cmd_VerifySignedObj].activated;
    displayAll = signver.commands[cmd_DisplayAllPCKS7Info].activated;
    if (!doVerify && !displayAll)
        doVerify = PR_TRUE;

    /*  Set the certdb directory (default is ~/.netscape) */
    rv = NSS_Init(SECU_ConfigDirectory(signver.options[opt_CertDir].arg));
    if (rv != SECSuccess) {
        SECU_PrintPRandOSError(progName);
        return result;
    }
    /* below here, goto cleanup */
    SECU_RegisterDynamicOids();

    /*  Open the input content file. */
    if (signver.options[opt_InputDataFile].activated &&
        signver.options[opt_InputDataFile].arg) {
        if (PL_strcmp("-", signver.options[opt_InputDataFile].arg)) {
            contentFile = PR_Open(signver.options[opt_InputDataFile].arg,
                                  PR_RDONLY, 0);
            if (!contentFile) {
                PR_fprintf(PR_STDERR,
                           "%s: unable to open \"%s\" for reading.\n",
                           progName, signver.options[opt_InputDataFile].arg);
                goto cleanup;
            }
        } else
            contentFile = PR_STDIN;
    }

    /*  Open the input signature file.  */
    if (signver.options[opt_InputSigFile].activated &&
        signver.options[opt_InputSigFile].arg) {
        if (PL_strcmp("-", signver.options[opt_InputSigFile].arg)) {
            signFile = PR_Open(signver.options[opt_InputSigFile].arg,
                               PR_RDONLY, 0);
            if (!signFile) {
                PR_fprintf(PR_STDERR,
                           "%s: unable to open \"%s\" for reading.\n",
                           progName, signver.options[opt_InputSigFile].arg);
                goto cleanup;
            }
        }
    }

    if (contentFile == PR_STDIN && signFile == PR_STDIN && doVerify) {
        PR_fprintf(PR_STDERR,
                   "%s: cannot read both content and signature from standard input\n",
                   progName);
        goto cleanup;
    }

    /*  Open|Create the output file.  */
    if (signver.options[opt_OutputFile].activated) {
        outFile = fopen(signver.options[opt_OutputFile].arg, "w");
        if (!outFile) {
            PR_fprintf(PR_STDERR, "%s: unable to open \"%s\" for writing.\n",
                       progName, signver.options[opt_OutputFile].arg);
            goto cleanup;
        }
    }

    /* read in the input files' contents */
    rv = SECU_ReadDERFromFile(&pkcs7der, signFile,
                              signver.options[opt_ASCII].activated, PR_FALSE);
    if (signFile != PR_STDIN)
        PR_Close(signFile);
    if (rv != SECSuccess) {
        SECU_PrintError(progName, "problem reading PKCS7 input");
        goto cleanup;
    }
    if (contentFile) {
        rv = SECU_FileToItem(&content, contentFile);
        if (contentFile != PR_STDIN)
            PR_Close(contentFile);
        if (rv != SECSuccess)
            content.data = NULL;
    }

    /* Signature Verification */
    if (doVerify) {
        SEC_PKCS7ContentInfo *cinfo;
        SEC_PKCS7SignedData *signedData;
        HASH_HashType digestType;
        PRBool contentIsSigned;

        cinfo = SEC_PKCS7DecodeItem(&pkcs7der, NULL, NULL, NULL, NULL,
                                    NULL, NULL, NULL);
        if (cinfo == NULL) {
            PR_fprintf(PR_STDERR, "Unable to decode PKCS7 data\n");
            goto cleanup;
        }
        /* below here, goto done */

        contentIsSigned = SEC_PKCS7ContentIsSigned(cinfo);
        if (debugInfo) {
            PR_fprintf(PR_STDERR, "Content is%s encrypted.\n",
                       SEC_PKCS7ContentIsEncrypted(cinfo) ? "" : " not");
        }
        if (debugInfo || !contentIsSigned) {
            PR_fprintf(PR_STDERR, "Content is%s signed.\n",
                       contentIsSigned ? "" : " not");
        }

        if (!contentIsSigned)
            goto done;

        signedData = cinfo->content.signedData;

        /* assume that there is only one digest algorithm for now */
        digestType = AlgorithmToHashType(signedData->digestAlgorithms[0]);
        if (digestType == HASH_AlgNULL) {
            PR_fprintf(PR_STDERR, "Invalid hash algorithmID\n");
            goto done;
        }
        if (content.data) {
            SECCertUsage usage = certUsageEmailSigner;
            SECItem digest;
            unsigned char digestBuffer[HASH_LENGTH_MAX];

            if (debugInfo)
                PR_fprintf(PR_STDERR, "contentToVerify=%s\n", content.data);

            digest.data = digestBuffer;
            digest.len = sizeof digestBuffer;

            if (DigestContent(&digest, &content, digestType)) {
                SECU_PrintError(progName, "Message digest computation failure");
                goto done;
            }

            if (debugInfo) {
                unsigned int i;
                PR_fprintf(PR_STDERR, "Data Digest=:");
                for (i = 0; i < digest.len; i++)
                    PR_fprintf(PR_STDERR, "%02x:", digest.data[i]);
                PR_fprintf(PR_STDERR, "\n");
            }

            fprintf(outFile, "signatureValid=");
            PORT_SetError(0);
            if (SEC_PKCS7VerifyDetachedSignature(cinfo, usage,
                                                 &digest, digestType, PR_FALSE)) {
                fprintf(outFile, "yes");
            } else {
                fprintf(outFile, "no");
                if (verbose) {
                    fprintf(outFile, ":%s",
                            SECU_Strerror(PORT_GetError()));
                }
            }
            fprintf(outFile, "\n");
            result = 0;
        }
    done:
        SEC_PKCS7DestroyContentInfo(cinfo);
    }

    if (displayAll) {
        if (SV_PrintPKCS7ContentInfo(outFile, &pkcs7der))
            result = 1;
    }

cleanup:
    SECITEM_FreeItem(&pkcs7der, PR_FALSE);
    SECITEM_FreeItem(&content, PR_FALSE);

    if (NSS_Shutdown() != SECSuccess) {
        result = 1;
    }

    return result;
}