2009-02-07 12:27:24 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2008-2009 Juan Romero Pardines.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
2009-02-16 21:18:40 +00:00
|
|
|
#include <sys/stat.h>
|
2009-02-07 12:27:24 +00:00
|
|
|
|
|
|
|
#include <xbps_api.h>
|
|
|
|
|
2009-02-16 23:08:03 +00:00
|
|
|
static int unpack_archive_init(prop_dictionary_t, const char *,
|
|
|
|
const char *, int);
|
|
|
|
static int unpack_archive_fini(struct archive *, const char *, int,
|
2009-02-07 12:27:24 +00:00
|
|
|
prop_dictionary_t);
|
|
|
|
|
|
|
|
int
|
|
|
|
xbps_unpack_binary_pkg(prop_dictionary_t repo, prop_dictionary_t pkg,
|
2009-02-16 23:08:03 +00:00
|
|
|
const char *destdir, int flags)
|
2009-02-07 12:27:24 +00:00
|
|
|
{
|
2009-02-15 23:39:41 +00:00
|
|
|
prop_string_t filename, repoloc, arch;
|
2009-02-26 04:41:49 +00:00
|
|
|
const char *sha256;
|
2009-02-15 23:39:41 +00:00
|
|
|
char *binfile, *path;
|
2009-02-07 12:27:24 +00:00
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
/* Append filename to the full path for binary pkg */
|
|
|
|
filename = prop_dictionary_get(pkg, "filename");
|
2009-02-15 23:39:41 +00:00
|
|
|
arch = prop_dictionary_get(pkg, "architecture");
|
2009-02-26 04:41:49 +00:00
|
|
|
prop_dictionary_get_cstring_nocopy(pkg, "filename-sha256", &sha256);
|
2009-02-07 12:27:24 +00:00
|
|
|
if (repo)
|
|
|
|
repoloc = prop_dictionary_get(repo, "location-local");
|
|
|
|
else
|
2009-02-09 15:39:55 +00:00
|
|
|
repoloc = prop_dictionary_get(pkg, "repository");
|
2009-02-07 12:27:24 +00:00
|
|
|
|
2009-02-15 23:39:41 +00:00
|
|
|
path = xbps_append_full_path(false,
|
2009-02-07 12:27:24 +00:00
|
|
|
prop_string_cstring_nocopy(repoloc),
|
2009-02-15 23:39:41 +00:00
|
|
|
prop_string_cstring_nocopy(arch));
|
|
|
|
if (path == NULL)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
binfile = xbps_append_full_path(false, path,
|
2009-02-07 12:27:24 +00:00
|
|
|
prop_string_cstring_nocopy(filename));
|
2009-02-15 23:39:41 +00:00
|
|
|
if (binfile == NULL) {
|
|
|
|
free(path);
|
2009-02-07 12:27:24 +00:00
|
|
|
return EINVAL;
|
2009-02-15 23:39:41 +00:00
|
|
|
}
|
|
|
|
free(path);
|
2009-02-07 12:27:24 +00:00
|
|
|
|
2009-02-26 04:41:49 +00:00
|
|
|
if ((rv = xbps_check_file_hash(binfile, sha256)) == ERANGE) {
|
2009-02-26 13:37:01 +00:00
|
|
|
printf("ERROR: SHA256 doesn't match for %s!\n",
|
2009-02-26 04:41:49 +00:00
|
|
|
prop_string_cstring_nocopy(filename));
|
|
|
|
free(binfile);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2009-02-16 23:08:03 +00:00
|
|
|
rv = unpack_archive_init(pkg, destdir, binfile, flags);
|
2009-02-07 12:27:24 +00:00
|
|
|
free(binfile);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
unpack_archive_init(prop_dictionary_t pkg, const char *destdir,
|
2009-02-16 23:08:03 +00:00
|
|
|
const char *binfile, int flags)
|
2009-02-07 12:27:24 +00:00
|
|
|
{
|
|
|
|
struct archive *ar;
|
|
|
|
int pkg_fd, rv;
|
|
|
|
|
|
|
|
assert(pkg != NULL);
|
|
|
|
assert(binfile != NULL);
|
|
|
|
|
|
|
|
if ((pkg_fd = open(binfile, O_RDONLY)) == -1)
|
|
|
|
return errno;
|
|
|
|
|
|
|
|
ar = archive_read_new();
|
|
|
|
if (ar == NULL) {
|
|
|
|
(void)close(pkg_fd);
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable support for all format and compression methods */
|
|
|
|
archive_read_support_compression_all(ar);
|
|
|
|
archive_read_support_format_all(ar);
|
|
|
|
|
|
|
|
/* 2048 is arbitrary... dunno what value is better. */
|
|
|
|
if ((rv = archive_read_open_fd(ar, pkg_fd, 2048)) != 0) {
|
|
|
|
archive_read_finish(ar);
|
|
|
|
(void)close(pkg_fd);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2009-02-16 23:08:03 +00:00
|
|
|
rv = unpack_archive_fini(ar, destdir, flags, pkg);
|
2009-02-07 12:27:24 +00:00
|
|
|
/*
|
|
|
|
* If installation of package was successful, make sure the package
|
|
|
|
* is really on storage (if possible).
|
|
|
|
*/
|
|
|
|
if (rv == 0)
|
|
|
|
if ((rv = fdatasync(pkg_fd)) == -1)
|
|
|
|
rv = errno;
|
|
|
|
|
|
|
|
archive_read_finish(ar);
|
|
|
|
(void)close(pkg_fd);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Flags for extracting files in binary packages.
|
|
|
|
*/
|
2009-02-07 17:05:40 +00:00
|
|
|
#define EXTRACT_FLAGS ARCHIVE_EXTRACT_SECURE_NODOTDOT | \
|
2009-02-07 12:27:24 +00:00
|
|
|
ARCHIVE_EXTRACT_SECURE_SYMLINKS | \
|
2009-02-16 20:42:03 +00:00
|
|
|
ARCHIVE_EXTRACT_UNLINK | ARCHIVE_EXTRACT_NO_OVERWRITE
|
2009-02-07 17:05:40 +00:00
|
|
|
#define FEXTRACT_FLAGS ARCHIVE_EXTRACT_OWNER | ARCHIVE_EXTRACT_PERM | \
|
|
|
|
ARCHIVE_EXTRACT_TIME | EXTRACT_FLAGS
|
2009-02-07 12:27:24 +00:00
|
|
|
|
2009-02-07 12:33:20 +00:00
|
|
|
/*
|
2009-02-07 12:27:24 +00:00
|
|
|
* TODO: remove printfs and return appropiate errors to be interpreted by
|
|
|
|
* the consumer.
|
|
|
|
*/
|
|
|
|
static int
|
2009-02-16 23:08:03 +00:00
|
|
|
unpack_archive_fini(struct archive *ar, const char *destdir, int flags,
|
2009-02-07 12:27:24 +00:00
|
|
|
prop_dictionary_t pkg)
|
|
|
|
{
|
|
|
|
struct archive_entry *entry;
|
2009-02-16 21:18:40 +00:00
|
|
|
struct stat st;
|
2009-02-07 12:27:24 +00:00
|
|
|
size_t len;
|
2009-02-26 17:01:18 +00:00
|
|
|
const char *prepost = "./INSTALL";
|
2009-02-07 12:27:24 +00:00
|
|
|
const char *pkgname, *version;
|
2009-02-16 21:18:40 +00:00
|
|
|
char *buf, *path;
|
2009-02-16 23:08:03 +00:00
|
|
|
int rv = 0, lflags = 0;
|
2009-02-07 12:27:24 +00:00
|
|
|
bool actgt = false;
|
|
|
|
|
|
|
|
assert(ar != NULL);
|
|
|
|
assert(pkg != NULL);
|
|
|
|
|
|
|
|
prop_dictionary_get_cstring_nocopy(pkg, "pkgname", &pkgname);
|
|
|
|
prop_dictionary_get_cstring_nocopy(pkg, "version", &version);
|
|
|
|
|
2009-02-07 17:05:40 +00:00
|
|
|
if (getuid() == 0)
|
2009-02-16 23:08:03 +00:00
|
|
|
lflags = FEXTRACT_FLAGS;
|
2009-02-07 17:05:40 +00:00
|
|
|
else
|
2009-02-16 23:08:03 +00:00
|
|
|
lflags = EXTRACT_FLAGS;
|
2009-02-07 17:05:40 +00:00
|
|
|
|
2009-02-07 12:27:24 +00:00
|
|
|
/*
|
2009-02-26 17:01:18 +00:00
|
|
|
* This length is '.%s/metadata/%s/INSTALL' + NULL.
|
2009-02-07 12:27:24 +00:00
|
|
|
*/
|
2009-02-26 17:01:18 +00:00
|
|
|
len = strlen(XBPS_META_PATH) + strlen(pkgname) + 20;
|
|
|
|
buf = malloc(len);
|
2009-02-07 12:27:24 +00:00
|
|
|
if (buf == NULL)
|
|
|
|
return ENOMEM;
|
|
|
|
|
2009-02-26 17:01:18 +00:00
|
|
|
if (snprintf(buf, len, ".%s/metadata/%s/INSTALL",
|
2009-02-07 12:27:24 +00:00
|
|
|
XBPS_META_PATH, pkgname) < 0) {
|
|
|
|
free(buf);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (archive_read_next_header(ar, &entry) == ARCHIVE_OK) {
|
2009-02-16 21:18:40 +00:00
|
|
|
/*
|
|
|
|
* Check that entry doesn't already exist.
|
|
|
|
*/
|
|
|
|
path = xbps_append_full_path(false, destdir,
|
|
|
|
archive_entry_pathname(entry));
|
|
|
|
if (path == NULL) {
|
|
|
|
rv = ENOMEM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = stat(path, &st);
|
|
|
|
if (rv == 0) {
|
|
|
|
free(path);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
free(path);
|
|
|
|
|
2009-02-07 12:27:24 +00:00
|
|
|
/*
|
|
|
|
* Run the pre installation action target if there's a script
|
|
|
|
* before writing data to disk.
|
|
|
|
*/
|
|
|
|
if (strcmp(prepost, archive_entry_pathname(entry)) == 0) {
|
|
|
|
actgt = true;
|
2009-02-16 22:00:50 +00:00
|
|
|
printf("\n");
|
2009-02-17 18:41:21 +00:00
|
|
|
(void)fflush(stdout);
|
2009-02-07 12:27:24 +00:00
|
|
|
|
|
|
|
archive_entry_set_pathname(entry, buf);
|
|
|
|
|
2009-02-16 23:08:03 +00:00
|
|
|
rv = archive_read_extract(ar, entry, lflags);
|
2009-02-18 02:15:37 +00:00
|
|
|
if (rv != 0 && errno != EEXIST)
|
2009-02-07 12:27:24 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
if ((rv = xbps_file_exec(buf, destdir, "pre",
|
|
|
|
pkgname, version, NULL)) != 0) {
|
|
|
|
printf("%s: preinst action target error %s\n",
|
|
|
|
pkgname, strerror(errno));
|
|
|
|
(void)fflush(stdout);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pass to the next entry if successful */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Extract all data from the archive now.
|
|
|
|
*/
|
2009-02-16 23:08:03 +00:00
|
|
|
rv = archive_read_extract(ar, entry, lflags);
|
2009-02-18 02:15:37 +00:00
|
|
|
if (rv != 0 && errno != EEXIST) {
|
2009-02-17 18:41:21 +00:00
|
|
|
printf("ERROR: couldn't unpack %s (%s), exiting!\n",
|
2009-02-07 12:27:24 +00:00
|
|
|
archive_entry_pathname(entry), strerror(errno));
|
|
|
|
(void)fflush(stdout);
|
|
|
|
break;
|
2009-02-18 02:15:37 +00:00
|
|
|
} else if (rv != 0 && errno == EEXIST) {
|
2009-02-16 23:08:03 +00:00
|
|
|
if (flags & XBPS_UNPACK_VERBOSE) {
|
2009-02-17 18:41:21 +00:00
|
|
|
printf("WARNING: ignoring existent path: %s.\n",
|
2009-02-16 23:08:03 +00:00
|
|
|
archive_entry_pathname(entry));
|
|
|
|
(void)fflush(stdout);
|
|
|
|
}
|
2009-02-16 21:18:40 +00:00
|
|
|
continue;
|
2009-02-07 12:27:24 +00:00
|
|
|
}
|
2009-02-16 23:08:03 +00:00
|
|
|
|
|
|
|
if (flags & XBPS_UNPACK_VERBOSE) {
|
|
|
|
printf(" %s\n", archive_entry_pathname(entry));
|
|
|
|
(void)fflush(stdout);
|
|
|
|
}
|
2009-02-07 12:27:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rv == 0 && actgt) {
|
|
|
|
/*
|
|
|
|
* Run the post installaction action target, if package
|
|
|
|
* contains the script.
|
|
|
|
*/
|
|
|
|
if ((rv = xbps_file_exec(buf, destdir, "post",
|
|
|
|
pkgname, version, NULL)) != 0) {
|
|
|
|
printf("%s: postinst action target error %s\n",
|
|
|
|
pkgname, strerror(errno));
|
|
|
|
(void)fflush(stdout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|