2 Fuzzing for oLschema2ldif
3 Copyright (C) Michael Hanselmann 2019
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "utils/oLschema2ldif/lib.h"
25 int LLVMFuzzerInitialize(int *argc
, char ***argv
)
27 devnull
= fopen("/dev/null", "w");
32 int LLVMFuzzerTestOneInput(uint8_t *buf
, size_t len
)
35 struct conv_options opt
;
39 * Otherwise fmemopen() will return null and set errno
45 mem_ctx
= talloc_init(__FUNCTION__
);
46 if (mem_ctx
== NULL
) {
50 opt
.in
= fmemopen(buf
, len
, "r");
52 opt
.ldb_ctx
= ldb_init(mem_ctx
, NULL
);
53 if (opt
.ldb_ctx
== NULL
|| opt
.in
== NULL
) {
58 opt
.basedn
= ldb_dn_new(mem_ctx
, opt
.ldb_ctx
, "");
59 if (opt
.basedn
== NULL
) {
64 process_file(mem_ctx
, &opt
);