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 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
|
/*
* Copyright (C) 2016 Red Hat, Inc
*
* osinfo-db-export: export a database archive
*
* 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 <locale.h>
#include <glib/gi18n.h>
#include <stdlib.h>
#include <archive.h>
#include <archive_entry.h>
#include "osinfo-db-util.h"
const char *argv0;
time_t entryts;
static int osinfo_db_export_create_file(const gchar *prefix,
GFile *file,
GFileInfo *info,
GFile *base,
const gchar *target,
struct archive *arc,
gboolean verbose);
static int osinfo_db_export_create_reg(GFile *file,
const gchar *abspath,
const gchar *target,
struct archive *arc)
{
g_autoptr(GFileInputStream) is = NULL;
g_autoptr(GError) err = NULL;
g_autofree gchar *buf = NULL;
gsize size;
gsize rv;
is = g_file_read(file, NULL, &err);
if (!is) {
g_printerr("%s: cannot read file %s: %s\n",
argv0, abspath, err->message);
return -1;
}
size = 64 * 1024;
buf = g_new0(char, size);
while (1) {
rv = g_input_stream_read(G_INPUT_STREAM(is),
buf,
size,
NULL,
&err);
if (rv == -1) {
g_printerr("%s: cannot read data %s: %s\n",
argv0, abspath, err->message);
return -1;
}
if (rv == 0)
break;
if (archive_write_data(arc, buf, rv) < 0) {
g_printerr("%s: cannot write archive data for %s to %s: %s\n",
argv0, abspath, target, archive_error_string(arc));
return -1;
}
}
return 0;
}
static int osinfo_db_export_create_dir(const gchar *prefix,
GFile *file,
GFile *base,
const gchar *abspath,
const gchar *target,
struct archive *arc,
gboolean verbose)
{
g_autoptr(GFileEnumerator) children = NULL;
g_autoptr(GError) err = NULL;
children = g_file_enumerate_children(file,
G_FILE_ATTRIBUTE_STANDARD_NAME
","
G_FILE_ATTRIBUTE_STANDARD_SIZE
","
G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP
","
G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN,
G_FILE_QUERY_INFO_NONE,
NULL,
&err);
if (!children) {
g_printerr("%s: cannot read directory %s: %s\n",
argv0, abspath, err->message);
return -1;
}
while (1) {
g_autoptr(GFileInfo) childinfo = NULL;
g_autoptr(GFile) child = NULL;
int export_create_ret;
childinfo = g_file_enumerator_next_file(children, NULL, &err);
if (!childinfo) {
if (err) {
g_printerr("%s: cannot read directory entry %s: %s\n",
argv0, abspath, err->message);
return -1;
} else {
break;
}
}
child = g_file_enumerator_get_child(children, childinfo);
export_create_ret = osinfo_db_export_create_file(prefix, child, childinfo, base, target, arc, verbose);
if (export_create_ret < 0)
return -1;
}
return 0;
}
static int osinfo_db_export_create_file(const gchar *prefix,
GFile *file,
GFileInfo *arginfo,
GFile *base,
const gchar *target,
struct archive *arc,
gboolean verbose)
{
GFileType type = g_file_query_file_type(file,
G_FILE_QUERY_INFO_NONE,
NULL);
gint ret = 0;
g_autoptr(GError) err = NULL;
g_autoptr(GFileInfo) info = NULL;
g_autofree gchar *abspath = NULL;
g_autofree gchar *relpath = NULL;
g_autofree gchar *entpath = NULL;
struct archive_entry *entry = NULL;
gboolean has_attribute;
abspath = g_file_get_path(file);
relpath = g_file_get_relative_path(base, file);
if (!arginfo) {
info = g_file_query_info(file,
G_FILE_ATTRIBUTE_STANDARD_NAME
","
G_FILE_ATTRIBUTE_STANDARD_SIZE
","
G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP
","
G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN,
G_FILE_QUERY_INFO_NONE,
NULL,
&err);
} else {
info = g_object_ref(arginfo);
}
if (!info) {
g_printerr("%s: cannot get file info %s: %s\n",
argv0, abspath, err->message);
return -1;
}
entpath = g_strdup_printf("%s/%s", prefix, relpath ? relpath : "");
entry = archive_entry_new();
archive_entry_set_pathname(entry, entpath);
archive_entry_set_atime(entry, entryts, 0);
archive_entry_set_ctime(entry, entryts, 0);
archive_entry_set_mtime(entry, entryts, 0);
archive_entry_set_birthtime(entry, entryts, 0);
switch (type) {
case G_FILE_TYPE_REGULAR:
case G_FILE_TYPE_SYMBOLIC_LINK:
has_attribute = g_file_info_has_attribute(info, G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP);
if (has_attribute && g_file_info_get_is_backup(info)) {
g_printerr("%s: Ignoring backup file %s\n", argv0, relpath);
goto cleanup;
}
has_attribute = g_file_info_has_attribute(info, G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN);
if (has_attribute && g_file_info_get_is_hidden(info)) {
g_printerr("%s: Ignoring hidden file %s\n", argv0, relpath);
goto cleanup;
}
if (!g_str_has_suffix(entpath, ".rng") &&
!g_str_has_suffix(entpath, ".xml") &&
!g_str_has_suffix(entpath, ".ids")) {
goto cleanup;
}
if (verbose) {
g_print("%s: r %s\n", argv0, entpath);
}
archive_entry_set_filetype(entry, AE_IFREG);
archive_entry_set_perm(entry, 0644);
archive_entry_set_size(entry, g_file_info_get_size(info));
break;
case G_FILE_TYPE_DIRECTORY:
if (verbose) {
g_print("%s: d %s\n", argv0, entpath);
}
archive_entry_set_filetype(entry, AE_IFDIR);
archive_entry_set_perm(entry, 0755);
archive_entry_set_size(entry, 0);
break;
case G_FILE_TYPE_SPECIAL:
g_printerr("%s: cannot archive special file type %s\n",
argv0, abspath);
ret = -1;
goto cleanup;
case G_FILE_TYPE_SHORTCUT:
g_printerr("%s: cannot archive shortcut file type %s\n",
argv0, abspath);
ret = -1;
goto cleanup;
case G_FILE_TYPE_MOUNTABLE:
g_printerr("%s: cannot archive mount file type %s\n",
argv0, abspath);
ret = -1;
goto cleanup;
case G_FILE_TYPE_UNKNOWN:
default:
g_printerr("%s: cannot archive unknown file type %s\n",
argv0, abspath);
ret = -1;
goto cleanup;
}
if (archive_write_header(arc, entry) != ARCHIVE_OK) {
g_printerr("%s: cannot write archive header %s: %s\n",
argv0, target, archive_error_string(arc));
ret = -1;
goto cleanup;
}
switch (type) {
case G_FILE_TYPE_REGULAR:
case G_FILE_TYPE_SYMBOLIC_LINK:
if (osinfo_db_export_create_reg(file, abspath, target, arc) < 0) {
ret = -1;
goto cleanup;
}
break;
case G_FILE_TYPE_DIRECTORY:
if (osinfo_db_export_create_dir(prefix, file, base, abspath, target, arc, verbose) < 0) {
ret = -1;
goto cleanup;
}
break;
default:
g_assert_not_reached();
}
cleanup:
archive_entry_free(entry);
return ret;
}
static int osinfo_db_export_create_version(const gchar *prefix,
const gchar *version,
const gchar *target,
struct archive *arc,
gboolean verbose)
{
int ret = -1;
struct archive_entry *entry = NULL;
g_autofree gchar *entpath = NULL;
entpath = g_strdup_printf("%s/VERSION", prefix);
entry = archive_entry_new();
archive_entry_set_pathname(entry, entpath);
archive_entry_set_atime(entry, entryts, 0);
archive_entry_set_ctime(entry, entryts, 0);
archive_entry_set_mtime(entry, entryts, 0);
archive_entry_set_birthtime(entry, entryts, 0);
if (verbose) {
g_print("%s: r %s\n", argv0, entpath);
}
archive_entry_set_filetype(entry, AE_IFREG);
archive_entry_set_perm(entry, 0644);
archive_entry_set_size(entry, strlen(version));
if (archive_write_header(arc, entry) != ARCHIVE_OK) {
g_printerr("%s: cannot write archive header %s: %s\n",
argv0, target, archive_error_string(arc));
goto cleanup;
}
if (archive_write_data(arc, version, strlen(version)) < 0) {
g_printerr("%s: cannot write archive data for %s to %s: %s\n",
argv0, entpath, target, archive_error_string(arc));
goto cleanup;
}
ret = 0;
cleanup:
archive_entry_free(entry);
return ret;
}
static int osinfo_db_export_create_license(const gchar *prefix,
const gchar *license,
const gchar *target,
struct archive *arc,
gboolean verbose)
{
int ret = -1;
struct archive_entry *entry = NULL;
g_autofree gchar *entpath = NULL;
g_autoptr(GFile) file = NULL;
g_autoptr(GFileInfo) info = NULL;
g_autoptr(GError) err = NULL;
file = g_file_new_for_path(license);
info = g_file_query_info(file,
G_FILE_ATTRIBUTE_STANDARD_NAME
","
G_FILE_ATTRIBUTE_STANDARD_SIZE,
G_FILE_QUERY_INFO_NONE,
NULL,
&err);
if (!info) {
g_printerr("%s: cannot get file info %s: %s\n",
argv0, license, err->message);
goto cleanup;
}
entpath = g_strdup_printf("%s/LICENSE", prefix);
entry = archive_entry_new();
archive_entry_set_pathname(entry, entpath);
archive_entry_set_atime(entry, entryts, 0);
archive_entry_set_ctime(entry, entryts, 0);
archive_entry_set_mtime(entry, entryts, 0);
archive_entry_set_birthtime(entry, entryts, 0);
if (verbose) {
g_print("%s: r %s\n", argv0, entpath);
}
archive_entry_set_filetype(entry, AE_IFREG);
archive_entry_set_perm(entry, 0644);
archive_entry_set_size(entry, g_file_info_get_size(info));
if (archive_write_header(arc, entry) != ARCHIVE_OK) {
g_printerr("%s: cannot write archive header %s: %s\n",
argv0, target, archive_error_string(arc));
goto cleanup;
}
if (osinfo_db_export_create_reg(file, license, target, arc) < 0)
goto cleanup;
ret = 0;
cleanup:
archive_entry_free(entry);
return ret;
}
static int osinfo_db_export_create(const gchar *prefix,
const gchar *version,
GFile *source,
const gchar *target,
const gchar *license,
gboolean verbose)
{
struct archive *arc;
int ret = -1;
int r;
arc = archive_write_new();
archive_write_add_filter_xz(arc);
archive_write_set_format_pax(arc);
if (target != NULL && g_str_equal(target, "-"))
target = NULL;
if ((r = archive_write_open_filename(arc, target)) != ARCHIVE_OK) {
g_printerr("%s: cannot open archive %s: %s\n",
argv0, target, archive_error_string(arc));
goto cleanup;
}
if (osinfo_db_export_create_file(prefix, source, NULL, source, target, arc, verbose) < 0) {
goto cleanup;
}
if (osinfo_db_export_create_version(prefix, version, target, arc, verbose) < 0) {
goto cleanup;
}
if (license != NULL &&
osinfo_db_export_create_license(prefix, license, target, arc, verbose) < 0) {
goto cleanup;
}
if (archive_write_close(arc) != ARCHIVE_OK) {
g_printerr("%s: cannot finish writing archive %s: %s\n",
argv0, target, archive_error_string(arc));
goto cleanup;
}
ret = 0;
cleanup:
archive_write_free(arc);
return ret;
}
static gchar *osinfo_db_version(void)
{
g_autoptr(GTimeZone) tz = g_time_zone_new_utc();
g_autoptr(GDateTime) now = g_date_time_new_now(tz);
gchar *ret;
ret = g_strdup_printf("%04d%02d%02d",
g_date_time_get_year(now),
g_date_time_get_month(now),
g_date_time_get_day_of_month(now));
return ret;
}
gint main(gint argc, gchar **argv)
{
g_autoptr(GOptionContext) context = NULL;
g_autoptr(GError) error = NULL;
g_autoptr(GFile) dir = NULL;
gboolean verbose = FALSE;
gboolean user = FALSE;
gboolean local = FALSE;
gboolean system = FALSE;
g_autofree gchar *archive = NULL;
g_autofree gchar *prefix = NULL;
g_autofree gchar *root = g_strdup("");
g_autofree gchar *custom = NULL;
g_autofree gchar *version = NULL;
g_autofree gchar *license = 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_("Export the osinfo-db user directory"), NULL, },
{ "local", 0, 0, G_OPTION_ARG_NONE, (void *)&local,
N_("Export the osinfo-db local directory"), NULL, },
{ "system", 0, 0, G_OPTION_ARG_NONE, (void *)&system,
N_("Export the osinfo-db system directory"), NULL, },
{ "dir", 0, 0, G_OPTION_ARG_STRING, (void *)&custom,
N_("Export an osinfo-db custom directory"), NULL, },
{ "version", 0, 0, G_OPTION_ARG_STRING, (void *)&version,
N_("Set version number of archive"), NULL, },
{ "root", 0, 0, G_OPTION_ARG_STRING, &root,
N_("Export the osinfo-db root directory"), NULL, },
{ "license", 0, 0, G_OPTION_ARG_STRING, &license,
N_("License file"), NULL, },
{ NULL, 0, 0, 0, NULL, NULL, NULL },
};
argv0 = argv[0];
setlocale(LC_ALL, "");
textdomain(GETTEXT_PACKAGE);
bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
context = g_option_context_new(_("- Export database archive "));
g_option_context_add_main_entries(context, entries, GETTEXT_PACKAGE);
if (!g_option_context_parse(context, &argc, &argv, &error)) {
g_printerr(_("%s: error while parsing commandline options: %s\n\n"),
argv0, error->message);
g_printerr("%s\n", g_option_context_get_help(context, FALSE, NULL));
return EXIT_FAILURE;
}
if (argc > 2) {
g_printerr(_("%s: expected path to one archive file to export\n"),
argv0);
return EXIT_FAILURE;
}
if (local)
locs++;
if (system)
locs++;
if (user)
locs++;
if (custom)
locs++;
if (locs > 1) {
g_printerr(_("Only one of --user, --local, --system & --dir can be used\n"));
return EXIT_FAILURE;
}
entryts = time(NULL);
if (version == NULL) {
version = osinfo_db_version();
}
prefix = g_strdup_printf("osinfo-db-%s", version);
if (argc == 2) {
archive = g_strdup(argv[1]);
} else {
archive = g_strdup_printf("%s.tar.xz", prefix);
}
dir = osinfo_db_get_path(root, user, local, system, custom);
if (osinfo_db_export_create(prefix, version, dir, archive,
license, verbose) < 0)
return EXIT_FAILURE;
return EXIT_SUCCESS;
}
/*
=pod
=head1 NAME
osinfo-db-export - Export to a osinfo database archive
=head1 SYNOPSIS
osinfo-db-export [OPTIONS...] [ARCHIVE-FILE]
=head1 DESCRIPTION
The B<osinfo-db-export> tool will create an osinfo database
archive file containing the content from one of the standard
local database locations:
=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.
=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.
=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.
=back
If run by a privileged account (ie root), the B<local> database
location will be used by default, otherwise the B<user> location
will be used.
If no B<ARCHIVE-FILE> path is given, an automatically generated
filename will be used, taking the format B<osinfo-db-$VERSION.tar.xz>.
=head1 OPTIONS
=over 8
=item B<--user>
Override the default behaviour to force archiving files from the
B<user> database location.
=item B<--local>
Override the default behaviour to force archiving files from the
B<local> database location.
=item B<--system>
Override the default behaviour to force archiving files from the
B<system> database location.
=item B<--dir=PATH>
Override the default behaviour to force archiving 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 archive files that are
in a chroot environment or equivalent.
=item B<--version=VERSION>
Set the version string for the files in the archive to
B<VERSION>. If this argument is not given, the version
will be set to the current date in the format B<YYYYMMDD>.
=item B<--license=LICENSE-FILE>
Add C<LICENSE-FILE> to the generated archive as an entry
named "LICENSE".
=item B<-v>, B<--verbose>
Display verbose progress information when archiving files
=back
=head1 EXIT STATUS
The exit status will be 0 if all files were packed
successfully, or 1 if at least one file could not be
packed into the archive.
=head1 SEE ALSO
C<osinfo-db-import(1)>, C<osinfo-db-path(1)>
=head1 AUTHORS
Daniel P. Berrange <berrange@redhat.com>
=head1 COPYRIGHT
Copyright (C) 2016 Red Hat, Inc.
=head1 LICENSE
C<osinfo-db-export> 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:
*/
|