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 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
|
/*
* Copyright (C) 2012-2016 Red Hat, Inc
*
* osinfo-validate: validate that XML file(s) follows the published schema
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>
*
* Authors:
* Daniel P. Berrange <berrange@redhat.com>
*/
#include <libxml/parser.h>
#include <libxml/relaxng.h>
#include <libxml/tree.h>
#include <locale.h>
#include <glib/gi18n.h>
#include "osinfo-db-util.h"
static gboolean verbose = FALSE;
static void validate_generic_error_nop(void *userData G_GNUC_UNUSED,
const char *msg G_GNUC_UNUSED,
...)
{
}
static void validate_structured_error_nop(void *userData G_GNUC_UNUSED,
const xmlError *error)
{
if (error->file)
g_printerr("%s:%d %s", error->file, error->line, error->message);
else
g_printerr(_("Schema validity error %s"), error->message);
}
static xmlDocPtr parse_file(GFile *file, GError **error)
{
xmlDocPtr doc = NULL;
xmlParserCtxtPtr pctxt;
g_autofree gchar *data = NULL;
g_autofree gchar *uri = g_file_get_uri(file);
gsize length;
if (!g_file_load_contents(file, NULL, &data, &length, NULL, error))
return NULL;
if (!(pctxt = xmlNewParserCtxt())) {
g_set_error(error, OSINFO_DB_ERROR, 0, "%s",
_("Unable to create libxml parser"));
return NULL;
}
if (!(doc = xmlCtxtReadDoc(pctxt, (const xmlChar*)data, uri, NULL,
XML_PARSE_NONET |
XML_PARSE_NOWARNING))) {
g_set_error(error, OSINFO_DB_ERROR, 0,
_("Unable to parse XML document '%s'"),
uri);
return NULL;
}
return doc;
}
static gboolean validate_file(xmlRelaxNGValidCtxtPtr rngValid, GFile *file, GFileInfo *info, GError **error);
static gboolean validate_file_regular(xmlRelaxNGValidCtxtPtr rngValid,
GFile *file,
GError **error)
{
gboolean ret = FALSE;
xmlDocPtr doc = NULL;
g_autofree gchar *uri = g_file_get_uri(file);
if (!g_str_has_suffix(uri, ".xml")) {
ret = TRUE;
goto cleanup;
}
if (!(doc = parse_file(file, error)))
goto cleanup;
if (xmlRelaxNGValidateDoc(rngValid, doc) != 0) {
g_set_error(error, OSINFO_DB_ERROR, 0,
_("Unable to validate XML document '%s'"),
uri);
goto cleanup;
}
ret = TRUE;
cleanup:
xmlFreeDoc(doc);
return ret;
}
static gboolean validate_file_directory(xmlRelaxNGValidCtxtPtr rngValid, GFile *file, GError **error)
{
g_autoptr(GFileEnumerator) children = NULL;
g_autoptr(GFileInfo) info = NULL;
if (!(children = g_file_enumerate_children(file, "standard::*", 0, NULL, error)))
return FALSE;
while ((info = g_file_enumerator_next_file(children, NULL, error))) {
g_autoptr(GFile) child = g_file_get_child(file, g_file_info_get_name(info));
gboolean ret_validate;
ret_validate = validate_file(rngValid, child, info, error);
if (!ret_validate)
return FALSE;
}
if (*error)
return FALSE;
return TRUE;
}
static gboolean validate_file(xmlRelaxNGValidCtxtPtr rngValid, GFile *file, GFileInfo *info, GError **error)
{
g_autoptr(GFileInfo) thisinfo = NULL;
g_autofree gchar *uri = g_file_get_uri(file);
if (verbose)
g_print(_("Processing '%s'...\n"), uri);
if (!info) {
if (!(thisinfo = g_file_query_info(file, "standard::*",
G_FILE_QUERY_INFO_NONE,
NULL, error)))
return FALSE;
info = thisinfo;
}
if (g_file_info_get_file_type(info) == G_FILE_TYPE_DIRECTORY) {
if (!validate_file_directory(rngValid, file, error))
return FALSE;
} else if (g_file_info_get_file_type(info) == G_FILE_TYPE_REGULAR) {
if (!validate_file_regular(rngValid, file, error))
return FALSE;
} else {
g_set_error(error, OSINFO_DB_ERROR, 0,
"Unable to handle file type for %s",
uri);
return FALSE;
}
return TRUE;
}
static gboolean validate_files(GFile *schema, gsize nfiles, GFile **files, GError **error)
{
xmlRelaxNGParserCtxtPtr rngParser = NULL;
xmlRelaxNGPtr rng = NULL;
xmlRelaxNGValidCtxtPtr rngValid = NULL;
gboolean ret = FALSE;
gsize i;
g_autofree gchar *schemapath = NULL;
xmlSetGenericErrorFunc(NULL, validate_generic_error_nop);
/* Drop this typecast when >=libxml2-2.12.0 is required */
xmlSetStructuredErrorFunc(NULL, (xmlStructuredErrorFunc) validate_structured_error_nop);
schemapath = g_file_get_path(schema);
rngParser = xmlRelaxNGNewParserCtxt(schemapath);
if (!rngParser) {
g_set_error(error, OSINFO_DB_ERROR, 0,
_("Unable to create RNG parser for %s"),
schemapath);
goto cleanup;
}
rng = xmlRelaxNGParse(rngParser);
if (!rng) {
g_set_error(error, OSINFO_DB_ERROR, 0,
_("Unable to parse RNG %s"),
schemapath);
goto cleanup;
}
rngValid = xmlRelaxNGNewValidCtxt(rng);
if (!rngValid) {
g_set_error(error, OSINFO_DB_ERROR, 0,
_("Unable to create RNG validation context %s"),
schemapath);
goto cleanup;
}
for (i = 0; i < nfiles; i++) {
if (!validate_file(rngValid, files[i], NULL, error))
goto cleanup;
}
ret = TRUE;
cleanup:
xmlRelaxNGFreeValidCtxt(rngValid);
xmlRelaxNGFreeParserCtxt(rngParser);
xmlRelaxNGFree(rng);
return ret;
}
gint main(gint argc, gchar **argv)
{
g_autoptr(GOptionContext) context = NULL;
g_autoptr(GError) error = NULL;
g_autoptr(GFile) schema = NULL;
g_autoptr(GFile) dir = NULL;
g_autofree GFile **files = NULL;
gsize nfiles = 0, i;
gboolean user = FALSE;
gboolean local = FALSE;
gboolean system = FALSE;
const gchar *root = "";
const gchar *custom = NULL;
int locs = 0;
const GOptionEntry entries[] = {
{ "verbose", 'v', 0, G_OPTION_ARG_NONE, (void*)&verbose,
N_("Verbose progress information"), NULL, },
{ "user", 0, 0, G_OPTION_ARG_NONE, (void *)&user,
N_("Validate files in user directory"), NULL, },
{ "local", 0, 0, G_OPTION_ARG_NONE, (void *)&local,
N_("Validate files in local directory"), NULL, },
{ "system", 0, 0, G_OPTION_ARG_NONE, (void *)&system,
N_("Validate files in system directory"), NULL, },
{ "dir", 0, 0, G_OPTION_ARG_STRING, (void *)&custom,
N_("Validate files in custom directory"), NULL, },
{ "root", 0, 0, G_OPTION_ARG_STRING, &root,
N_("Installation root directory"), NULL, },
{ NULL, 0, 0, 0, NULL, NULL, NULL },
};
setlocale(LC_ALL, "");
textdomain(GETTEXT_PACKAGE);
bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
context = g_option_context_new(_("- Validate XML documents "));
g_option_context_add_main_entries(context, entries, GETTEXT_PACKAGE);
if (!g_option_context_parse(context, &argc, &argv, &error)) {
g_printerr(_("Error while parsing commandline options: %s\n"),
error->message);
g_printerr("%s\n", g_option_context_get_help(context, FALSE, NULL));
return EXIT_FAILURE;
}
if (local)
locs++;
if (system)
locs++;
if (user)
locs++;
if (custom)
locs++;
if (locs > 1 || (locs && argc > 1)) {
g_printerr(_("Only one of --user, --local, --system, --dir or positional filenames can be used\n"));
return EXIT_FAILURE;
}
schema = osinfo_db_get_file(root,
user || custom,
local || user || custom,
system || local || user || custom,
custom,
"schema/osinfo.rng", &error);
if (!schema) {
g_printerr("%s\n", error->message);
return EXIT_FAILURE;
}
dir = osinfo_db_get_path(root, user, local, system, custom);
if (dir) {
files = g_new0(GFile *, 1);
files[nfiles++] = dir;
} else {
files = g_new0(GFile *, argc - 1);
for (i = 1; i < argc; i++) {
files[nfiles++] = g_file_new_for_commandline_arg(argv[i]);
}
}
if (!validate_files(schema, nfiles, files, &error)) {
g_printerr("%s\n", error->message);
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
/*
=pod
=head1 NAME
osinfo-db-validate - Validate libosinfo XML data files
=head1 SYNOPSIS
osinfo-db-validate [OPTIONS...]
osinfo-db-validate [OPTIONS...] LOCAL-PATH1 [LOCAL-PATH2...]
osinfo-db-validate [OPTIONS...] URI1 [URI2...]
=head1 DESCRIPTION
The B<osinfo-db-validate> tool is able to validate XML files
in one of the osinfo database locations for compliance with
the RNG schema.
=over 1
=item B<system>
This is the primary system-wide database location, intended
for use by operating system vendors distributing database
files in the native package format. The RNG schema is
expected to be present in this location.
=item B<local>
This is the secondary system-wide database location, intended
for use by system administrators wishing to provide an updated
database for all users. This location may provide an RNG schema
override, otherwise the RNG schema from the system location
will be used.
=item B<user>
This is the user private database location, intended for use
by unprivileged local users wishing to provide applications
they use with an updated database. This location may provide
an RNG schema override, otherwise the RNG schema from the
local location will be used, or failing that the system
location.
=back
If run by a privileged account (ie root), the B<local> database
location will be validate by default, otherwise the B<user> location
will be validated.
Alternatively it is possible to directly provide a list of files
to be validated using the (C<LOCAL-PATH1> or C<URI1>) arguments.
Any validation errors will be displayed on the console when
detected.
=head1 OPTIONS
=over 8
=item B<--user>
Override the default behaviour to force validating files from the
B<user> database location.
=item B<--local>
Override the default behaviour to force validating files from the
B<local> database location.
=item B<--system>
Override the default behaviour to force validating files from the
B<system> database location.
=item B<--dir=PATH>
Override the default behaviour to force validating files from the
custom directory B<PATH>.
=item B<--root=PATH>
Prefix the database location with the root directory given by
C<PATH>. This is useful when wishing to validate files that are
in a chroot environment or equivalent.
=item B<-v>, B<--verbose>
Display verbose progress information when validating files
=back
=head1 EXIT STATUS
The exit status will be 0 if all files passed validation,
or 1 if a validation error was hit.
=head1 SEE ALSO
C<osinfo-db-path(1)>
=head1 AUTHORS
Daniel P. Berrange <berrange@redhat.com>
=head1 COPYRIGHT
Copyright (C) 2012-2016 Red Hat, Inc.
=head1 LICENSE
C<osinfo-db-validate> is distributed under the terms of the GNU LGPL v2+
license. This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE
=cut
*/
/*
* Local variables:
* indent-tabs-mode: nil
* c-indent-level: 4
* c-basic-offset: 4
* End:
*/
|