diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c5d82d3..5aa5ea82 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -461,7 +461,7 @@ if(MSVC AND BUILD_SHARED_LIBS) endif() if(LIBXML2_WITH_PROGRAMS) - add_executable(xmllint xmllint.c shell.c) + add_executable(xmllint xmllint.c shell.c lintmain.c) set(PROGRAMS xmllint) if(LIBXML2_WITH_CATALOG AND LIBXML2_WITH_OUTPUT) add_executable(xmlcatalog xmlcatalog.c) diff --git a/Makefile.am b/Makefile.am index 32dcf6c9..b30f50dd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -139,7 +139,7 @@ runsuite_SOURCES=runsuite.c runsuite_DEPENDENCIES = $(DEPS) runsuite_LDADD= $(LDADDS) -xmllint_SOURCES = xmllint.c shell.c +xmllint_SOURCES = xmllint.c shell.c lintmain.c xmllint_CFLAGS = $(AM_CFLAGS) $(RDL_CFLAGS) $(ICONV_CFLAGS) xmllint_DEPENDENCIES = $(DEPS) xmllint_LDADD= $(RDL_LIBS) $(LDADDS) diff --git a/configure.ac b/configure.ac index 78e8f397..fc77fd1b 100644 --- a/configure.ac +++ b/configure.ac @@ -41,7 +41,7 @@ AC_SUBST(LIBXML_VERSION_INFO) AC_SUBST(LIBXML_VERSION_NUMBER) AC_SUBST(LIBXML_VERSION_EXTRA) -AM_INIT_AUTOMAKE([1.16.3 foreign no-dist-gzip dist-xz]) +AM_INIT_AUTOMAKE([1.16.3 foreign subdir-objects no-dist-gzip dist-xz]) AM_MAINTAINER_MODE([enable]) AM_SILENT_RULES([yes]) diff --git a/fuzz/Makefile.am b/fuzz/Makefile.am index e85452bc..373aa26f 100644 --- a/fuzz/Makefile.am +++ b/fuzz/Makefile.am @@ -143,7 +143,7 @@ seed/lint.stamp: genSeed$(EXEEXT) ./genSeed$(EXEEXT) lint $(XML_SEED_CORPUS_SRC) @touch seed/lint.stamp -lint_SOURCES = lint.c fuzz.c +lint_SOURCES = lint.c fuzz.c ../xmllint.c ../shell.c lint_LDFLAGS = -fsanitize=fuzzer fuzz-lint: lint$(EXEEXT) seed/lint.stamp diff --git a/fuzz/lint.c b/fuzz/lint.c index ad9be7c5..483e278f 100644 --- a/fuzz/lint.c +++ b/fuzz/lint.c @@ -14,10 +14,31 @@ #include #include +#include "private/lint.h" + #include "fuzz.h" -#define XMLLINT_FUZZ -#include "../xmllint.c" +/* + * Untested options: + * + * --catalogs: Requires XML catalogs + * + * --dtdvalid: + * --dtdvalidfpi: Requires an external DTD + * + * --output: Writes to disk + * + * --path: Requires cooperation with resource loader + * + * --repeat: Could be limited to 2 when fuzzing + * + * --relaxng: + * --schema: + * --schematron: Requires schemas + * + * --shell: We could pipe fuzz data to stdin but this is probably + * not worth it. + */ static const char *const switches[] = { "--auto", diff --git a/include/private/Makefile.am b/include/private/Makefile.am index 5e1cdf84..28def095 100644 --- a/include/private/Makefile.am +++ b/include/private/Makefile.am @@ -8,11 +8,11 @@ EXTRA_DIST = \ globals.h \ html.h \ io.h \ + lint.h \ memory.h \ parser.h \ regexp.h \ save.h \ - shell.h \ string.h \ threads.h \ tree.h \ diff --git a/include/private/lint.h b/include/private/lint.h new file mode 100644 index 00000000..5c055c3f --- /dev/null +++ b/include/private/lint.h @@ -0,0 +1,15 @@ +#ifndef XML_LINT_H_PRIVATE__ +#define XML_LINT_H_PRIVATE__ + +#include + +#include + +int +xmllintMain(int argc, const char **argv, FILE *errStream, + xmlResourceLoader loader); + +void +xmllintShell(xmlDocPtr doc, const char *filename, FILE *output); + +#endif /* XML_LINT_H_PRIVATE__ */ diff --git a/include/private/shell.h b/include/private/shell.h deleted file mode 100644 index 53a857e2..00000000 --- a/include/private/shell.h +++ /dev/null @@ -1,7 +0,0 @@ -#ifndef XML_SHELL_H_PRIVATE__ -#define XML_SHELL_H_PRIVATE__ - -void -xmllintShell(xmlDocPtr doc, const char *filename, FILE *output); - -#endif /* XML_SHELL_H_PRIVATE__ */ diff --git a/lintmain.c b/lintmain.c new file mode 100644 index 00000000..9e49ec6c --- /dev/null +++ b/lintmain.c @@ -0,0 +1,14 @@ +/* + * lintmain.c: Main routine for xmllint + * + * See Copyright for the status of this software. + */ + +#include + +#include "private/lint.h" + +int +main(int argc, char **argv) { + return(xmllintMain(argc, (const char **) argv, stderr, NULL)); +} diff --git a/meson.build b/meson.build index 3c305fbf..5dffe2f2 100644 --- a/meson.build +++ b/meson.build @@ -494,7 +494,7 @@ meson.override_dependency('libxml-2.0', xml_dep) executable( 'xmllint', - files('xmllint.c', 'shell.c'), + files('xmllint.c', 'shell.c', 'lintmain.c'), dependencies: [xml_dep, xmllint_deps], include_directories: config_dir, install: true, diff --git a/shell.c b/shell.c index 2fe0004d..ebefb50a 100644 --- a/shell.c +++ b/shell.c @@ -35,7 +35,7 @@ #include #endif -#include "private/shell.h" +#include "private/lint.h" #ifndef STDIN_FILENO #define STDIN_FILENO 0 diff --git a/xmllint.c b/xmllint.c index 177cac8b..0df1289b 100644 --- a/xmllint.c +++ b/xmllint.c @@ -67,7 +67,7 @@ #include #endif -#include "private/shell.h" +#include "private/lint.h" #ifndef STDIN_FILENO #define STDIN_FILENO 0 @@ -2201,7 +2201,6 @@ parseAndPrintFile(xmllintState *lint, const char *filename) { } #endif -#ifndef XMLLINT_FUZZ /* * shell interaction */ @@ -2212,7 +2211,6 @@ parseAndPrintFile(xmllintState *lint, const char *filename) { xmllintShell(doc, filename, stdout); goto done; } -#endif #ifdef LIBXML_XPATH_ENABLED if (lint->xpathquery != NULL) { @@ -3234,7 +3232,7 @@ xmllintParseOptions(xmllintState *lint, int argc, const char **argv) { return(XMLLINT_RETURN_OK); } -static int +int xmllintMain(int argc, const char **argv, FILE *errStream, xmlResourceLoader loader) { xmllintState state, *lint; @@ -3545,10 +3543,3 @@ error: return(lint->progresult); } -#ifndef XMLLINT_FUZZ -int -main(int argc, char **argv) { - return(xmllintMain(argc, (const char **) argv, stderr, NULL)); -} -#endif -