2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* alpm.c
|
|
|
|
*
|
2006-02-05 04:27:26 -05:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
|
2006-10-15 15:31:03 -04:00
|
|
|
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
|
|
|
|
* Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu>
|
|
|
|
* Copyright (c) 2005, 2006 by Miklos Vajna <vmiklos@frugalware.org>
|
2005-03-14 20:51:43 -05:00
|
|
|
*
|
|
|
|
* 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
|
|
* USA.
|
|
|
|
*/
|
|
|
|
|
2007-03-05 17:13:33 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2006-11-15 02:50:37 -05:00
|
|
|
#include <ctype.h>
|
2005-03-14 20:51:43 -05:00
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <limits.h> /* PATH_MAX */
|
|
|
|
#include <stdarg.h>
|
2007-03-05 17:13:33 -05:00
|
|
|
|
|
|
|
/* libalpm */
|
|
|
|
#include "alpm.h"
|
|
|
|
#include "alpm_list.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "log.h"
|
|
|
|
#include "error.h"
|
2005-12-26 11:48:37 -05:00
|
|
|
#include "versioncmp.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "md5.h"
|
2006-10-15 15:31:03 -04:00
|
|
|
#include "sha1.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "package.h"
|
|
|
|
#include "group.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "db.h"
|
|
|
|
#include "cache.h"
|
|
|
|
#include "deps.h"
|
2006-02-05 04:27:26 -05:00
|
|
|
#include "conflict.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "backup.h"
|
|
|
|
#include "add.h"
|
|
|
|
#include "remove.h"
|
|
|
|
#include "sync.h"
|
|
|
|
#include "handle.h"
|
2006-10-15 15:31:03 -04:00
|
|
|
#include "provide.h"
|
|
|
|
#include "server.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
#define min(X, Y) ((X) < (Y) ? (X) : (Y))
|
|
|
|
|
2005-03-16 17:06:31 -05:00
|
|
|
/* Globals */
|
2005-03-14 20:51:43 -05:00
|
|
|
pmhandle_t *handle = NULL;
|
2007-01-30 02:47:19 -05:00
|
|
|
enum _pmerrno_t pm_errno SYMEXPORT;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
/** \addtogroup alpm_interface Interface Functions
|
2007-01-11 12:32:49 -05:00
|
|
|
* @brief Functions to initialize and release libalpm
|
2005-10-09 03:42:06 -04:00
|
|
|
* @{
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
|
2005-10-09 03:42:06 -04:00
|
|
|
/** Initializes the library. This must be called before any other
|
|
|
|
* functions are called.
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2007-01-31 01:10:21 -05:00
|
|
|
int SYMEXPORT alpm_initialize()
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(handle == NULL, RET_ERR(PM_ERR_HANDLE_NOT_NULL, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
handle = _alpm_handle_new();
|
2005-04-24 14:58:34 -04:00
|
|
|
if(handle == NULL) {
|
2005-04-24 16:11:10 -04:00
|
|
|
RET_ERR(PM_ERR_MEMORY, -1);
|
2005-04-24 14:58:34 -04:00
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2005-10-09 03:42:06 -04:00
|
|
|
/** Release the library. This should be the last alpm call you make.
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
int SYMEXPORT alpm_release()
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2006-11-08 01:52:50 -05:00
|
|
|
int dbs_left = 0;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
/* close local database */
|
|
|
|
if(handle->db_local) {
|
2006-03-02 14:06:52 -05:00
|
|
|
alpm_db_unregister(handle->db_local);
|
2005-03-14 20:51:43 -05:00
|
|
|
handle->db_local = NULL;
|
|
|
|
}
|
|
|
|
/* and also sync ones */
|
2006-11-08 01:52:50 -05:00
|
|
|
while((dbs_left = alpm_list_count(handle->dbs_sync)) > 0) {
|
|
|
|
pmdb_t *db = (pmdb_t *)handle->dbs_sync->data;
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("removing DB %s, %d remaining..."), db->treename, dbs_left);
|
|
|
|
alpm_db_unregister(db);
|
|
|
|
db = NULL;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-04-26 20:29:12 -04:00
|
|
|
_alpm_handle_free(handle);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-01-11 12:32:49 -05:00
|
|
|
/** @} */
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
/** \addtogroup alpm_databases Database Functions
|
2007-01-11 12:32:49 -05:00
|
|
|
* @brief Functions to query and manipulate the database of libalpm
|
2005-10-09 03:42:06 -04:00
|
|
|
* @{
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
|
2006-01-11 16:44:11 -05:00
|
|
|
/** Register a package database
|
|
|
|
* @param treename the name of the repository
|
2007-01-18 11:52:57 -05:00
|
|
|
* @return a pmdb_t* on success (the value), NULL on error
|
2006-01-11 16:44:11 -05:00
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
pmdb_t SYMEXPORT *alpm_db_register(char *treename)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Sanity checks */
|
2005-03-29 15:52:22 -05:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, NULL));
|
|
|
|
ASSERT(treename != NULL && strlen(treename) != 0, RET_ERR(PM_ERR_WRONG_ARGS, NULL));
|
2006-01-02 11:20:50 -05:00
|
|
|
/* Do not register a database if a transaction is on-going */
|
|
|
|
ASSERT(handle->trans == NULL, RET_ERR(PM_ERR_TRANS_NOT_NULL, NULL));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-10-20 02:26:55 -04:00
|
|
|
return(_alpm_db_register(treename, NULL));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-01-11 16:44:11 -05:00
|
|
|
/** Unregister a package database
|
|
|
|
* @param db pointer to the package database to unregister
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2005-04-16 18:23:28 -04:00
|
|
|
int alpm_db_unregister(pmdb_t *db)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
|
|
|
int found = 0;
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Sanity checks */
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
|
|
|
ASSERT(db != NULL, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
2006-01-02 11:20:50 -05:00
|
|
|
/* Do not unregister a database if a transaction is on-going */
|
2006-01-02 15:28:46 -05:00
|
|
|
ASSERT(handle->trans == NULL, RET_ERR(PM_ERR_TRANS_NOT_NULL, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
if(db == handle->db_local) {
|
|
|
|
handle->db_local = NULL;
|
|
|
|
found = 1;
|
|
|
|
} else {
|
2006-10-31 01:39:59 -05:00
|
|
|
void *data;
|
2007-01-19 04:28:44 -05:00
|
|
|
handle->dbs_sync = alpm_list_remove(handle->dbs_sync, db, _alpm_db_cmp, &data);
|
2005-05-03 13:43:02 -04:00
|
|
|
if(data) {
|
|
|
|
found = 1;
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!found) {
|
2005-03-16 17:10:05 -05:00
|
|
|
RET_ERR(PM_ERR_DB_NOT_FOUND, -1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2007-01-31 01:10:21 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("unregistering database '%s'"), db->treename);
|
2006-03-02 14:06:52 -05:00
|
|
|
|
|
|
|
/* Cleanup */
|
|
|
|
_alpm_db_free_pkgcache(db);
|
|
|
|
|
2006-05-14 22:19:57 -04:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("closing database '%s'"), db->treename);
|
2006-03-02 14:06:52 -05:00
|
|
|
_alpm_db_close(db);
|
|
|
|
|
|
|
|
_alpm_db_free(db);
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
/** Set the serverlist of a database.
|
|
|
|
* @param db database pointer
|
|
|
|
* @param url url of the server
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2006-11-08 03:14:29 -05:00
|
|
|
int alpm_db_setserver(pmdb_t *db, const char *url)
|
2006-10-15 15:31:03 -04:00
|
|
|
{
|
|
|
|
int found = 0;
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
/* Sanity checks */
|
|
|
|
ASSERT(db != NULL, RET_ERR(PM_ERR_DB_NULL, -1));
|
|
|
|
|
|
|
|
if(strcmp(db->treename, "local") == 0) {
|
|
|
|
if(handle->db_local != NULL) {
|
|
|
|
found = 1;
|
|
|
|
}
|
|
|
|
} else {
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *i;
|
2006-10-15 15:31:03 -04:00
|
|
|
for(i = handle->dbs_sync; i && !found; i = i->next) {
|
|
|
|
pmdb_t *sdb = i->data;
|
|
|
|
if(strcmp(db->treename, sdb->treename) == 0) {
|
|
|
|
found = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!found) {
|
|
|
|
RET_ERR(PM_ERR_DB_NOT_FOUND, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(url && strlen(url)) {
|
|
|
|
pmserver_t *server;
|
|
|
|
if((server = _alpm_server_new(url)) == NULL) {
|
|
|
|
/* pm_errno is set by _alpm_server_new */
|
|
|
|
return(-1);
|
|
|
|
}
|
2007-01-19 04:28:44 -05:00
|
|
|
db->servers = alpm_list_add(db->servers, server);
|
2007-01-31 01:10:21 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("adding new server to database '%s': protocol '%s', server '%s', path '%s'"),
|
2007-05-18 02:24:59 -04:00
|
|
|
db->treename, server->s_url->scheme, server->s_url->host, server->s_url->doc);
|
2006-10-15 15:31:03 -04:00
|
|
|
} else {
|
|
|
|
FREELIST(db->servers);
|
2007-01-31 01:10:21 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("serverlist flushed for '%s'"), db->treename);
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-01-11 16:44:11 -05:00
|
|
|
/** Update a package database
|
2006-10-20 21:27:35 -04:00
|
|
|
* @param force if true, then forces the update, otherwise update only in case
|
2006-10-21 16:16:55 -04:00
|
|
|
* the database isn't up to date
|
2006-01-11 16:44:11 -05:00
|
|
|
* @param db pointer to the package database to update
|
2006-10-15 15:31:03 -04:00
|
|
|
* @return 0 on success, > 0 on error (pm_errno is set accordingly), < 0 if up
|
|
|
|
* to date
|
2006-01-11 16:44:11 -05:00
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
int SYMEXPORT alpm_db_update(int force, pmdb_t *db)
|
2005-03-20 04:22:03 -05:00
|
|
|
{
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *lp;
|
2006-10-15 15:31:03 -04:00
|
|
|
char path[PATH_MAX];
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *files = NULL;
|
2006-10-15 15:31:03 -04:00
|
|
|
char newmtime[16] = "";
|
|
|
|
char lastupdate[16] = "";
|
2007-05-31 02:51:28 -04:00
|
|
|
const char *dbpath;
|
2006-10-15 15:31:03 -04:00
|
|
|
int ret;
|
2005-03-29 17:19:11 -05:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-20 04:22:03 -05:00
|
|
|
/* Sanity checks */
|
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2005-03-22 15:14:49 -05:00
|
|
|
ASSERT(db != NULL && db != handle->db_local, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
2006-12-01 04:32:29 -05:00
|
|
|
/* Verify we are in a transaction. This is done _mainly_ because we need a DB
|
|
|
|
* lock - if we update without a db lock, we may kludge some other pacman
|
|
|
|
* process that _has_ a lock.
|
|
|
|
*/
|
|
|
|
ASSERT(handle->trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
|
|
|
ASSERT(handle->trans->state == STATE_INITIALIZED, RET_ERR(PM_ERR_TRANS_NOT_INITIALIZED, -1));
|
|
|
|
ASSERT(handle->trans->type == PM_TRANS_TYPE_SYNC, RET_ERR(PM_ERR_TRANS_TYPE, -1));
|
2005-03-22 15:14:49 -05:00
|
|
|
|
2007-01-29 22:46:33 -05:00
|
|
|
if(!alpm_list_find(handle->dbs_sync, db)) {
|
2005-03-22 15:14:49 -05:00
|
|
|
RET_ERR(PM_ERR_DB_NOT_FOUND, -1);
|
|
|
|
}
|
|
|
|
|
2006-10-19 11:28:52 -04:00
|
|
|
if(!force) {
|
2006-10-15 15:31:03 -04:00
|
|
|
/* get the lastupdate time */
|
|
|
|
_alpm_db_getlastupdate(db, lastupdate);
|
|
|
|
if(strlen(lastupdate) == 0) {
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("failed to get lastupdate time for %s (no big deal)"), db->treename);
|
2005-10-22 04:29:12 -04:00
|
|
|
}
|
2005-03-29 17:19:11 -05:00
|
|
|
}
|
2005-03-20 04:22:03 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
/* build a one-element list */
|
2007-05-31 02:51:28 -04:00
|
|
|
snprintf(path, PATH_MAX, "%s" DBEXT, db->treename);
|
2007-01-19 04:28:44 -05:00
|
|
|
files = alpm_list_add(files, strdup(path));
|
2005-03-26 03:50:27 -05:00
|
|
|
|
2007-05-31 02:51:28 -04:00
|
|
|
dbpath = alpm_option_get_dbpath();
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2007-05-31 02:51:28 -04:00
|
|
|
ret = _alpm_downloadfiles_forreal(db->servers, dbpath, files, lastupdate, newmtime);
|
2006-10-15 15:31:03 -04:00
|
|
|
FREELIST(files);
|
2006-10-31 01:39:59 -05:00
|
|
|
if(ret == 1) {
|
|
|
|
/* mtimes match, do nothing */
|
|
|
|
pm_errno = 0;
|
|
|
|
return(1);
|
|
|
|
} else if(ret == -1) {
|
2006-11-14 02:58:42 -05:00
|
|
|
/* we use downloadLastErrString and downloadLastErrCode here, error returns from
|
|
|
|
* libdownload */
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("failed to sync db: %s [%d]"), downloadLastErrString, downloadLastErrCode);
|
2006-10-31 01:39:59 -05:00
|
|
|
RET_ERR(PM_ERR_DB_SYNC, -1);
|
2006-10-15 15:31:03 -04:00
|
|
|
} else {
|
|
|
|
if(strlen(newmtime)) {
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("sync: new mtime for %s: %s"), db->treename, newmtime);
|
2006-10-15 15:31:03 -04:00
|
|
|
_alpm_db_setlastupdate(db, newmtime);
|
|
|
|
}
|
2007-05-31 02:51:28 -04:00
|
|
|
snprintf(path, PATH_MAX, "%s%s" DBEXT, dbpath, db->treename);
|
2006-10-15 15:31:03 -04:00
|
|
|
|
|
|
|
/* remove the old dir */
|
2007-03-04 04:08:54 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("flushing database %s%s"), db->path);
|
2007-03-03 03:13:59 -05:00
|
|
|
for(lp = _alpm_db_get_pkgcache(db); lp; lp = lp->next) {
|
|
|
|
pmpkg_t *pkg = lp->data;
|
|
|
|
if(pkg && _alpm_db_remove(db, pkg) == -1) {
|
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not remove database entry %s%s"), db->treename,
|
|
|
|
alpm_pkg_get_name(pkg));
|
2006-10-25 14:15:25 -04:00
|
|
|
RET_ERR(PM_ERR_DB_REMOVE, -1);
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cache needs to be rebuild */
|
|
|
|
_alpm_db_free_pkgcache(db);
|
|
|
|
|
|
|
|
/* uncompress the sync database */
|
2006-10-25 14:15:25 -04:00
|
|
|
if(_alpm_db_install(db, path) == -1) {
|
|
|
|
return -1;
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
2005-03-22 15:14:49 -05:00
|
|
|
}
|
2005-03-16 14:31:20 -05:00
|
|
|
|
2005-03-22 15:14:49 -05:00
|
|
|
return(0);
|
2005-03-16 14:31:20 -05:00
|
|
|
}
|
|
|
|
|
2006-01-11 16:44:11 -05:00
|
|
|
/** Get a package entry from a package database
|
|
|
|
* @param db pointer to the package database to get the package from
|
|
|
|
* @param name of the package
|
|
|
|
* @return the package entry on success, NULL on error
|
|
|
|
*/
|
2007-02-26 03:38:48 -05:00
|
|
|
pmpkg_t SYMEXPORT *alpm_db_get_pkg(pmdb_t *db, const char *name)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Sanity checks */
|
|
|
|
ASSERT(handle != NULL, return(NULL));
|
|
|
|
ASSERT(db != NULL, return(NULL));
|
|
|
|
ASSERT(name != NULL && strlen(name) != 0, return(NULL));
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
return(_alpm_db_get_pkgfromcache(db, name));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-01-11 16:44:11 -05:00
|
|
|
/** Get the package cache of a package database
|
|
|
|
* @param db pointer to the package database to get the package from
|
|
|
|
* @return the list of packages on success, NULL on error
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
alpm_list_t SYMEXPORT *alpm_db_getpkgcache(pmdb_t *db)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Sanity checks */
|
|
|
|
ASSERT(handle != NULL, return(NULL));
|
|
|
|
ASSERT(db != NULL, return(NULL));
|
|
|
|
|
2007-03-03 03:13:59 -05:00
|
|
|
return(_alpm_db_get_pkgcache(db));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
/** Get the list of packages that a package provides
|
|
|
|
* @param db pointer to the package database to get the package from
|
|
|
|
* @param name name of the package
|
|
|
|
* @return the list of packages on success, NULL on error
|
|
|
|
*/
|
2007-02-26 03:38:48 -05:00
|
|
|
alpm_list_t SYMEXPORT *alpm_db_whatprovides(pmdb_t *db, const char *name)
|
2006-10-15 15:31:03 -04:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
/* Sanity checks */
|
|
|
|
ASSERT(handle != NULL, return(NULL));
|
|
|
|
ASSERT(db != NULL, return(NULL));
|
|
|
|
ASSERT(name != NULL && strlen(name) != 0, return(NULL));
|
|
|
|
|
|
|
|
return(_alpm_db_whatprovides(db, name));
|
|
|
|
}
|
|
|
|
|
2006-01-11 16:44:11 -05:00
|
|
|
/** Get a group entry from a package database
|
|
|
|
* @param db pointer to the package database to get the group from
|
|
|
|
* @param name of the group
|
|
|
|
* @return the groups entry on success, NULL on error
|
|
|
|
*/
|
2007-02-26 03:38:48 -05:00
|
|
|
pmgrp_t SYMEXPORT *alpm_db_readgrp(pmdb_t *db, const char *name)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Sanity checks */
|
|
|
|
ASSERT(handle != NULL, return(NULL));
|
|
|
|
ASSERT(db != NULL, return(NULL));
|
|
|
|
ASSERT(name != NULL && strlen(name) != 0, return(NULL));
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
return(_alpm_db_get_grpfromcache(db, name));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-01-11 16:44:11 -05:00
|
|
|
/** Get the group cache of a package database
|
|
|
|
* @param db pointer to the package database to get the group from
|
|
|
|
* @return the list of groups on success, NULL on error
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
alpm_list_t SYMEXPORT *alpm_db_getgrpcache(pmdb_t *db)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Sanity checks */
|
|
|
|
ASSERT(handle != NULL, return(NULL));
|
|
|
|
ASSERT(db != NULL, return(NULL));
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
return(_alpm_db_get_grpcache(db));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2005-10-09 03:42:06 -04:00
|
|
|
/** @} */
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
/** \addtogroup alpm_packages Package Functions
|
2006-02-01 12:58:02 -05:00
|
|
|
* @brief Functions to manipulate libalpm packages
|
2005-10-09 03:42:06 -04:00
|
|
|
* @{
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
|
2006-01-21 14:29:10 -05:00
|
|
|
/** Create a package from a file.
|
|
|
|
* @param filename location of the package tarball
|
|
|
|
* @param pkg address of the package pointer
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
int SYMEXPORT alpm_pkg_load(char *filename, pmpkg_t **pkg)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2006-10-20 02:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_FUNCTION, "enter alpm_pkg_load");
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Sanity checks */
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(filename != NULL && strlen(filename) != 0, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
|
|
|
ASSERT(pkg != NULL, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
*pkg = _alpm_pkg_load(filename);
|
2005-03-14 20:51:43 -05:00
|
|
|
if(*pkg == NULL) {
|
|
|
|
/* pm_errno is set by pkg_load */
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-01-21 14:29:10 -05:00
|
|
|
/** Free a package.
|
|
|
|
* @param pkg package pointer to free
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
int SYMEXPORT alpm_pkg_free(pmpkg_t *pkg)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2006-10-20 02:26:55 -04:00
|
|
|
_alpm_log(PM_LOG_FUNCTION, "enter alpm_pkg_free");
|
|
|
|
|
2005-10-10 11:03:35 -04:00
|
|
|
ASSERT(pkg != NULL, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
|
|
|
|
2006-02-07 17:01:50 -05:00
|
|
|
/* Only free packages loaded in user space */
|
|
|
|
if(pkg->origin != PKG_FROM_CACHE) {
|
2006-02-17 17:35:26 -05:00
|
|
|
_alpm_pkg_free(pkg);
|
2006-02-07 17:01:50 -05:00
|
|
|
}
|
2005-10-10 11:03:35 -04:00
|
|
|
|
|
|
|
return(0);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
/** Check the integrity (with sha1) of a package from the sync cache.
|
|
|
|
* @param pkg package pointer
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
|
|
|
int alpm_pkg_checksha1sum(pmpkg_t *pkg)
|
|
|
|
{
|
|
|
|
char path[PATH_MAX];
|
|
|
|
char *sha1sum = NULL;
|
|
|
|
int retval = 0;
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
ASSERT(pkg != NULL, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
|
|
|
/* We only inspect packages from sync repositories */
|
|
|
|
ASSERT(pkg->origin == PKG_FROM_CACHE, RET_ERR(PM_ERR_PKG_INVALID, -1));
|
|
|
|
ASSERT(pkg->data != handle->db_local, RET_ERR(PM_ERR_PKG_INVALID, -1));
|
|
|
|
|
2007-05-31 02:51:28 -04:00
|
|
|
snprintf(path, PATH_MAX, "%s/%s-%s" PKGEXT, handle->cachedir,
|
2007-05-18 02:24:59 -04:00
|
|
|
alpm_pkg_get_name(pkg), alpm_pkg_get_version(pkg));
|
2006-10-15 15:31:03 -04:00
|
|
|
|
|
|
|
sha1sum = _alpm_SHAFile(path);
|
|
|
|
if(sha1sum == NULL) {
|
2007-02-14 00:34:21 -05:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not get sha1sum for package %s-%s"),
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_pkg_get_name(pkg), alpm_pkg_get_version(pkg));
|
2006-10-15 15:31:03 -04:00
|
|
|
pm_errno = PM_ERR_NOT_A_FILE;
|
|
|
|
retval = -1;
|
|
|
|
} else {
|
2007-02-14 00:34:21 -05:00
|
|
|
if(strcmp(sha1sum, alpm_pkg_get_sha1sum(pkg)) == 0) {
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("sha1sums for package %s-%s match"),
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_pkg_get_name(pkg), alpm_pkg_get_version(pkg));
|
2006-10-15 15:31:03 -04:00
|
|
|
} else {
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("sha1sums do not match for package %s-%s"),
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_pkg_get_name(pkg), alpm_pkg_get_version(pkg));
|
2006-10-15 15:31:03 -04:00
|
|
|
pm_errno = PM_ERR_PKG_INVALID;
|
|
|
|
retval = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FREE(sha1sum);
|
|
|
|
|
|
|
|
return(retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Check the integrity (with md5) of a package from the sync cache.
|
2006-02-05 04:57:29 -05:00
|
|
|
* @param pkg package pointer
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
|
|
|
int alpm_pkg_checkmd5sum(pmpkg_t *pkg)
|
|
|
|
{
|
2006-10-15 15:31:03 -04:00
|
|
|
char path[PATH_MAX];
|
2006-02-05 04:57:29 -05:00
|
|
|
char *md5sum = NULL;
|
|
|
|
int retval = 0;
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-02-05 04:57:29 -05:00
|
|
|
ASSERT(pkg != NULL, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
2006-03-02 14:06:52 -05:00
|
|
|
/* We only inspect packages from sync repositories */
|
2006-02-20 15:55:53 -05:00
|
|
|
ASSERT(pkg->origin == PKG_FROM_CACHE, RET_ERR(PM_ERR_PKG_INVALID, -1));
|
|
|
|
ASSERT(pkg->data != handle->db_local, RET_ERR(PM_ERR_PKG_INVALID, -1));
|
2006-02-05 04:57:29 -05:00
|
|
|
|
2007-05-31 02:51:28 -04:00
|
|
|
snprintf(path, PATH_MAX, "%s/%s-%s" PKGEXT, handle->cachedir,
|
2007-05-18 02:24:59 -04:00
|
|
|
alpm_pkg_get_name(pkg), alpm_pkg_get_version(pkg));
|
2006-02-05 04:57:29 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
md5sum = _alpm_MDFile(path);
|
2006-02-05 04:57:29 -05:00
|
|
|
if(md5sum == NULL) {
|
2007-02-14 00:34:21 -05:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("could not get md5sum for package %s-%s"),
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_pkg_get_name(pkg), alpm_pkg_get_version(pkg));
|
2006-02-05 04:57:29 -05:00
|
|
|
pm_errno = PM_ERR_NOT_A_FILE;
|
|
|
|
retval = -1;
|
|
|
|
} else {
|
2007-02-14 00:34:21 -05:00
|
|
|
if(strcmp(md5sum, alpm_pkg_get_md5sum(pkg)) == 0) {
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("md5sums for package %s-%s match"),
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_pkg_get_name(pkg), alpm_pkg_get_version(pkg));
|
2006-02-20 15:55:53 -05:00
|
|
|
} else {
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_ERROR, _("md5sums do not match for package %s-%s"),
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_pkg_get_name(pkg), alpm_pkg_get_version(pkg));
|
2006-02-05 04:57:29 -05:00
|
|
|
pm_errno = PM_ERR_PKG_INVALID;
|
|
|
|
retval = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FREE(md5sum);
|
|
|
|
|
|
|
|
return(retval);
|
|
|
|
}
|
|
|
|
|
2006-01-21 14:29:10 -05:00
|
|
|
/** Compare versions.
|
|
|
|
* @param ver1 first version
|
|
|
|
* @param ver2 secont version
|
|
|
|
* @return postive, 0 or negative if ver1 is less, equal or more
|
|
|
|
* than ver2, respectively.
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
int SYMEXPORT alpm_pkg_vercmp(const char *ver1, const char *ver2)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-05-18 02:24:59 -04:00
|
|
|
ALPM_LOG_FUNC;
|
2007-01-30 03:14:10 -05:00
|
|
|
|
2007-02-09 16:08:10 -05:00
|
|
|
return(_alpm_versioncmp(ver1, ver2));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2006-11-15 02:50:37 -05:00
|
|
|
/* internal */
|
2007-01-11 12:32:49 -05:00
|
|
|
static char *_supported_archs[] = {
|
2006-11-15 02:50:37 -05:00
|
|
|
"i586",
|
|
|
|
"i686",
|
|
|
|
"ppc",
|
|
|
|
"x86_64",
|
|
|
|
};
|
|
|
|
|
2007-03-29 00:40:49 -04:00
|
|
|
/**
|
|
|
|
* @brief Determine if a package name has -ARCH tacked on.
|
|
|
|
*
|
|
|
|
* @param pkgname name of the package to parse
|
|
|
|
*
|
|
|
|
* @return pointer to start of -ARCH text if it exists, else NULL
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
char SYMEXPORT *alpm_pkg_name_hasarch(char *pkgname)
|
2006-11-15 02:50:37 -05:00
|
|
|
{
|
|
|
|
/* TODO remove this when we transfer everything over to -ARCH
|
|
|
|
*
|
|
|
|
* this parsing sucks... it's done to support
|
|
|
|
* two package formats for the time being:
|
|
|
|
* package-name-foo-1.0.0-1-i686
|
|
|
|
* and
|
|
|
|
* package-name-bar-1.2.3-1
|
|
|
|
*/
|
2007-01-25 21:13:16 -05:00
|
|
|
size_t i = 0;
|
2006-11-15 02:50:37 -05:00
|
|
|
char *arch, *cmp, *p;
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-11-15 02:50:37 -05:00
|
|
|
if((p = strrchr(pkgname, '-'))) {
|
|
|
|
for(i=0; i < sizeof(_supported_archs)/sizeof(char*); ++i) {
|
|
|
|
cmp = p+1;
|
|
|
|
arch = _supported_archs[i];
|
|
|
|
|
|
|
|
/* whee, case insensitive compare */
|
|
|
|
while(*arch && *cmp && tolower(*arch++) == tolower(*cmp++)) ;
|
2007-02-10 04:36:36 -05:00
|
|
|
if(*arch || *cmp) {
|
|
|
|
continue;
|
|
|
|
}
|
2006-11-15 02:50:37 -05:00
|
|
|
|
2007-02-10 04:36:36 -05:00
|
|
|
return(p);
|
2006-11-15 02:50:37 -05:00
|
|
|
}
|
|
|
|
}
|
2007-02-10 04:36:36 -05:00
|
|
|
return(NULL);
|
2006-11-15 02:50:37 -05:00
|
|
|
}
|
|
|
|
|
2005-10-09 03:42:06 -04:00
|
|
|
/** @} */
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
/** \addtogroup alpm_sync Sync Functions
|
2006-02-01 12:58:02 -05:00
|
|
|
* @brief Functions to get informations about libalpm syncs
|
2005-10-09 03:42:06 -04:00
|
|
|
* @{
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
/** Searches a database
|
|
|
|
* @param db pointer to the package database to search in
|
2007-02-12 20:46:33 -05:00
|
|
|
* @param needles the list of strings to search for
|
2006-10-15 15:31:03 -04:00
|
|
|
* @return the list of packages on success, NULL on error
|
|
|
|
*/
|
2007-02-11 23:45:21 -05:00
|
|
|
alpm_list_t SYMEXPORT *alpm_db_search(pmdb_t *db, alpm_list_t* needles)
|
2006-10-15 15:31:03 -04:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
/* Sanity checks */
|
|
|
|
ASSERT(handle != NULL, return(NULL));
|
|
|
|
ASSERT(db != NULL, return(NULL));
|
|
|
|
|
2007-02-11 23:45:21 -05:00
|
|
|
return(_alpm_db_search(db, needles));
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
2007-01-11 12:32:49 -05:00
|
|
|
|
2005-10-09 03:42:06 -04:00
|
|
|
/** @} */
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
/** \addtogroup alpm_trans Transaction Functions
|
2006-02-01 12:58:02 -05:00
|
|
|
* @brief Functions to manipulate libalpm transactions
|
2005-10-09 03:42:06 -04:00
|
|
|
* @{
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
|
2006-01-21 14:29:10 -05:00
|
|
|
/** Initialize the transaction.
|
|
|
|
* @param type type of the transaction
|
|
|
|
* @param flags flags of the transaction (like nodeps, etc)
|
|
|
|
* @param event event callback function pointer
|
2006-10-15 15:31:03 -04:00
|
|
|
* @param conv question callback function pointer
|
|
|
|
* @param progress progress callback function pointer
|
2006-01-21 14:29:10 -05:00
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2007-03-05 20:21:41 -05:00
|
|
|
int SYMEXPORT alpm_trans_init(pmtranstype_t type, pmtransflag_t flags,
|
2007-05-18 02:24:59 -04:00
|
|
|
alpm_trans_cb_event event, alpm_trans_cb_conv conv,
|
|
|
|
alpm_trans_cb_progress progress)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Sanity checks */
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
ASSERT(handle->trans == NULL, RET_ERR(PM_ERR_TRANS_NOT_NULL, -1));
|
2006-01-09 15:16:00 -05:00
|
|
|
|
2006-01-26 17:16:57 -05:00
|
|
|
/* lock db */
|
2007-05-31 02:51:28 -04:00
|
|
|
handle->lckfd = _alpm_lckmk();
|
2006-01-26 17:16:57 -05:00
|
|
|
if(handle->lckfd == -1) {
|
|
|
|
RET_ERR(PM_ERR_HANDLE_LOCK, -1);
|
|
|
|
}
|
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
handle->trans = _alpm_trans_new();
|
2005-03-14 20:51:43 -05:00
|
|
|
if(handle->trans == NULL) {
|
2005-03-16 17:10:05 -05:00
|
|
|
RET_ERR(PM_ERR_MEMORY, -1);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
return(_alpm_trans_init(handle->trans, type, flags, event, conv, progress));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-01-21 14:29:10 -05:00
|
|
|
/** Search for packages to upgrade and add them to the transaction.
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
int SYMEXPORT alpm_trans_sysupgrade()
|
2005-04-16 18:23:28 -04:00
|
|
|
{
|
|
|
|
pmtrans_t *trans;
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-04-16 18:23:28 -04:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
|
|
|
|
|
|
|
trans = handle->trans;
|
|
|
|
ASSERT(trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
|
|
|
ASSERT(trans->state == STATE_INITIALIZED, RET_ERR(PM_ERR_TRANS_NOT_INITIALIZED, -1));
|
2006-02-07 17:01:50 -05:00
|
|
|
ASSERT(trans->type == PM_TRANS_TYPE_SYNC, RET_ERR(PM_ERR_TRANS_TYPE, -1));
|
2005-04-16 18:23:28 -04:00
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
return(_alpm_trans_sysupgrade(trans));
|
2005-04-16 18:23:28 -04:00
|
|
|
}
|
|
|
|
|
2006-01-21 14:29:10 -05:00
|
|
|
/** Add a target to the transaction.
|
|
|
|
* @param target the name of the target to add
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
int SYMEXPORT alpm_trans_addtarget(char *target)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
|
|
|
pmtrans_t *trans;
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Sanity checks */
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
|
|
|
ASSERT(target != NULL && strlen(target) != 0, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
trans = handle->trans;
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
|
|
|
ASSERT(trans->state == STATE_INITIALIZED, RET_ERR(PM_ERR_TRANS_NOT_INITIALIZED, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
return(_alpm_trans_addtarget(trans, target));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-01-21 14:29:10 -05:00
|
|
|
/** Prepare a transaction.
|
2007-04-25 04:08:49 -04:00
|
|
|
* @param data the address of an alpm_list where detailed description
|
2006-01-21 14:29:10 -05:00
|
|
|
* of an error can be dumped (ie. list of conflicting files)
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
int SYMEXPORT alpm_trans_prepare(alpm_list_t **data)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Sanity checks */
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2006-10-15 15:31:03 -04:00
|
|
|
ASSERT(data != NULL, RET_ERR(PM_ERR_WRONG_ARGS, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
ASSERT(handle->trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
|
|
|
ASSERT(handle->trans->state == STATE_INITIALIZED, RET_ERR(PM_ERR_TRANS_NOT_INITIALIZED, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
return(_alpm_trans_prepare(handle->trans, data));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-01-21 14:29:10 -05:00
|
|
|
/** Commit a transaction.
|
2007-04-25 04:08:49 -04:00
|
|
|
* @param data the address of an alpm_list where detailed description
|
2006-01-21 14:29:10 -05:00
|
|
|
* of an error can be dumped (ie. list of conflicting files)
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
int SYMEXPORT alpm_trans_commit(alpm_list_t **data)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Sanity checks */
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
ASSERT(handle->trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
|
|
|
ASSERT(handle->trans->state == STATE_PREPARED, RET_ERR(PM_ERR_TRANS_NOT_PREPARED, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2005-10-08 19:40:49 -04:00
|
|
|
/* Check for database R/W permission */
|
2007-01-03 03:05:13 -05:00
|
|
|
if(!(handle->trans->flags & PM_TRANS_FLAG_PRINTURIS)) {
|
|
|
|
/* The print-uris operation is a bit odd. So we explicitly check for it */
|
|
|
|
ASSERT(handle->access == PM_ACCESS_RW, RET_ERR(PM_ERR_BADPERMS, -1));
|
|
|
|
}
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
return(_alpm_trans_commit(handle->trans, data));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
|
|
|
|
2006-01-21 14:29:10 -05:00
|
|
|
/** Release a transaction.
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
int SYMEXPORT alpm_trans_release()
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
|
|
|
pmtrans_t *trans;
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* Sanity checks */
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
trans = handle->trans;
|
2005-03-16 17:10:05 -05:00
|
|
|
ASSERT(trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
|
|
|
ASSERT(trans->state != STATE_IDLE, RET_ERR(PM_ERR_TRANS_NULL, -1));
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-04-26 19:57:09 -04:00
|
|
|
/* during a commit do not interrupt immediately, just after a target */
|
2006-10-15 15:31:03 -04:00
|
|
|
if(trans->state == STATE_COMMITING || trans->state == STATE_INTERRUPTED) {
|
|
|
|
if(trans->state == STATE_COMMITING) {
|
2006-07-14 19:15:07 -04:00
|
|
|
trans->state = STATE_INTERRUPTED;
|
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
pm_errno = PM_ERR_TRANS_COMMITING;
|
2006-07-14 19:15:07 -04:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2007-04-26 19:57:09 -04:00
|
|
|
_alpm_trans_free(trans);
|
|
|
|
handle->trans = NULL;
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-01-26 17:16:57 -05:00
|
|
|
/* unlock db */
|
|
|
|
if(handle->lckfd != -1) {
|
|
|
|
close(handle->lckfd);
|
|
|
|
handle->lckfd = -1;
|
|
|
|
}
|
2007-05-31 02:51:28 -04:00
|
|
|
if(_alpm_lckrm()) {
|
|
|
|
_alpm_log(PM_LOG_WARNING, _("could not remove lock file %s"),
|
|
|
|
alpm_option_get_lockfile());
|
|
|
|
alpm_logaction(_("warning: could not remove lock file %s"),
|
|
|
|
alpm_option_get_lockfile());
|
2006-01-26 17:16:57 -05:00
|
|
|
}
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-02-05 04:27:26 -05:00
|
|
|
/** @} */
|
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
/** \addtogroup alpm_log Logging Functions
|
2006-02-01 12:58:02 -05:00
|
|
|
* @brief Functions to log using libalpm
|
2005-10-09 03:42:06 -04:00
|
|
|
* @{
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
|
2006-01-26 14:52:47 -05:00
|
|
|
/** A printf-like function for logging.
|
|
|
|
* @param fmt output format
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
int SYMEXPORT alpm_logaction(char *fmt, ...)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2005-03-16 14:50:57 -05:00
|
|
|
char str[LOG_STR_LEN];
|
2005-03-14 20:51:43 -05:00
|
|
|
va_list args;
|
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-18 13:33:55 -05:00
|
|
|
/* Sanity checks */
|
|
|
|
ASSERT(handle != NULL, RET_ERR(PM_ERR_HANDLE_NULL, -1));
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
va_start(args, fmt);
|
2005-03-16 14:50:57 -05:00
|
|
|
vsnprintf(str, LOG_STR_LEN, fmt, args);
|
2005-03-14 20:51:43 -05:00
|
|
|
va_end(args);
|
|
|
|
|
2007-02-07 17:08:37 -05:00
|
|
|
/* TODO We should add a prefix to log strings depending on who called us.
|
|
|
|
* If logaction was called by the frontend:
|
|
|
|
* USER: <the frontend log>
|
|
|
|
* and if called internally:
|
|
|
|
* ALPM: <the library log>
|
|
|
|
* Moreover, the frontend should be able to choose its prefix
|
|
|
|
* (USER by default?):
|
|
|
|
* pacman: "PACMAN"
|
|
|
|
* kpacman: "KPACMAN"
|
|
|
|
* This would allow us to share the log file between several frontends
|
|
|
|
* and know who does what */
|
2006-01-09 15:16:00 -05:00
|
|
|
return(_alpm_logaction(handle->usesyslog, handle->logfd, str));
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2005-10-09 03:42:06 -04:00
|
|
|
/** @} */
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
/** \addtogroup alpm_misc Miscellaneous Functions
|
2006-02-01 12:58:02 -05:00
|
|
|
* @brief Various libalpm functions
|
2005-10-09 03:42:06 -04:00
|
|
|
* @{
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
|
2006-01-26 14:52:47 -05:00
|
|
|
/** Get the md5 sum of file.
|
|
|
|
* @param name name of the file
|
|
|
|
* @return the checksum on success, NULL on error
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
char SYMEXPORT *alpm_get_md5sum(char *name)
|
2005-03-14 20:51:43 -05:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
ASSERT(name != NULL, return(NULL));
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
return(_alpm_MDFile(name));
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Get the sha1 sum of file.
|
|
|
|
* @param name name of the file
|
|
|
|
* @return the checksum on success, NULL on error
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
char SYMEXPORT *alpm_get_sha1sum(char *name)
|
2006-10-15 15:31:03 -04:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
ASSERT(name != NULL, return(NULL));
|
|
|
|
|
|
|
|
return(_alpm_SHAFile(name));
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Fetch a remote pkg.
|
|
|
|
* @param url
|
|
|
|
* @return the downloaded filename on success, NULL on error
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
char SYMEXPORT *alpm_fetch_pkgurl(char *url)
|
2006-10-15 15:31:03 -04:00
|
|
|
{
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
ASSERT(strstr(url, "://"), return(NULL));
|
|
|
|
|
|
|
|
return(_alpm_fetch_pkgurl(url));
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Parses a configuration file.
|
|
|
|
* @param file path to the config file.
|
|
|
|
* @param callback a function to be called upon new database creation
|
|
|
|
* @param this_section the config current section being parsed
|
|
|
|
* @return 0 on success, -1 on error (pm_errno is set accordingly)
|
|
|
|
*/
|
2007-01-30 02:47:19 -05:00
|
|
|
int SYMEXPORT alpm_parse_config(char *file, alpm_cb_db_register callback, const char *this_section)
|
2006-10-15 15:31:03 -04:00
|
|
|
{
|
|
|
|
FILE *fp = NULL;
|
|
|
|
char line[PATH_MAX+1];
|
|
|
|
char *ptr = NULL;
|
|
|
|
char *key = NULL;
|
|
|
|
int linenum = 0;
|
2007-04-04 01:30:14 -04:00
|
|
|
char origkey[256];
|
2006-10-15 15:31:03 -04:00
|
|
|
char section[256] = "";
|
2006-11-20 04:10:23 -05:00
|
|
|
pmdb_t *db = NULL;
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2007-01-30 03:14:10 -05:00
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
fp = fopen(file, "r");
|
|
|
|
if(fp == NULL) {
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(this_section != NULL && strlen(this_section) > 0) {
|
|
|
|
strncpy(section, this_section, min(255, strlen(this_section)));
|
2006-10-27 17:15:26 -04:00
|
|
|
if(!strcmp(section, "local")) {
|
|
|
|
RET_ERR(PM_ERR_CONF_LOCAL, -1);
|
|
|
|
}
|
|
|
|
if(strcmp(section, "options")) {
|
|
|
|
db = _alpm_db_register(section, callback);
|
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
while(fgets(line, PATH_MAX, fp)) {
|
|
|
|
linenum++;
|
|
|
|
_alpm_strtrim(line);
|
|
|
|
if(strlen(line) == 0 || line[0] == '#') {
|
|
|
|
continue;
|
|
|
|
}
|
2007-05-31 15:21:33 -04:00
|
|
|
if((ptr = strchr(line, '#'))) {
|
|
|
|
*ptr = '\0';
|
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
if(line[0] == '[' && line[strlen(line)-1] == ']') {
|
|
|
|
/* new config section */
|
|
|
|
ptr = line;
|
|
|
|
ptr++;
|
|
|
|
strncpy(section, ptr, min(255, strlen(ptr)-1));
|
|
|
|
section[min(255, strlen(ptr)-1)] = '\0';
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: new section '%s'"), section);
|
2006-10-15 15:31:03 -04:00
|
|
|
if(!strlen(section)) {
|
|
|
|
RET_ERR(PM_ERR_CONF_BAD_SECTION, -1);
|
|
|
|
}
|
|
|
|
if(!strcmp(section, "local")) {
|
|
|
|
RET_ERR(PM_ERR_CONF_LOCAL, -1);
|
|
|
|
}
|
|
|
|
if(strcmp(section, "options")) {
|
2006-10-20 02:26:55 -04:00
|
|
|
db = _alpm_db_register(section, callback);
|
2006-10-15 15:31:03 -04:00
|
|
|
if(db == NULL) {
|
|
|
|
/* pm_errno is set by alpm_db_register */
|
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* directive */
|
|
|
|
ptr = line;
|
|
|
|
key = strsep(&ptr, "=");
|
|
|
|
if(key == NULL) {
|
|
|
|
RET_ERR(PM_ERR_CONF_BAD_SYNTAX, -1);
|
|
|
|
}
|
|
|
|
_alpm_strtrim(key);
|
2007-04-04 01:30:14 -04:00
|
|
|
strncpy(origkey, key, min(255, strlen(key)));
|
2006-10-15 15:31:03 -04:00
|
|
|
key = _alpm_strtoupper(key);
|
|
|
|
if(!strlen(section) && strcmp(key, "INCLUDE")) {
|
|
|
|
RET_ERR(PM_ERR_CONF_DIRECTIVE_OUTSIDE_SECTION, -1);
|
|
|
|
}
|
|
|
|
if(ptr == NULL) {
|
2007-04-04 01:30:14 -04:00
|
|
|
if(strcmp(origkey, "NoPassiveFTP") == 0 || strcmp(key, "NOPASSIVEFTP") == 0) {
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_set_nopassiveftp(1);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: nopassiveftp"));
|
2007-04-04 01:30:14 -04:00
|
|
|
} else if(strcmp(origkey, "UseSyslog") == 0 || strcmp(key, "USESYSLOG") == 0) {
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_set_usesyslog(1);
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: usesyslog"));
|
2007-04-04 01:30:14 -04:00
|
|
|
} else if(strcmp(origkey, "ILoveCandy") == 0 || strcmp(key, "ILOVECANDY") == 0) {
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_set_chomp(1);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: chomp"));
|
2007-04-04 01:30:14 -04:00
|
|
|
} else if(strcmp(origkey, "UseColor") == 0 || strcmp(key, "USECOLOR") == 0) {
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_set_usecolor(1);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: usecolor"));
|
2007-06-01 11:00:39 -04:00
|
|
|
} else if(strcmp(origkey, "ShowSize") == 0 || strcmp(key, "SHOWSIZE") == 0) {
|
|
|
|
alpm_option_set_showsize(1);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: showsize"));
|
2006-10-15 15:31:03 -04:00
|
|
|
} else {
|
|
|
|
RET_ERR(PM_ERR_CONF_BAD_SYNTAX, -1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_alpm_strtrim(ptr);
|
2007-04-04 01:30:14 -04:00
|
|
|
if(strcmp(origkey, "Include") == 0 || strcmp(key, "INCLUDE") == 0) {
|
2006-10-15 15:31:03 -04:00
|
|
|
char conf[PATH_MAX];
|
|
|
|
strncpy(conf, ptr, PATH_MAX);
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: including %s"), conf);
|
2006-10-15 15:31:03 -04:00
|
|
|
alpm_parse_config(conf, callback, section);
|
2007-04-04 01:30:14 -04:00
|
|
|
} else if(strcmp(section, "options") == 0) {
|
|
|
|
if(strcmp(origkey, "NoUpgrade") == 0 || strcmp(key, "NOUPGRADE") == 0) {
|
2006-10-15 15:31:03 -04:00
|
|
|
char *p = ptr;
|
|
|
|
char *q;
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
while((q = strchr(p, ' '))) {
|
|
|
|
*q = '\0';
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_add_noupgrade(p);
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: noupgrade: %s"), p);
|
2006-10-15 15:31:03 -04:00
|
|
|
p = q;
|
|
|
|
p++;
|
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_add_noupgrade(p);
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: noupgrade: %s"), p);
|
2007-04-04 01:30:14 -04:00
|
|
|
} else if(strcmp(origkey, "NoExtract") == 0 || strcmp(key, "NOEXTRACT") == 0) {
|
2006-10-15 15:31:03 -04:00
|
|
|
char *p = ptr;
|
|
|
|
char *q;
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
while((q = strchr(p, ' '))) {
|
|
|
|
*q = '\0';
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_add_noextract(p);
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: noextract: %s"), p);
|
2006-10-15 15:31:03 -04:00
|
|
|
p = q;
|
|
|
|
p++;
|
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_add_noextract(p);
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: noextract: %s"), p);
|
2007-04-04 01:30:14 -04:00
|
|
|
} else if(strcmp(origkey, "IgnorePkg") == 0 || strcmp(key, "IGNOREPKG") == 0) {
|
2006-10-15 15:31:03 -04:00
|
|
|
char *p = ptr;
|
|
|
|
char *q;
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
while((q = strchr(p, ' '))) {
|
|
|
|
*q = '\0';
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_add_ignorepkg(p);
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: ignorepkg: %s"), p);
|
2006-10-15 15:31:03 -04:00
|
|
|
p = q;
|
|
|
|
p++;
|
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_add_ignorepkg(p);
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: ignorepkg: %s"), p);
|
2007-04-04 01:30:14 -04:00
|
|
|
} else if(strcmp(origkey, "HoldPkg") == 0 || strcmp(key, "HOLDPKG") == 0) {
|
2006-10-15 15:31:03 -04:00
|
|
|
char *p = ptr;
|
|
|
|
char *q;
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
while((q = strchr(p, ' '))) {
|
|
|
|
*q = '\0';
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_add_holdpkg(p);
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: holdpkg: %s"), p);
|
2006-10-15 15:31:03 -04:00
|
|
|
p = q;
|
|
|
|
p++;
|
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_add_holdpkg(p);
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: holdpkg: %s"), p);
|
2007-04-04 01:30:14 -04:00
|
|
|
} else if(strcmp(origkey, "DBPath") == 0 || strcmp(key, "DBPATH") == 0) {
|
2006-10-15 15:31:03 -04:00
|
|
|
/* shave off the leading slash, if there is one */
|
|
|
|
if(*ptr == '/') {
|
|
|
|
ptr++;
|
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_set_dbpath(ptr);
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: dbpath: %s"), ptr);
|
2007-04-04 01:30:14 -04:00
|
|
|
} else if(strcmp(origkey, "CacheDir") == 0 || strcmp(key, "CACHEDIR") == 0) {
|
2006-10-15 15:31:03 -04:00
|
|
|
/* shave off the leading slash, if there is one */
|
|
|
|
if(*ptr == '/') {
|
|
|
|
ptr++;
|
|
|
|
}
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_set_cachedir(ptr);
|
2006-11-01 01:30:47 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: cachedir: %s"), ptr);
|
2007-04-04 01:30:14 -04:00
|
|
|
} else if(strcmp(origkey, "RootDir") == 0 || strcmp(key, "ROOTDIR") == 0) {
|
|
|
|
/* shave off the leading slash, if there is one */
|
|
|
|
if(*ptr == '/') {
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
alpm_option_set_root(ptr);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: rootdir: %s"), ptr);
|
|
|
|
} else if (strcmp(origkey, "LogFile") == 0 || strcmp(key, "LOGFILE") == 0) {
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_set_logfile(ptr);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: logfile: %s"), ptr);
|
2007-04-04 01:30:14 -04:00
|
|
|
} else if (strcmp(origkey, "XferCommand") == 0 || strcmp(key, "XFERCOMMAND") == 0) {
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_set_xfercommand(ptr);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: xfercommand: %s"), ptr);
|
2007-04-04 01:30:14 -04:00
|
|
|
} else if (strcmp(origkey, "UpgradeDelay") == 0 || strcmp(key, "UPGRADEDELAY") == 0) {
|
2006-10-15 15:31:03 -04:00
|
|
|
/* The config value is in days, we use seconds */
|
2007-01-25 21:13:16 -05:00
|
|
|
time_t ud = atol(ptr) * 60 * 60 *24;
|
2006-11-20 04:10:23 -05:00
|
|
|
alpm_option_set_upgradedelay(ud);
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("config: upgradedelay: %d"), ud);
|
2006-10-15 15:31:03 -04:00
|
|
|
} else {
|
|
|
|
RET_ERR(PM_ERR_CONF_BAD_SYNTAX, -1);
|
|
|
|
}
|
|
|
|
} else {
|
2007-04-04 01:30:14 -04:00
|
|
|
if(strcmp(origkey, "Server") == 0 || strcmp(key, "SERVER") == 0) {
|
2007-05-18 02:24:59 -04:00
|
|
|
/* let's attempt a replacement for the current repo */
|
|
|
|
char *server = _alpm_strreplace(ptr, "$repo", section);
|
|
|
|
|
|
|
|
if(alpm_db_setserver(db, server) != 0) {
|
2007-01-11 12:32:49 -05:00
|
|
|
/* pm_errno is set by alpm_db_setserver */
|
2006-10-15 15:31:03 -04:00
|
|
|
return(-1);
|
|
|
|
}
|
2007-05-18 02:24:59 -04:00
|
|
|
|
|
|
|
free(server);
|
2006-10-15 15:31:03 -04:00
|
|
|
} else {
|
|
|
|
RET_ERR(PM_ERR_CONF_BAD_SYNTAX, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
line[0] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
return(0);
|
2005-03-14 20:51:43 -05:00
|
|
|
}
|
2006-10-15 15:31:03 -04:00
|
|
|
|
2007-01-11 12:32:49 -05:00
|
|
|
/** @} */
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-02-04 03:26:52 -05:00
|
|
|
/* This function is mostly the same as sync.c find_replacements and sysupgrade
|
|
|
|
* functions, and we should be able to combine them - this is an interim
|
|
|
|
* solution made for -Qu operation */
|
2007-03-11 17:10:02 -04:00
|
|
|
alpm_list_t SYMEXPORT *alpm_get_upgrades()
|
2007-02-04 03:26:52 -05:00
|
|
|
{
|
|
|
|
alpm_list_t *syncpkgs = NULL;
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_list_t *i, *j, *k, *m;
|
2007-02-04 03:26:52 -05:00
|
|
|
|
|
|
|
ALPM_LOG_FUNC;
|
|
|
|
|
|
|
|
/* TODO holy nested loops, Batman! */
|
|
|
|
/* check for "recommended" package replacements */
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("checking for package replacements"));
|
|
|
|
for(i = handle->dbs_sync; i; i = i->next) {
|
2007-03-03 03:13:59 -05:00
|
|
|
for(j = _alpm_db_get_pkgcache(i->data); j; j = j->next) {
|
2007-02-04 03:26:52 -05:00
|
|
|
pmpkg_t *spkg = j->data;
|
2007-03-03 03:13:59 -05:00
|
|
|
|
|
|
|
for(k = alpm_pkg_get_replaces(spkg); k; k = k->next) {
|
|
|
|
|
|
|
|
for(m = _alpm_db_get_pkgcache(handle->db_local); m; m = m->next) {
|
2007-02-04 03:26:52 -05:00
|
|
|
pmpkg_t *lpkg = m->data;
|
2007-05-18 02:24:59 -04:00
|
|
|
|
2007-03-03 03:13:59 -05:00
|
|
|
if(strcmp(k->data, alpm_pkg_get_name(lpkg)) == 0) {
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("checking replacement '%s' for package '%s'"), k->data,
|
|
|
|
alpm_pkg_get_name(spkg));
|
|
|
|
if(alpm_list_find_str(handle->ignorepkg, alpm_pkg_get_name(lpkg))) {
|
2007-02-04 03:26:52 -05:00
|
|
|
_alpm_log(PM_LOG_WARNING, _("%s-%s: ignoring package upgrade (to be replaced by %s-%s)"),
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_pkg_get_name(lpkg), alpm_pkg_get_version(lpkg),
|
|
|
|
alpm_pkg_get_name(spkg), alpm_pkg_get_version(spkg));
|
2007-02-04 03:26:52 -05:00
|
|
|
} else {
|
|
|
|
/* assume all replaces=() packages are accepted */
|
|
|
|
pmsyncpkg_t *sync = NULL;
|
2007-03-03 03:13:59 -05:00
|
|
|
pmpkg_t *dummy = _alpm_pkg_new(alpm_pkg_get_name(lpkg), NULL);
|
2007-02-04 03:26:52 -05:00
|
|
|
if(dummy == NULL) {
|
|
|
|
pm_errno = PM_ERR_MEMORY;
|
|
|
|
goto error;
|
|
|
|
}
|
2007-03-03 03:13:59 -05:00
|
|
|
dummy->requiredby = alpm_list_strdup(alpm_pkg_get_requiredby(lpkg));
|
|
|
|
|
|
|
|
pmsyncpkg_t *syncpkg;
|
|
|
|
syncpkg = _alpm_sync_find(syncpkgs, alpm_pkg_get_name(spkg));
|
2007-02-04 03:26:52 -05:00
|
|
|
|
2007-03-03 03:13:59 -05:00
|
|
|
if(syncpkg) {
|
2007-02-04 03:26:52 -05:00
|
|
|
/* found it -- just append to the replaces list */
|
|
|
|
sync->data = alpm_list_add(sync->data, dummy);
|
|
|
|
} else {
|
|
|
|
/* none found -- enter pkg into the final sync list */
|
|
|
|
sync = _alpm_sync_new(PM_SYNC_TYPE_REPLACE, spkg, NULL);
|
|
|
|
if(sync == NULL) {
|
2007-04-26 21:08:34 -04:00
|
|
|
_alpm_pkg_free(dummy);
|
2007-02-04 03:26:52 -05:00
|
|
|
pm_errno = PM_ERR_MEMORY;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
sync->data = alpm_list_add(NULL, dummy);
|
|
|
|
syncpkgs = alpm_list_add(syncpkgs, sync);
|
|
|
|
}
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("%s-%s elected for upgrade (to be replaced by %s-%s)"),
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_pkg_get_name(lpkg), alpm_pkg_get_version(lpkg),
|
|
|
|
alpm_pkg_get_name(spkg), alpm_pkg_get_version(spkg));
|
2007-02-04 03:26:52 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now do normal upgrades */
|
2007-03-03 03:13:59 -05:00
|
|
|
for(i = _alpm_db_get_pkgcache(handle->db_local); i; i = i->next) {
|
2007-02-04 03:26:52 -05:00
|
|
|
int replace=0;
|
|
|
|
pmpkg_t *local = i->data;
|
|
|
|
pmpkg_t *spkg = NULL;
|
|
|
|
pmsyncpkg_t *sync;
|
|
|
|
|
|
|
|
for(j = handle->dbs_sync; !spkg && j; j = j->next) {
|
2007-03-03 03:13:59 -05:00
|
|
|
spkg = _alpm_db_get_pkgfromcache(j->data, alpm_pkg_get_name(local));
|
2007-02-04 03:26:52 -05:00
|
|
|
}
|
|
|
|
if(spkg == NULL) {
|
2007-03-03 03:13:59 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("'%s' not found in sync db -- skipping"), alpm_pkg_get_name(local));
|
2007-02-04 03:26:52 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we don't care about a to-be-replaced package's newer version */
|
|
|
|
for(j = syncpkgs; j && !replace; j=j->next) {
|
|
|
|
sync = j->data;
|
|
|
|
if(sync->type == PM_SYNC_TYPE_REPLACE) {
|
2007-03-03 03:13:59 -05:00
|
|
|
if(_alpm_pkg_find(alpm_pkg_get_name(spkg), sync->data)) {
|
2007-02-04 03:26:52 -05:00
|
|
|
replace=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(replace) {
|
|
|
|
_alpm_log(PM_LOG_DEBUG, _("'%s' is already elected for removal -- skipping"),
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_pkg_get_name(local));
|
2007-02-04 03:26:52 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-02-09 16:08:10 -05:00
|
|
|
if(alpm_pkg_compare_versions(local, spkg)) {
|
2007-03-03 03:13:59 -05:00
|
|
|
_alpm_log(PM_LOG_DEBUG, _("%s elected for upgrade (%s => %s)"),
|
|
|
|
alpm_pkg_get_name(local), alpm_pkg_get_version(local),
|
|
|
|
alpm_pkg_get_version(spkg));
|
|
|
|
|
|
|
|
pmsyncpkg_t *syncpkg;
|
|
|
|
syncpkg = _alpm_sync_find(syncpkgs, alpm_pkg_get_name(local));
|
2007-02-04 03:26:52 -05:00
|
|
|
|
2007-03-03 03:13:59 -05:00
|
|
|
if(!syncpkg) {
|
|
|
|
pmpkg_t *dummy = _alpm_pkg_new(alpm_pkg_get_name(local),
|
|
|
|
alpm_pkg_get_version(local));
|
2007-02-04 03:26:52 -05:00
|
|
|
if(dummy == NULL) {
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
sync = _alpm_sync_new(PM_SYNC_TYPE_UPGRADE, spkg, dummy);
|
|
|
|
if(sync == NULL) {
|
2007-04-26 21:08:34 -04:00
|
|
|
_alpm_pkg_free(dummy);
|
2007-02-04 03:26:52 -05:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
syncpkgs = alpm_list_add(syncpkgs, sync);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(syncpkgs);
|
|
|
|
error:
|
|
|
|
if(syncpkgs) {
|
2007-04-26 20:11:30 -04:00
|
|
|
alpm_list_t *tmp;
|
|
|
|
for(tmp = syncpkgs; tmp; tmp = alpm_list_next(tmp)) {
|
|
|
|
if(tmp->data) {
|
|
|
|
_alpm_sync_free(tmp->data);
|
|
|
|
}
|
|
|
|
}
|
2007-02-04 03:26:52 -05:00
|
|
|
alpm_list_free(syncpkgs);
|
|
|
|
}
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
/* vim: set ts=2 sw=2 noet: */
|