2009-08-17 22:37:20 +05:30
|
|
|
/*-
|
2020-04-24 15:14:19 +05:30
|
|
|
* Licensed under the SPDX BSD-2-Clause identifier.
|
|
|
|
* Use is subject to license terms, as specified in the LICENSE file.
|
2009-08-17 22:37:20 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2012-07-11 15:49:39 +05:30
|
|
|
#include <time.h>
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2010-11-13 07:48:58 +05:30
|
|
|
#include "xbps_api_impl.h"
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2013-03-05 08:38:42 +05:30
|
|
|
int HIDDEN
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_register_pkg(struct xbps_handle *xhp, xbps_dictionary_t pkgrd)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
2014-09-13 21:44:04 +05:30
|
|
|
xbps_array_t replaces;
|
2020-04-22 15:50:38 +05:30
|
|
|
xbps_dictionary_t pkgd;
|
2012-07-11 15:49:39 +05:30
|
|
|
time_t t;
|
2020-04-22 15:50:38 +05:30
|
|
|
struct tm tm, *tmp;
|
2020-02-21 13:38:22 +05:30
|
|
|
const char *pkgver, *pkgname;
|
2020-04-22 15:50:38 +05:30
|
|
|
char sha256[XBPS_SHA256_SIZE], outstr[64], *buf;
|
2009-08-17 22:37:20 +05:30
|
|
|
int rv = 0;
|
2011-07-27 20:43:54 +05:30
|
|
|
bool autoinst = false;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2013-06-20 13:56:12 +05:30
|
|
|
assert(xbps_object_type(pkgrd) == XBPS_TYPE_DICTIONARY);
|
2011-10-19 20:23:38 +05:30
|
|
|
|
2014-09-13 17:01:56 +05:30
|
|
|
xbps_dictionary_make_immutable(pkgrd);
|
2020-02-10 04:59:45 +05:30
|
|
|
if ((pkgd = xbps_dictionary_copy_mutable(pkgrd)) == NULL) {
|
|
|
|
goto out;
|
|
|
|
}
|
2014-09-13 17:01:56 +05:30
|
|
|
|
|
|
|
xbps_dictionary_get_cstring_nocopy(pkgd, "pkgver", &pkgver);
|
2020-02-21 13:38:22 +05:30
|
|
|
xbps_dictionary_get_cstring_nocopy(pkgd, "pkgname", &pkgname);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2012-01-22 15:22:35 +05:30
|
|
|
if (xhp->flags & XBPS_FLAG_INSTALL_AUTO)
|
2011-12-24 05:35:26 +05:30
|
|
|
autoinst = true;
|
2014-09-11 03:42:12 +05:30
|
|
|
/*
|
|
|
|
* Set automatic-install to true, iff it was explicitly set; otherwise
|
|
|
|
* preserve its value.
|
|
|
|
*/
|
2014-09-13 17:01:56 +05:30
|
|
|
if (autoinst && !xbps_dictionary_set_bool(pkgd, "automatic-install", true)) {
|
2014-09-11 03:42:12 +05:30
|
|
|
xbps_dbg_printf(xhp, "%s: invalid autoinst for %s\n", __func__, pkgver);
|
2011-12-24 05:35:26 +05:30
|
|
|
rv = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2019-12-29 21:01:23 +05:30
|
|
|
if (xhp->flags & XBPS_FLAG_INSTALL_REPRO) {
|
|
|
|
/*
|
|
|
|
* Reproducible mode. Some objects must not be recorded:
|
|
|
|
* - install-date
|
|
|
|
* - repository
|
|
|
|
*/
|
|
|
|
xbps_dictionary_remove(pkgd, "repository");
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Set the "install-date" object to know the pkg installation date.
|
|
|
|
*/
|
2019-12-29 15:07:17 +05:30
|
|
|
t = time(NULL);
|
2020-02-08 18:04:57 +05:30
|
|
|
if ((tmp = localtime_r(&t, &tm)) == NULL) {
|
|
|
|
xbps_dbg_printf(xhp, "%s: localtime_r failed: %s\n",
|
2019-12-29 15:07:17 +05:30
|
|
|
pkgver, strerror(errno));
|
|
|
|
rv = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (strftime(outstr, sizeof(outstr)-1, "%F %R %Z", tmp) == 0) {
|
|
|
|
xbps_dbg_printf(xhp, "%s: strftime failed: %s\n",
|
|
|
|
pkgver, strerror(errno));
|
|
|
|
rv = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (!xbps_dictionary_set_cstring(pkgd, "install-date", outstr)) {
|
|
|
|
xbps_dbg_printf(xhp, "%s: install-date set failed!\n", pkgver);
|
|
|
|
rv = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
2012-07-11 15:49:39 +05:30
|
|
|
}
|
2012-11-16 21:25:35 +05:30
|
|
|
/*
|
2014-09-14 21:34:10 +05:30
|
|
|
* Create a hash for the pkg's metafile if it exists.
|
2012-11-16 21:25:35 +05:30
|
|
|
*/
|
2014-09-11 03:42:12 +05:30
|
|
|
buf = xbps_xasprintf("%s/.%s-files.plist", xhp->metadir, pkgname);
|
2020-02-10 06:24:52 +05:30
|
|
|
if (xbps_file_sha256(sha256, sizeof sha256, buf)) {
|
2014-09-14 21:34:10 +05:30
|
|
|
xbps_dictionary_set_cstring(pkgd, "metafile-sha256", sha256);
|
|
|
|
}
|
2012-11-16 21:25:35 +05:30
|
|
|
free(buf);
|
2014-09-13 21:44:04 +05:30
|
|
|
/*
|
|
|
|
* Remove self replacement when applicable.
|
|
|
|
*/
|
|
|
|
if ((replaces = xbps_dictionary_get(pkgd, "replaces"))) {
|
|
|
|
buf = xbps_xasprintf("%s>=0", pkgname);
|
|
|
|
xbps_remove_string_from_array(replaces, buf);
|
|
|
|
free(buf);
|
2014-09-14 21:46:43 +05:30
|
|
|
if (!xbps_array_count(replaces))
|
|
|
|
xbps_dictionary_remove(pkgd, "replaces");
|
2014-09-13 21:44:04 +05:30
|
|
|
}
|
2020-04-22 14:52:02 +05:30
|
|
|
/*
|
|
|
|
* Remove unneeded objs from pkg dictionary.
|
|
|
|
*/
|
|
|
|
xbps_dictionary_remove(pkgd, "download");
|
|
|
|
xbps_dictionary_remove(pkgd, "remove-and-update");
|
|
|
|
xbps_dictionary_remove(pkgd, "transaction");
|
|
|
|
xbps_dictionary_remove(pkgd, "skip-obsoletes");
|
|
|
|
xbps_dictionary_remove(pkgd, "pkgname");
|
|
|
|
xbps_dictionary_remove(pkgd, "version");
|
|
|
|
|
2014-09-13 17:01:56 +05:30
|
|
|
if (!xbps_dictionary_set(xhp->pkgdb, pkgname, pkgd)) {
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_dbg_printf(xhp,
|
2019-12-29 15:07:17 +05:30
|
|
|
"%s: failed to set pkgd for %s\n", __func__, pkgver);
|
2012-01-04 22:11:36 +05:30
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
out:
|
2014-09-13 17:01:56 +05:30
|
|
|
xbps_object_release(pkgd);
|
2013-03-05 08:38:42 +05:30
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
return rv;
|
|
|
|
}
|