Allow invalid sync DBs to be returned by the library

They are placeholders, but important for things like trying to re-sync a
database missing a signature. By using the alpm_db_validity() method at
the right time, a client can take the appropriate action with these
invalid databases as necessary.

In pacman's case, we disallow just about anything that involves looking
at a sync database outside of an '-Sy' operation (although we do check
the validity immediately after). A few operations are still permitted-
'-Q' ops that don't touch sync databases as well as '-R'.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2011-06-07 23:08:06 -05:00
parent 07502f2d82
commit c748eadc80
10 changed files with 54 additions and 29 deletions

View file

@ -596,14 +596,10 @@ alpm_db_t *_alpm_db_register_sync(alpm_handle_t *handle, const char *treename,
db->handle = handle; db->handle = handle;
db->siglevel = level; db->siglevel = level;
if(sync_db_validate(db)) { sync_db_validate(db);
_alpm_db_free(db);
return NULL;
}
handle->dbs_sync = alpm_list_add(handle->dbs_sync, db); handle->dbs_sync = alpm_list_add(handle->dbs_sync, db);
return db; return db;
} }
/* vim: set ts=2 sw=2 noet: */ /* vim: set ts=2 sw=2 noet: */

View file

@ -315,6 +315,14 @@ int _alpm_sync_prepare(alpm_handle_t *handle, alpm_list_t **data)
*data = NULL; *data = NULL;
} }
/* ensure all sync database are valid since we will be using them */
for(i = handle->dbs_sync; i; i = i->next) {
const alpm_db_t *db = i->data;
if(!(db->status & DB_STATUS_VALID)) {
RET_ERR(handle, ALPM_ERR_DB_INVALID, -1);
}
}
if(!(trans->flags & ALPM_TRANS_FLAG_NODEPS)) { if(!(trans->flags & ALPM_TRANS_FLAG_NODEPS)) {
alpm_list_t *resolved = NULL; /* target list after resolvedeps */ alpm_list_t *resolved = NULL; /* target list after resolvedeps */

View file

@ -53,19 +53,11 @@ int SYMEXPORT alpm_trans_init(alpm_handle_t *handle, alpm_transflag_t flags,
alpm_trans_cb_progress progress) alpm_trans_cb_progress progress)
{ {
alpm_trans_t *trans; alpm_trans_t *trans;
alpm_list_t *i;
/* Sanity checks */ /* Sanity checks */
CHECK_HANDLE(handle, return -1); CHECK_HANDLE(handle, return -1);
ASSERT(handle->trans == NULL, RET_ERR(handle, ALPM_ERR_TRANS_NOT_NULL, -1)); ASSERT(handle->trans == NULL, RET_ERR(handle, ALPM_ERR_TRANS_NOT_NULL, -1));
for(i = handle->dbs_sync; i; i = i->next) {
const alpm_db_t *db = i->data;
if(!(db->status & DB_STATUS_VALID)) {
RET_ERR(handle, ALPM_ERR_DB_INVALID, -1);
}
}
/* lock db */ /* lock db */
if(!(flags & ALPM_TRANS_FLAG_NOLOCK)) { if(!(flags & ALPM_TRANS_FLAG_NOLOCK)) {
if(_alpm_handle_lock(handle)) { if(_alpm_handle_lock(handle)) {

View file

@ -59,7 +59,7 @@ int pacman_database(alpm_list_t *targets)
} }
/* Lock database */ /* Lock database */
if(trans_init(0) == -1) { if(trans_init(0, 0) == -1) {
return 1; return 1;
} }

View file

@ -501,11 +501,8 @@ int pacman_query(alpm_list_t *targets)
return ret; return ret;
} }
if(config->op_q_foreign) { if(config->op_q_foreign || config->op_q_upgrade) {
/* ensure we have at least one valid sync db set up */ if(check_syncdbs(1, 1)) {
alpm_list_t *sync_dbs = alpm_option_get_syncdbs(config->handle);
if(sync_dbs == NULL) {
pm_printf(ALPM_LOG_ERROR, _("no usable package repositories configured.\n"));
return 1; return 1;
} }
} }

View file

@ -81,7 +81,7 @@ int pacman_remove(alpm_list_t *targets)
} }
/* Step 0: create a new transaction */ /* Step 0: create a new transaction */
if(trans_init(config->flags) == -1) { if(trans_init(config->flags, 0) == -1) {
return 1; return 1;
} }

View file

@ -738,7 +738,7 @@ static int sync_trans(alpm_list_t *targets)
alpm_list_t *i; alpm_list_t *i;
/* Step 1: create a new transaction... */ /* Step 1: create a new transaction... */
if(trans_init(config->flags) == -1) { if(trans_init(config->flags, 1) == -1) {
return 1; return 1;
} }
@ -885,7 +885,7 @@ int pacman_sync(alpm_list_t *targets)
if(config->op_s_clean) { if(config->op_s_clean) {
int ret = 0; int ret = 0;
if(trans_init(0) == -1) { if(trans_init(0, 0) == -1) {
return 1; return 1;
} }
@ -900,13 +900,12 @@ int pacman_sync(alpm_list_t *targets)
return ret; return ret;
} }
/* ensure we have at least one valid sync db set up */ if(check_syncdbs(1, 0)) {
sync_dbs = alpm_option_get_syncdbs(config->handle);
if(sync_dbs == NULL) {
pm_printf(ALPM_LOG_ERROR, _("no usable package repositories configured.\n"));
return 1; return 1;
} }
sync_dbs = alpm_option_get_syncdbs(config->handle);
if(config->op_s_sync) { if(config->op_s_sync) {
/* grab a fresh package list */ /* grab a fresh package list */
printf(_(":: Synchronizing package databases...\n")); printf(_(":: Synchronizing package databases...\n"));
@ -916,6 +915,10 @@ int pacman_sync(alpm_list_t *targets)
} }
} }
if(check_syncdbs(1, 1)) {
return 1;
}
/* search for a package */ /* search for a package */
if(config->op_s_search) { if(config->op_s_search) {
return sync_search(sync_dbs, targets); return sync_search(sync_dbs, targets);

View file

@ -67,7 +67,7 @@ int pacman_upgrade(alpm_list_t *targets)
} }
/* Step 1: create a new transaction */ /* Step 1: create a new transaction */
if(trans_init(config->flags) == -1) { if(trans_init(config->flags, 1) == -1) {
return 1; return 1;
} }

View file

@ -49,9 +49,12 @@
#include "callback.h" #include "callback.h"
int trans_init(alpm_transflag_t flags) int trans_init(alpm_transflag_t flags, int check_valid)
{ {
int ret; int ret;
check_syncdbs(0, check_valid);
if(config->print) { if(config->print) {
ret = alpm_trans_init(config->handle, flags, NULL, NULL, NULL); ret = alpm_trans_init(config->handle, flags, NULL, NULL, NULL);
} else { } else {
@ -101,6 +104,31 @@ int needs_root(void)
} }
} }
int check_syncdbs(size_t need_repos, int check_valid)
{
int ret = 0;
alpm_list_t *i;
alpm_list_t *sync_dbs = alpm_option_get_syncdbs(config->handle);
if(need_repos && sync_dbs == NULL) {
pm_printf(ALPM_LOG_ERROR, _("no usable package repositories configured.\n"));
return 1;
}
if(check_valid) {
/* ensure all known dbs are valid */
for(i = sync_dbs; i; i = alpm_list_next(i)) {
alpm_db_t *db = i->data;
if(alpm_db_get_valid(db)) {
pm_printf(ALPM_LOG_ERROR, _("database '%s' is not valid (%s)\n"),
alpm_db_get_name(db), alpm_strerror(alpm_errno(config->handle)));
ret = 1;
}
}
}
return ret;
}
/* discard unhandled input on the terminal's input buffer */ /* discard unhandled input on the terminal's input buffer */
static int flush_term_input(void) { static int flush_term_input(void) {
#ifdef HAVE_TCFLUSH #ifdef HAVE_TCFLUSH

View file

@ -39,9 +39,10 @@
/* update speed for the fill_progress based functions */ /* update speed for the fill_progress based functions */
#define UPDATE_SPEED_SEC 0.2f #define UPDATE_SPEED_SEC 0.2f
int trans_init(alpm_transflag_t flags); int trans_init(alpm_transflag_t flags, int check_valid);
int trans_release(void); int trans_release(void);
int needs_root(void); int needs_root(void);
int check_syncdbs(size_t need_repos, int check_valid);
int getcols(void); int getcols(void);
int rmrf(const char *path); int rmrf(const char *path);
const char *mbasename(const char *path); const char *mbasename(const char *path);