2009-08-17 22:37:20 +05:30
|
|
|
/*-
|
2015-06-05 11:59:05 +05:30
|
|
|
* Copyright (c) 2009-2015 Juan Romero Pardines.
|
2009-08-17 22:37:20 +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 <dirent.h>
|
2010-11-06 11:14:00 +05:30
|
|
|
#include <libgen.h>
|
2014-02-26 14:35:19 +05:30
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.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
|
|
|
|
2014-02-09 17:23:15 +05:30
|
|
|
static bool
|
|
|
|
check_remove_pkg_files(struct xbps_handle *xhp,
|
2019-08-05 18:26:21 +05:30
|
|
|
xbps_array_t obsoletes, const char *pkgver, uid_t euid)
|
2014-02-09 17:23:15 +05:30
|
|
|
{
|
2014-09-28 17:03:15 +05:30
|
|
|
struct stat st;
|
2014-02-09 17:23:15 +05:30
|
|
|
bool fail = false;
|
2013-11-28 14:57:36 +05:30
|
|
|
|
2019-08-05 18:26:21 +05:30
|
|
|
if (euid == 0)
|
2019-08-05 19:11:11 +05:30
|
|
|
return false;
|
2014-02-09 17:23:15 +05:30
|
|
|
|
2019-08-05 18:26:21 +05:30
|
|
|
for (unsigned int i = 0; i < xbps_array_count(obsoletes); i++) {
|
|
|
|
const char *file = NULL;
|
|
|
|
xbps_array_get_cstring_nocopy(obsoletes, i, &file);
|
|
|
|
/*
|
|
|
|
* Check if effective user ID owns the file; this is
|
|
|
|
* enough to ensure the user has write permissions
|
|
|
|
* on the directory.
|
|
|
|
*/
|
|
|
|
if (lstat(file, &st) == 0 && euid == st.st_uid) {
|
|
|
|
/* success */
|
2014-02-09 17:23:15 +05:30
|
|
|
continue;
|
2019-08-05 18:26:21 +05:30
|
|
|
}
|
|
|
|
if (errno != ENOENT) {
|
2014-09-28 17:03:15 +05:30
|
|
|
/*
|
2019-08-05 18:26:21 +05:30
|
|
|
* only bail out if something else than ENOENT
|
|
|
|
* is returned.
|
2014-09-28 17:03:15 +05:30
|
|
|
*/
|
2019-08-05 18:26:21 +05:30
|
|
|
int rv = errno;
|
|
|
|
if (rv == 0) {
|
|
|
|
/* lstat succeeds but euid != uid */
|
|
|
|
rv = EPERM;
|
2014-09-28 17:03:15 +05:30
|
|
|
}
|
2019-08-05 18:26:21 +05:30
|
|
|
fail = true;
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REMOVE_FILE_FAIL,
|
|
|
|
rv, pkgver,
|
|
|
|
"%s: cannot remove `%s': %s",
|
|
|
|
pkgver, file, strerror(rv));
|
2014-02-09 17:23:15 +05:30
|
|
|
}
|
2019-08-05 18:26:21 +05:30
|
|
|
errno = 0;
|
2014-02-09 17:23:15 +05:30
|
|
|
}
|
|
|
|
return fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
remove_pkg_files(struct xbps_handle *xhp,
|
2019-08-05 18:26:21 +05:30
|
|
|
xbps_array_t obsoletes,
|
2014-02-09 17:23:15 +05:30
|
|
|
const char *pkgver)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
2011-02-21 22:12:47 +05:30
|
|
|
int rv = 0;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2019-08-05 18:26:21 +05:30
|
|
|
for (unsigned int i = 0; i < xbps_array_count(obsoletes); i++) {
|
|
|
|
const char *file = NULL;
|
|
|
|
xbps_array_get_cstring_nocopy(obsoletes, i, &file);
|
2010-11-06 11:14:00 +05:30
|
|
|
/*
|
|
|
|
* Remove the object if possible.
|
|
|
|
*/
|
2019-08-05 18:26:21 +05:30
|
|
|
if (remove(file) == -1) {
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REMOVE_FILE_FAIL,
|
2013-03-05 08:38:42 +05:30
|
|
|
errno, pkgver,
|
2019-08-05 18:26:21 +05:30
|
|
|
"%s: failed to remove `%s': %s", pkgver,
|
|
|
|
file, strerror(errno));
|
2010-11-06 11:14:00 +05:30
|
|
|
} else {
|
2011-11-24 15:53:08 +05:30
|
|
|
/* success */
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REMOVE_FILE,
|
2019-08-05 18:26:21 +05:30
|
|
|
0, pkgver, "Removed `%s'", file);
|
2010-11-06 11:14:00 +05:30
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
2009-12-07 11:00:06 +05:30
|
|
|
return rv;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
|
|
|
|
2013-03-05 08:38:42 +05:30
|
|
|
int HIDDEN
|
2013-12-25 15:42:52 +05:30
|
|
|
xbps_remove_pkg(struct xbps_handle *xhp, const char *pkgver, bool update)
|
2009-08-17 22:37:20 +05:30
|
|
|
{
|
2019-08-05 18:26:21 +05:30
|
|
|
xbps_dictionary_t pkgd = NULL, obsd = NULL;
|
2019-08-05 19:18:11 +05:30
|
|
|
xbps_array_t obsoletes = NULL;
|
2014-05-22 14:12:27 +05:30
|
|
|
char *pkgname, metafile[PATH_MAX];
|
2009-08-17 22:37:20 +05:30
|
|
|
int rv = 0;
|
2011-12-24 05:35:26 +05:30
|
|
|
pkg_state_t state = 0;
|
2014-09-28 17:03:15 +05:30
|
|
|
uid_t euid;
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2012-11-30 11:41:51 +05:30
|
|
|
assert(xhp);
|
|
|
|
assert(pkgver);
|
|
|
|
|
|
|
|
pkgname = xbps_pkg_name(pkgver);
|
|
|
|
assert(pkgname);
|
2009-08-17 22:37:20 +05:30
|
|
|
|
2014-09-28 17:03:15 +05:30
|
|
|
euid = geteuid();
|
|
|
|
|
2014-09-11 03:42:12 +05:30
|
|
|
if ((pkgd = xbps_pkgdb_get_pkg(xhp, pkgname)) == NULL) {
|
|
|
|
rv = errno;
|
|
|
|
xbps_dbg_printf(xhp, "[remove] cannot find %s in pkgdb: %s\n",
|
|
|
|
pkgver, strerror(rv));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if ((rv = xbps_pkg_state_dictionary(pkgd, &state)) != 0) {
|
2014-03-14 01:37:44 +05:30
|
|
|
xbps_dbg_printf(xhp, "[remove] cannot find %s in pkgdb: %s\n",
|
2013-11-17 16:03:16 +05:30
|
|
|
pkgver, strerror(rv));
|
|
|
|
goto out;
|
|
|
|
}
|
2014-03-14 01:37:44 +05:30
|
|
|
xbps_dbg_printf(xhp, "attempting to remove %s state %d\n", pkgver, state);
|
2012-11-19 18:38:01 +05:30
|
|
|
|
2011-12-24 05:35:26 +05:30
|
|
|
if (!update)
|
2013-03-05 08:38:42 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REMOVE, 0, pkgver, NULL);
|
2011-12-24 05:35:26 +05:30
|
|
|
|
2011-12-15 15:49:20 +05:30
|
|
|
if (chdir(xhp->rootdir) == -1) {
|
2011-11-24 15:53:08 +05:30
|
|
|
rv = errno;
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REMOVE_FAIL,
|
2013-03-05 08:38:42 +05:30
|
|
|
rv, pkgver,
|
2011-11-24 15:53:08 +05:30
|
|
|
"%s: [remove] failed to chdir to rootdir `%s': %s",
|
2011-12-15 15:49:20 +05:30
|
|
|
pkgver, xhp->rootdir, strerror(rv));
|
2011-12-24 05:35:26 +05:30
|
|
|
goto out;
|
2010-11-06 11:14:00 +05:30
|
|
|
}
|
2012-11-27 03:55:41 +05:30
|
|
|
|
2011-12-24 05:35:26 +05:30
|
|
|
/* If package was "half-removed", remove it fully. */
|
|
|
|
if (state == XBPS_PKG_STATE_HALF_REMOVED)
|
|
|
|
goto purge;
|
2009-08-17 22:37:20 +05:30
|
|
|
/*
|
2014-07-27 14:54:49 +05:30
|
|
|
* Run the pre remove action and show pre-remove message if exists.
|
2009-08-17 22:37:20 +05:30
|
|
|
*/
|
2014-09-11 03:42:12 +05:30
|
|
|
rv = xbps_pkg_exec_script(xhp, pkgd, "remove-script", "pre", update);
|
|
|
|
if (rv != 0) {
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REMOVE_FAIL,
|
|
|
|
errno, pkgver,
|
|
|
|
"%s: [remove] REMOVE script failed to "
|
|
|
|
"execute pre ACTION: %s",
|
|
|
|
pkgver, strerror(rv));
|
|
|
|
goto out;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
2014-09-11 03:42:12 +05:30
|
|
|
/* show remove-msg if exists */
|
|
|
|
if ((rv = xbps_cb_message(xhp, pkgd, "remove-msg")) != 0)
|
|
|
|
goto out;
|
|
|
|
|
2015-10-18 14:08:35 +05:30
|
|
|
/* unregister alternatives */
|
2015-11-17 21:02:12 +05:30
|
|
|
if (update)
|
|
|
|
xbps_dictionary_set_bool(pkgd, "alternatives-update", true);
|
|
|
|
|
2015-10-18 14:08:35 +05:30
|
|
|
if ((rv = xbps_alternatives_unregister(xhp, pkgd)) != 0)
|
|
|
|
goto out;
|
|
|
|
|
2010-01-21 07:40:19 +05:30
|
|
|
/*
|
2010-01-28 20:38:50 +05:30
|
|
|
* If updating a package, we just need to execute the current
|
2012-11-30 22:10:52 +05:30
|
|
|
* pre-remove action target and we are done. Its files will be
|
|
|
|
* overwritten later in unpack phase.
|
2010-01-21 07:40:19 +05:30
|
|
|
*/
|
2010-01-28 20:38:50 +05:30
|
|
|
if (update) {
|
2012-11-30 11:41:51 +05:30
|
|
|
free(pkgname);
|
2012-11-30 22:10:52 +05:30
|
|
|
return 0;
|
2010-01-25 10:57:54 +05:30
|
|
|
}
|
2010-01-21 07:40:19 +05:30
|
|
|
|
2019-08-05 18:26:21 +05:30
|
|
|
if (xbps_dictionary_get_dict(xhp->transd, "obsolete_files", &obsd))
|
|
|
|
obsoletes = xbps_dictionary_get(obsd, pkgname);
|
|
|
|
|
|
|
|
if (xbps_array_count(obsoletes) > 0) {
|
2014-02-09 17:23:15 +05:30
|
|
|
/*
|
|
|
|
* Do the removal in 2 phases:
|
|
|
|
* 1- check if user has enough perms to remove all entries
|
|
|
|
* 2- perform removal
|
|
|
|
*/
|
2019-08-05 18:26:21 +05:30
|
|
|
if (check_remove_pkg_files(xhp, obsoletes, pkgver, euid)) {
|
2014-02-09 17:23:15 +05:30
|
|
|
rv = EPERM;
|
|
|
|
goto out;
|
|
|
|
}
|
2015-02-17 16:29:05 +05:30
|
|
|
/* Remove links */
|
2019-08-05 18:26:21 +05:30
|
|
|
if ((rv = remove_pkg_files(xhp, obsoletes, pkgver)) != 0)
|
2012-11-19 18:38:01 +05:30
|
|
|
goto out;
|
2009-08-17 22:37:20 +05:30
|
|
|
}
|
2019-08-05 18:26:21 +05:30
|
|
|
|
2014-09-11 03:42:12 +05:30
|
|
|
/*
|
|
|
|
* Execute the post REMOVE action if file exists and we aren't
|
|
|
|
* updating the package.
|
|
|
|
*/
|
|
|
|
rv = xbps_pkg_exec_script(xhp, pkgd, "remove-script", "post", false);
|
|
|
|
if (rv != 0) {
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REMOVE_FAIL,
|
|
|
|
rv, pkgver,
|
|
|
|
"%s: [remove] REMOVE script failed to execute "
|
|
|
|
"post ACTION: %s", pkgver, strerror(rv));
|
|
|
|
goto out;
|
|
|
|
}
|
2009-08-17 22:37:20 +05:30
|
|
|
/*
|
2011-12-24 05:35:26 +05:30
|
|
|
* Set package state to "half-removed".
|
2009-08-17 22:37:20 +05:30
|
|
|
*/
|
2019-06-19 00:25:47 +05:30
|
|
|
rv = xbps_set_pkg_state_dictionary(pkgd,
|
2011-12-24 05:35:26 +05:30
|
|
|
XBPS_PKG_STATE_HALF_REMOVED);
|
2011-11-24 15:53:08 +05:30
|
|
|
if (rv != 0) {
|
2012-06-14 11:52:11 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REMOVE_FAIL,
|
2013-03-05 08:38:42 +05:30
|
|
|
rv, pkgver,
|
2011-12-24 05:35:26 +05:30
|
|
|
"%s: [remove] failed to set state to half-removed: %s",
|
2011-11-24 15:53:08 +05:30
|
|
|
pkgver, strerror(rv));
|
2011-12-24 05:35:26 +05:30
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
purge:
|
|
|
|
/*
|
|
|
|
* Execute the purge REMOVE action if file exists.
|
|
|
|
*/
|
2014-09-11 03:42:12 +05:30
|
|
|
rv = xbps_pkg_exec_script(xhp, pkgd, "remove-script", "purge", false);
|
|
|
|
if (rv != 0) {
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REMOVE_FAIL,
|
|
|
|
rv, pkgver,
|
|
|
|
"%s: REMOVE script failed to execute "
|
|
|
|
"purge ACTION: %s", pkgver, strerror(rv));
|
|
|
|
goto out;
|
2011-11-24 15:53:08 +05:30
|
|
|
}
|
2011-12-24 05:35:26 +05:30
|
|
|
/*
|
2012-11-16 21:25:35 +05:30
|
|
|
* Remove package metadata plist.
|
2011-12-24 05:35:26 +05:30
|
|
|
*/
|
2019-08-05 18:26:21 +05:30
|
|
|
snprintf(metafile, sizeof(metafile), "%s/.%s-files.plist", xhp->metadir, pkgname);
|
2014-05-22 14:12:27 +05:30
|
|
|
if (remove(metafile) == -1) {
|
2012-11-19 19:10:41 +05:30
|
|
|
if (errno != ENOENT) {
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REMOVE_FAIL,
|
2013-03-05 08:38:42 +05:30
|
|
|
rv, pkgver,
|
2012-11-19 19:10:41 +05:30
|
|
|
"%s: failed to remove metadata file: %s",
|
|
|
|
pkgver, strerror(errno));
|
|
|
|
}
|
2011-12-24 05:35:26 +05:30
|
|
|
}
|
|
|
|
/*
|
2012-01-20 15:40:52 +05:30
|
|
|
* Unregister package from pkgdb.
|
2011-12-24 05:35:26 +05:30
|
|
|
*/
|
2013-06-20 13:56:12 +05:30
|
|
|
xbps_dictionary_remove(xhp->pkgdb, pkgname);
|
2012-11-19 19:15:09 +05:30
|
|
|
xbps_dbg_printf(xhp, "[remove] unregister %s returned %d\n", pkgver, rv);
|
2013-03-05 08:38:42 +05:30
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REMOVE_DONE, 0, pkgver, NULL);
|
2011-12-24 05:35:26 +05:30
|
|
|
out:
|
2012-11-30 11:41:51 +05:30
|
|
|
if (pkgname != NULL)
|
|
|
|
free(pkgname);
|
2014-02-09 16:24:49 +05:30
|
|
|
if (rv != 0) {
|
|
|
|
xbps_set_cb_state(xhp, XBPS_STATE_REMOVE_FAIL, rv, pkgver,
|
|
|
|
"%s: failed to remove package: %s", pkgver, strerror(rv));
|
|
|
|
}
|
2010-11-19 18:10:13 +05:30
|
|
|
|
2009-08-17 22:37:20 +05:30
|
|
|
return rv;
|
|
|
|
}
|