blob: 959ef9365ad1f60c1d0405bf78dfa4bfaa0274d5 [file] [log] [blame]
Ben Lauriec38bb722016-03-26 17:19:14 +00001/*
2 * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL licenses, (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 * https://www.openssl.org/source/license.html
8 * or in the file LICENSE in the source distribution.
9 */
10
11/*
12 * Test CMS DER parsing.
13 */
14
15#include <openssl/bio.h>
16#include <openssl/cms.h>
Kurt Roeckxd69d8f92016-12-02 19:34:54 +010017#include <openssl/err.h>
Ben Lauriec38bb722016-03-26 17:19:14 +000018#include "fuzzer.h"
19
Kurt Roeckxf3e911d2016-11-19 17:10:35 +010020int FuzzerInitialize(int *argc, char ***argv)
21{
Kurt Roeckxd69d8f92016-12-02 19:34:54 +010022 OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
23 ERR_get_state();
24 CRYPTO_free_ex_index(0, -1);
Ben Laurie90d28f02016-06-04 16:10:49 +010025 return 1;
26}
27
Kurt Roeckxf3e911d2016-11-19 17:10:35 +010028int FuzzerTestOneInput(const uint8_t *buf, size_t len)
29{
Kurt Roeckx1b6a77a2016-11-19 17:50:33 +010030 CMS_ContentInfo *cms;
Mike Aizatskyba740702016-10-26 13:56:39 -070031 BIO *in;
Kurt Roeckx1b6a77a2016-11-19 17:50:33 +010032
33 if (len == 0)
Mike Aizatskyba740702016-10-26 13:56:39 -070034 return 0;
Ben Laurie90d28f02016-06-04 16:10:49 +010035
Mike Aizatskyba740702016-10-26 13:56:39 -070036 in = BIO_new(BIO_s_mem());
Ben Lauriec38bb722016-03-26 17:19:14 +000037 OPENSSL_assert((size_t)BIO_write(in, buf, len) == len);
Kurt Roeckx1b6a77a2016-11-19 17:50:33 +010038 cms = d2i_CMS_bio(in, NULL);
39 if (cms != NULL) {
40 BIO *out = BIO_new(BIO_s_null());
41
42 i2d_CMS_bio(out, cms);
43 BIO_free(out);
44 CMS_ContentInfo_free(cms);
45 }
46
Ben Lauriec38bb722016-03-26 17:19:14 +000047 BIO_free(in);
Kurt Roeckxd69d8f92016-12-02 19:34:54 +010048 ERR_clear_error();
Kurt Roeckx1b6a77a2016-11-19 17:50:33 +010049
Ben Lauriec38bb722016-03-26 17:19:14 +000050 return 0;
51}
Kurt Roeckxad4da7f2016-11-19 17:13:10 +010052
53void FuzzerCleanup(void)
54{
55}