2009-11-28 10:13:21 +05:30
|
|
|
/*-
|
2010-11-08 07:44:41 +05:30
|
|
|
* Copyright (c) 2009-2010 Juan Romero Pardines.
|
2009-11-28 10:13:21 +05:30
|
|
|
* 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 <fcntl.h>
|
|
|
|
|
|
|
|
#include <xbps_api.h>
|
2010-11-13 07:48:58 +05:30
|
|
|
#include "xbps_api_impl.h"
|
2009-11-28 10:13:21 +05:30
|
|
|
|
2010-11-19 18:10:13 +05:30
|
|
|
/*
|
|
|
|
* Returns 1 if entry is a configuration file, 0 if don't or -1 on error.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
entry_is_conf_file(prop_dictionary_t propsd, struct archive_entry *entry)
|
|
|
|
{
|
|
|
|
prop_object_t obj;
|
|
|
|
prop_object_iterator_t iter;
|
2011-01-16 21:25:01 +05:30
|
|
|
char *cffile;
|
2010-11-19 18:10:13 +05:30
|
|
|
int rv = 0;
|
|
|
|
|
|
|
|
iter = xbps_get_array_iter_from_dict(propsd, "conf_files");
|
|
|
|
if (iter == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
while ((obj = prop_object_iterator_next(iter))) {
|
|
|
|
cffile = xbps_xasprintf(".%s",
|
|
|
|
prop_string_cstring_nocopy(obj));
|
|
|
|
if (cffile == NULL) {
|
|
|
|
rv = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2011-01-16 21:25:01 +05:30
|
|
|
if (strcmp(cffile, archive_entry_pathname(entry)) == 0) {
|
2010-11-19 18:10:13 +05:30
|
|
|
rv = 1;
|
|
|
|
free(cffile);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
free(cffile);
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
prop_object_iterator_release(iter);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
int HIDDEN
|
2010-11-19 18:10:13 +05:30
|
|
|
xbps_config_file_from_archive_entry(prop_dictionary_t filesd,
|
|
|
|
prop_dictionary_t propsd,
|
2009-11-28 10:13:21 +05:30
|
|
|
struct archive_entry *entry,
|
|
|
|
int *flags,
|
|
|
|
bool *skip)
|
|
|
|
{
|
|
|
|
prop_dictionary_t forigd;
|
|
|
|
prop_object_t obj, obj2;
|
|
|
|
prop_object_iterator_t iter, iter2;
|
2010-11-19 18:10:13 +05:30
|
|
|
const char *pkgname, *cffile, *sha256_new = NULL;
|
2009-11-28 10:13:21 +05:30
|
|
|
char *buf, *sha256_cur = NULL, *sha256_orig = NULL;
|
|
|
|
int rv = 0;
|
|
|
|
bool install_new = false;
|
|
|
|
|
2010-11-19 18:10:13 +05:30
|
|
|
/*
|
|
|
|
* Check that current entry is really a configuration file.
|
|
|
|
*/
|
|
|
|
rv = entry_is_conf_file(propsd, entry);
|
|
|
|
if (rv == -1 || rv == 0)
|
|
|
|
return rv;
|
2009-11-28 10:13:21 +05:30
|
|
|
|
2010-11-19 18:10:13 +05:30
|
|
|
rv = 0;
|
|
|
|
iter = xbps_get_array_iter_from_dict(filesd, "conf_files");
|
2009-11-28 10:13:21 +05:30
|
|
|
if (iter == NULL)
|
2010-11-19 18:10:13 +05:30
|
|
|
return EINVAL;
|
2009-11-28 10:13:21 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Get original hash for the file from current
|
|
|
|
* installed package.
|
|
|
|
*/
|
2010-11-19 18:10:13 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(propsd, "pkgname", &pkgname);
|
2011-01-16 21:25:01 +05:30
|
|
|
|
|
|
|
xbps_dbg_printf("%s: processing conf_file %s\n",
|
|
|
|
pkgname, archive_entry_pathname(entry));
|
|
|
|
|
2010-11-08 07:44:41 +05:30
|
|
|
forigd = xbps_get_pkg_dict_from_metadata_plist(pkgname, XBPS_PKGFILES);
|
2009-11-28 10:13:21 +05:30
|
|
|
if (forigd == NULL) {
|
2011-01-16 21:25:01 +05:30
|
|
|
xbps_dbg_printf("%s: conf_file %s not currently installed\n",
|
|
|
|
pkgname, archive_entry_pathname(entry));
|
2009-11-28 10:13:21 +05:30
|
|
|
install_new = true;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
iter2 = xbps_get_array_iter_from_dict(forigd, "conf_files");
|
|
|
|
if (iter2 != NULL) {
|
|
|
|
while ((obj2 = prop_object_iterator_next(iter2))) {
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj2,
|
|
|
|
"file", &cffile);
|
2009-11-28 10:13:21 +05:30
|
|
|
buf = xbps_xasprintf(".%s", cffile);
|
|
|
|
if (buf == NULL) {
|
|
|
|
prop_object_iterator_release(iter2);
|
2010-11-19 18:10:13 +05:30
|
|
|
rv = ENOMEM;
|
2009-11-28 10:13:21 +05:30
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (strcmp(archive_entry_pathname(entry), buf) == 0) {
|
|
|
|
prop_dictionary_get_cstring(obj2, "sha256",
|
|
|
|
&sha256_orig);
|
|
|
|
free(buf);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
free(buf);
|
|
|
|
buf = NULL;
|
|
|
|
}
|
|
|
|
prop_object_iterator_release(iter2);
|
|
|
|
}
|
|
|
|
prop_object_release(forigd);
|
|
|
|
/*
|
|
|
|
* First case: original hash not found, install new file.
|
|
|
|
*/
|
|
|
|
if (sha256_orig == NULL) {
|
|
|
|
install_new = true;
|
2011-01-16 21:25:01 +05:30
|
|
|
xbps_dbg_printf("%s: conf_file %s unknown orig sha256\n",
|
|
|
|
pkgname, archive_entry_pathname(entry));
|
2009-11-28 10:13:21 +05:30
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compare original, installed and new hash for current file.
|
|
|
|
*/
|
|
|
|
while ((obj = prop_object_iterator_next(iter))) {
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "file", &cffile);
|
2009-11-28 10:13:21 +05:30
|
|
|
buf = xbps_xasprintf(".%s", cffile);
|
|
|
|
if (buf == NULL) {
|
|
|
|
prop_object_iterator_release(iter);
|
2010-11-19 18:10:13 +05:30
|
|
|
return ENOMEM;
|
2009-11-28 10:13:21 +05:30
|
|
|
}
|
|
|
|
if (strcmp(archive_entry_pathname(entry), buf)) {
|
|
|
|
free(buf);
|
|
|
|
buf = NULL;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
sha256_cur = xbps_get_file_hash(buf);
|
|
|
|
free(buf);
|
2010-11-06 11:14:00 +05:30
|
|
|
prop_dictionary_get_cstring_nocopy(obj, "sha256", &sha256_new);
|
2009-11-28 10:13:21 +05:30
|
|
|
if (sha256_cur == NULL) {
|
|
|
|
if (errno == ENOENT) {
|
|
|
|
/*
|
|
|
|
* File not installed, install new one.
|
|
|
|
*/
|
|
|
|
install_new = true;
|
2011-01-16 21:25:01 +05:30
|
|
|
xbps_dbg_printf("%s: conf_file %s not "
|
|
|
|
"installed\n", pkgname,
|
|
|
|
archive_entry_pathname(entry));
|
2009-11-28 10:13:21 +05:30
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
rv = errno;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Orig = X, Curr = X, New = X
|
|
|
|
*
|
|
|
|
* Install new file.
|
|
|
|
*/
|
|
|
|
if ((strcmp(sha256_orig, sha256_cur) == 0) &&
|
|
|
|
(strcmp(sha256_orig, sha256_new) == 0) &&
|
|
|
|
(strcmp(sha256_cur, sha256_new) == 0)) {
|
|
|
|
install_new = true;
|
2011-01-16 21:25:01 +05:30
|
|
|
xbps_dbg_printf("%s: conf_file %s orig = X,"
|
|
|
|
"cur = X, new = X\n", pkgname,
|
|
|
|
archive_entry_pathname(entry));
|
2009-11-28 10:13:21 +05:30
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* Orig = X, Curr = X, New = Y
|
|
|
|
*
|
|
|
|
* Install new file.
|
|
|
|
*/
|
|
|
|
} else if ((strcmp(sha256_orig, sha256_cur) == 0) &&
|
|
|
|
(strcmp(sha256_orig, sha256_new)) &&
|
|
|
|
(strcmp(sha256_cur, sha256_new))) {
|
|
|
|
printf("Updating %s file with new version.\n",
|
|
|
|
cffile);
|
|
|
|
install_new = true;
|
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* Orig = X, Curr = Y, New = X
|
|
|
|
*
|
|
|
|
* Keep current file as is.
|
|
|
|
*/
|
|
|
|
} else if ((strcmp(sha256_orig, sha256_new) == 0) &&
|
|
|
|
(strcmp(sha256_cur, sha256_new)) &&
|
|
|
|
(strcmp(sha256_orig, sha256_cur))) {
|
|
|
|
printf("Keeping modified file %s.\n", cffile);
|
|
|
|
*skip = true;
|
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* Orig = X, Curr = Y, New = Y
|
|
|
|
*
|
|
|
|
* Install new file.
|
|
|
|
*/
|
|
|
|
} else if ((strcmp(sha256_cur, sha256_new) == 0) &&
|
|
|
|
(strcmp(sha256_orig, sha256_new)) &&
|
|
|
|
(strcmp(sha256_orig, sha256_cur))) {
|
|
|
|
install_new = true;
|
2011-01-16 21:25:01 +05:30
|
|
|
xbps_dbg_printf("%s: conf_file %s orig = X,"
|
|
|
|
"cur = Y, new = Y\n", pkgname,
|
|
|
|
archive_entry_pathname(entry));
|
2009-11-28 10:13:21 +05:30
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* Orig = X, Curr = Y, New = Z
|
|
|
|
*
|
|
|
|
* Install new file as file.new.
|
|
|
|
*/
|
|
|
|
} else if ((strcmp(sha256_orig, sha256_cur)) &&
|
|
|
|
(strcmp(sha256_cur, sha256_new)) &&
|
|
|
|
(strcmp(sha256_orig, sha256_new))) {
|
|
|
|
buf = xbps_xasprintf(".%s.new", cffile);
|
|
|
|
if (buf == NULL) {
|
2010-11-19 18:10:13 +05:30
|
|
|
rv = ENOMEM;
|
2009-11-28 10:13:21 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
printf("Keeping modified file %s.\n", cffile);
|
|
|
|
printf("Installing new version as %s.new.\n", cffile);
|
|
|
|
install_new = true;
|
|
|
|
archive_entry_set_pathname(entry, buf);
|
|
|
|
free(buf);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (install_new) {
|
|
|
|
*flags &= ~ARCHIVE_EXTRACT_NO_OVERWRITE;
|
|
|
|
*flags &= ~ARCHIVE_EXTRACT_NO_OVERWRITE_NEWER;
|
|
|
|
}
|
|
|
|
if (sha256_orig)
|
|
|
|
free(sha256_orig);
|
|
|
|
if (sha256_cur)
|
|
|
|
free(sha256_cur);
|
|
|
|
|
|
|
|
prop_object_iterator_release(iter);
|
|
|
|
|
2011-01-16 21:25:01 +05:30
|
|
|
xbps_dbg_printf("%s: conf_file %s returned %d\n",
|
|
|
|
pkgname, archive_entry_pathname(entry));
|
|
|
|
|
2009-11-28 10:13:21 +05:30
|
|
|
return rv;
|
|
|
|
}
|