2008-04-17 14:09:13 +00:00
|
|
|
/* database.c - Alpine Package Keeper (APK)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
2011-09-13 08:53:01 +00:00
|
|
|
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
|
2008-04-17 14:09:13 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2009-06-28 15:05:17 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
2008-04-17 14:09:13 +00:00
|
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
|
|
* by the Free Software Foundation. See http://www.gnu.org/ for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <fcntl.h>
|
2011-03-16 12:55:08 +00:00
|
|
|
#include <mntent.h>
|
2008-11-14 12:26:59 +00:00
|
|
|
#include <limits.h>
|
2008-04-17 14:09:13 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <string.h>
|
2009-01-08 07:15:16 +00:00
|
|
|
#include <stdlib.h>
|
2009-07-07 07:30:54 +00:00
|
|
|
#include <signal.h>
|
2009-08-13 11:10:30 +00:00
|
|
|
#include <fnmatch.h>
|
2011-03-16 11:18:54 +00:00
|
|
|
#include <sys/vfs.h>
|
2009-01-17 09:07:56 +00:00
|
|
|
#include <sys/file.h>
|
2011-03-16 12:55:08 +00:00
|
|
|
#include <sys/wait.h>
|
2010-08-30 13:04:25 +00:00
|
|
|
#include <sys/stat.h>
|
2011-03-16 12:55:08 +00:00
|
|
|
#include <sys/statvfs.h>
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
#include "apk_defines.h"
|
|
|
|
#include "apk_package.h"
|
|
|
|
#include "apk_database.h"
|
2008-04-21 16:30:10 +00:00
|
|
|
#include "apk_applet.h"
|
2009-07-20 08:13:03 +00:00
|
|
|
#include "apk_archive.h"
|
2010-03-05 08:13:25 +00:00
|
|
|
#include "apk_print.h"
|
|
|
|
|
2012-02-08 15:01:14 +00:00
|
|
|
static const apk_spn_match_def apk_spn_repo_separators = {
|
|
|
|
[4] = (1<<0) /* */,
|
|
|
|
[7] = (1<<2) /*:*/,
|
|
|
|
};
|
|
|
|
|
2010-09-22 14:16:18 +00:00
|
|
|
enum {
|
2014-10-07 10:29:34 +00:00
|
|
|
APK_DIR_FREE = 0,
|
|
|
|
APK_DIR_REMOVE
|
2010-09-22 14:16:18 +00:00
|
|
|
};
|
|
|
|
|
2010-03-05 08:13:25 +00:00
|
|
|
int apk_verbosity = 1;
|
|
|
|
unsigned int apk_flags = 0;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2013-06-17 13:33:59 +00:00
|
|
|
static apk_blob_t tmpprefix = { .len=8, .ptr = ".apknew." };
|
|
|
|
|
2013-06-17 11:24:34 +00:00
|
|
|
static const char * const apkindex_tar_gz = "APKINDEX.tar.gz";
|
|
|
|
|
2011-03-16 14:52:14 +00:00
|
|
|
static const char * const apk_static_cache_dir = "var/cache/apk";
|
2009-06-28 17:36:16 +00:00
|
|
|
static const char * const apk_linked_cache_dir = "etc/apk/cache";
|
2011-03-16 14:52:14 +00:00
|
|
|
|
2011-03-16 13:39:36 +00:00
|
|
|
static const char * const apk_lock_file = "var/lock/apkdb";
|
2009-06-28 17:36:16 +00:00
|
|
|
|
2011-03-16 14:52:14 +00:00
|
|
|
static const char * const apk_world_file = "etc/apk/world";
|
|
|
|
static const char * const apk_world_file_tmp = "etc/apk/world.new";
|
2012-02-23 15:04:51 +00:00
|
|
|
static const char * const apk_arch_file = "etc/apk/arch";
|
2011-03-16 14:52:14 +00:00
|
|
|
|
|
|
|
static const char * const apk_scripts_file = "lib/apk/db/scripts.tar";
|
|
|
|
static const char * const apk_scripts_file_tmp = "lib/apk/db/scripts.tar.new";
|
|
|
|
|
|
|
|
static const char * const apk_triggers_file = "lib/apk/db/triggers";
|
|
|
|
static const char * const apk_triggers_file_tmp = "lib/apk/db/triggers.new";
|
|
|
|
|
2013-06-18 11:53:59 +00:00
|
|
|
const char * const apk_installed_file = "lib/apk/db/installed";
|
2011-03-16 14:52:14 +00:00
|
|
|
static const char * const apk_installed_file_tmp = "lib/apk/db/installed.new";
|
|
|
|
|
2014-11-01 18:18:57 +00:00
|
|
|
static struct apk_db_acl *apk_default_acl_dir, *apk_default_acl_file;
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
struct install_ctx {
|
|
|
|
struct apk_database *db;
|
|
|
|
struct apk_package *pkg;
|
2009-08-12 16:17:46 +00:00
|
|
|
struct apk_installed_package *ipkg;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
int script;
|
2009-08-12 16:17:46 +00:00
|
|
|
char **script_args;
|
2009-07-21 11:06:35 +00:00
|
|
|
int script_pending : 1;
|
2009-08-12 16:17:46 +00:00
|
|
|
|
2009-01-06 17:44:54 +00:00
|
|
|
struct apk_db_dir_instance *diri;
|
2009-07-14 16:14:05 +00:00
|
|
|
struct apk_checksum data_csum;
|
2009-07-21 10:49:35 +00:00
|
|
|
struct apk_sign_ctx sctx;
|
2009-01-06 17:44:54 +00:00
|
|
|
|
2009-01-07 19:45:11 +00:00
|
|
|
apk_progress_cb cb;
|
|
|
|
void *cb_ctx;
|
|
|
|
size_t installed_size;
|
|
|
|
size_t current_file_size;
|
|
|
|
|
2009-01-06 17:44:54 +00:00
|
|
|
struct hlist_node **diri_node;
|
|
|
|
struct hlist_node **file_diri_node;
|
2008-04-17 14:09:13 +00:00
|
|
|
};
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
static apk_blob_t pkg_name_get_key(apk_hash_item item)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2008-11-27 18:25:01 +00:00
|
|
|
return APK_BLOB_STR(((struct apk_name *) item)->name);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2009-01-14 17:48:30 +00:00
|
|
|
static void pkg_name_free(struct apk_name *name)
|
|
|
|
{
|
|
|
|
free(name->name);
|
2012-02-24 13:50:39 +00:00
|
|
|
apk_provider_array_free(&name->providers);
|
2010-06-05 09:06:41 +00:00
|
|
|
apk_name_array_free(&name->rdepends);
|
2011-01-04 08:05:20 +00:00
|
|
|
apk_name_array_free(&name->rinstall_if);
|
2009-01-14 17:48:30 +00:00
|
|
|
free(name);
|
|
|
|
}
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
static const struct apk_hash_ops pkg_name_hash_ops = {
|
|
|
|
.node_offset = offsetof(struct apk_name, hash_node),
|
|
|
|
.get_key = pkg_name_get_key,
|
2008-11-27 18:25:01 +00:00
|
|
|
.hash_key = apk_blob_hash,
|
|
|
|
.compare = apk_blob_compare,
|
2009-01-14 17:48:30 +00:00
|
|
|
.delete_item = (apk_hash_delete_f) pkg_name_free,
|
2008-04-17 14:09:13 +00:00
|
|
|
};
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
static apk_blob_t pkg_info_get_key(apk_hash_item item)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2009-07-14 16:14:05 +00:00
|
|
|
return APK_BLOB_CSUM(((struct apk_package *) item)->csum);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
static unsigned long csum_hash(apk_blob_t csum)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2008-11-27 18:25:01 +00:00
|
|
|
/* Checksum's highest bits have the most "randomness", use that
|
|
|
|
* directly as hash */
|
2008-11-28 11:15:06 +00:00
|
|
|
return *(unsigned long *) csum.ptr;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct apk_hash_ops pkg_info_hash_ops = {
|
|
|
|
.node_offset = offsetof(struct apk_package, hash_node),
|
|
|
|
.get_key = pkg_info_get_key,
|
2008-11-27 18:25:01 +00:00
|
|
|
.hash_key = csum_hash,
|
|
|
|
.compare = apk_blob_compare,
|
2008-04-17 14:09:13 +00:00
|
|
|
.delete_item = (apk_hash_delete_f) apk_pkg_free,
|
|
|
|
};
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
static apk_blob_t apk_db_dir_get_key(apk_hash_item item)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2009-07-14 08:55:08 +00:00
|
|
|
struct apk_db_dir *dir = (struct apk_db_dir *) item;
|
|
|
|
return APK_BLOB_PTR_LEN(dir->name, dir->namelen);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct apk_hash_ops dir_hash_ops = {
|
|
|
|
.node_offset = offsetof(struct apk_db_dir, hash_node),
|
|
|
|
.get_key = apk_db_dir_get_key,
|
2008-11-27 18:25:01 +00:00
|
|
|
.hash_key = apk_blob_hash,
|
|
|
|
.compare = apk_blob_compare,
|
2008-04-17 14:09:13 +00:00
|
|
|
.delete_item = (apk_hash_delete_f) free,
|
|
|
|
};
|
|
|
|
|
2009-01-14 08:44:47 +00:00
|
|
|
struct apk_db_file_hash_key {
|
|
|
|
apk_blob_t dirname;
|
|
|
|
apk_blob_t filename;
|
|
|
|
};
|
|
|
|
|
|
|
|
static unsigned long apk_db_file_hash_key(apk_blob_t _key)
|
2009-01-13 18:32:18 +00:00
|
|
|
{
|
2009-01-14 08:44:47 +00:00
|
|
|
struct apk_db_file_hash_key *key = (struct apk_db_file_hash_key *) _key.ptr;
|
|
|
|
|
2009-07-14 08:55:08 +00:00
|
|
|
return apk_blob_hash_seed(key->filename, apk_blob_hash(key->dirname));
|
2009-01-14 08:44:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned long apk_db_file_hash_item(apk_hash_item item)
|
|
|
|
{
|
|
|
|
struct apk_db_file *dbf = (struct apk_db_file *) item;
|
|
|
|
|
2009-07-14 08:55:08 +00:00
|
|
|
return apk_blob_hash_seed(APK_BLOB_PTR_LEN(dbf->name, dbf->namelen),
|
|
|
|
dbf->diri->dir->hash);
|
2009-01-14 08:44:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int apk_db_file_compare_item(apk_hash_item item, apk_blob_t _key)
|
|
|
|
{
|
|
|
|
struct apk_db_file *dbf = (struct apk_db_file *) item;
|
|
|
|
struct apk_db_file_hash_key *key = (struct apk_db_file_hash_key *) _key.ptr;
|
2009-07-14 08:55:08 +00:00
|
|
|
struct apk_db_dir *dir = dbf->diri->dir;
|
2009-01-14 08:44:47 +00:00
|
|
|
int r;
|
|
|
|
|
2009-07-14 08:55:08 +00:00
|
|
|
r = apk_blob_compare(key->filename,
|
|
|
|
APK_BLOB_PTR_LEN(dbf->name, dbf->namelen));
|
2009-01-14 08:44:47 +00:00
|
|
|
if (r != 0)
|
|
|
|
return r;
|
|
|
|
|
2009-07-14 08:55:08 +00:00
|
|
|
r = apk_blob_compare(key->dirname,
|
|
|
|
APK_BLOB_PTR_LEN(dir->name, dir->namelen));
|
|
|
|
return r;
|
2009-01-13 18:32:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct apk_hash_ops file_hash_ops = {
|
|
|
|
.node_offset = offsetof(struct apk_db_file, hash_node),
|
2009-01-14 08:44:47 +00:00
|
|
|
.hash_key = apk_db_file_hash_key,
|
|
|
|
.hash_item = apk_db_file_hash_item,
|
|
|
|
.compare_item = apk_db_file_compare_item,
|
2009-01-13 18:32:18 +00:00
|
|
|
.delete_item = (apk_hash_delete_f) free,
|
|
|
|
};
|
|
|
|
|
2009-01-13 12:09:45 +00:00
|
|
|
struct apk_name *apk_db_query_name(struct apk_database *db, apk_blob_t name)
|
|
|
|
{
|
|
|
|
return (struct apk_name *) apk_hash_get(&db->available.names, name);
|
|
|
|
}
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
struct apk_name *apk_db_get_name(struct apk_database *db, apk_blob_t name)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
struct apk_name *pn;
|
2009-07-14 07:47:20 +00:00
|
|
|
unsigned long hash = apk_hash_from_key(&db->available.names, name);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-07-14 07:47:20 +00:00
|
|
|
pn = (struct apk_name *) apk_hash_get_hashed(&db->available.names, name, hash);
|
2008-04-17 14:09:13 +00:00
|
|
|
if (pn != NULL)
|
|
|
|
return pn;
|
|
|
|
|
|
|
|
pn = calloc(1, sizeof(struct apk_name));
|
|
|
|
if (pn == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
pn->name = apk_blob_cstr(name);
|
2012-02-24 13:50:39 +00:00
|
|
|
apk_provider_array_init(&pn->providers);
|
2010-06-05 09:06:41 +00:00
|
|
|
apk_name_array_init(&pn->rdepends);
|
2011-01-04 08:05:20 +00:00
|
|
|
apk_name_array_init(&pn->rinstall_if);
|
2009-07-14 07:47:20 +00:00
|
|
|
apk_hash_insert_hashed(&db->available.names, pn, hash);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
return pn;
|
|
|
|
}
|
|
|
|
|
2015-03-11 14:10:33 +00:00
|
|
|
static struct apk_db_acl *apk_db_acl_atomize(mode_t mode, uid_t uid, gid_t gid, const struct apk_checksum *xattr_csum)
|
2014-11-01 18:18:57 +00:00
|
|
|
{
|
|
|
|
struct apk_db_acl acl = { .mode = mode & 07777, .uid = uid, .gid = gid };
|
|
|
|
apk_blob_t *b;
|
2015-03-11 14:10:33 +00:00
|
|
|
|
|
|
|
if (xattr_csum && xattr_csum->type != APK_CHECKSUM_NONE)
|
|
|
|
acl.xattr_csum = *xattr_csum;
|
|
|
|
|
2014-11-01 18:18:57 +00:00
|
|
|
b = apk_blob_atomize_dup(APK_BLOB_STRUCT(acl));
|
|
|
|
return (struct apk_db_acl *) b->ptr;
|
|
|
|
}
|
|
|
|
|
2014-10-07 10:29:34 +00:00
|
|
|
static void apk_db_dir_prepare(struct apk_database *db, struct apk_db_dir *dir, mode_t newmode)
|
2012-02-10 13:21:41 +00:00
|
|
|
{
|
2014-10-07 10:29:34 +00:00
|
|
|
struct stat st;
|
2012-02-10 14:40:01 +00:00
|
|
|
|
2014-10-07 10:29:34 +00:00
|
|
|
if (dir->namelen == 0) return;
|
|
|
|
if (dir->created) return;
|
2012-02-10 14:40:01 +00:00
|
|
|
|
2014-10-07 10:29:34 +00:00
|
|
|
if (fstatat(db->root_fd, dir->name, &st, AT_SYMLINK_NOFOLLOW) == 0) {
|
|
|
|
/* If directory exists and stats match what we expect,
|
|
|
|
* then we can allow auto updating the permissions */
|
|
|
|
dir->created = 1;
|
|
|
|
dir->update_permissions |=
|
|
|
|
(st.st_mode & 07777) == (dir->mode & 07777) &&
|
|
|
|
st.st_uid == dir->uid && st.st_gid == dir->gid;
|
|
|
|
} else if (newmode) {
|
|
|
|
if (!(apk_flags & APK_SIMULATE))
|
|
|
|
mkdirat(db->root_fd, dir->name, newmode);
|
|
|
|
dir->created = 1;
|
|
|
|
dir->update_permissions = 1;
|
|
|
|
}
|
2012-02-10 13:21:41 +00:00
|
|
|
}
|
|
|
|
|
2014-10-07 10:29:34 +00:00
|
|
|
void apk_db_dir_unref(struct apk_database *db, struct apk_db_dir *dir, int rmdir_mode)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2014-10-07 10:29:34 +00:00
|
|
|
if (--dir->refs > 0) return;
|
2008-04-17 14:09:13 +00:00
|
|
|
db->installed.stats.dirs--;
|
2014-10-07 10:29:34 +00:00
|
|
|
if (dir->namelen == 0) return;
|
2012-02-10 13:21:41 +00:00
|
|
|
|
2014-10-07 10:29:34 +00:00
|
|
|
if (rmdir_mode == APK_DIR_REMOVE && !(apk_flags & APK_SIMULATE))
|
|
|
|
if (unlinkat(db->root_fd, dir->name, AT_REMOVEDIR))
|
|
|
|
;
|
2012-02-10 13:21:41 +00:00
|
|
|
|
2014-10-07 10:29:34 +00:00
|
|
|
apk_db_dir_unref(db, dir->parent, rmdir_mode);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2012-07-16 11:44:15 +00:00
|
|
|
struct apk_db_dir *apk_db_dir_ref(struct apk_db_dir *dir)
|
2009-01-06 17:44:54 +00:00
|
|
|
{
|
|
|
|
dir->refs++;
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
2009-01-14 17:48:30 +00:00
|
|
|
struct apk_db_dir *apk_db_dir_query(struct apk_database *db,
|
|
|
|
apk_blob_t name)
|
2009-01-13 13:22:14 +00:00
|
|
|
{
|
|
|
|
return (struct apk_db_dir *) apk_hash_get(&db->installed.dirs, name);
|
|
|
|
}
|
|
|
|
|
2012-02-23 13:05:06 +00:00
|
|
|
struct apk_db_dir *apk_db_dir_get(struct apk_database *db, apk_blob_t name)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
struct apk_db_dir *dir;
|
2012-02-23 13:05:06 +00:00
|
|
|
struct apk_protected_path_array *ppaths;
|
2013-06-18 05:03:40 +00:00
|
|
|
struct apk_protected_path *ppath;
|
2008-04-17 14:09:13 +00:00
|
|
|
apk_blob_t bparent;
|
2009-07-14 07:47:20 +00:00
|
|
|
unsigned long hash = apk_hash_from_key(&db->installed.dirs, name);
|
2012-02-23 13:05:06 +00:00
|
|
|
char *relative_name;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-04-21 16:30:10 +00:00
|
|
|
if (name.len && name.ptr[name.len-1] == '/')
|
2008-04-17 14:09:13 +00:00
|
|
|
name.len--;
|
|
|
|
|
2009-07-14 07:47:20 +00:00
|
|
|
dir = (struct apk_db_dir *) apk_hash_get_hashed(&db->installed.dirs, name, hash);
|
2008-04-17 14:09:13 +00:00
|
|
|
if (dir != NULL)
|
2009-01-13 18:32:18 +00:00
|
|
|
return apk_db_dir_ref(dir);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-01-06 17:44:54 +00:00
|
|
|
db->installed.stats.dirs++;
|
2009-07-14 06:33:32 +00:00
|
|
|
dir = malloc(sizeof(*dir) + name.len + 1);
|
|
|
|
memset(dir, 0, sizeof(*dir));
|
2009-01-06 17:44:54 +00:00
|
|
|
dir->refs = 1;
|
2012-02-10 13:21:41 +00:00
|
|
|
dir->uid = (uid_t) -1;
|
|
|
|
dir->gid = (gid_t) -1;
|
2009-08-13 11:10:30 +00:00
|
|
|
dir->rooted_name[0] = '/';
|
2009-07-14 08:55:08 +00:00
|
|
|
memcpy(dir->name, name.ptr, name.len);
|
|
|
|
dir->name[name.len] = 0;
|
|
|
|
dir->namelen = name.len;
|
|
|
|
dir->hash = hash;
|
2012-02-23 13:05:06 +00:00
|
|
|
apk_protected_path_array_init(&dir->protected_paths);
|
2009-07-14 07:47:20 +00:00
|
|
|
apk_hash_insert_hashed(&db->installed.dirs, dir, hash);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2012-02-23 13:05:06 +00:00
|
|
|
if (name.len == 0) {
|
2008-04-21 16:30:10 +00:00
|
|
|
dir->parent = NULL;
|
2012-02-23 13:05:06 +00:00
|
|
|
dir->has_protected_children = 1;
|
|
|
|
ppaths = NULL;
|
|
|
|
} else if (apk_blob_rsplit(name, '/', &bparent, NULL)) {
|
2009-01-13 18:32:18 +00:00
|
|
|
dir->parent = apk_db_dir_get(db, bparent);
|
2014-03-12 07:08:26 +00:00
|
|
|
dir->protect_mode = dir->parent->protect_mode;
|
|
|
|
dir->has_protected_children = (dir->protect_mode != APK_PROTECT_NONE);
|
2012-02-23 13:05:06 +00:00
|
|
|
ppaths = dir->parent->protected_paths;
|
|
|
|
} else {
|
2009-01-13 18:32:18 +00:00
|
|
|
dir->parent = apk_db_dir_get(db, APK_BLOB_NULL);
|
2012-02-23 13:05:06 +00:00
|
|
|
ppaths = db->protected_paths;
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2012-02-23 13:05:06 +00:00
|
|
|
if (ppaths == NULL)
|
|
|
|
return dir;
|
2008-11-14 12:26:59 +00:00
|
|
|
|
2012-02-23 13:05:06 +00:00
|
|
|
relative_name = strrchr(dir->rooted_name, '/') + 1;
|
2013-06-18 05:03:40 +00:00
|
|
|
foreach_array_item(ppath, ppaths) {
|
|
|
|
char *slash = strchr(ppath->relative_pattern, '/');
|
2012-02-23 13:05:06 +00:00
|
|
|
if (slash != NULL) {
|
|
|
|
*slash = 0;
|
|
|
|
if (fnmatch(ppath->relative_pattern, relative_name, FNM_PATHNAME) != 0) {
|
|
|
|
*slash = '/';
|
2009-07-30 07:42:20 +00:00
|
|
|
continue;
|
|
|
|
}
|
2012-02-23 13:05:06 +00:00
|
|
|
*slash = '/';
|
|
|
|
|
|
|
|
*apk_protected_path_array_add(&dir->protected_paths) = (struct apk_protected_path) {
|
|
|
|
.relative_pattern = slash + 1,
|
2014-03-12 07:08:26 +00:00
|
|
|
.protect_mode = ppath->protect_mode,
|
2012-02-23 13:05:06 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
if (fnmatch(ppath->relative_pattern, relative_name, FNM_PATHNAME) != 0)
|
|
|
|
continue;
|
2009-07-30 07:42:20 +00:00
|
|
|
|
2014-03-12 07:08:26 +00:00
|
|
|
dir->protect_mode = ppath->protect_mode;
|
2012-02-23 13:05:06 +00:00
|
|
|
}
|
2014-03-12 07:08:26 +00:00
|
|
|
dir->has_protected_children |= (ppath->protect_mode != APK_PROTECT_NONE);
|
2008-11-14 12:26:59 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
2009-01-06 17:44:54 +00:00
|
|
|
static struct apk_db_dir_instance *apk_db_diri_new(struct apk_database *db,
|
|
|
|
struct apk_package *pkg,
|
|
|
|
apk_blob_t name,
|
2009-01-16 07:32:04 +00:00
|
|
|
struct hlist_node ***after)
|
2009-01-06 17:44:54 +00:00
|
|
|
{
|
|
|
|
struct apk_db_dir_instance *diri;
|
|
|
|
|
|
|
|
diri = calloc(1, sizeof(struct apk_db_dir_instance));
|
2009-01-07 19:45:11 +00:00
|
|
|
if (diri != NULL) {
|
2009-01-16 07:32:04 +00:00
|
|
|
hlist_add_after(&diri->pkg_dirs_list, *after);
|
|
|
|
*after = &diri->pkg_dirs_list.next;
|
2009-01-13 18:32:18 +00:00
|
|
|
diri->dir = apk_db_dir_get(db, name);
|
2009-01-07 19:45:11 +00:00
|
|
|
diri->pkg = pkg;
|
2014-11-01 18:18:57 +00:00
|
|
|
diri->acl = apk_default_acl_dir;
|
2009-01-07 19:45:11 +00:00
|
|
|
}
|
2009-01-06 17:44:54 +00:00
|
|
|
|
|
|
|
return diri;
|
|
|
|
}
|
|
|
|
|
2012-02-10 13:21:41 +00:00
|
|
|
static void apk_db_dir_apply_diri_permissions(struct apk_db_dir_instance *diri)
|
|
|
|
{
|
|
|
|
struct apk_db_dir *dir = diri->dir;
|
2014-11-01 18:18:57 +00:00
|
|
|
struct apk_db_acl *acl = diri->acl;
|
2012-02-10 13:21:41 +00:00
|
|
|
|
2014-11-01 18:18:57 +00:00
|
|
|
if (acl->uid < dir->uid || (acl->uid == dir->uid && acl->gid < dir->gid)) {
|
|
|
|
dir->uid = acl->uid;
|
|
|
|
dir->gid = acl->gid;
|
|
|
|
dir->mode = acl->mode;
|
|
|
|
} else if (acl->uid == dir->uid && acl->gid == dir->gid) {
|
|
|
|
dir->mode &= acl->mode;
|
2012-02-10 13:21:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-01 18:18:57 +00:00
|
|
|
static void apk_db_diri_set(struct apk_db_dir_instance *diri, struct apk_db_acl *acl)
|
2009-01-06 17:44:54 +00:00
|
|
|
{
|
2014-11-01 18:18:57 +00:00
|
|
|
diri->acl = acl;
|
2012-02-10 13:21:41 +00:00
|
|
|
apk_db_dir_apply_diri_permissions(diri);
|
2009-01-06 17:44:54 +00:00
|
|
|
}
|
|
|
|
|
2009-01-06 18:30:22 +00:00
|
|
|
static void apk_db_diri_free(struct apk_database *db,
|
2010-09-22 14:16:18 +00:00
|
|
|
struct apk_db_dir_instance *diri,
|
2014-10-07 10:29:34 +00:00
|
|
|
int rmdir_mode)
|
2009-01-06 18:30:22 +00:00
|
|
|
{
|
2014-10-07 10:29:34 +00:00
|
|
|
struct apk_db_dir *dir = diri->dir;
|
2012-02-10 13:21:41 +00:00
|
|
|
|
2014-10-07 10:29:34 +00:00
|
|
|
if (rmdir_mode == APK_DIR_REMOVE)
|
|
|
|
apk_db_dir_prepare(db, diri->dir, 0);
|
|
|
|
|
|
|
|
apk_db_dir_unref(db, dir, rmdir_mode);
|
2009-01-06 18:30:22 +00:00
|
|
|
free(diri);
|
|
|
|
}
|
|
|
|
|
2009-01-14 17:48:30 +00:00
|
|
|
struct apk_db_file *apk_db_file_query(struct apk_database *db,
|
|
|
|
apk_blob_t dir,
|
|
|
|
apk_blob_t name)
|
|
|
|
{
|
|
|
|
struct apk_db_file_hash_key key;
|
|
|
|
|
2012-02-23 13:05:06 +00:00
|
|
|
if (dir.len && dir.ptr[dir.len-1] == '/')
|
|
|
|
dir.len--;
|
|
|
|
|
2009-01-14 17:48:30 +00:00
|
|
|
key = (struct apk_db_file_hash_key) {
|
|
|
|
.dirname = dir,
|
|
|
|
.filename = name,
|
|
|
|
};
|
|
|
|
|
|
|
|
return (struct apk_db_file *) apk_hash_get(&db->installed.files,
|
|
|
|
APK_BLOB_BUF(&key));
|
|
|
|
}
|
|
|
|
|
2009-07-22 08:36:55 +00:00
|
|
|
static struct apk_db_file *apk_db_file_new(struct apk_db_dir_instance *diri,
|
|
|
|
apk_blob_t name,
|
|
|
|
struct hlist_node ***after)
|
|
|
|
{
|
|
|
|
struct apk_db_file *file;
|
|
|
|
|
|
|
|
file = malloc(sizeof(*file) + name.len + 1);
|
|
|
|
if (file == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
memset(file, 0, sizeof(*file));
|
|
|
|
memcpy(file->name, name.ptr, name.len);
|
|
|
|
file->name[name.len] = 0;
|
|
|
|
file->namelen = name.len;
|
|
|
|
|
|
|
|
file->diri = diri;
|
2014-11-01 18:18:57 +00:00
|
|
|
file->acl = apk_default_acl_file;
|
2009-07-22 08:36:55 +00:00
|
|
|
hlist_add_after(&file->diri_files_list, *after);
|
|
|
|
*after = &file->diri_files_list.next;
|
|
|
|
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
2009-01-13 18:32:18 +00:00
|
|
|
static struct apk_db_file *apk_db_file_get(struct apk_database *db,
|
2009-01-14 08:44:47 +00:00
|
|
|
struct apk_db_dir_instance *diri,
|
2009-01-16 07:32:04 +00:00
|
|
|
apk_blob_t name,
|
|
|
|
struct hlist_node ***after)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
struct apk_db_file *file;
|
2009-01-14 08:44:47 +00:00
|
|
|
struct apk_db_file_hash_key key;
|
2009-07-14 08:55:08 +00:00
|
|
|
struct apk_db_dir *dir = diri->dir;
|
|
|
|
unsigned long hash;
|
2009-01-14 08:44:47 +00:00
|
|
|
|
|
|
|
key = (struct apk_db_file_hash_key) {
|
2009-07-14 08:55:08 +00:00
|
|
|
.dirname = APK_BLOB_PTR_LEN(dir->name, dir->namelen),
|
2009-01-14 08:44:47 +00:00
|
|
|
.filename = name,
|
|
|
|
};
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-07-14 08:55:08 +00:00
|
|
|
hash = apk_blob_hash_seed(name, dir->hash);
|
|
|
|
file = (struct apk_db_file *) apk_hash_get_hashed(
|
|
|
|
&db->installed.files, APK_BLOB_BUF(&key), hash);
|
2009-01-13 18:32:18 +00:00
|
|
|
if (file != NULL)
|
|
|
|
return file;
|
|
|
|
|
2009-07-22 08:36:55 +00:00
|
|
|
file = apk_db_file_new(diri, name, after);
|
2009-07-14 08:55:08 +00:00
|
|
|
apk_hash_insert_hashed(&db->installed.files, file, hash);
|
2009-01-16 07:32:04 +00:00
|
|
|
db->installed.stats.files++;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
2009-04-14 06:21:30 +00:00
|
|
|
static void apk_db_pkg_rdepends(struct apk_database *db, struct apk_package *pkg)
|
|
|
|
{
|
2013-06-13 18:58:54 +00:00
|
|
|
struct apk_name *rname, **rd;
|
|
|
|
struct apk_dependency *d;
|
2009-04-14 06:21:30 +00:00
|
|
|
|
2013-06-13 18:58:54 +00:00
|
|
|
foreach_array_item(d, pkg->depends) {
|
|
|
|
rname = d->name;
|
2014-10-06 11:09:50 +00:00
|
|
|
rname->is_dependency |= !d->conflict;
|
2013-06-13 18:58:54 +00:00
|
|
|
foreach_array_item(rd, rname->rdepends)
|
|
|
|
if (*rd == pkg->name)
|
2011-01-04 08:05:20 +00:00
|
|
|
goto rdeps_done;
|
2009-04-14 06:21:30 +00:00
|
|
|
*apk_name_array_add(&rname->rdepends) = pkg->name;
|
2013-06-13 18:58:54 +00:00
|
|
|
rdeps_done: ;
|
2009-04-14 06:21:30 +00:00
|
|
|
}
|
2013-06-13 18:58:54 +00:00
|
|
|
foreach_array_item(d, pkg->install_if) {
|
|
|
|
rname = d->name;
|
|
|
|
foreach_array_item(rd, rname->rinstall_if)
|
|
|
|
if (*rd == pkg->name)
|
2011-01-04 08:05:20 +00:00
|
|
|
goto riif_done;
|
|
|
|
*apk_name_array_add(&rname->rinstall_if) = pkg->name;
|
2013-06-13 18:58:54 +00:00
|
|
|
riif_done: ;
|
2011-01-04 08:05:20 +00:00
|
|
|
}
|
|
|
|
return;
|
2009-04-14 06:21:30 +00:00
|
|
|
}
|
|
|
|
|
2012-02-24 16:27:55 +00:00
|
|
|
static inline void add_provider(struct apk_name *name, struct apk_provider p)
|
|
|
|
{
|
|
|
|
*apk_provider_array_add(&name->providers) = p;
|
|
|
|
}
|
|
|
|
|
2009-05-14 12:01:09 +00:00
|
|
|
struct apk_package *apk_db_pkg_add(struct apk_database *db, struct apk_package *pkg)
|
2008-11-28 11:15:06 +00:00
|
|
|
{
|
|
|
|
struct apk_package *idb;
|
2013-06-18 05:03:40 +00:00
|
|
|
struct apk_dependency *dep;
|
2008-11-28 11:15:06 +00:00
|
|
|
|
2011-01-04 09:45:34 +00:00
|
|
|
if (pkg->license == NULL)
|
2011-03-16 12:51:44 +00:00
|
|
|
pkg->license = apk_blob_atomize(APK_BLOB_NULL);
|
2011-01-04 09:45:34 +00:00
|
|
|
|
2013-05-30 05:46:30 +00:00
|
|
|
/* Set as "cached" if installing from specified file, and
|
|
|
|
* for virtual packages */
|
|
|
|
if (pkg->filename != NULL || pkg->installed_size == 0)
|
|
|
|
pkg->repos |= BIT(APK_REPOSITORY_CACHED);
|
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
idb = apk_hash_get(&db->available.packages, APK_BLOB_CSUM(pkg->csum));
|
2008-11-28 11:15:06 +00:00
|
|
|
if (idb == NULL) {
|
|
|
|
idb = pkg;
|
|
|
|
apk_hash_insert(&db->available.packages, pkg);
|
2012-02-24 16:27:55 +00:00
|
|
|
add_provider(pkg->name, APK_PROVIDER_FROM_PACKAGE(pkg));
|
2013-06-18 05:03:40 +00:00
|
|
|
foreach_array_item(dep, pkg->provides)
|
2012-02-24 16:27:55 +00:00
|
|
|
add_provider(dep->name, APK_PROVIDER_FROM_PROVIDES(pkg, dep));
|
2009-04-14 06:21:30 +00:00
|
|
|
apk_db_pkg_rdepends(db, pkg);
|
2008-11-28 11:15:06 +00:00
|
|
|
} else {
|
|
|
|
idb->repos |= pkg->repos;
|
2009-04-16 11:03:17 +00:00
|
|
|
if (idb->filename == NULL && pkg->filename != NULL) {
|
|
|
|
idb->filename = pkg->filename;
|
|
|
|
pkg->filename = NULL;
|
|
|
|
}
|
2009-08-12 16:29:14 +00:00
|
|
|
if (idb->ipkg == NULL && pkg->ipkg != NULL) {
|
|
|
|
idb->ipkg = pkg->ipkg;
|
|
|
|
idb->ipkg->pkg = idb;
|
|
|
|
pkg->ipkg = NULL;
|
|
|
|
}
|
2008-11-28 11:15:06 +00:00
|
|
|
apk_pkg_free(pkg);
|
|
|
|
}
|
|
|
|
return idb;
|
|
|
|
}
|
|
|
|
|
2013-06-17 11:24:34 +00:00
|
|
|
static int apk_pkg_format_cache_pkg(apk_blob_t to, struct apk_package *pkg)
|
|
|
|
{
|
|
|
|
/* pkgname-1.0_alpha1.12345678.apk */
|
|
|
|
apk_blob_push_blob(&to, APK_BLOB_STR(pkg->name->name));
|
|
|
|
apk_blob_push_blob(&to, APK_BLOB_STR("-"));
|
|
|
|
apk_blob_push_blob(&to, *pkg->version);
|
|
|
|
apk_blob_push_blob(&to, APK_BLOB_STR("."));
|
|
|
|
apk_blob_push_hexdump(&to, APK_BLOB_PTR_LEN((char *) pkg->csum.data,
|
|
|
|
APK_CACHE_CSUM_BYTES));
|
|
|
|
apk_blob_push_blob(&to, APK_BLOB_STR(".apk"));
|
|
|
|
apk_blob_push_blob(&to, APK_BLOB_PTR_LEN("", 1));
|
|
|
|
if (APK_BLOB_IS_NULL(to))
|
|
|
|
return -ENOBUFS;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int apk_repo_format_cache_index(apk_blob_t to, struct apk_repository *repo)
|
2009-07-24 11:00:57 +00:00
|
|
|
{
|
2009-07-31 13:08:09 +00:00
|
|
|
/* APKINDEX.12345678.tar.gz */
|
2010-12-10 14:42:25 +00:00
|
|
|
apk_blob_push_blob(&to, APK_BLOB_STR("APKINDEX."));
|
2013-06-17 11:24:34 +00:00
|
|
|
apk_blob_push_hexdump(&to, APK_BLOB_PTR_LEN((char *) repo->csum.data, APK_CACHE_CSUM_BYTES));
|
2010-12-10 14:42:25 +00:00
|
|
|
apk_blob_push_blob(&to, APK_BLOB_STR(".tar.gz"));
|
2009-07-31 13:08:09 +00:00
|
|
|
apk_blob_push_blob(&to, APK_BLOB_PTR_LEN("", 1));
|
2013-06-17 11:24:34 +00:00
|
|
|
if (APK_BLOB_IS_NULL(to))
|
|
|
|
return -ENOBUFS;
|
|
|
|
return 0;
|
2009-07-31 13:08:09 +00:00
|
|
|
}
|
|
|
|
|
2013-06-17 11:24:34 +00:00
|
|
|
int apk_repo_format_real_url(struct apk_database *db, struct apk_repository *repo,
|
|
|
|
struct apk_package *pkg, char *buf, size_t len)
|
2009-07-31 13:08:09 +00:00
|
|
|
{
|
2014-10-06 11:54:54 +00:00
|
|
|
apk_blob_t arch;
|
2009-07-31 13:08:09 +00:00
|
|
|
int r;
|
|
|
|
|
2014-10-06 11:54:54 +00:00
|
|
|
if (pkg && pkg->arch) arch = *pkg->arch;
|
|
|
|
else arch = *db->arch;
|
|
|
|
|
2013-06-17 11:24:34 +00:00
|
|
|
if (pkg != NULL)
|
|
|
|
r = snprintf(buf, len, "%s%s" BLOB_FMT "/" PKG_FILE_FMT,
|
|
|
|
repo->url, repo->url[strlen(repo->url)-1] == '/' ? "" : "/",
|
2014-10-06 11:54:54 +00:00
|
|
|
BLOB_PRINTF(arch), PKG_FILE_PRINTF(pkg));
|
2013-06-17 11:24:34 +00:00
|
|
|
else
|
|
|
|
r = snprintf(buf, len, "%s%s" BLOB_FMT "/%s",
|
|
|
|
repo->url, repo->url[strlen(repo->url)-1] == '/' ? "" : "/",
|
2014-10-06 11:54:54 +00:00
|
|
|
BLOB_PRINTF(arch), apkindex_tar_gz);
|
2013-06-17 11:24:34 +00:00
|
|
|
if (r >= len)
|
|
|
|
return -ENOBUFS;
|
|
|
|
return 0;
|
|
|
|
}
|
2009-07-31 13:08:09 +00:00
|
|
|
|
2013-06-17 11:24:34 +00:00
|
|
|
int apk_repo_format_item(struct apk_database *db, struct apk_repository *repo, struct apk_package *pkg,
|
|
|
|
int *fd, char *buf, size_t len)
|
|
|
|
{
|
2013-06-18 11:53:59 +00:00
|
|
|
if (repo->url == apk_linked_cache_dir) {
|
2013-06-17 11:24:34 +00:00
|
|
|
*fd = db->cache_fd;
|
|
|
|
return apk_pkg_format_cache_pkg(APK_BLOB_PTR_LEN(buf, len), pkg);
|
|
|
|
} else {
|
|
|
|
*fd = AT_FDCWD;
|
|
|
|
return apk_repo_format_real_url(db, repo, pkg, buf, len);
|
|
|
|
}
|
|
|
|
}
|
2009-07-31 13:08:09 +00:00
|
|
|
|
2013-06-17 11:24:34 +00:00
|
|
|
int apk_cache_download(struct apk_database *db, struct apk_repository *repo,
|
2013-06-17 14:13:14 +00:00
|
|
|
struct apk_package *pkg, int verify,
|
|
|
|
apk_progress_cb cb, void *cb_ctx)
|
2013-06-17 11:24:34 +00:00
|
|
|
{
|
2014-10-08 08:13:21 +00:00
|
|
|
struct stat st;
|
2013-06-17 11:24:34 +00:00
|
|
|
struct apk_istream *is;
|
|
|
|
struct apk_bstream *bs;
|
|
|
|
struct apk_sign_ctx sctx;
|
2013-06-17 13:33:59 +00:00
|
|
|
char url[PATH_MAX];
|
|
|
|
char tmpcacheitem[128], *cacheitem = &tmpcacheitem[tmpprefix.len];
|
|
|
|
apk_blob_t b = APK_BLOB_BUF(tmpcacheitem);
|
2013-06-17 11:24:34 +00:00
|
|
|
int r, fd;
|
|
|
|
|
2013-06-17 13:33:59 +00:00
|
|
|
apk_blob_push_blob(&b, tmpprefix);
|
2013-06-17 11:24:34 +00:00
|
|
|
if (pkg != NULL)
|
2013-06-17 13:33:59 +00:00
|
|
|
r = apk_pkg_format_cache_pkg(b, pkg);
|
2013-06-17 11:24:34 +00:00
|
|
|
else
|
2013-06-17 13:33:59 +00:00
|
|
|
r = apk_repo_format_cache_index(b, repo);
|
2014-10-08 08:13:21 +00:00
|
|
|
if (r < 0) return r;
|
2009-07-31 13:08:09 +00:00
|
|
|
|
2013-06-17 11:24:34 +00:00
|
|
|
r = apk_repo_format_real_url(db, repo, pkg, url, sizeof(url));
|
2014-10-08 08:13:21 +00:00
|
|
|
if (r < 0) return r;
|
2009-07-31 13:08:09 +00:00
|
|
|
|
2014-10-09 16:32:48 +00:00
|
|
|
if ((apk_flags & APK_FORCE) ||
|
|
|
|
fstatat(db->cache_fd, cacheitem, &st, 0) != 0)
|
|
|
|
st.st_mtime = 0;
|
2013-06-17 11:24:34 +00:00
|
|
|
|
2014-10-08 08:13:21 +00:00
|
|
|
apk_message("fetch %s", url);
|
2009-07-31 13:08:09 +00:00
|
|
|
|
2014-10-08 08:13:21 +00:00
|
|
|
if (apk_flags & APK_SIMULATE) return 0;
|
|
|
|
if (cb) cb(cb_ctx, 0);
|
2013-06-17 14:13:14 +00:00
|
|
|
|
2013-06-17 11:24:34 +00:00
|
|
|
if (verify != APK_SIGN_NONE) {
|
|
|
|
apk_sign_ctx_init(&sctx, APK_SIGN_VERIFY, NULL, db->keys_fd);
|
2014-10-08 08:13:21 +00:00
|
|
|
bs = apk_bstream_from_url_if_modified(url, st.st_mtime);
|
2013-06-17 14:13:14 +00:00
|
|
|
bs = apk_bstream_tee(bs, db->cache_fd, tmpcacheitem, cb, cb_ctx);
|
2013-06-17 11:24:34 +00:00
|
|
|
is = apk_bstream_gunzip_mpart(bs, apk_sign_ctx_mpart_cb, &sctx);
|
2014-10-08 08:13:21 +00:00
|
|
|
if (!IS_ERR_OR_NULL(is))
|
|
|
|
r = apk_tar_parse(is, apk_sign_ctx_verify_tar, &sctx, FALSE, &db->id_cache);
|
|
|
|
else
|
|
|
|
r = PTR_ERR(is) ?: -EIO;
|
2009-07-31 13:08:09 +00:00
|
|
|
apk_sign_ctx_free(&sctx);
|
2013-06-17 11:24:34 +00:00
|
|
|
} else {
|
2014-10-08 08:13:21 +00:00
|
|
|
is = apk_istream_from_url_if_modified(url, st.st_mtime);
|
|
|
|
if (!IS_ERR_OR_NULL(is)) {
|
|
|
|
fd = openat(db->cache_fd, tmpcacheitem, O_RDWR | O_CREAT | O_TRUNC | O_CLOEXEC, 0644);
|
|
|
|
if (fd < 0) r = -errno;
|
|
|
|
} else fd = -1, r = PTR_ERR(is) ?: -EIO;
|
|
|
|
|
2013-06-17 11:24:34 +00:00
|
|
|
if (fd >= 0) {
|
2013-06-17 14:13:14 +00:00
|
|
|
r = apk_istream_splice(is, fd, APK_SPLICE_ALL, cb, cb_ctx);
|
2013-06-17 11:24:34 +00:00
|
|
|
close(fd);
|
2009-07-31 13:08:09 +00:00
|
|
|
}
|
|
|
|
}
|
2014-10-08 08:13:21 +00:00
|
|
|
if (!IS_ERR_OR_NULL(is)) is->close(is);
|
|
|
|
if (r == -EALREADY) return 0;
|
2013-06-17 11:24:34 +00:00
|
|
|
if (r < 0) {
|
2013-06-17 13:33:59 +00:00
|
|
|
unlinkat(db->cache_fd, tmpcacheitem, 0);
|
2013-06-17 11:24:34 +00:00
|
|
|
return r;
|
|
|
|
}
|
2009-07-24 11:00:57 +00:00
|
|
|
|
2013-06-17 13:33:59 +00:00
|
|
|
if (renameat(db->cache_fd, tmpcacheitem, db->cache_fd, cacheitem) < 0)
|
|
|
|
return -errno;
|
2009-07-31 13:08:09 +00:00
|
|
|
return 0;
|
2009-07-24 11:00:57 +00:00
|
|
|
}
|
|
|
|
|
2009-12-21 12:30:33 +00:00
|
|
|
static struct apk_db_dir_instance *find_diri(struct apk_installed_package *ipkg,
|
|
|
|
apk_blob_t dirname,
|
|
|
|
struct apk_db_dir_instance *curdiri,
|
|
|
|
struct hlist_node ***tail)
|
|
|
|
{
|
|
|
|
struct hlist_node *n;
|
|
|
|
struct apk_db_dir_instance *diri;
|
|
|
|
|
|
|
|
if (curdiri != NULL &&
|
|
|
|
apk_blob_compare(APK_BLOB_PTR_LEN(curdiri->dir->name,
|
|
|
|
curdiri->dir->namelen),
|
|
|
|
dirname) == 0)
|
|
|
|
return curdiri;
|
|
|
|
|
|
|
|
hlist_for_each_entry(diri, n, &ipkg->owned_dirs, pkg_dirs_list) {
|
|
|
|
if (apk_blob_compare(APK_BLOB_PTR_LEN(diri->dir->name,
|
|
|
|
diri->dir->namelen), dirname) == 0) {
|
|
|
|
if (tail != NULL)
|
|
|
|
*tail = hlist_tail_ptr(&diri->owned_files);
|
|
|
|
return diri;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-12-21 12:14:02 +00:00
|
|
|
int apk_db_read_overlay(struct apk_database *db, struct apk_bstream *bs)
|
|
|
|
{
|
|
|
|
struct apk_db_dir_instance *diri = NULL;
|
|
|
|
struct hlist_node **diri_node = NULL, **file_diri_node = NULL;
|
|
|
|
struct apk_package *pkg;
|
|
|
|
struct apk_installed_package *ipkg;
|
|
|
|
apk_blob_t token = APK_BLOB_STR("\n"), line, bdir, bfile;
|
|
|
|
|
2015-03-10 11:04:14 +00:00
|
|
|
if (IS_ERR_OR_NULL(bs)) return -1;
|
|
|
|
|
2009-12-21 12:14:02 +00:00
|
|
|
pkg = apk_pkg_new();
|
|
|
|
if (pkg == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
ipkg = apk_pkg_install(db, pkg);
|
|
|
|
if (ipkg == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
diri_node = hlist_tail_ptr(&ipkg->owned_dirs);
|
|
|
|
|
|
|
|
while (!APK_BLOB_IS_NULL(line = bs->read(bs, token))) {
|
|
|
|
if (!apk_blob_rsplit(line, '/', &bdir, &bfile))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (bfile.len == 0) {
|
|
|
|
diri = apk_db_diri_new(db, pkg, bdir, &diri_node);
|
|
|
|
file_diri_node = &diri->owned_files.first;
|
2014-10-07 10:29:34 +00:00
|
|
|
diri->dir->created = 1;
|
2009-12-21 12:14:02 +00:00
|
|
|
} else {
|
2009-12-21 12:30:33 +00:00
|
|
|
diri = find_diri(ipkg, bdir, diri, &file_diri_node);
|
|
|
|
if (diri == NULL) {
|
2009-12-21 14:31:58 +00:00
|
|
|
diri = apk_db_diri_new(db, pkg, bdir, &diri_node);
|
|
|
|
file_diri_node = &diri->owned_files.first;
|
2009-12-21 12:30:33 +00:00
|
|
|
}
|
2011-03-27 00:51:51 +00:00
|
|
|
(void) apk_db_file_get(db, diri, bfile, &file_diri_node);
|
2009-12-21 12:14:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-14 06:33:32 +00:00
|
|
|
int apk_db_index_read(struct apk_database *db, struct apk_bstream *bs, int repo)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
struct apk_package *pkg = NULL;
|
2009-08-12 16:17:46 +00:00
|
|
|
struct apk_installed_package *ipkg = NULL;
|
2009-01-06 17:44:54 +00:00
|
|
|
struct apk_db_dir_instance *diri = NULL;
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_db_file *file = NULL;
|
2014-11-01 18:18:57 +00:00
|
|
|
struct apk_db_acl *acl;
|
2009-01-06 17:44:54 +00:00
|
|
|
struct hlist_node **diri_node = NULL;
|
|
|
|
struct hlist_node **file_diri_node = NULL;
|
2015-03-11 14:10:33 +00:00
|
|
|
struct apk_checksum xattr_csum;
|
2009-07-14 06:33:32 +00:00
|
|
|
apk_blob_t token = APK_BLOB_STR("\n"), l;
|
2012-02-10 13:21:41 +00:00
|
|
|
mode_t mode;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
2014-10-13 10:21:13 +00:00
|
|
|
int field, r, lineno = 0;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-07-14 06:33:32 +00:00
|
|
|
while (!APK_BLOB_IS_NULL(l = bs->read(bs, token))) {
|
2014-10-13 10:21:13 +00:00
|
|
|
lineno++;
|
|
|
|
|
2009-07-14 06:33:32 +00:00
|
|
|
if (l.len < 2 || l.ptr[1] != ':') {
|
|
|
|
if (pkg == NULL)
|
|
|
|
continue;
|
2008-11-28 11:15:06 +00:00
|
|
|
|
2011-12-27 12:06:03 +00:00
|
|
|
if (repo >= 0) {
|
2009-07-14 06:33:32 +00:00
|
|
|
pkg->repos |= BIT(repo);
|
2014-05-19 08:50:10 +00:00
|
|
|
} else if (repo == -2) {
|
|
|
|
pkg->cached_non_repository = 1;
|
2011-12-27 12:06:03 +00:00
|
|
|
} else if (repo == -1 && ipkg == NULL) {
|
|
|
|
/* Installed package without files */
|
|
|
|
ipkg = apk_pkg_install(db, pkg);
|
|
|
|
}
|
2008-11-28 11:15:06 +00:00
|
|
|
|
2009-08-12 16:17:46 +00:00
|
|
|
if (apk_db_pkg_add(db, pkg) == NULL) {
|
2009-07-14 06:33:32 +00:00
|
|
|
apk_error("Installed database load failed");
|
|
|
|
return -1;
|
2008-11-28 11:15:06 +00:00
|
|
|
}
|
2009-07-14 06:33:32 +00:00
|
|
|
pkg = NULL;
|
2009-08-12 16:17:46 +00:00
|
|
|
ipkg = NULL;
|
2009-07-14 06:33:32 +00:00
|
|
|
continue;
|
|
|
|
}
|
2008-11-28 11:15:06 +00:00
|
|
|
|
2009-07-14 06:33:32 +00:00
|
|
|
/* Get field */
|
|
|
|
field = l.ptr[0];
|
|
|
|
l.ptr += 2;
|
|
|
|
l.len -= 2;
|
|
|
|
|
|
|
|
/* If no package, create new */
|
|
|
|
if (pkg == NULL) {
|
|
|
|
pkg = apk_pkg_new();
|
2011-01-03 19:06:41 +00:00
|
|
|
ipkg = NULL;
|
2009-07-14 06:33:32 +00:00
|
|
|
diri = NULL;
|
|
|
|
file_diri_node = NULL;
|
|
|
|
}
|
2008-11-28 11:15:06 +00:00
|
|
|
|
2009-07-14 06:33:32 +00:00
|
|
|
/* Standard index line? */
|
2011-01-03 19:06:41 +00:00
|
|
|
r = apk_pkg_add_info(db, pkg, field, l);
|
2014-10-13 10:21:13 +00:00
|
|
|
if (r == 0)
|
2009-07-14 06:33:32 +00:00
|
|
|
continue;
|
2012-01-06 08:35:04 +00:00
|
|
|
if (r == 1 && repo == -1 && ipkg == NULL) {
|
2011-12-27 12:06:03 +00:00
|
|
|
/* Instert to installed database; this needs to
|
|
|
|
* happen after package name has been read, but
|
|
|
|
* before first FDB entry. */
|
|
|
|
ipkg = apk_pkg_install(db, pkg);
|
|
|
|
diri_node = hlist_tail_ptr(&ipkg->owned_dirs);
|
|
|
|
}
|
2011-01-03 19:06:41 +00:00
|
|
|
if (repo != -1 || ipkg == NULL)
|
|
|
|
continue;
|
2008-11-28 11:15:06 +00:00
|
|
|
|
2009-07-14 06:33:32 +00:00
|
|
|
/* Check FDB special entries */
|
|
|
|
switch (field) {
|
|
|
|
case 'F':
|
2014-10-13 10:21:13 +00:00
|
|
|
if (pkg->name == NULL) goto bad_entry;
|
2009-07-14 06:33:32 +00:00
|
|
|
diri = apk_db_diri_new(db, pkg, l, &diri_node);
|
|
|
|
file_diri_node = &diri->owned_files.first;
|
|
|
|
break;
|
2012-02-14 13:51:12 +00:00
|
|
|
case 'a':
|
2014-10-13 10:21:13 +00:00
|
|
|
if (file == NULL) goto bad_entry;
|
2009-07-14 06:33:32 +00:00
|
|
|
case 'M':
|
2014-10-13 10:21:13 +00:00
|
|
|
if (diri == NULL) goto bad_entry;
|
2012-02-10 13:21:41 +00:00
|
|
|
uid = apk_blob_pull_uint(&l, 10);
|
2009-07-14 10:27:21 +00:00
|
|
|
apk_blob_pull_char(&l, ':');
|
2012-02-10 13:21:41 +00:00
|
|
|
gid = apk_blob_pull_uint(&l, 10);
|
2009-07-14 10:27:21 +00:00
|
|
|
apk_blob_pull_char(&l, ':');
|
2012-02-10 13:21:41 +00:00
|
|
|
mode = apk_blob_pull_uint(&l, 8);
|
2015-03-11 14:10:33 +00:00
|
|
|
if (apk_blob_pull_blob_match(&l, APK_BLOB_STR(":")))
|
|
|
|
apk_blob_pull_csum(&l, &xattr_csum);
|
|
|
|
else
|
|
|
|
xattr_csum.type = APK_CHECKSUM_NONE;
|
|
|
|
|
|
|
|
acl = apk_db_acl_atomize(mode, uid, gid, &xattr_csum);
|
2012-02-14 13:51:12 +00:00
|
|
|
if (field == 'M')
|
2014-11-01 18:18:57 +00:00
|
|
|
apk_db_diri_set(diri, acl);
|
2012-02-14 13:51:12 +00:00
|
|
|
else
|
2014-11-01 18:18:57 +00:00
|
|
|
file->acl = acl;
|
2009-07-14 06:33:32 +00:00
|
|
|
break;
|
|
|
|
case 'R':
|
2014-10-13 10:21:13 +00:00
|
|
|
if (diri == NULL) goto bad_entry;
|
2009-07-22 08:36:55 +00:00
|
|
|
file = apk_db_file_get(db, diri, l, &file_diri_node);
|
2009-07-14 06:33:32 +00:00
|
|
|
break;
|
|
|
|
case 'Z':
|
2014-10-13 10:21:13 +00:00
|
|
|
if (file == NULL) goto bad_entry;
|
2009-07-14 16:14:05 +00:00
|
|
|
apk_blob_pull_csum(&l, &file->csum);
|
2009-07-14 06:33:32 +00:00
|
|
|
break;
|
2011-10-18 22:11:26 +00:00
|
|
|
case 'r':
|
2011-12-27 12:06:03 +00:00
|
|
|
apk_blob_pull_deps(&l, db, &ipkg->replaces);
|
2011-10-18 22:11:26 +00:00
|
|
|
break;
|
2011-10-19 15:38:23 +00:00
|
|
|
case 'q':
|
2011-12-27 12:06:03 +00:00
|
|
|
ipkg->replaces_priority = apk_blob_pull_uint(&l, 10);
|
2011-10-19 15:38:23 +00:00
|
|
|
break;
|
2012-02-24 07:20:18 +00:00
|
|
|
case 's':
|
2012-02-15 11:57:36 +00:00
|
|
|
ipkg->repository_tag = apk_db_get_tag_id(db, l);
|
|
|
|
break;
|
2013-06-20 10:12:44 +00:00
|
|
|
case 'f':
|
|
|
|
for (r = 0; r < l.len; r++) {
|
|
|
|
switch (l.ptr[r]) {
|
|
|
|
case 'f': ipkg->broken_files = 1; break;
|
|
|
|
case 's': ipkg->broken_script = 1; break;
|
|
|
|
default:
|
|
|
|
if (!(apk_flags & APK_FORCE))
|
|
|
|
goto old_apk_tools;
|
|
|
|
}
|
2011-01-03 19:06:41 +00:00
|
|
|
}
|
2013-06-20 10:12:44 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (r != 0 && !(apk_flags & APK_FORCE))
|
|
|
|
goto old_apk_tools;
|
2011-01-03 19:06:41 +00:00
|
|
|
/* Installed. So mark the package as installable. */
|
|
|
|
pkg->filename = NULL;
|
|
|
|
continue;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
2014-10-13 10:21:13 +00:00
|
|
|
if (APK_BLOB_IS_NULL(l)) goto bad_entry;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
2009-01-13 18:32:18 +00:00
|
|
|
return 0;
|
2013-06-20 10:12:44 +00:00
|
|
|
old_apk_tools:
|
|
|
|
/* Installed db should not have unsupported fields */
|
|
|
|
apk_error("This apk-tools is too old to handle installed packages");
|
|
|
|
return -1;
|
2014-10-13 10:21:13 +00:00
|
|
|
bad_entry:
|
|
|
|
apk_error("FDB format error (line %d, entry '%c')", lineno, field);
|
|
|
|
return -1;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2014-11-01 18:18:57 +00:00
|
|
|
static void apk_blob_push_db_acl(apk_blob_t *b, char field, struct apk_db_acl *acl)
|
|
|
|
{
|
|
|
|
char hdr[2] = { field, ':' };
|
|
|
|
|
|
|
|
apk_blob_push_blob(b, APK_BLOB_BUF(hdr));
|
|
|
|
apk_blob_push_uint(b, acl->uid, 10);
|
|
|
|
apk_blob_push_blob(b, APK_BLOB_STR(":"));
|
|
|
|
apk_blob_push_uint(b, acl->gid, 10);
|
|
|
|
apk_blob_push_blob(b, APK_BLOB_STR(":"));
|
|
|
|
apk_blob_push_uint(b, acl->mode, 8);
|
2015-03-11 14:10:33 +00:00
|
|
|
if (acl->xattr_csum.type != APK_CHECKSUM_NONE) {
|
|
|
|
apk_blob_push_blob(b, APK_BLOB_STR(":"));
|
|
|
|
apk_blob_push_csum(b, &acl->xattr_csum);
|
|
|
|
}
|
2014-11-01 18:18:57 +00:00
|
|
|
apk_blob_push_blob(b, APK_BLOB_STR("\n"));
|
|
|
|
}
|
|
|
|
|
2008-11-28 14:28:54 +00:00
|
|
|
static int apk_db_write_fdb(struct apk_database *db, struct apk_ostream *os)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2009-08-12 16:17:46 +00:00
|
|
|
struct apk_installed_package *ipkg;
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_package *pkg;
|
2009-01-06 17:44:54 +00:00
|
|
|
struct apk_db_dir_instance *diri;
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_db_file *file;
|
2009-01-06 17:44:54 +00:00
|
|
|
struct hlist_node *c1, *c2;
|
2008-04-17 14:09:13 +00:00
|
|
|
char buf[1024];
|
2009-07-14 10:27:21 +00:00
|
|
|
apk_blob_t bbuf = APK_BLOB_BUF(buf);
|
|
|
|
int r;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-08-12 16:17:46 +00:00
|
|
|
list_for_each_entry(ipkg, &db->installed.packages, installed_pkgs_list) {
|
|
|
|
pkg = ipkg->pkg;
|
2009-04-16 14:05:27 +00:00
|
|
|
r = apk_pkg_write_index_entry(pkg, os);
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2011-10-18 22:11:26 +00:00
|
|
|
if (ipkg->replaces->num) {
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("r:"));
|
2011-10-29 02:18:21 +00:00
|
|
|
apk_blob_push_deps(&bbuf, db, ipkg->replaces);
|
2011-10-18 22:11:26 +00:00
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("\n"));
|
|
|
|
}
|
2011-10-19 15:38:23 +00:00
|
|
|
if (ipkg->replaces_priority) {
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("q:"));
|
|
|
|
apk_blob_push_uint(&bbuf, ipkg->replaces_priority, 10);
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("\n"));
|
|
|
|
}
|
2012-02-15 11:57:36 +00:00
|
|
|
if (ipkg->repository_tag) {
|
2012-02-24 07:20:18 +00:00
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("s:"));
|
2013-06-18 11:30:44 +00:00
|
|
|
apk_blob_push_blob(&bbuf, db->repo_tags[ipkg->repository_tag].plain_name);
|
2012-02-15 11:57:36 +00:00
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("\n"));
|
|
|
|
}
|
2013-06-21 08:48:15 +00:00
|
|
|
if (ipkg->broken_files || ipkg->broken_script) {
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("f:"));
|
|
|
|
if (ipkg->broken_files)
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("f"));
|
|
|
|
if (ipkg->broken_script)
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("s"));
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("\n"));
|
|
|
|
}
|
2009-08-12 16:17:46 +00:00
|
|
|
hlist_for_each_entry(diri, c1, &ipkg->owned_dirs, pkg_dirs_list) {
|
2009-07-14 10:27:21 +00:00
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("F:"));
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_PTR_LEN(diri->dir->name, diri->dir->namelen));
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("\n"));
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2015-04-08 07:58:00 +00:00
|
|
|
if (diri->acl != apk_default_acl_dir)
|
2014-11-01 18:18:57 +00:00
|
|
|
apk_blob_push_db_acl(&bbuf, 'M', diri->acl);
|
|
|
|
|
2009-01-06 17:44:54 +00:00
|
|
|
hlist_for_each_entry(file, c2, &diri->owned_files, diri_files_list) {
|
2009-07-14 10:27:21 +00:00
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("R:"));
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_PTR_LEN(file->name, file->namelen));
|
2014-11-01 18:18:57 +00:00
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("\n"));
|
|
|
|
|
2015-04-08 07:58:00 +00:00
|
|
|
if (file->acl != apk_default_acl_file)
|
2014-11-01 18:18:57 +00:00
|
|
|
apk_blob_push_db_acl(&bbuf, 'a', file->acl);
|
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
if (file->csum.type != APK_CHECKSUM_NONE) {
|
2014-11-01 18:18:57 +00:00
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("Z:"));
|
2009-07-14 16:14:05 +00:00
|
|
|
apk_blob_push_csum(&bbuf, &file->csum);
|
2014-11-01 18:18:57 +00:00
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("\n"));
|
2009-01-06 17:44:54 +00:00
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-07-14 10:27:21 +00:00
|
|
|
if (os->write(os, buf, bbuf.ptr - buf) != bbuf.ptr - buf)
|
2013-05-30 07:22:35 +00:00
|
|
|
return -EIO;
|
2009-07-14 10:27:21 +00:00
|
|
|
bbuf = APK_BLOB_BUF(buf);
|
2008-11-14 12:26:59 +00:00
|
|
|
}
|
2009-07-14 10:27:21 +00:00
|
|
|
if (os->write(os, buf, bbuf.ptr - buf) != bbuf.ptr - buf)
|
2013-05-30 07:22:35 +00:00
|
|
|
return -EIO;
|
2009-07-14 10:27:21 +00:00
|
|
|
bbuf = APK_BLOB_BUF(buf);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
2008-11-28 14:28:54 +00:00
|
|
|
os->write(os, "\n", 1);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-28 14:28:54 +00:00
|
|
|
static int apk_db_scriptdb_write(struct apk_database *db, struct apk_ostream *os)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2009-08-12 16:17:46 +00:00
|
|
|
struct apk_installed_package *ipkg;
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_package *pkg;
|
2009-07-14 16:14:05 +00:00
|
|
|
struct apk_file_info fi;
|
|
|
|
char filename[256];
|
|
|
|
apk_blob_t bfn;
|
2009-08-12 16:17:46 +00:00
|
|
|
int r, i;
|
2009-12-21 09:42:39 +00:00
|
|
|
time_t now = time(NULL);
|
2009-08-12 16:17:46 +00:00
|
|
|
|
|
|
|
list_for_each_entry(ipkg, &db->installed.packages, installed_pkgs_list) {
|
|
|
|
pkg = ipkg->pkg;
|
|
|
|
|
|
|
|
for (i = 0; i < APK_SCRIPT_MAX; i++) {
|
|
|
|
if (ipkg->script[i].ptr == NULL)
|
|
|
|
continue;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
fi = (struct apk_file_info) {
|
|
|
|
.name = filename,
|
2009-08-12 16:17:46 +00:00
|
|
|
.size = ipkg->script[i].len,
|
2009-07-14 16:14:05 +00:00
|
|
|
.mode = 0755 | S_IFREG,
|
2009-12-21 09:42:39 +00:00
|
|
|
.mtime = now,
|
2009-07-14 16:14:05 +00:00
|
|
|
};
|
|
|
|
/* The scripts db expects file names in format:
|
|
|
|
* pkg-version.<hexdump of package checksum>.action */
|
|
|
|
bfn = APK_BLOB_BUF(filename);
|
|
|
|
apk_blob_push_blob(&bfn, APK_BLOB_STR(pkg->name->name));
|
|
|
|
apk_blob_push_blob(&bfn, APK_BLOB_STR("-"));
|
2010-12-14 17:51:16 +00:00
|
|
|
apk_blob_push_blob(&bfn, *pkg->version);
|
2009-07-14 16:14:05 +00:00
|
|
|
apk_blob_push_blob(&bfn, APK_BLOB_STR("."));
|
|
|
|
apk_blob_push_csum(&bfn, &pkg->csum);
|
|
|
|
apk_blob_push_blob(&bfn, APK_BLOB_STR("."));
|
2009-08-12 16:17:46 +00:00
|
|
|
apk_blob_push_blob(&bfn, APK_BLOB_STR(apk_script_types[i]));
|
2009-07-14 16:14:05 +00:00
|
|
|
apk_blob_push_blob(&bfn, APK_BLOB_PTR_LEN("", 1));
|
|
|
|
|
2009-08-12 16:17:46 +00:00
|
|
|
r = apk_tar_write_entry(os, &fi, ipkg->script[i].ptr);
|
2009-07-14 16:14:05 +00:00
|
|
|
if (r < 0)
|
|
|
|
return r;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-16 12:16:05 +00:00
|
|
|
return apk_tar_write_entry(os, NULL, NULL);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
static int apk_read_script_archive_entry(void *ctx,
|
|
|
|
const struct apk_file_info *ae,
|
|
|
|
struct apk_istream *is)
|
|
|
|
{
|
|
|
|
struct apk_database *db = (struct apk_database *) ctx;
|
|
|
|
struct apk_package *pkg;
|
|
|
|
char *fncsum, *fnaction;
|
|
|
|
struct apk_checksum csum;
|
|
|
|
apk_blob_t blob;
|
|
|
|
int type;
|
|
|
|
|
|
|
|
if (!S_ISREG(ae->mode))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* The scripts db expects file names in format:
|
|
|
|
* pkgname-version.<hexdump of package checksum>.action */
|
|
|
|
fnaction = memrchr(ae->name, '.', strlen(ae->name));
|
|
|
|
if (fnaction == NULL || fnaction == ae->name)
|
|
|
|
return 0;
|
|
|
|
fncsum = memrchr(ae->name, '.', fnaction - ae->name - 1);
|
|
|
|
if (fncsum == NULL)
|
|
|
|
return 0;
|
|
|
|
fnaction++;
|
|
|
|
fncsum++;
|
|
|
|
|
|
|
|
/* Parse it */
|
|
|
|
type = apk_script_type(fnaction);
|
|
|
|
if (type == APK_SCRIPT_INVALID)
|
|
|
|
return 0;
|
|
|
|
blob = APK_BLOB_PTR_PTR(fncsum, fnaction - 2);
|
|
|
|
apk_blob_pull_csum(&blob, &csum);
|
|
|
|
|
|
|
|
/* Attach script */
|
|
|
|
pkg = apk_db_get_pkg(db, &csum);
|
2009-08-12 16:17:46 +00:00
|
|
|
if (pkg != NULL && pkg->ipkg != NULL)
|
|
|
|
apk_ipkg_add_script(pkg->ipkg, is, type, ae->size);
|
2009-07-14 16:14:05 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-13 11:10:30 +00:00
|
|
|
static int parse_triggers(void *ctx, apk_blob_t blob)
|
|
|
|
{
|
|
|
|
struct apk_installed_package *ipkg = ctx;
|
|
|
|
|
|
|
|
if (blob.len == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*apk_string_array_add(&ipkg->triggers) = apk_blob_cstr(blob);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void apk_db_triggers_write(struct apk_database *db, struct apk_ostream *os)
|
|
|
|
{
|
|
|
|
struct apk_installed_package *ipkg;
|
|
|
|
char buf[APK_BLOB_CHECKSUM_BUF];
|
|
|
|
apk_blob_t bfn;
|
2013-06-18 05:03:40 +00:00
|
|
|
char **trigger;
|
2009-08-13 11:10:30 +00:00
|
|
|
|
|
|
|
list_for_each_entry(ipkg, &db->installed.triggers, trigger_pkgs_list) {
|
|
|
|
bfn = APK_BLOB_BUF(buf);
|
|
|
|
apk_blob_push_csum(&bfn, &ipkg->pkg->csum);
|
2010-06-01 13:46:53 +00:00
|
|
|
bfn = apk_blob_pushed(APK_BLOB_BUF(buf), bfn);
|
|
|
|
os->write(os, bfn.ptr, bfn.len);
|
2009-08-13 15:41:03 +00:00
|
|
|
|
2013-06-18 05:03:40 +00:00
|
|
|
foreach_array_item(trigger, ipkg->triggers) {
|
2009-08-13 11:10:30 +00:00
|
|
|
os->write(os, " ", 1);
|
2013-06-18 05:03:40 +00:00
|
|
|
apk_ostream_write_string(os, *trigger);
|
2009-08-13 11:10:30 +00:00
|
|
|
}
|
|
|
|
os->write(os, "\n", 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void apk_db_triggers_read(struct apk_database *db, struct apk_bstream *bs)
|
|
|
|
{
|
|
|
|
struct apk_checksum csum;
|
|
|
|
struct apk_package *pkg;
|
|
|
|
struct apk_installed_package *ipkg;
|
|
|
|
apk_blob_t l;
|
|
|
|
|
|
|
|
while (!APK_BLOB_IS_NULL(l = bs->read(bs, APK_BLOB_STR("\n")))) {
|
|
|
|
apk_blob_pull_csum(&l, &csum);
|
|
|
|
apk_blob_pull_char(&l, ' ');
|
|
|
|
|
|
|
|
pkg = apk_db_get_pkg(db, &csum);
|
|
|
|
if (pkg == NULL || pkg->ipkg == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ipkg = pkg->ipkg;
|
|
|
|
apk_blob_for_each_segment(l, " ", parse_triggers, ipkg);
|
2010-06-05 09:06:41 +00:00
|
|
|
if (ipkg->triggers->num != 0 &&
|
|
|
|
!list_hashed(&ipkg->trigger_pkgs_list))
|
2009-08-13 11:10:30 +00:00
|
|
|
list_add_tail(&ipkg->trigger_pkgs_list,
|
|
|
|
&db->installed.triggers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-07 06:27:56 +00:00
|
|
|
static int apk_db_read_state(struct apk_database *db, int flags)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2008-11-07 15:11:08 +00:00
|
|
|
struct apk_istream *is;
|
2009-07-14 06:33:32 +00:00
|
|
|
struct apk_bstream *bs;
|
2012-01-16 08:29:49 +00:00
|
|
|
apk_blob_t blob, world;
|
2011-09-09 13:31:11 +00:00
|
|
|
int r;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
/* Read:
|
2013-06-27 19:28:46 +00:00
|
|
|
* 1. /etc/apk/world
|
|
|
|
* 2. installed packages db
|
|
|
|
* 3. triggers db
|
|
|
|
* 4. scripts db
|
2008-04-17 14:09:13 +00:00
|
|
|
*/
|
2009-07-07 06:27:56 +00:00
|
|
|
if (!(flags & APK_OPENF_NO_WORLD)) {
|
2012-01-16 08:29:49 +00:00
|
|
|
blob = world = apk_blob_from_file(db->root_fd, apk_world_file);
|
2009-07-07 06:27:56 +00:00
|
|
|
if (APK_BLOB_IS_NULL(blob))
|
|
|
|
return -ENOENT;
|
2012-01-12 12:33:29 +00:00
|
|
|
blob = apk_blob_trim(blob);
|
2011-10-18 22:11:26 +00:00
|
|
|
apk_blob_pull_deps(&blob, db, &db->world);
|
2012-01-16 08:29:49 +00:00
|
|
|
free(world.ptr);
|
2009-07-07 06:27:56 +00:00
|
|
|
}
|
2009-04-14 15:48:02 +00:00
|
|
|
|
2009-07-07 06:27:56 +00:00
|
|
|
if (!(flags & APK_OPENF_NO_INSTALLED)) {
|
2011-03-16 14:52:14 +00:00
|
|
|
bs = apk_bstream_from_file(db->root_fd, apk_installed_file);
|
2015-03-10 11:04:14 +00:00
|
|
|
if (!IS_ERR_OR_NULL(bs)) {
|
2011-01-03 19:06:41 +00:00
|
|
|
r = apk_db_index_read(db, bs, -1);
|
2009-07-14 06:33:32 +00:00
|
|
|
bs->close(bs, NULL);
|
2015-03-10 11:04:14 +00:00
|
|
|
if (r != 0) return -1;
|
2009-07-07 06:27:56 +00:00
|
|
|
}
|
2009-07-24 11:00:57 +00:00
|
|
|
|
2011-03-16 14:52:14 +00:00
|
|
|
bs = apk_bstream_from_file(db->root_fd, apk_triggers_file);
|
2015-03-10 11:04:14 +00:00
|
|
|
if (!IS_ERR_OR_NULL(bs)) {
|
2009-08-13 11:10:30 +00:00
|
|
|
apk_db_triggers_read(db, bs);
|
|
|
|
bs->close(bs, NULL);
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2009-07-07 06:27:56 +00:00
|
|
|
if (!(flags & APK_OPENF_NO_SCRIPTS)) {
|
2011-03-16 14:52:14 +00:00
|
|
|
is = apk_istream_from_file(db->root_fd, apk_scripts_file);
|
2015-03-10 11:04:14 +00:00
|
|
|
if (!IS_ERR_OR_NULL(is)) {
|
2009-07-29 16:16:04 +00:00
|
|
|
apk_tar_parse(is, apk_read_script_archive_entry, db,
|
2010-10-08 12:36:54 +00:00
|
|
|
FALSE, &db->id_cache);
|
2009-07-14 16:14:05 +00:00
|
|
|
is->close(is);
|
2011-03-16 14:52:14 +00:00
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-24 11:00:57 +00:00
|
|
|
struct index_write_ctx {
|
|
|
|
struct apk_ostream *os;
|
|
|
|
int count;
|
|
|
|
int force;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int write_index_entry(apk_hash_item item, void *ctx)
|
|
|
|
{
|
|
|
|
struct index_write_ctx *iwctx = (struct index_write_ctx *) ctx;
|
|
|
|
struct apk_package *pkg = (struct apk_package *) item;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (!iwctx->force && pkg->filename == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
r = apk_pkg_write_index_entry(pkg, iwctx->os);
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
if (iwctx->os->write(iwctx->os, "\n", 1) != 1)
|
2013-05-30 07:22:35 +00:00
|
|
|
return -EIO;
|
2009-07-24 11:00:57 +00:00
|
|
|
|
|
|
|
iwctx->count++;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int apk_db_index_write_nr_cache(struct apk_database *db)
|
|
|
|
{
|
|
|
|
struct index_write_ctx ctx = { NULL, 0, TRUE };
|
2009-08-12 16:17:46 +00:00
|
|
|
struct apk_installed_package *ipkg;
|
2009-07-24 11:00:57 +00:00
|
|
|
struct apk_ostream *os;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (!apk_db_cache_active(db))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Write list of installed non-repository packages to
|
|
|
|
* cached index file */
|
2009-08-12 08:05:09 +00:00
|
|
|
os = apk_ostream_to_file(db->cache_fd,
|
|
|
|
"installed",
|
|
|
|
"installed.new",
|
|
|
|
0644);
|
2015-03-10 11:15:58 +00:00
|
|
|
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
2009-07-24 11:00:57 +00:00
|
|
|
|
2009-07-31 13:08:09 +00:00
|
|
|
ctx.os = os;
|
2009-08-12 16:17:46 +00:00
|
|
|
list_for_each_entry(ipkg, &db->installed.packages, installed_pkgs_list) {
|
2012-02-22 06:45:40 +00:00
|
|
|
struct apk_package *pkg = ipkg->pkg;
|
2013-05-30 05:46:30 +00:00
|
|
|
if (pkg->repos != BIT(APK_REPOSITORY_CACHED))
|
2009-07-24 11:00:57 +00:00
|
|
|
continue;
|
2012-02-22 06:45:40 +00:00
|
|
|
r = write_index_entry(pkg, &ctx);
|
2009-07-24 11:00:57 +00:00
|
|
|
if (r != 0)
|
|
|
|
return r;
|
|
|
|
}
|
2009-08-12 08:05:09 +00:00
|
|
|
r = os->close(os);
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
2009-07-24 11:00:57 +00:00
|
|
|
|
|
|
|
return ctx.count;
|
|
|
|
}
|
|
|
|
|
|
|
|
int apk_db_index_write(struct apk_database *db, struct apk_ostream *os)
|
|
|
|
{
|
|
|
|
struct index_write_ctx ctx = { os, 0, FALSE };
|
2011-06-28 12:40:52 +00:00
|
|
|
int r;
|
2009-07-24 11:00:57 +00:00
|
|
|
|
2011-06-28 12:40:52 +00:00
|
|
|
r = apk_hash_foreach(&db->available.packages, write_index_entry, &ctx);
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
2009-07-24 11:00:57 +00:00
|
|
|
|
|
|
|
return ctx.count;
|
|
|
|
}
|
|
|
|
|
2008-11-14 12:26:59 +00:00
|
|
|
static int add_protected_path(void *ctx, apk_blob_t blob)
|
|
|
|
{
|
|
|
|
struct apk_database *db = (struct apk_database *) ctx;
|
2014-03-12 07:08:26 +00:00
|
|
|
int protect_mode = APK_PROTECT_NONE;
|
2012-02-23 13:05:06 +00:00
|
|
|
|
|
|
|
/* skip empty lines and comments */
|
|
|
|
if (blob.len == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch (blob.ptr[0]) {
|
|
|
|
case '#':
|
|
|
|
return 0;
|
|
|
|
case '-':
|
2014-03-12 07:08:26 +00:00
|
|
|
protect_mode = APK_PROTECT_NONE;
|
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
protect_mode = APK_PROTECT_CHANGED;
|
2012-02-23 13:05:06 +00:00
|
|
|
break;
|
|
|
|
case '@':
|
2014-03-12 07:08:26 +00:00
|
|
|
protect_mode = APK_PROTECT_SYMLINKS_ONLY;
|
2012-02-23 13:05:06 +00:00
|
|
|
break;
|
2014-03-12 07:08:26 +00:00
|
|
|
case '!':
|
|
|
|
protect_mode = APK_PROTECT_ALL;
|
2012-02-23 13:05:06 +00:00
|
|
|
break;
|
|
|
|
default:
|
2014-03-12 07:08:26 +00:00
|
|
|
protect_mode = APK_PROTECT_CHANGED;
|
|
|
|
goto no_mode_char;
|
2012-02-23 13:05:06 +00:00
|
|
|
}
|
2014-03-12 07:08:26 +00:00
|
|
|
blob.ptr++;
|
|
|
|
blob.len--;
|
2012-02-23 13:05:06 +00:00
|
|
|
|
2014-03-12 07:08:26 +00:00
|
|
|
no_mode_char:
|
2012-05-01 11:30:06 +00:00
|
|
|
/* skip leading and trailing path separators */
|
|
|
|
while (blob.len && blob.ptr[0] == '/')
|
|
|
|
blob.ptr++, blob.len--;
|
|
|
|
while (blob.len && blob.ptr[blob.len-1] == '/')
|
|
|
|
blob.len--;
|
|
|
|
|
2012-02-23 13:05:06 +00:00
|
|
|
*apk_protected_path_array_add(&db->protected_paths) = (struct apk_protected_path) {
|
|
|
|
.relative_pattern = apk_blob_cstr(blob),
|
2014-03-12 07:08:26 +00:00
|
|
|
.protect_mode = protect_mode,
|
2012-02-23 13:05:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int file_ends_with_dot_list(const char *file)
|
|
|
|
{
|
|
|
|
const char *ext = strrchr(file, '.');
|
|
|
|
if (ext == NULL || strcmp(ext, ".list") != 0)
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int add_protected_paths_from_file(void *ctx, int dirfd, const char *file)
|
|
|
|
{
|
|
|
|
struct apk_database *db = (struct apk_database *) ctx;
|
|
|
|
apk_blob_t blob;
|
|
|
|
|
|
|
|
if (!file_ends_with_dot_list(file))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
blob = apk_blob_from_file(dirfd, file);
|
|
|
|
if (APK_BLOB_IS_NULL(blob))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
apk_blob_for_each_segment(blob, "\n", add_protected_path, db);
|
|
|
|
free(blob.ptr);
|
2008-11-14 12:26:59 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-17 09:07:56 +00:00
|
|
|
static int apk_db_create(struct apk_database *db)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
2009-07-31 13:08:09 +00:00
|
|
|
mkdirat(db->root_fd, "tmp", 01777);
|
|
|
|
mkdirat(db->root_fd, "dev", 0755);
|
2013-05-29 10:44:42 +00:00
|
|
|
mknodat(db->root_fd, "dev/null", S_IFCHR | 0666, makedev(1, 3));
|
2011-03-16 14:52:14 +00:00
|
|
|
mkdirat(db->root_fd, "etc", 0755);
|
|
|
|
mkdirat(db->root_fd, "etc/apk", 0755);
|
|
|
|
mkdirat(db->root_fd, "lib", 0755);
|
|
|
|
mkdirat(db->root_fd, "lib/apk", 0755);
|
|
|
|
mkdirat(db->root_fd, "lib/apk/db", 0755);
|
2009-07-31 13:08:09 +00:00
|
|
|
mkdirat(db->root_fd, "var", 0755);
|
2009-08-11 14:56:24 +00:00
|
|
|
mkdirat(db->root_fd, "var/cache", 0755);
|
2011-03-16 14:52:14 +00:00
|
|
|
mkdirat(db->root_fd, "var/cache/apk", 0755);
|
2009-08-11 14:56:24 +00:00
|
|
|
mkdirat(db->root_fd, "var/cache/misc", 0755);
|
2011-03-16 13:39:36 +00:00
|
|
|
mkdirat(db->root_fd, "var/lock", 0755);
|
2009-01-17 09:07:56 +00:00
|
|
|
|
2011-03-16 14:52:14 +00:00
|
|
|
fd = openat(db->root_fd, apk_world_file, O_CREAT|O_RDWR|O_TRUNC|O_CLOEXEC, 0644);
|
2009-01-17 09:07:56 +00:00
|
|
|
if (fd < 0)
|
|
|
|
return -errno;
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-07 07:30:54 +00:00
|
|
|
static void handle_alarm(int sig)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-03-16 12:55:08 +00:00
|
|
|
static char *find_mountpoint(int atfd, const char *rel_path)
|
|
|
|
{
|
|
|
|
struct mntent *me;
|
|
|
|
struct stat64 st;
|
|
|
|
FILE *f;
|
|
|
|
char *ret = NULL;
|
|
|
|
dev_t dev;
|
|
|
|
|
|
|
|
if (fstatat64(atfd, rel_path, &st, 0) != 0)
|
|
|
|
return NULL;
|
|
|
|
dev = st.st_dev;
|
|
|
|
|
|
|
|
f = setmntent("/proc/mounts", "r");
|
|
|
|
if (f == NULL)
|
|
|
|
return NULL;
|
|
|
|
while ((me = getmntent(f)) != NULL) {
|
|
|
|
if (strcmp(me->mnt_fsname, "rootfs") == 0)
|
|
|
|
continue;
|
|
|
|
if (fstatat64(atfd, me->mnt_dir, &st, 0) == 0 &&
|
|
|
|
st.st_dev == dev) {
|
|
|
|
ret = strdup(me->mnt_dir);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
endmntent(f);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_remount(const char *path, const char *option)
|
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
pid = fork();
|
|
|
|
if (pid < 0)
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
if (pid == 0) {
|
|
|
|
execl("/bin/mount", "mount", "-o", "remount", "-o",
|
2013-10-01 13:22:29 +00:00
|
|
|
option, path, (void*) 0);
|
2011-03-16 12:55:08 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
waitpid(pid, &status, 0);
|
|
|
|
if (!WIFEXITED(status))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return WEXITSTATUS(status);
|
|
|
|
}
|
|
|
|
|
2012-02-22 11:57:05 +00:00
|
|
|
static void mark_in_cache(struct apk_database *db, int dirfd, const char *name, struct apk_package *pkg)
|
2012-02-22 06:45:40 +00:00
|
|
|
{
|
|
|
|
if (pkg == NULL)
|
|
|
|
return;
|
|
|
|
|
2013-05-30 05:46:30 +00:00
|
|
|
pkg->repos |= BIT(APK_REPOSITORY_CACHED);
|
2012-02-22 06:45:40 +00:00
|
|
|
}
|
|
|
|
|
2012-02-22 11:57:05 +00:00
|
|
|
static int add_repos_from_file(void *ctx, int dirfd, const char *file)
|
|
|
|
{
|
|
|
|
struct apk_database *db = (struct apk_database *) ctx;
|
|
|
|
apk_blob_t blob;
|
|
|
|
|
|
|
|
if (dirfd != db->root_fd) {
|
2012-02-23 13:05:06 +00:00
|
|
|
/* loading from repositories.d; check extension */
|
|
|
|
if (!file_ends_with_dot_list(file))
|
2012-02-22 11:57:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
blob = apk_blob_from_file(dirfd, file);
|
|
|
|
if (APK_BLOB_IS_NULL(blob))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
apk_blob_for_each_segment(blob, "\n", apk_db_add_repository, db);
|
|
|
|
free(blob.ptr);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-05-30 05:46:30 +00:00
|
|
|
static void apk_db_setup_repositories(struct apk_database *db)
|
|
|
|
{
|
|
|
|
db->repos[APK_REPOSITORY_CACHED] = (struct apk_repository) {
|
2013-06-18 11:53:59 +00:00
|
|
|
.url = apk_linked_cache_dir,
|
2013-05-30 05:46:30 +00:00
|
|
|
.csum.data = {
|
|
|
|
0xb0,0x35,0x92,0x80,0x6e,0xfa,0xbf,0xee,0xb7,0x09,
|
|
|
|
0xf5,0xa7,0x0a,0x7c,0x17,0x26,0x69,0xb0,0x05,0x38 },
|
|
|
|
.csum.type = APK_CHECKSUM_SHA1,
|
|
|
|
};
|
|
|
|
|
|
|
|
db->num_repos = APK_REPOSITORY_FIRST_CONFIGURED;
|
|
|
|
db->local_repos |= BIT(APK_REPOSITORY_CACHED);
|
|
|
|
db->available_repos |= BIT(APK_REPOSITORY_CACHED);
|
|
|
|
|
2013-06-18 11:30:44 +00:00
|
|
|
db->num_repo_tags = 1;
|
2013-05-30 05:46:30 +00:00
|
|
|
}
|
|
|
|
|
2010-03-06 19:22:01 +00:00
|
|
|
int apk_db_open(struct apk_database *db, struct apk_db_options *dbopts)
|
2008-04-21 16:30:10 +00:00
|
|
|
{
|
2009-08-06 11:25:03 +00:00
|
|
|
const char *msg = NULL;
|
|
|
|
struct apk_repository_list *repo = NULL;
|
2010-03-01 09:26:45 +00:00
|
|
|
struct apk_bstream *bs;
|
2011-03-16 11:18:54 +00:00
|
|
|
struct statfs stfs;
|
2013-06-17 13:33:59 +00:00
|
|
|
struct statvfs stvfs;
|
2009-06-28 17:36:16 +00:00
|
|
|
apk_blob_t blob;
|
2012-02-23 15:04:51 +00:00
|
|
|
int r, fd, write_arch = FALSE;
|
2008-11-14 12:26:59 +00:00
|
|
|
|
2015-03-11 14:10:33 +00:00
|
|
|
apk_default_acl_dir = apk_db_acl_atomize(0755, 0, 0, NULL);
|
|
|
|
apk_default_acl_file = apk_db_acl_atomize(0644, 0, 0, NULL);
|
2014-11-01 18:18:57 +00:00
|
|
|
|
2008-04-21 16:30:10 +00:00
|
|
|
memset(db, 0, sizeof(*db));
|
2010-06-12 10:48:42 +00:00
|
|
|
if (apk_flags & APK_SIMULATE) {
|
|
|
|
dbopts->open_flags &= ~(APK_OPENF_CREATE | APK_OPENF_WRITE);
|
|
|
|
dbopts->open_flags |= APK_OPENF_READ;
|
|
|
|
}
|
2009-08-06 11:25:03 +00:00
|
|
|
if (dbopts->open_flags == 0) {
|
|
|
|
msg = "Invalid open flags (internal error)";
|
|
|
|
r = -1;
|
|
|
|
goto ret_r;
|
|
|
|
}
|
|
|
|
|
2012-02-08 12:02:51 +00:00
|
|
|
apk_hash_init(&db->available.names, &pkg_name_hash_ops, 4000);
|
|
|
|
apk_hash_init(&db->available.packages, &pkg_info_hash_ops, 10000);
|
2012-02-22 06:45:40 +00:00
|
|
|
apk_hash_init(&db->installed.dirs, &dir_hash_ops, 5000);
|
|
|
|
apk_hash_init(&db->installed.files, &file_hash_ops, 100000);
|
2008-11-27 18:25:01 +00:00
|
|
|
list_init(&db->installed.packages);
|
2009-08-13 11:10:30 +00:00
|
|
|
list_init(&db->installed.triggers);
|
2010-06-05 09:06:41 +00:00
|
|
|
apk_dependency_array_init(&db->world);
|
2012-02-23 13:05:06 +00:00
|
|
|
apk_protected_path_array_init(&db->protected_paths);
|
2009-07-24 11:00:57 +00:00
|
|
|
db->permanent = 1;
|
2008-04-21 16:30:10 +00:00
|
|
|
|
2013-05-30 05:46:30 +00:00
|
|
|
apk_db_setup_repositories(db);
|
2011-10-29 02:18:21 +00:00
|
|
|
|
2009-08-06 11:25:03 +00:00
|
|
|
db->root = strdup(dbopts->root ?: "/");
|
2010-06-11 10:42:21 +00:00
|
|
|
db->root_fd = openat(AT_FDCWD, db->root, O_RDONLY | O_CLOEXEC);
|
2009-08-06 11:25:03 +00:00
|
|
|
if (db->root_fd < 0 && (dbopts->open_flags & APK_OPENF_CREATE)) {
|
2009-08-06 07:17:28 +00:00
|
|
|
mkdirat(AT_FDCWD, db->root, 0755);
|
2010-06-11 10:42:21 +00:00
|
|
|
db->root_fd = openat(AT_FDCWD, db->root, O_RDONLY | O_CLOEXEC);
|
2009-08-06 07:17:28 +00:00
|
|
|
}
|
|
|
|
if (db->root_fd < 0) {
|
|
|
|
msg = "Unable to open root";
|
|
|
|
goto ret_errno;
|
|
|
|
}
|
2011-03-16 11:18:54 +00:00
|
|
|
if (fstatfs(db->root_fd, &stfs) == 0 &&
|
|
|
|
stfs.f_type == 0x01021994 /* TMPFS_MAGIC */)
|
2009-08-06 07:17:28 +00:00
|
|
|
db->permanent = 0;
|
|
|
|
|
2012-02-23 15:04:51 +00:00
|
|
|
if (dbopts->root && dbopts->arch) {
|
|
|
|
db->arch = apk_blob_atomize(APK_BLOB_STR(dbopts->arch));
|
|
|
|
write_arch = TRUE;
|
|
|
|
} else {
|
|
|
|
apk_blob_t arch;
|
|
|
|
arch = apk_blob_from_file(db->root_fd, apk_arch_file);
|
|
|
|
if (!APK_BLOB_IS_NULL(arch)) {
|
|
|
|
db->arch = apk_blob_atomize_dup(apk_blob_trim(arch));
|
|
|
|
free(arch.ptr);
|
|
|
|
} else {
|
|
|
|
db->arch = apk_blob_atomize(APK_BLOB_STR(APK_DEFAULT_ARCH));
|
|
|
|
write_arch = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-08 13:09:03 +00:00
|
|
|
apk_id_cache_init(&db->id_cache, db->root_fd);
|
|
|
|
|
2009-08-06 11:25:03 +00:00
|
|
|
if (dbopts->open_flags & APK_OPENF_WRITE) {
|
2011-03-16 13:39:36 +00:00
|
|
|
db->lock_fd = openat(db->root_fd, apk_lock_file,
|
2014-11-03 11:36:11 +00:00
|
|
|
O_CREAT | O_RDWR | O_CLOEXEC, 0600);
|
2009-08-06 07:17:28 +00:00
|
|
|
if (db->lock_fd < 0 && errno == ENOENT &&
|
2009-08-06 11:25:03 +00:00
|
|
|
(dbopts->open_flags & APK_OPENF_CREATE)) {
|
2009-08-06 07:17:28 +00:00
|
|
|
r = apk_db_create(db);
|
|
|
|
if (r != 0) {
|
|
|
|
msg = "Unable to create database";
|
|
|
|
goto ret_r;
|
|
|
|
}
|
2011-03-16 13:39:36 +00:00
|
|
|
db->lock_fd = openat(db->root_fd, apk_lock_file,
|
2014-11-03 11:36:11 +00:00
|
|
|
O_CREAT | O_RDWR | O_CLOEXEC, 0600);
|
2009-08-06 07:17:28 +00:00
|
|
|
}
|
|
|
|
if (db->lock_fd < 0 ||
|
|
|
|
flock(db->lock_fd, LOCK_EX | LOCK_NB) < 0) {
|
|
|
|
msg = "Unable to lock database";
|
2010-03-06 19:22:01 +00:00
|
|
|
if (dbopts->lock_wait) {
|
2009-08-06 07:17:28 +00:00
|
|
|
struct sigaction sa, old_sa;
|
|
|
|
|
|
|
|
apk_message("Waiting for repository lock");
|
|
|
|
memset(&sa, 0, sizeof sa);
|
|
|
|
sa.sa_handler = handle_alarm;
|
|
|
|
sa.sa_flags = SA_ONESHOT;
|
|
|
|
sigaction(SIGALRM, &sa, &old_sa);
|
|
|
|
|
2010-03-06 19:22:01 +00:00
|
|
|
alarm(dbopts->lock_wait);
|
2009-08-06 07:17:28 +00:00
|
|
|
if (flock(db->lock_fd, LOCK_EX) < 0)
|
2009-07-24 11:12:59 +00:00
|
|
|
goto ret_errno;
|
2009-08-06 07:17:28 +00:00
|
|
|
|
|
|
|
alarm(0);
|
|
|
|
sigaction(SIGALRM, &old_sa, NULL);
|
|
|
|
} else
|
|
|
|
goto ret_errno;
|
2008-04-21 16:30:10 +00:00
|
|
|
}
|
2012-02-23 15:04:51 +00:00
|
|
|
if (write_arch)
|
|
|
|
apk_blob_to_file(db->root_fd, apk_arch_file, *db->arch, APK_BTF_ADD_EOL);
|
2008-04-21 16:30:10 +00:00
|
|
|
}
|
2008-11-28 11:15:06 +00:00
|
|
|
|
2014-03-12 07:08:26 +00:00
|
|
|
blob = APK_BLOB_STR("+etc\n" "@etc/init.d\n" "!etc/apk\n");
|
2012-02-23 13:05:06 +00:00
|
|
|
apk_blob_for_each_segment(blob, "\n", add_protected_path, db);
|
|
|
|
|
|
|
|
apk_dir_foreach_file(openat(db->root_fd, "etc/apk/protected_paths.d", O_RDONLY | O_CLOEXEC),
|
|
|
|
add_protected_paths_from_file, db);
|
2008-11-28 11:15:06 +00:00
|
|
|
|
2011-03-16 12:55:08 +00:00
|
|
|
/* figure out where to have the cache */
|
|
|
|
fd = openat(db->root_fd, apk_linked_cache_dir, O_RDONLY | O_CLOEXEC);
|
2011-03-16 13:21:41 +00:00
|
|
|
if (fd >= 0 && fstatfs(fd, &stfs) == 0 && stfs.f_type != 0x01021994 /* TMPFS_MAGIC */) {
|
2011-03-16 12:55:08 +00:00
|
|
|
db->cache_dir = apk_linked_cache_dir;
|
|
|
|
db->cache_fd = fd;
|
2011-05-27 13:49:25 +00:00
|
|
|
if ((dbopts->open_flags & (APK_OPENF_WRITE | APK_OPENF_CACHE_WRITE)) &&
|
|
|
|
fstatvfs(fd, &stvfs) == 0 && (stvfs.f_flag & ST_RDONLY) != 0) {
|
2013-06-27 19:28:46 +00:00
|
|
|
/* remount cache read/write */
|
2011-05-27 13:49:25 +00:00
|
|
|
db->cache_remount_dir = find_mountpoint(db->root_fd, db->cache_dir);
|
|
|
|
if (db->cache_remount_dir == NULL) {
|
|
|
|
apk_warning("Unable to find cache directory mount point");
|
|
|
|
} else if (do_remount(db->cache_remount_dir, "rw") != 0) {
|
|
|
|
free(db->cache_remount_dir);
|
|
|
|
db->cache_remount_dir = NULL;
|
2013-06-27 19:28:46 +00:00
|
|
|
apk_error("Unable to remount cache read/write");
|
2011-05-27 13:49:25 +00:00
|
|
|
r = EROFS;
|
|
|
|
goto ret_r;
|
|
|
|
}
|
|
|
|
}
|
2011-03-16 12:55:08 +00:00
|
|
|
} else {
|
|
|
|
if (fd >= 0)
|
|
|
|
close(fd);
|
|
|
|
db->cache_dir = apk_static_cache_dir;
|
|
|
|
db->cache_fd = openat(db->root_fd, db->cache_dir, O_RDONLY | O_CLOEXEC);
|
|
|
|
}
|
|
|
|
|
2009-08-06 11:25:03 +00:00
|
|
|
db->keys_fd = openat(db->root_fd,
|
|
|
|
dbopts->keys_dir ?: "etc/apk/keys",
|
2010-06-11 10:42:21 +00:00
|
|
|
O_RDONLY | O_CLOEXEC);
|
2009-07-31 13:08:09 +00:00
|
|
|
|
2009-12-21 12:14:02 +00:00
|
|
|
if (apk_flags & APK_OVERLAY_FROM_STDIN) {
|
|
|
|
apk_flags &= ~APK_OVERLAY_FROM_STDIN;
|
|
|
|
apk_db_read_overlay(db, apk_bstream_from_istream(
|
|
|
|
apk_istream_from_fd(STDIN_FILENO)));
|
|
|
|
}
|
|
|
|
|
2009-08-06 11:25:03 +00:00
|
|
|
r = apk_db_read_state(db, dbopts->open_flags);
|
|
|
|
if (r == -ENOENT && (dbopts->open_flags & APK_OPENF_CREATE)) {
|
2009-08-06 07:17:28 +00:00
|
|
|
r = apk_db_create(db);
|
2009-07-07 06:27:56 +00:00
|
|
|
if (r != 0) {
|
2009-08-06 07:17:28 +00:00
|
|
|
msg = "Unable to create database";
|
2009-07-07 06:27:56 +00:00
|
|
|
goto ret_r;
|
2009-01-17 09:07:56 +00:00
|
|
|
}
|
2009-08-06 11:25:03 +00:00
|
|
|
r = apk_db_read_state(db, dbopts->open_flags);
|
2009-08-06 07:17:28 +00:00
|
|
|
}
|
|
|
|
if (r != 0) {
|
|
|
|
msg = "Unable to read database state";
|
|
|
|
goto ret_r;
|
2009-01-16 14:25:19 +00:00
|
|
|
}
|
|
|
|
|
2010-03-04 12:01:37 +00:00
|
|
|
if (!(dbopts->open_flags & APK_OPENF_NO_INSTALLED_REPO)) {
|
2010-03-01 09:20:17 +00:00
|
|
|
if (apk_db_cache_active(db)) {
|
|
|
|
bs = apk_bstream_from_file(db->cache_fd, "installed");
|
2015-03-10 11:04:14 +00:00
|
|
|
if (!IS_ERR_OR_NULL(bs)) {
|
2010-03-01 09:20:17 +00:00
|
|
|
apk_db_index_read(db, bs, -2);
|
|
|
|
bs->close(bs, NULL);
|
|
|
|
}
|
|
|
|
}
|
2010-03-04 12:01:37 +00:00
|
|
|
}
|
2011-04-22 08:24:02 +00:00
|
|
|
|
2010-03-04 12:01:37 +00:00
|
|
|
if (!(dbopts->open_flags & APK_OPENF_NO_SYS_REPOS)) {
|
2012-01-31 13:49:04 +00:00
|
|
|
list_for_each_entry(repo, &dbopts->repository_list, list)
|
|
|
|
apk_db_add_repository(db, APK_BLOB_STR(repo->url));
|
2012-02-22 11:57:05 +00:00
|
|
|
|
2012-02-22 15:08:07 +00:00
|
|
|
if (dbopts->repositories_file == NULL) {
|
|
|
|
add_repos_from_file(db, db->root_fd, "etc/apk/repositories");
|
|
|
|
apk_dir_foreach_file(openat(db->root_fd, "etc/apk/repositories.d", O_RDONLY | O_CLOEXEC),
|
|
|
|
add_repos_from_file, db);
|
|
|
|
} else {
|
|
|
|
add_repos_from_file(db, db->root_fd, dbopts->repositories_file);
|
|
|
|
}
|
2012-02-22 11:57:05 +00:00
|
|
|
|
2009-07-24 11:00:57 +00:00
|
|
|
if (apk_flags & APK_UPDATE_CACHE)
|
|
|
|
apk_db_index_write_nr_cache(db);
|
2009-01-17 09:07:56 +00:00
|
|
|
}
|
2008-04-21 16:30:10 +00:00
|
|
|
|
2012-02-22 06:45:40 +00:00
|
|
|
if (apk_db_cache_active(db))
|
|
|
|
apk_db_cache_foreach_item(db, mark_in_cache);
|
|
|
|
|
2011-01-03 19:06:41 +00:00
|
|
|
if (db->compat_newfeatures) {
|
|
|
|
apk_warning("This apk-tools is OLD! Some packages %s.",
|
|
|
|
db->compat_notinstallable ?
|
|
|
|
"are not installable" :
|
|
|
|
"might not function properly");
|
|
|
|
}
|
|
|
|
|
2012-01-31 13:49:04 +00:00
|
|
|
return 0;
|
2009-01-17 09:07:56 +00:00
|
|
|
|
|
|
|
ret_errno:
|
|
|
|
r = -errno;
|
|
|
|
ret_r:
|
2009-04-21 08:17:17 +00:00
|
|
|
if (msg != NULL)
|
|
|
|
apk_error("%s: %s", msg, strerror(-r));
|
2009-01-17 09:07:56 +00:00
|
|
|
apk_db_close(db);
|
2009-07-31 13:08:09 +00:00
|
|
|
|
2009-01-17 09:07:56 +00:00
|
|
|
return r;
|
2008-04-21 16:30:10 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
struct write_ctx {
|
|
|
|
struct apk_database *db;
|
|
|
|
int fd;
|
|
|
|
};
|
|
|
|
|
2009-04-14 15:48:02 +00:00
|
|
|
int apk_db_write_config(struct apk_database *db)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2008-11-28 14:28:54 +00:00
|
|
|
struct apk_ostream *os;
|
2009-08-12 08:05:09 +00:00
|
|
|
int r;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-08-13 11:10:30 +00:00
|
|
|
if ((apk_flags & APK_SIMULATE) || db->root == NULL)
|
2008-04-21 16:30:10 +00:00
|
|
|
return 0;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-01-17 09:07:56 +00:00
|
|
|
if (db->lock_fd == 0) {
|
|
|
|
apk_error("Refusing to write db without write lock!");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-08-12 08:05:09 +00:00
|
|
|
os = apk_ostream_to_file(db->root_fd,
|
2011-03-16 14:52:14 +00:00
|
|
|
apk_world_file,
|
|
|
|
apk_world_file_tmp,
|
2009-08-12 08:05:09 +00:00
|
|
|
0644);
|
2015-03-10 11:15:58 +00:00
|
|
|
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
2015-01-30 12:40:00 +00:00
|
|
|
apk_deps_write(db, db->world, os, APK_BLOB_PTR_LEN("\n", 1));
|
2009-03-17 11:19:06 +00:00
|
|
|
os->write(os, "\n", 1);
|
2009-08-12 08:05:09 +00:00
|
|
|
r = os->close(os);
|
2015-03-10 11:15:58 +00:00
|
|
|
if (r < 0) return r;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-08-12 08:05:09 +00:00
|
|
|
os = apk_ostream_to_file(db->root_fd,
|
2011-03-16 14:52:14 +00:00
|
|
|
apk_installed_file,
|
|
|
|
apk_installed_file_tmp,
|
2009-08-12 08:05:09 +00:00
|
|
|
0644);
|
2015-03-10 11:15:58 +00:00
|
|
|
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
2008-11-28 14:28:54 +00:00
|
|
|
apk_db_write_fdb(db, os);
|
2009-08-12 08:05:09 +00:00
|
|
|
r = os->close(os);
|
2015-03-10 11:15:58 +00:00
|
|
|
if (r < 0) return r;
|
2009-01-17 09:07:56 +00:00
|
|
|
|
2009-08-12 08:05:09 +00:00
|
|
|
os = apk_ostream_to_file(db->root_fd,
|
2011-03-16 14:52:14 +00:00
|
|
|
apk_scripts_file,
|
|
|
|
apk_scripts_file_tmp,
|
2009-08-12 08:05:09 +00:00
|
|
|
0644);
|
2015-03-10 11:15:58 +00:00
|
|
|
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
2008-11-28 14:28:54 +00:00
|
|
|
apk_db_scriptdb_write(db, os);
|
2009-08-12 08:05:09 +00:00
|
|
|
r = os->close(os);
|
2015-03-10 11:15:58 +00:00
|
|
|
if (r < 0) return r;
|
2009-07-14 16:14:05 +00:00
|
|
|
|
2009-07-24 11:00:57 +00:00
|
|
|
apk_db_index_write_nr_cache(db);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-08-13 11:10:30 +00:00
|
|
|
os = apk_ostream_to_file(db->root_fd,
|
2011-03-16 14:52:14 +00:00
|
|
|
apk_triggers_file,
|
|
|
|
apk_triggers_file_tmp,
|
2009-08-13 11:10:30 +00:00
|
|
|
0644);
|
2015-03-10 11:15:58 +00:00
|
|
|
if (IS_ERR_OR_NULL(os)) return PTR_ERR(os);
|
2009-08-13 11:10:30 +00:00
|
|
|
apk_db_triggers_write(db, os);
|
|
|
|
r = os->close(os);
|
2015-03-10 11:15:58 +00:00
|
|
|
if (r < 0) return r;
|
2009-08-13 11:10:30 +00:00
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-21 16:30:10 +00:00
|
|
|
void apk_db_close(struct apk_database *db)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2009-08-12 16:17:46 +00:00
|
|
|
struct apk_installed_package *ipkg;
|
2009-01-06 18:30:22 +00:00
|
|
|
struct apk_db_dir_instance *diri;
|
2013-06-18 05:03:40 +00:00
|
|
|
struct apk_protected_path *ppath;
|
2009-01-13 18:32:18 +00:00
|
|
|
struct hlist_node *dc, *dn;
|
2009-01-06 18:30:22 +00:00
|
|
|
int i;
|
|
|
|
|
2013-07-16 08:19:55 +00:00
|
|
|
/* the id cache was never initialized if root_fd failed */
|
|
|
|
if (db->root_fd >= 0)
|
|
|
|
apk_id_cache_free(&db->id_cache);
|
2010-10-08 12:36:54 +00:00
|
|
|
|
2012-02-10 13:21:41 +00:00
|
|
|
/* Cleaning up the directory tree will cause mode, uid and gid
|
|
|
|
* of all modified (package providing that directory got removed)
|
|
|
|
* directories to be reset. */
|
2009-08-12 16:17:46 +00:00
|
|
|
list_for_each_entry(ipkg, &db->installed.packages, installed_pkgs_list) {
|
|
|
|
hlist_for_each_entry_safe(diri, dc, dn, &ipkg->owned_dirs, pkg_dirs_list) {
|
2014-10-07 10:29:34 +00:00
|
|
|
apk_db_diri_free(db, diri, APK_DIR_FREE);
|
2009-01-06 18:30:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-30 05:46:30 +00:00
|
|
|
for (i = APK_REPOSITORY_FIRST_CONFIGURED; i < db->num_repos; i++) {
|
2013-06-18 11:53:59 +00:00
|
|
|
free((void*) db->repos[i].url);
|
2012-02-17 08:02:44 +00:00
|
|
|
free(db->repos[i].description.ptr);
|
2009-04-16 17:05:22 +00:00
|
|
|
}
|
2013-06-18 05:03:40 +00:00
|
|
|
foreach_array_item(ppath, db->protected_paths)
|
|
|
|
free(ppath->relative_pattern);
|
2012-02-23 13:05:06 +00:00
|
|
|
apk_protected_path_array_free(&db->protected_paths);
|
|
|
|
|
2010-06-05 09:06:41 +00:00
|
|
|
apk_dependency_array_free(&db->world);
|
2009-01-06 18:30:22 +00:00
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
apk_hash_free(&db->available.packages);
|
2010-06-01 13:46:53 +00:00
|
|
|
apk_hash_free(&db->available.names);
|
2009-01-13 18:32:18 +00:00
|
|
|
apk_hash_free(&db->installed.files);
|
2008-04-17 14:09:13 +00:00
|
|
|
apk_hash_free(&db->installed.dirs);
|
2009-01-13 18:32:18 +00:00
|
|
|
|
2009-07-31 13:08:09 +00:00
|
|
|
if (db->keys_fd)
|
|
|
|
close(db->keys_fd);
|
|
|
|
if (db->cache_fd)
|
|
|
|
close(db->cache_fd);
|
2009-01-17 09:07:56 +00:00
|
|
|
if (db->root_fd)
|
2008-04-21 16:30:10 +00:00
|
|
|
close(db->root_fd);
|
2009-01-17 09:07:56 +00:00
|
|
|
if (db->lock_fd)
|
|
|
|
close(db->lock_fd);
|
|
|
|
if (db->root != NULL)
|
2008-04-17 14:09:13 +00:00
|
|
|
free(db->root);
|
2011-05-27 11:38:50 +00:00
|
|
|
|
|
|
|
if (db->cache_remount_dir) {
|
|
|
|
do_remount(db->cache_remount_dir, "ro");
|
|
|
|
free(db->cache_remount_dir);
|
|
|
|
db->cache_remount_dir = NULL;
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2011-10-29 02:18:21 +00:00
|
|
|
int apk_db_get_tag_id(struct apk_database *db, apk_blob_t tag)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2013-06-18 11:30:44 +00:00
|
|
|
if (APK_BLOB_IS_NULL(tag))
|
|
|
|
return APK_DEFAULT_REPOSITORY_TAG;
|
|
|
|
|
|
|
|
if (tag.ptr[0] == '@') {
|
|
|
|
for (i = 1; i < db->num_repo_tags; i++)
|
|
|
|
if (apk_blob_compare(db->repo_tags[i].tag, tag) == 0)
|
|
|
|
return i;
|
|
|
|
} else {
|
|
|
|
for (i = 1; i < db->num_repo_tags; i++)
|
|
|
|
if (apk_blob_compare(db->repo_tags[i].plain_name, tag) == 0)
|
|
|
|
return i;
|
2011-10-29 02:18:21 +00:00
|
|
|
}
|
2013-06-18 11:30:44 +00:00
|
|
|
if (i >= ARRAY_SIZE(db->repo_tags))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
db->num_repo_tags++;
|
|
|
|
|
|
|
|
if (tag.ptr[0] == '@') {
|
|
|
|
db->repo_tags[i].tag = *apk_blob_atomize_dup(tag);
|
|
|
|
} else {
|
|
|
|
char *tmp = alloca(tag.len + 1);
|
|
|
|
tmp[0] = '@';
|
|
|
|
memcpy(&tmp[1], tag.ptr, tag.len);
|
|
|
|
db->repo_tags[i].tag = *apk_blob_atomize_dup(APK_BLOB_PTR_LEN(tmp, tag.len+1));
|
2011-10-29 02:18:21 +00:00
|
|
|
}
|
2013-06-18 11:30:44 +00:00
|
|
|
|
|
|
|
db->repo_tags[i].plain_name = db->repo_tags[i].tag;
|
|
|
|
apk_blob_pull_char(&db->repo_tags[i].plain_name, '@');
|
|
|
|
|
|
|
|
return i;
|
2011-10-29 02:18:21 +00:00
|
|
|
}
|
|
|
|
|
2009-08-13 11:10:30 +00:00
|
|
|
static int fire_triggers(apk_hash_item item, void *ctx)
|
|
|
|
{
|
|
|
|
struct apk_database *db = (struct apk_database *) ctx;
|
|
|
|
struct apk_db_dir *dbd = (struct apk_db_dir *) item;
|
|
|
|
struct apk_installed_package *ipkg;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
list_for_each_entry(ipkg, &db->installed.triggers, trigger_pkgs_list) {
|
2012-02-23 13:05:06 +00:00
|
|
|
if (!ipkg->run_all_triggers && !dbd->modified)
|
2009-08-13 11:10:30 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
for (i = 0; i < ipkg->triggers->num; i++) {
|
|
|
|
if (ipkg->triggers->item[i][0] != '/')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (fnmatch(ipkg->triggers->item[i], dbd->rooted_name,
|
|
|
|
FNM_PATHNAME) != 0)
|
|
|
|
continue;
|
|
|
|
|
2010-06-05 09:06:41 +00:00
|
|
|
/* And place holder for script name */
|
2013-06-11 11:06:06 +00:00
|
|
|
if (ipkg->pending_triggers->num == 0) {
|
2009-08-13 16:21:31 +00:00
|
|
|
*apk_string_array_add(&ipkg->pending_triggers) =
|
|
|
|
NULL;
|
2013-06-11 11:06:06 +00:00
|
|
|
db->pending_triggers++;
|
|
|
|
}
|
2009-08-13 11:10:30 +00:00
|
|
|
*apk_string_array_add(&ipkg->pending_triggers) =
|
|
|
|
dbd->rooted_name;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-06-11 11:06:06 +00:00
|
|
|
int apk_db_fire_triggers(struct apk_database *db)
|
2009-08-13 11:10:30 +00:00
|
|
|
{
|
|
|
|
apk_hash_foreach(&db->installed.dirs, fire_triggers, db);
|
2013-06-11 11:06:06 +00:00
|
|
|
return db->pending_triggers;
|
2009-08-13 11:10:30 +00:00
|
|
|
}
|
|
|
|
|
2014-10-07 10:29:34 +00:00
|
|
|
static int update_permissions(apk_hash_item item, void *ctx)
|
|
|
|
{
|
|
|
|
struct apk_database *db = (struct apk_database *) ctx;
|
|
|
|
struct apk_db_dir *dir = (struct apk_db_dir *) item;
|
|
|
|
struct stat st;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (dir->refs == 0) return 0;
|
|
|
|
if (!dir->update_permissions) return 0;
|
|
|
|
dir->seen = 0;
|
|
|
|
|
|
|
|
r = fstatat(db->root_fd, dir->name, &st, AT_SYMLINK_NOFOLLOW);
|
|
|
|
if (r < 0 || (st.st_mode & 07777) != (dir->mode & 07777))
|
|
|
|
fchmodat(db->root_fd, dir->name, dir->mode, 0);
|
|
|
|
if (r < 0 || st.st_uid != dir->uid || st.st_gid != dir->gid)
|
|
|
|
fchownat(db->root_fd, dir->name, dir->uid, dir->gid, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void apk_db_update_directory_permissions(struct apk_database *db)
|
|
|
|
{
|
|
|
|
struct apk_installed_package *ipkg;
|
|
|
|
struct apk_db_dir_instance *diri;
|
|
|
|
struct apk_db_dir *dir;
|
|
|
|
struct hlist_node *dc, *dn;
|
|
|
|
|
|
|
|
list_for_each_entry(ipkg, &db->installed.packages, installed_pkgs_list) {
|
|
|
|
hlist_for_each_entry_safe(diri, dc, dn, &ipkg->owned_dirs, pkg_dirs_list) {
|
|
|
|
dir = diri->dir;
|
|
|
|
if (!dir->update_permissions) continue;
|
|
|
|
if (!dir->seen) {
|
|
|
|
dir->seen = 1;
|
|
|
|
dir->mode = 0;
|
|
|
|
dir->uid = (uid_t) -1;
|
|
|
|
dir->gid = (gid_t) -1;
|
|
|
|
}
|
|
|
|
apk_db_dir_apply_diri_permissions(diri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
apk_hash_foreach(&db->installed.dirs, update_permissions, db);
|
|
|
|
}
|
|
|
|
|
2009-06-29 08:22:55 +00:00
|
|
|
int apk_db_cache_active(struct apk_database *db)
|
|
|
|
{
|
|
|
|
return db->cache_dir != apk_static_cache_dir;
|
|
|
|
}
|
|
|
|
|
2012-02-22 06:45:40 +00:00
|
|
|
struct foreach_cache_item_ctx {
|
|
|
|
struct apk_database *db;
|
|
|
|
apk_cache_item_cb cb;
|
|
|
|
};
|
|
|
|
|
2012-02-22 11:57:05 +00:00
|
|
|
static int foreach_cache_file(void *pctx, int dirfd, const char *name)
|
2012-02-22 06:45:40 +00:00
|
|
|
{
|
|
|
|
struct foreach_cache_item_ctx *ctx = (struct foreach_cache_item_ctx *) pctx;
|
|
|
|
struct apk_database *db = ctx->db;
|
|
|
|
struct apk_package *pkg = NULL;
|
2013-06-18 05:03:40 +00:00
|
|
|
struct apk_provider *p0;
|
2012-02-22 06:45:40 +00:00
|
|
|
apk_blob_t b = APK_BLOB_STR(name), bname, bver;
|
|
|
|
|
|
|
|
if (apk_pkg_parse_name(b, &bname, &bver) == 0) {
|
|
|
|
/* Package - search for it */
|
|
|
|
struct apk_name *name = apk_db_get_name(db, bname);
|
|
|
|
char tmp[PATH_MAX];
|
|
|
|
if (name == NULL)
|
|
|
|
goto no_pkg;
|
2012-02-24 13:50:39 +00:00
|
|
|
|
2013-06-18 05:03:40 +00:00
|
|
|
foreach_array_item(p0, name->providers) {
|
|
|
|
if (p0->pkg->name != name)
|
2012-02-24 13:50:39 +00:00
|
|
|
continue;
|
2012-02-22 06:45:40 +00:00
|
|
|
|
2013-06-18 05:03:40 +00:00
|
|
|
apk_pkg_format_cache_pkg(APK_BLOB_BUF(tmp), p0->pkg);
|
2012-02-22 06:45:40 +00:00
|
|
|
if (apk_blob_compare(b, APK_BLOB_STR(tmp)) == 0) {
|
2013-06-18 05:03:40 +00:00
|
|
|
pkg = p0->pkg;
|
2012-02-22 06:45:40 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
no_pkg:
|
2012-02-22 11:57:05 +00:00
|
|
|
ctx->cb(db, dirfd, name, pkg);
|
2012-02-22 06:45:40 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int apk_db_cache_foreach_item(struct apk_database *db, apk_cache_item_cb cb)
|
|
|
|
{
|
|
|
|
struct foreach_cache_item_ctx ctx = { db, cb };
|
|
|
|
|
|
|
|
return apk_dir_foreach_file(dup(db->cache_fd), foreach_cache_file, &ctx);
|
|
|
|
}
|
|
|
|
|
2009-07-22 17:47:21 +00:00
|
|
|
int apk_db_permanent(struct apk_database *db)
|
|
|
|
{
|
2009-07-24 11:00:57 +00:00
|
|
|
return db->permanent;
|
2009-07-22 17:47:21 +00:00
|
|
|
}
|
|
|
|
|
2012-01-17 12:46:39 +00:00
|
|
|
int apk_db_check_world(struct apk_database *db, struct apk_dependency_array *world)
|
|
|
|
{
|
2013-06-18 05:03:40 +00:00
|
|
|
struct apk_dependency *dep;
|
|
|
|
int bad = 0, tag;
|
2012-01-17 12:46:39 +00:00
|
|
|
|
|
|
|
if (apk_flags & APK_FORCE)
|
|
|
|
return 0;
|
|
|
|
|
2013-06-18 05:03:40 +00:00
|
|
|
foreach_array_item(dep, world) {
|
|
|
|
tag = dep->repository_tag;
|
2012-01-17 12:46:39 +00:00
|
|
|
if (tag == 0 || db->repo_tags[tag].allowed_repos != 0)
|
|
|
|
continue;
|
2013-06-18 11:30:44 +00:00
|
|
|
if (tag < 0)
|
|
|
|
tag = 0;
|
|
|
|
apk_warning("The repository tag for world dependency '%s" BLOB_FMT "' does not exist",
|
|
|
|
dep->name->name, BLOB_PRINTF(db->repo_tags[tag].tag));
|
2012-01-17 12:46:39 +00:00
|
|
|
bad++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bad;
|
|
|
|
}
|
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
struct apk_package *apk_db_get_pkg(struct apk_database *db,
|
|
|
|
struct apk_checksum *csum)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2009-07-14 16:14:05 +00:00
|
|
|
return apk_hash_get(&db->available.packages, APK_BLOB_CSUM(*csum));
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2009-01-13 13:22:14 +00:00
|
|
|
struct apk_package *apk_db_get_file_owner(struct apk_database *db,
|
|
|
|
apk_blob_t filename)
|
|
|
|
{
|
2009-01-13 18:32:18 +00:00
|
|
|
struct apk_db_file *dbf;
|
2009-01-14 08:44:47 +00:00
|
|
|
struct apk_db_file_hash_key key;
|
2009-01-13 13:22:14 +00:00
|
|
|
|
2009-01-13 18:32:18 +00:00
|
|
|
if (filename.len && filename.ptr[0] == '/')
|
|
|
|
filename.len--, filename.ptr++;
|
2009-01-13 13:22:14 +00:00
|
|
|
|
2013-05-29 11:37:42 +00:00
|
|
|
if (!apk_blob_rsplit(filename, '/', &key.dirname, &key.filename)) {
|
|
|
|
key.dirname = APK_BLOB_NULL;
|
|
|
|
key.filename = filename;
|
|
|
|
}
|
2009-01-14 08:44:47 +00:00
|
|
|
|
|
|
|
dbf = (struct apk_db_file *) apk_hash_get(&db->installed.files,
|
|
|
|
APK_BLOB_BUF(&key));
|
2009-01-13 18:32:18 +00:00
|
|
|
if (dbf == NULL)
|
2009-01-13 13:22:14 +00:00
|
|
|
return NULL;
|
|
|
|
|
2009-01-13 18:32:18 +00:00
|
|
|
return dbf->diri->pkg;
|
2009-01-13 13:22:14 +00:00
|
|
|
}
|
|
|
|
|
2013-06-11 11:06:06 +00:00
|
|
|
unsigned int apk_db_get_pinning_mask_repos(struct apk_database *db, unsigned short pinning_mask)
|
|
|
|
{
|
|
|
|
unsigned int repository_mask = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < db->num_repo_tags && pinning_mask; i++) {
|
|
|
|
if (!(BIT(i) & pinning_mask))
|
|
|
|
continue;
|
|
|
|
pinning_mask &= ~BIT(i);
|
|
|
|
repository_mask |= db->repo_tags[i].allowed_repos;
|
|
|
|
}
|
|
|
|
return repository_mask;
|
|
|
|
}
|
|
|
|
|
2009-08-06 13:00:20 +00:00
|
|
|
struct apk_repository *apk_db_select_repo(struct apk_database *db,
|
|
|
|
struct apk_package *pkg)
|
|
|
|
{
|
2013-05-30 05:46:30 +00:00
|
|
|
unsigned int repos;
|
2009-08-06 13:00:20 +00:00
|
|
|
int i;
|
|
|
|
|
2013-05-30 05:46:30 +00:00
|
|
|
/* Select repositories to use */
|
|
|
|
repos = pkg->repos & db->available_repos;
|
|
|
|
if (repos == 0)
|
2012-02-22 06:45:40 +00:00
|
|
|
return NULL;
|
|
|
|
|
2013-05-30 05:46:30 +00:00
|
|
|
if (repos & db->local_repos)
|
2009-08-06 13:00:20 +00:00
|
|
|
repos &= db->local_repos;
|
|
|
|
|
|
|
|
/* Pick first repository providing this package */
|
2013-05-30 05:46:30 +00:00
|
|
|
for (i = APK_REPOSITORY_FIRST_CONFIGURED; i < APK_MAX_REPOS; i++) {
|
2009-08-06 13:00:20 +00:00
|
|
|
if (repos & BIT(i))
|
2012-02-22 06:45:40 +00:00
|
|
|
return &db->repos[i];
|
2009-08-06 13:00:20 +00:00
|
|
|
}
|
2013-05-30 05:46:30 +00:00
|
|
|
return &db->repos[APK_REPOSITORY_CACHED];
|
2009-08-06 13:00:20 +00:00
|
|
|
}
|
|
|
|
|
2013-05-30 05:46:30 +00:00
|
|
|
static int apk_repository_update(struct apk_database *db, struct apk_repository *repo)
|
2009-06-29 08:22:55 +00:00
|
|
|
{
|
2013-06-17 11:24:34 +00:00
|
|
|
int r, verify = (apk_flags & APK_ALLOW_UNTRUSTED) ? APK_SIGN_NONE : APK_SIGN_VERIFY;
|
2009-07-20 08:13:03 +00:00
|
|
|
|
2013-06-17 14:13:14 +00:00
|
|
|
r = apk_cache_download(db, repo, NULL, verify, NULL, NULL);
|
2015-04-07 07:57:42 +00:00
|
|
|
if (r != 0) {
|
2010-12-10 14:42:25 +00:00
|
|
|
apk_error("%s: %s", repo->url, apk_error_str(r));
|
2015-04-07 07:57:42 +00:00
|
|
|
db->repo_update_errors++;
|
|
|
|
}
|
2010-12-10 14:42:25 +00:00
|
|
|
|
2009-07-20 08:41:45 +00:00
|
|
|
return r;
|
2009-07-20 08:13:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct apkindex_ctx {
|
|
|
|
struct apk_database *db;
|
|
|
|
struct apk_sign_ctx sctx;
|
2009-07-23 08:41:10 +00:00
|
|
|
int repo, found;
|
2009-07-20 08:13:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int load_apkindex(void *sctx, const struct apk_file_info *fi,
|
|
|
|
struct apk_istream *is)
|
|
|
|
{
|
|
|
|
struct apkindex_ctx *ctx = (struct apkindex_ctx *) sctx;
|
|
|
|
struct apk_bstream *bs;
|
2009-09-03 10:56:24 +00:00
|
|
|
struct apk_repository *repo;
|
2011-06-28 12:40:52 +00:00
|
|
|
int r;
|
2009-07-20 08:13:03 +00:00
|
|
|
|
2011-06-28 12:40:52 +00:00
|
|
|
r = apk_sign_ctx_process_file(&ctx->sctx, fi, is);
|
|
|
|
if (r <= 0)
|
|
|
|
return r;
|
2009-07-20 08:13:03 +00:00
|
|
|
|
2009-09-03 10:56:24 +00:00
|
|
|
repo = &ctx->db->repos[ctx->repo];
|
2009-07-20 08:13:03 +00:00
|
|
|
|
2009-09-03 10:56:24 +00:00
|
|
|
if (strcmp(fi->name, "DESCRIPTION") == 0) {
|
|
|
|
repo->description = apk_blob_from_istream(is, fi->size);
|
|
|
|
} else if (strcmp(fi->name, "APKINDEX") == 0) {
|
|
|
|
ctx->found = 1;
|
|
|
|
bs = apk_bstream_from_istream(is);
|
2015-03-10 11:04:14 +00:00
|
|
|
if (!IS_ERR_OR_NULL(bs)) {
|
|
|
|
apk_db_index_read(ctx->db, bs, ctx->repo);
|
|
|
|
bs->close(bs, NULL);
|
|
|
|
}
|
2009-09-03 10:56:24 +00:00
|
|
|
}
|
2009-07-20 08:13:03 +00:00
|
|
|
|
2009-07-23 08:41:10 +00:00
|
|
|
return 0;
|
2009-06-29 08:22:55 +00:00
|
|
|
}
|
|
|
|
|
2009-07-21 14:59:08 +00:00
|
|
|
static int load_index(struct apk_database *db, struct apk_bstream *bs,
|
|
|
|
int targz, int repo)
|
|
|
|
{
|
2009-07-23 08:35:40 +00:00
|
|
|
int r = 0;
|
|
|
|
|
2015-03-10 11:04:14 +00:00
|
|
|
if (IS_ERR_OR_NULL(bs)) return bs ? PTR_ERR(bs) : -EINVAL;
|
|
|
|
|
2009-07-21 14:59:08 +00:00
|
|
|
if (targz) {
|
|
|
|
struct apk_istream *is;
|
|
|
|
struct apkindex_ctx ctx;
|
|
|
|
|
|
|
|
ctx.db = db;
|
|
|
|
ctx.repo = repo;
|
2009-07-23 08:41:10 +00:00
|
|
|
ctx.found = 0;
|
2009-07-31 13:08:09 +00:00
|
|
|
apk_sign_ctx_init(&ctx.sctx, APK_SIGN_VERIFY, NULL, db->keys_fd);
|
2009-07-21 14:59:08 +00:00
|
|
|
is = apk_bstream_gunzip_mpart(bs, apk_sign_ctx_mpart_cb, &ctx.sctx);
|
2010-10-08 12:36:54 +00:00
|
|
|
r = apk_tar_parse(is, load_apkindex, &ctx, FALSE, &db->id_cache);
|
2009-07-21 14:59:08 +00:00
|
|
|
is->close(is);
|
|
|
|
apk_sign_ctx_free(&ctx.sctx);
|
2012-01-31 13:49:04 +00:00
|
|
|
|
|
|
|
if (r >= 0 && ctx.found == 0)
|
2009-07-23 08:35:40 +00:00
|
|
|
r = -ENOMSG;
|
2009-07-21 14:59:08 +00:00
|
|
|
} else {
|
|
|
|
bs = apk_bstream_from_istream(apk_bstream_gunzip(bs));
|
2015-03-10 11:04:14 +00:00
|
|
|
if (!IS_ERR_OR_NULL(bs)) {
|
|
|
|
apk_db_index_read(db, bs, repo);
|
|
|
|
bs->close(bs, NULL);
|
|
|
|
}
|
2009-07-21 14:59:08 +00:00
|
|
|
}
|
2009-07-23 08:35:40 +00:00
|
|
|
return r;
|
2009-07-21 14:59:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int apk_db_index_read_file(struct apk_database *db, const char *file, int repo)
|
|
|
|
{
|
|
|
|
int targz = 1;
|
|
|
|
|
|
|
|
if (strstr(file, ".tar.gz") == NULL && strstr(file, ".gz") != NULL)
|
|
|
|
targz = 0;
|
|
|
|
|
2009-07-31 13:08:09 +00:00
|
|
|
return load_index(db, apk_bstream_from_file(AT_FDCWD, file), targz, repo);
|
2009-07-21 14:59:08 +00:00
|
|
|
}
|
|
|
|
|
2011-10-29 02:18:21 +00:00
|
|
|
int apk_db_add_repository(apk_database_t _db, apk_blob_t _repository)
|
2009-04-16 17:05:22 +00:00
|
|
|
{
|
|
|
|
struct apk_database *db = _db.db;
|
2009-06-28 17:36:16 +00:00
|
|
|
struct apk_bstream *bs = NULL;
|
|
|
|
struct apk_repository *repo;
|
2011-10-29 02:18:21 +00:00
|
|
|
apk_blob_t brepo, btag;
|
2012-02-01 12:31:37 +00:00
|
|
|
int repo_num, r, targz = 1, tag_id = 0;
|
2012-02-22 07:52:28 +00:00
|
|
|
char buf[PATH_MAX], *url;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2011-10-29 02:18:21 +00:00
|
|
|
brepo = _repository;
|
|
|
|
btag = APK_BLOB_NULL;
|
|
|
|
if (brepo.ptr == NULL || brepo.len == 0 || *brepo.ptr == '#')
|
|
|
|
return 0;
|
2009-06-28 17:36:16 +00:00
|
|
|
|
2011-10-29 02:18:21 +00:00
|
|
|
if (brepo.ptr[0] == '@') {
|
2012-02-08 15:01:14 +00:00
|
|
|
apk_blob_cspn(brepo, apk_spn_repo_separators, &btag, &brepo);
|
|
|
|
apk_blob_spn(brepo, apk_spn_repo_separators, NULL, &brepo);
|
2011-10-29 02:18:21 +00:00
|
|
|
tag_id = apk_db_get_tag_id(db, btag);
|
|
|
|
}
|
|
|
|
|
2012-02-22 07:52:28 +00:00
|
|
|
url = apk_blob_cstr(brepo);
|
|
|
|
for (repo_num = 0; repo_num < db->num_repos; repo_num++) {
|
|
|
|
repo = &db->repos[repo_num];
|
|
|
|
if (strcmp(url, repo->url) == 0) {
|
|
|
|
db->repo_tags[tag_id].allowed_repos |=
|
2013-05-30 05:46:30 +00:00
|
|
|
BIT(repo_num) & db->available_repos;
|
2012-02-22 07:52:28 +00:00
|
|
|
free(url);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (db->num_repos >= APK_MAX_REPOS) {
|
|
|
|
free(url);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-02-01 12:31:37 +00:00
|
|
|
repo_num = db->num_repos++;
|
|
|
|
repo = &db->repos[repo_num];
|
2009-06-28 17:36:16 +00:00
|
|
|
*repo = (struct apk_repository) {
|
2012-02-22 07:52:28 +00:00
|
|
|
.url = url,
|
2008-04-17 14:09:13 +00:00
|
|
|
};
|
|
|
|
|
2013-05-30 05:46:30 +00:00
|
|
|
apk_blob_checksum(brepo, apk_checksum_default(), &repo->csum);
|
2009-07-07 09:12:24 +00:00
|
|
|
|
2013-05-30 05:46:30 +00:00
|
|
|
if (apk_url_local_file(repo->url) == NULL) {
|
|
|
|
if (!(apk_flags & APK_NO_NETWORK)) {
|
|
|
|
db->available_repos |= BIT(repo_num);
|
|
|
|
if (apk_flags & APK_UPDATE_CACHE)
|
|
|
|
apk_repository_update(db, repo);
|
|
|
|
}
|
2013-06-17 11:24:34 +00:00
|
|
|
r = apk_repo_format_cache_index(APK_BLOB_BUF(buf), repo);
|
2009-04-16 17:05:22 +00:00
|
|
|
} else {
|
2012-02-01 12:31:37 +00:00
|
|
|
db->local_repos |= BIT(repo_num);
|
2013-05-30 05:46:30 +00:00
|
|
|
db->available_repos |= BIT(repo_num);
|
2013-06-17 11:24:34 +00:00
|
|
|
r = apk_repo_format_real_url(db, repo, NULL, buf, sizeof(buf));
|
|
|
|
}
|
|
|
|
if (r == 0) {
|
|
|
|
bs = apk_bstream_from_fd_url(db->cache_fd, buf);
|
2015-03-10 11:04:14 +00:00
|
|
|
if (!IS_ERR_OR_NULL(bs))
|
2013-06-17 11:24:34 +00:00
|
|
|
r = load_index(db, bs, targz, repo_num);
|
|
|
|
else
|
2015-03-10 11:04:14 +00:00
|
|
|
r = PTR_ERR(bs);
|
2009-04-16 17:05:22 +00:00
|
|
|
}
|
2012-01-31 13:49:04 +00:00
|
|
|
|
|
|
|
if (r != 0) {
|
|
|
|
apk_warning("Ignoring %s: %s", buf, apk_error_str(r));
|
2013-05-30 05:46:30 +00:00
|
|
|
db->available_repos &= ~BIT(repo_num);
|
2012-01-31 13:49:04 +00:00
|
|
|
r = 0;
|
|
|
|
} else {
|
2013-10-02 13:06:10 +00:00
|
|
|
db->repo_tags[tag_id].allowed_repos |= BIT(repo_num);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2012-01-31 13:49:04 +00:00
|
|
|
return 0;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2013-06-17 14:28:03 +00:00
|
|
|
static void extract_cb(void *_ctx, size_t bytes_done)
|
2009-01-07 19:45:11 +00:00
|
|
|
{
|
|
|
|
struct install_ctx *ctx = (struct install_ctx *) _ctx;
|
2013-06-17 14:28:03 +00:00
|
|
|
if (!ctx->cb)
|
|
|
|
return;
|
|
|
|
ctx->cb(ctx->cb_ctx, min(ctx->installed_size + bytes_done, ctx->pkg->installed_size));
|
2009-01-07 19:45:11 +00:00
|
|
|
}
|
|
|
|
|
2013-06-20 10:12:44 +00:00
|
|
|
static void apk_db_run_pending_script(struct install_ctx *ctx)
|
2009-07-21 11:06:35 +00:00
|
|
|
{
|
2013-06-20 10:12:44 +00:00
|
|
|
if (ctx->script_pending && ctx->sctx.control_verified) {
|
|
|
|
ctx->script_pending = FALSE;
|
|
|
|
apk_ipkg_run_script(ctx->ipkg, ctx->db, ctx->script, ctx->script_args);
|
|
|
|
}
|
2009-07-21 11:06:35 +00:00
|
|
|
}
|
|
|
|
|
2009-08-04 13:54:15 +00:00
|
|
|
static int read_info_line(void *_ctx, apk_blob_t line)
|
|
|
|
{
|
|
|
|
struct install_ctx *ctx = (struct install_ctx *) _ctx;
|
2009-08-12 16:17:46 +00:00
|
|
|
struct apk_installed_package *ipkg = ctx->ipkg;
|
|
|
|
struct apk_database *db = ctx->db;
|
2009-08-04 13:54:15 +00:00
|
|
|
apk_blob_t l, r;
|
|
|
|
|
|
|
|
if (line.ptr == NULL || line.len < 1 || line.ptr[0] == '#')
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!apk_blob_split(line, APK_BLOB_STR(" = "), &l, &r))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (apk_blob_compare(APK_BLOB_STR("replaces"), l) == 0) {
|
2011-10-19 15:38:23 +00:00
|
|
|
apk_blob_pull_deps(&r, db, &ipkg->replaces);
|
|
|
|
} else if (apk_blob_compare(APK_BLOB_STR("replaces_priority"), l) == 0) {
|
|
|
|
ipkg->replaces_priority = apk_blob_pull_uint(&r, 10);
|
2009-08-12 16:17:46 +00:00
|
|
|
} else if (apk_blob_compare(APK_BLOB_STR("triggers"), l) == 0) {
|
2010-06-05 09:06:41 +00:00
|
|
|
apk_string_array_resize(&ipkg->triggers, 0);
|
2009-08-13 11:10:30 +00:00
|
|
|
apk_blob_for_each_segment(r, " ", parse_triggers, ctx->ipkg);
|
2009-08-13 15:41:03 +00:00
|
|
|
|
2010-06-05 09:06:41 +00:00
|
|
|
if (ctx->ipkg->triggers->num != 0 &&
|
|
|
|
!list_hashed(&ipkg->trigger_pkgs_list))
|
2009-08-13 11:10:30 +00:00
|
|
|
list_add_tail(&ipkg->trigger_pkgs_list,
|
|
|
|
&db->installed.triggers);
|
2009-08-12 16:17:46 +00:00
|
|
|
} else {
|
|
|
|
apk_sign_ctx_parse_pkginfo_line(&ctx->sctx, line);
|
2009-08-04 13:54:15 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-05-29 11:37:42 +00:00
|
|
|
static struct apk_db_dir_instance *apk_db_install_directory_entry(struct install_ctx * ctx, apk_blob_t dir)
|
|
|
|
{
|
|
|
|
struct apk_database *db = ctx->db;
|
|
|
|
struct apk_package *pkg = ctx->pkg;
|
|
|
|
struct apk_installed_package *ipkg = pkg->ipkg;
|
|
|
|
struct apk_db_dir_instance *diri;
|
|
|
|
|
|
|
|
if (ctx->diri_node == NULL)
|
|
|
|
ctx->diri_node = hlist_tail_ptr(&ipkg->owned_dirs);
|
|
|
|
ctx->diri = diri = apk_db_diri_new(db, pkg, dir, &ctx->diri_node);
|
|
|
|
ctx->file_diri_node = hlist_tail_ptr(&diri->owned_files);
|
|
|
|
|
|
|
|
return diri;
|
|
|
|
}
|
|
|
|
|
2008-11-07 15:11:08 +00:00
|
|
|
static int apk_db_install_archive_entry(void *_ctx,
|
2008-11-14 12:26:59 +00:00
|
|
|
const struct apk_file_info *ae,
|
2008-11-07 15:11:08 +00:00
|
|
|
struct apk_istream *is)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2008-11-07 15:11:08 +00:00
|
|
|
struct install_ctx *ctx = (struct install_ctx *) _ctx;
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_database *db = ctx->db;
|
2009-01-06 17:44:54 +00:00
|
|
|
struct apk_package *pkg = ctx->pkg, *opkg;
|
2013-06-18 05:03:40 +00:00
|
|
|
struct apk_dependency *dep;
|
2009-08-12 16:17:46 +00:00
|
|
|
struct apk_installed_package *ipkg = pkg->ipkg;
|
2009-01-06 17:44:54 +00:00
|
|
|
apk_blob_t name = APK_BLOB_STR(ae->name), bdir, bfile;
|
|
|
|
struct apk_db_dir_instance *diri = ctx->diri;
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_db_file *file;
|
2011-06-28 12:40:52 +00:00
|
|
|
int r, type = APK_SCRIPT_INVALID;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2011-06-28 12:40:52 +00:00
|
|
|
r = apk_sign_ctx_process_file(&ctx->sctx, ae, is);
|
|
|
|
if (r <= 0)
|
|
|
|
return r;
|
2009-08-10 05:47:05 +00:00
|
|
|
|
2008-11-07 11:05:55 +00:00
|
|
|
/* Package metainfo and script processing */
|
2011-06-28 12:40:52 +00:00
|
|
|
r = 0;
|
2008-11-07 11:05:55 +00:00
|
|
|
if (ae->name[0] == '.') {
|
|
|
|
/* APK 2.0 format */
|
2009-08-04 13:54:15 +00:00
|
|
|
if (strcmp(ae->name, ".PKGINFO") == 0) {
|
|
|
|
apk_blob_t blob = apk_blob_from_istream(is, ae->size);
|
|
|
|
apk_blob_for_each_segment(blob, "\n", read_info_line, ctx);
|
|
|
|
free(blob.ptr);
|
|
|
|
return 0;
|
|
|
|
}
|
2009-07-16 05:52:22 +00:00
|
|
|
type = apk_script_type(&ae->name[1]);
|
2009-02-27 09:18:15 +00:00
|
|
|
if (type == APK_SCRIPT_INVALID)
|
2008-11-07 11:05:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-11-07 11:05:55 +00:00
|
|
|
/* Handle script */
|
|
|
|
if (type != APK_SCRIPT_INVALID) {
|
2009-08-12 16:17:46 +00:00
|
|
|
apk_ipkg_add_script(ipkg, is, type, ae->size);
|
2009-07-21 11:06:35 +00:00
|
|
|
if (type == ctx->script)
|
|
|
|
ctx->script_pending = TRUE;
|
2013-06-20 10:12:44 +00:00
|
|
|
apk_db_run_pending_script(ctx);
|
|
|
|
return 0;
|
2009-07-21 11:06:35 +00:00
|
|
|
}
|
2013-06-20 10:12:44 +00:00
|
|
|
apk_db_run_pending_script(ctx);
|
2009-07-21 11:06:35 +00:00
|
|
|
|
2008-11-07 11:05:55 +00:00
|
|
|
/* Installable entry */
|
2009-01-07 19:45:11 +00:00
|
|
|
ctx->current_file_size = apk_calc_installed_size(ae->size);
|
2008-04-17 14:09:13 +00:00
|
|
|
if (!S_ISDIR(ae->mode)) {
|
2013-05-29 11:37:42 +00:00
|
|
|
if (!apk_blob_rsplit(name, '/', &bdir, &bfile)) {
|
|
|
|
bdir = APK_BLOB_NULL;
|
|
|
|
bfile = name;
|
|
|
|
}
|
2009-01-06 17:44:54 +00:00
|
|
|
|
|
|
|
if (bfile.len > 6 && memcmp(bfile.ptr, ".keep_", 6) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Make sure the file is part of the cached directory tree */
|
2009-08-12 16:17:46 +00:00
|
|
|
diri = find_diri(ipkg, bdir, diri, &ctx->file_diri_node);
|
2009-07-31 17:05:04 +00:00
|
|
|
if (diri == NULL) {
|
2013-05-29 11:37:42 +00:00
|
|
|
if (!APK_BLOB_IS_NULL(bdir)) {
|
2013-09-20 18:54:04 +00:00
|
|
|
apk_error(PKG_VER_FMT": "BLOB_FMT": no dirent in archive",
|
2013-09-20 18:31:29 +00:00
|
|
|
PKG_VER_PRINTF(pkg), BLOB_PRINTF(name));
|
2013-06-20 10:12:44 +00:00
|
|
|
ipkg->broken_files = 1;
|
|
|
|
return 0;
|
2013-05-29 11:37:42 +00:00
|
|
|
}
|
|
|
|
diri = apk_db_install_directory_entry(ctx, bdir);
|
2009-01-06 17:44:54 +00:00
|
|
|
}
|
|
|
|
|
2009-08-04 12:19:29 +00:00
|
|
|
opkg = NULL;
|
2009-07-22 08:36:55 +00:00
|
|
|
file = apk_db_file_query(db, bdir, bfile);
|
|
|
|
if (file != NULL) {
|
2009-01-06 17:44:54 +00:00
|
|
|
opkg = file->diri->pkg;
|
2009-08-04 13:54:15 +00:00
|
|
|
do {
|
2011-10-19 15:38:23 +00:00
|
|
|
int opkg_prio = -1, pkg_prio = -1;
|
|
|
|
|
2009-12-21 12:14:02 +00:00
|
|
|
/* Overlay file? */
|
|
|
|
if (opkg->name == NULL)
|
|
|
|
break;
|
|
|
|
/* Upgrading package? */
|
2009-08-04 13:54:15 +00:00
|
|
|
if (opkg->name == pkg->name)
|
|
|
|
break;
|
2014-04-25 19:17:49 +00:00
|
|
|
/* Or same source package? */
|
|
|
|
if (opkg->origin == pkg->origin && pkg->origin)
|
|
|
|
break;
|
2011-10-19 15:38:23 +00:00
|
|
|
/* Does the original package replace the new one? */
|
2013-06-18 05:03:40 +00:00
|
|
|
foreach_array_item(dep, opkg->ipkg->replaces) {
|
|
|
|
if (apk_dep_is_materialized(dep, pkg)) {
|
2011-10-19 15:38:23 +00:00
|
|
|
opkg_prio = opkg->ipkg->replaces_priority;
|
|
|
|
break;
|
2011-10-18 22:11:26 +00:00
|
|
|
}
|
|
|
|
}
|
2011-10-19 15:38:23 +00:00
|
|
|
/* Does the new package replace the original one? */
|
2013-06-18 05:03:40 +00:00
|
|
|
foreach_array_item(dep, ctx->ipkg->replaces) {
|
|
|
|
if (apk_dep_is_materialized(dep, opkg)) {
|
2011-10-19 15:38:23 +00:00
|
|
|
pkg_prio = ctx->ipkg->replaces_priority;
|
2009-08-04 13:54:15 +00:00
|
|
|
break;
|
2011-10-19 15:38:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* If the original package is more important,
|
|
|
|
* skip this file */
|
|
|
|
if (opkg_prio > pkg_prio)
|
|
|
|
return 0;
|
|
|
|
/* If the new package has valid 'replaces', we
|
|
|
|
* will overwrite the file without warnings. */
|
|
|
|
if (pkg_prio >= 0)
|
2009-08-04 13:54:15 +00:00
|
|
|
break;
|
|
|
|
|
2009-04-14 15:48:02 +00:00
|
|
|
if (!(apk_flags & APK_FORCE)) {
|
2013-06-20 10:12:44 +00:00
|
|
|
apk_error(PKG_VER_FMT": trying to overwrite %s owned by "PKG_VER_FMT".",
|
|
|
|
PKG_VER_PRINTF(pkg), ae->name, PKG_VER_PRINTF(opkg));
|
|
|
|
ipkg->broken_files = 1;
|
|
|
|
return 0;
|
2009-03-04 06:36:56 +00:00
|
|
|
}
|
2013-06-20 10:12:44 +00:00
|
|
|
apk_warning(PKG_VER_FMT": overwriting %s owned by "PKG_VER_FMT".",
|
|
|
|
PKG_VER_PRINTF(pkg), ae->name, PKG_VER_PRINTF(opkg));
|
2009-08-04 13:54:15 +00:00
|
|
|
} while (0);
|
2009-01-16 07:32:04 +00:00
|
|
|
}
|
2009-06-28 15:05:17 +00:00
|
|
|
|
2009-08-04 12:19:29 +00:00
|
|
|
if (opkg != pkg) {
|
|
|
|
/* Create the file entry without adding it to hash */
|
|
|
|
file = apk_db_file_new(diri, bfile, &ctx->file_diri_node);
|
|
|
|
}
|
2009-07-22 08:36:55 +00:00
|
|
|
|
2009-07-24 11:04:57 +00:00
|
|
|
if (apk_verbosity >= 3)
|
|
|
|
apk_message("%s", ae->name);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-07-22 08:36:55 +00:00
|
|
|
/* Extract the file as name.apk-new */
|
2015-03-11 14:10:33 +00:00
|
|
|
file->acl = apk_db_acl_atomize(ae->mode, ae->uid, ae->gid, &ae->xattr_csum);
|
2009-07-31 13:08:09 +00:00
|
|
|
r = apk_archive_entry_extract(db->root_fd, ae, ".apk-new", is,
|
2009-07-22 08:36:55 +00:00
|
|
|
extract_cb, ctx);
|
2009-07-31 17:05:04 +00:00
|
|
|
|
|
|
|
/* Hardlinks need special care for checksum */
|
|
|
|
if (ae->csum.type == APK_CHECKSUM_NONE &&
|
|
|
|
ae->link_target != NULL) {
|
|
|
|
do {
|
|
|
|
struct apk_db_file *lfile;
|
|
|
|
struct apk_db_dir_instance *ldiri;
|
|
|
|
struct hlist_node *n;
|
|
|
|
|
|
|
|
if (!apk_blob_rsplit(APK_BLOB_STR(ae->link_target),
|
|
|
|
'/', &bdir, &bfile))
|
|
|
|
break;
|
|
|
|
|
2009-08-12 16:17:46 +00:00
|
|
|
ldiri = find_diri(ipkg, bdir, diri, NULL);
|
2009-07-31 17:05:04 +00:00
|
|
|
if (ldiri == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
hlist_for_each_entry(lfile, n, &ldiri->owned_files,
|
|
|
|
diri_files_list) {
|
|
|
|
if (apk_blob_compare(APK_BLOB_PTR_LEN(lfile->name, lfile->namelen),
|
|
|
|
bfile) == 0) {
|
|
|
|
memcpy(&file->csum, &lfile->csum,
|
|
|
|
sizeof(file->csum));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
} else
|
|
|
|
memcpy(&file->csum, &ae->csum, sizeof(file->csum));
|
2008-04-17 14:09:13 +00:00
|
|
|
} else {
|
2009-07-24 11:04:57 +00:00
|
|
|
if (apk_verbosity >= 3)
|
2013-09-20 18:54:04 +00:00
|
|
|
apk_message("%s (dir)", ae->name);
|
2009-01-22 15:55:27 +00:00
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
if (name.ptr[name.len-1] == '/')
|
|
|
|
name.len--;
|
2009-01-06 17:44:54 +00:00
|
|
|
|
2013-05-29 11:37:42 +00:00
|
|
|
diri = apk_db_install_directory_entry(ctx, name);
|
2014-10-07 10:29:34 +00:00
|
|
|
apk_db_dir_prepare(db, diri->dir, ae->mode);
|
2015-03-11 14:10:33 +00:00
|
|
|
apk_db_diri_set(diri, apk_db_acl_atomize(ae->mode, ae->uid, ae->gid, &ae->xattr_csum));
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
2009-01-07 19:45:11 +00:00
|
|
|
ctx->installed_size += ctx->current_file_size;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2009-08-12 16:17:46 +00:00
|
|
|
static void apk_db_purge_pkg(struct apk_database *db,
|
|
|
|
struct apk_installed_package *ipkg,
|
2009-07-22 08:36:55 +00:00
|
|
|
const char *exten)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2009-01-06 17:44:54 +00:00
|
|
|
struct apk_db_dir_instance *diri;
|
2008-04-17 14:09:13 +00:00
|
|
|
struct apk_db_file *file;
|
2009-01-16 07:32:04 +00:00
|
|
|
struct apk_db_file_hash_key key;
|
2009-07-22 18:34:25 +00:00
|
|
|
struct apk_file_info fi;
|
2009-01-06 17:44:54 +00:00
|
|
|
struct hlist_node *dc, *dn, *fc, *fn;
|
2009-07-14 08:55:08 +00:00
|
|
|
unsigned long hash;
|
2009-08-13 15:41:03 +00:00
|
|
|
char name[PATH_MAX];
|
2009-01-06 17:44:54 +00:00
|
|
|
|
2009-08-12 16:17:46 +00:00
|
|
|
hlist_for_each_entry_safe(diri, dc, dn, &ipkg->owned_dirs, pkg_dirs_list) {
|
|
|
|
if (exten == NULL)
|
2012-02-23 13:05:06 +00:00
|
|
|
diri->dir->modified = 1;
|
2009-08-12 16:17:46 +00:00
|
|
|
|
2009-01-06 17:44:54 +00:00
|
|
|
hlist_for_each_entry_safe(file, fc, fn, &diri->owned_files, diri_files_list) {
|
2013-05-29 11:37:42 +00:00
|
|
|
snprintf(name, sizeof(name),
|
2013-06-17 11:24:34 +00:00
|
|
|
DIR_FILE_FMT "%s",
|
|
|
|
DIR_FILE_PRINTF(diri->dir, file),
|
2013-05-29 11:37:42 +00:00
|
|
|
exten ?: "");
|
2009-01-16 07:32:04 +00:00
|
|
|
|
|
|
|
key = (struct apk_db_file_hash_key) {
|
2009-07-14 08:55:08 +00:00
|
|
|
.dirname = APK_BLOB_PTR_LEN(diri->dir->name, diri->dir->namelen),
|
|
|
|
.filename = APK_BLOB_PTR_LEN(file->name, file->namelen),
|
2009-01-16 07:32:04 +00:00
|
|
|
};
|
2009-07-14 08:55:08 +00:00
|
|
|
hash = apk_blob_hash_seed(key.filename, diri->dir->hash);
|
2014-03-12 07:08:26 +00:00
|
|
|
if ((diri->dir->protect_mode == APK_PROTECT_NONE) ||
|
2009-07-22 18:34:25 +00:00
|
|
|
(apk_flags & APK_PURGE) ||
|
2009-07-30 08:55:59 +00:00
|
|
|
(file->csum.type != APK_CHECKSUM_NONE &&
|
2015-03-10 13:46:05 +00:00
|
|
|
apk_fileinfo_get(db->root_fd, name, APK_FI_NOFOLLOW | file->csum.type, &fi) == 0 &&
|
2009-07-22 18:34:25 +00:00
|
|
|
apk_checksum_compare(&file->csum, &fi.csum) == 0))
|
2009-07-31 13:08:09 +00:00
|
|
|
unlinkat(db->root_fd, name, 0);
|
2009-07-24 11:04:57 +00:00
|
|
|
if (apk_verbosity >= 3)
|
|
|
|
apk_message("%s", name);
|
2009-01-06 17:44:54 +00:00
|
|
|
__hlist_del(fc, &diri->owned_files.first);
|
2009-07-22 08:36:55 +00:00
|
|
|
if (exten == NULL) {
|
|
|
|
apk_hash_delete_hashed(&db->installed.files, APK_BLOB_BUF(&key), hash);
|
|
|
|
db->installed.stats.files--;
|
|
|
|
}
|
2009-01-06 17:44:54 +00:00
|
|
|
}
|
2009-08-12 16:17:46 +00:00
|
|
|
__hlist_del(dc, &ipkg->owned_dirs.first);
|
2014-10-07 10:29:34 +00:00
|
|
|
apk_db_diri_free(db, diri, APK_DIR_REMOVE);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-22 08:36:55 +00:00
|
|
|
|
|
|
|
static void apk_db_migrate_files(struct apk_database *db,
|
2009-08-12 16:17:46 +00:00
|
|
|
struct apk_installed_package *ipkg)
|
2009-07-22 08:36:55 +00:00
|
|
|
{
|
|
|
|
struct apk_db_dir_instance *diri;
|
|
|
|
struct apk_db_dir *dir;
|
|
|
|
struct apk_db_file *file, *ofile;
|
|
|
|
struct apk_db_file_hash_key key;
|
|
|
|
struct apk_file_info fi;
|
|
|
|
struct hlist_node *dc, *dn, *fc, *fn;
|
|
|
|
unsigned long hash;
|
2009-08-04 12:19:29 +00:00
|
|
|
char name[PATH_MAX], tmpname[PATH_MAX];
|
2009-07-29 16:39:59 +00:00
|
|
|
int cstype, r;
|
2009-07-22 08:36:55 +00:00
|
|
|
|
2009-08-12 16:17:46 +00:00
|
|
|
hlist_for_each_entry_safe(diri, dc, dn, &ipkg->owned_dirs, pkg_dirs_list) {
|
2009-07-22 08:36:55 +00:00
|
|
|
dir = diri->dir;
|
2012-02-23 13:05:06 +00:00
|
|
|
dir->modified = 1;
|
2009-07-22 08:36:55 +00:00
|
|
|
|
|
|
|
hlist_for_each_entry_safe(file, fc, fn, &diri->owned_files, diri_files_list) {
|
2013-06-17 11:24:34 +00:00
|
|
|
snprintf(name, sizeof(name), DIR_FILE_FMT,
|
|
|
|
DIR_FILE_PRINTF(diri->dir, file));
|
|
|
|
snprintf(tmpname, sizeof(tmpname), DIR_FILE_FMT ".apk-new",
|
|
|
|
DIR_FILE_PRINTF(diri->dir, file));
|
2009-07-22 08:36:55 +00:00
|
|
|
|
|
|
|
key = (struct apk_db_file_hash_key) {
|
|
|
|
.dirname = APK_BLOB_PTR_LEN(dir->name, dir->namelen),
|
|
|
|
.filename = APK_BLOB_PTR_LEN(file->name, file->namelen),
|
|
|
|
};
|
|
|
|
|
|
|
|
hash = apk_blob_hash_seed(key.filename, dir->hash);
|
|
|
|
|
|
|
|
/* check for existing file */
|
|
|
|
ofile = (struct apk_db_file *) apk_hash_get_hashed(
|
|
|
|
&db->installed.files, APK_BLOB_BUF(&key), hash);
|
|
|
|
|
2009-07-29 16:39:59 +00:00
|
|
|
/* We want to compare checksums only if one exists
|
|
|
|
* in db, and the file is in a protected path */
|
|
|
|
cstype = APK_CHECKSUM_NONE;
|
2014-03-12 07:08:26 +00:00
|
|
|
if (ofile != NULL && diri->dir->protect_mode != APK_PROTECT_NONE)
|
2009-07-29 16:39:59 +00:00
|
|
|
cstype = ofile->csum.type;
|
2009-10-26 07:46:09 +00:00
|
|
|
cstype |= APK_FI_NOFOLLOW;
|
2009-07-29 16:39:59 +00:00
|
|
|
|
2015-03-10 13:46:05 +00:00
|
|
|
r = apk_fileinfo_get(db->root_fd, name, cstype, &fi);
|
2009-12-21 16:39:53 +00:00
|
|
|
if (ofile && ofile->diri->pkg->name == NULL) {
|
2009-12-21 16:12:45 +00:00
|
|
|
/* File was from overlay, delete the
|
|
|
|
* packages version */
|
|
|
|
unlinkat(db->root_fd, tmpname, 0);
|
2014-03-12 07:08:26 +00:00
|
|
|
} else if ((diri->dir->protect_mode != APK_PROTECT_NONE) &&
|
2009-12-21 16:12:45 +00:00
|
|
|
(r == 0) &&
|
|
|
|
(ofile == NULL ||
|
|
|
|
ofile->csum.type == APK_CHECKSUM_NONE ||
|
|
|
|
apk_checksum_compare(&ofile->csum, &fi.csum) != 0)) {
|
2009-07-22 09:00:56 +00:00
|
|
|
/* Protected directory, with file without
|
|
|
|
* db entry, or local modifications.
|
|
|
|
*
|
|
|
|
* Delete the apk-new if it's identical with the
|
|
|
|
* existing file */
|
|
|
|
if (ofile == NULL ||
|
|
|
|
ofile->csum.type != file->csum.type)
|
2015-03-10 13:46:05 +00:00
|
|
|
apk_fileinfo_get(db->root_fd, name,
|
2009-10-26 07:46:09 +00:00
|
|
|
APK_FI_NOFOLLOW | file->csum.type, &fi);
|
2009-07-22 13:00:14 +00:00
|
|
|
if ((apk_flags & APK_CLEAN_PROTECTED) ||
|
2009-07-30 08:55:59 +00:00
|
|
|
(file->csum.type != APK_CHECKSUM_NONE &&
|
|
|
|
apk_checksum_compare(&file->csum, &fi.csum) == 0))
|
2009-07-31 13:08:09 +00:00
|
|
|
unlinkat(db->root_fd, tmpname, 0);
|
2009-07-22 08:36:55 +00:00
|
|
|
} else {
|
2009-12-21 16:12:45 +00:00
|
|
|
/* Overwrite the old file */
|
|
|
|
renameat(db->root_fd, tmpname,
|
|
|
|
db->root_fd, name);
|
2009-07-22 08:36:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Claim ownership of the file in db */
|
2009-08-04 12:19:29 +00:00
|
|
|
if (ofile != file) {
|
|
|
|
if (ofile != NULL) {
|
|
|
|
hlist_del(&ofile->diri_files_list,
|
|
|
|
&ofile->diri->owned_files);
|
|
|
|
apk_hash_delete_hashed(&db->installed.files,
|
|
|
|
APK_BLOB_BUF(&key), hash);
|
|
|
|
} else
|
|
|
|
db->installed.stats.files++;
|
|
|
|
|
|
|
|
apk_hash_insert_hashed(&db->installed.files, file, hash);
|
|
|
|
}
|
2009-07-22 08:36:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-14 12:01:09 +00:00
|
|
|
static int apk_db_unpack_pkg(struct apk_database *db,
|
2009-08-12 16:17:46 +00:00
|
|
|
struct apk_installed_package *ipkg,
|
2013-06-20 10:12:44 +00:00
|
|
|
int upgrade, apk_progress_cb cb, void *cb_ctx,
|
2009-08-12 16:17:46 +00:00
|
|
|
char **script_args)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
struct install_ctx ctx;
|
2013-06-20 10:12:44 +00:00
|
|
|
struct apk_bstream *bs = NULL, *cache_bs;
|
2009-07-13 17:37:03 +00:00
|
|
|
struct apk_istream *tar;
|
2013-06-17 11:24:34 +00:00
|
|
|
struct apk_repository *repo;
|
2009-08-12 16:17:46 +00:00
|
|
|
struct apk_package *pkg = ipkg->pkg;
|
2013-06-17 13:33:59 +00:00
|
|
|
char file[PATH_MAX];
|
|
|
|
char tmpcacheitem[128], *cacheitem = &tmpcacheitem[tmpprefix.len];
|
2013-06-17 11:24:34 +00:00
|
|
|
int r, filefd = AT_FDCWD, need_copy = FALSE;
|
2009-06-28 17:36:16 +00:00
|
|
|
|
2009-08-12 16:17:46 +00:00
|
|
|
if (pkg->filename == NULL) {
|
|
|
|
repo = apk_db_select_repo(db, pkg);
|
2009-08-06 13:00:20 +00:00
|
|
|
if (repo == NULL) {
|
2013-06-17 11:24:34 +00:00
|
|
|
r = -ENOPKG;
|
|
|
|
goto err_msg;
|
2009-06-28 17:36:16 +00:00
|
|
|
}
|
2013-06-17 11:24:34 +00:00
|
|
|
r = apk_repo_format_item(db, repo, pkg, &filefd, file, sizeof(file));
|
|
|
|
if (r < 0)
|
|
|
|
goto err_msg;
|
|
|
|
if (!(pkg->repos & db->local_repos))
|
|
|
|
need_copy = TRUE;
|
2009-06-28 17:36:16 +00:00
|
|
|
} else {
|
2010-12-09 09:10:12 +00:00
|
|
|
strncpy(file, pkg->filename, sizeof(file));
|
2009-06-28 17:36:16 +00:00
|
|
|
need_copy = TRUE;
|
|
|
|
}
|
2009-06-29 08:22:55 +00:00
|
|
|
if (!apk_db_cache_active(db))
|
|
|
|
need_copy = FALSE;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2013-06-17 11:24:34 +00:00
|
|
|
bs = apk_bstream_from_fd_url(filefd, file);
|
2015-03-10 11:04:14 +00:00
|
|
|
if (IS_ERR_OR_NULL(bs)) {
|
|
|
|
r = PTR_ERR(bs);
|
2013-06-17 11:24:34 +00:00
|
|
|
goto err_msg;
|
2008-10-26 11:35:34 +00:00
|
|
|
}
|
2010-12-09 09:10:12 +00:00
|
|
|
if (need_copy) {
|
2013-06-17 13:33:59 +00:00
|
|
|
apk_blob_t b = APK_BLOB_BUF(tmpcacheitem);
|
|
|
|
apk_blob_push_blob(&b, tmpprefix);
|
|
|
|
apk_pkg_format_cache_pkg(b, pkg);
|
2013-06-20 10:12:44 +00:00
|
|
|
cache_bs = apk_bstream_tee(bs, db->cache_fd, tmpcacheitem, NULL, NULL);
|
|
|
|
if (cache_bs != NULL)
|
|
|
|
bs = cache_bs;
|
|
|
|
else
|
|
|
|
apk_warning(PKG_VER_FMT": unable to cache: %s",
|
|
|
|
PKG_VER_PRINTF(pkg), apk_error_str(errno));
|
2010-12-09 09:10:12 +00:00
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
ctx = (struct install_ctx) {
|
|
|
|
.db = db,
|
2009-08-12 16:17:46 +00:00
|
|
|
.pkg = pkg,
|
|
|
|
.ipkg = ipkg,
|
2009-06-28 15:05:17 +00:00
|
|
|
.script = upgrade ?
|
2009-05-14 12:01:09 +00:00
|
|
|
APK_SCRIPT_PRE_UPGRADE : APK_SCRIPT_PRE_INSTALL,
|
2009-08-12 16:17:46 +00:00
|
|
|
.script_args = script_args,
|
2009-01-07 19:45:11 +00:00
|
|
|
.cb = cb,
|
|
|
|
.cb_ctx = cb_ctx,
|
2008-04-17 14:09:13 +00:00
|
|
|
};
|
2009-08-12 16:17:46 +00:00
|
|
|
apk_sign_ctx_init(&ctx.sctx, APK_SIGN_VERIFY_IDENTITY, &pkg->csum, db->keys_fd);
|
2009-07-21 10:49:35 +00:00
|
|
|
tar = apk_bstream_gunzip_mpart(bs, apk_sign_ctx_mpart_cb, &ctx.sctx);
|
2010-10-08 12:36:54 +00:00
|
|
|
r = apk_tar_parse(tar, apk_db_install_archive_entry, &ctx, TRUE, &db->id_cache);
|
2009-07-21 10:49:35 +00:00
|
|
|
apk_sign_ctx_free(&ctx.sctx);
|
2009-07-16 10:47:26 +00:00
|
|
|
tar->close(tar);
|
2009-07-13 17:37:03 +00:00
|
|
|
|
2009-08-12 08:05:09 +00:00
|
|
|
if (need_copy) {
|
2012-02-22 06:45:40 +00:00
|
|
|
if (r == 0) {
|
2013-06-17 13:33:59 +00:00
|
|
|
renameat(db->cache_fd, tmpcacheitem, db->cache_fd, cacheitem);
|
2013-05-30 05:46:30 +00:00
|
|
|
pkg->repos |= BIT(APK_REPOSITORY_CACHED);
|
2012-02-22 06:45:40 +00:00
|
|
|
} else {
|
2013-06-17 13:33:59 +00:00
|
|
|
unlinkat(db->cache_fd, tmpcacheitem, 0);
|
2012-02-22 06:45:40 +00:00
|
|
|
}
|
2009-08-12 08:05:09 +00:00
|
|
|
}
|
2013-06-17 11:24:34 +00:00
|
|
|
if (r != 0)
|
|
|
|
goto err_msg;
|
2009-08-12 08:05:09 +00:00
|
|
|
|
2013-06-20 10:12:44 +00:00
|
|
|
apk_db_run_pending_script(&ctx);
|
2009-05-14 12:01:09 +00:00
|
|
|
return 0;
|
2013-06-17 11:24:34 +00:00
|
|
|
err_msg:
|
2013-06-20 10:12:44 +00:00
|
|
|
apk_error(PKG_VER_FMT": %s", PKG_VER_PRINTF(pkg), apk_error_str(r));
|
2009-07-22 08:36:55 +00:00
|
|
|
return r;
|
2009-05-14 12:01:09 +00:00
|
|
|
}
|
|
|
|
|
2013-06-20 10:12:44 +00:00
|
|
|
int apk_db_install_pkg(struct apk_database *db, struct apk_package *oldpkg,
|
|
|
|
struct apk_package *newpkg, apk_progress_cb cb, void *cb_ctx)
|
2009-05-14 12:01:09 +00:00
|
|
|
{
|
2009-08-13 16:21:31 +00:00
|
|
|
char *script_args[] = { NULL, NULL, NULL, NULL };
|
2009-08-12 16:17:46 +00:00
|
|
|
struct apk_installed_package *ipkg;
|
2010-12-14 17:51:16 +00:00
|
|
|
int r = 0;
|
2009-05-14 12:01:09 +00:00
|
|
|
|
2009-08-12 16:17:46 +00:00
|
|
|
/* Upgrade script gets two args: <new-pkg> <old-pkg> */
|
|
|
|
if (oldpkg != NULL && newpkg != NULL) {
|
2010-12-14 17:51:16 +00:00
|
|
|
script_args[1] = apk_blob_cstr(*newpkg->version);
|
|
|
|
script_args[2] = apk_blob_cstr(*oldpkg->version);
|
2009-08-12 16:17:46 +00:00
|
|
|
} else {
|
2010-12-14 17:51:16 +00:00
|
|
|
script_args[1] = apk_blob_cstr(*(oldpkg ? oldpkg->version : newpkg->version));
|
2009-08-12 16:17:46 +00:00
|
|
|
}
|
|
|
|
|
2009-05-14 12:01:09 +00:00
|
|
|
/* Just purging? */
|
|
|
|
if (oldpkg != NULL && newpkg == NULL) {
|
2009-08-12 16:17:46 +00:00
|
|
|
ipkg = oldpkg->ipkg;
|
|
|
|
if (ipkg == NULL)
|
2010-12-14 17:51:16 +00:00
|
|
|
goto ret_r;
|
2013-06-20 10:12:44 +00:00
|
|
|
apk_ipkg_run_script(ipkg, db, APK_SCRIPT_PRE_DEINSTALL, script_args);
|
2009-08-12 16:17:46 +00:00
|
|
|
apk_db_purge_pkg(db, ipkg, NULL);
|
2013-06-20 10:12:44 +00:00
|
|
|
apk_ipkg_run_script(ipkg, db, APK_SCRIPT_POST_DEINSTALL, script_args);
|
2009-08-12 16:17:46 +00:00
|
|
|
apk_pkg_uninstall(db, oldpkg);
|
2010-12-14 17:51:16 +00:00
|
|
|
goto ret_r;
|
2009-05-14 12:01:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Install the new stuff */
|
2009-08-12 16:17:46 +00:00
|
|
|
ipkg = apk_pkg_install(db, newpkg);
|
2011-10-19 19:26:55 +00:00
|
|
|
ipkg->run_all_triggers = 1;
|
2013-06-21 08:45:03 +00:00
|
|
|
ipkg->broken_script = 0;
|
|
|
|
ipkg->broken_files = 0;
|
2010-06-10 17:50:11 +00:00
|
|
|
if (ipkg->triggers->num != 0) {
|
|
|
|
list_del(&ipkg->trigger_pkgs_list);
|
2010-06-15 11:40:46 +00:00
|
|
|
list_init(&ipkg->trigger_pkgs_list);
|
2010-06-10 17:50:11 +00:00
|
|
|
apk_string_array_free(&ipkg->triggers);
|
|
|
|
}
|
|
|
|
|
2009-07-24 11:02:56 +00:00
|
|
|
if (newpkg->installed_size != 0) {
|
2009-08-12 16:17:46 +00:00
|
|
|
r = apk_db_unpack_pkg(db, ipkg, (oldpkg != NULL),
|
2013-06-20 10:12:44 +00:00
|
|
|
cb, cb_ctx, script_args);
|
2009-08-12 16:17:46 +00:00
|
|
|
if (r != 0) {
|
2013-06-20 10:12:44 +00:00
|
|
|
if (oldpkg != newpkg)
|
|
|
|
apk_db_purge_pkg(db, ipkg, ".apk-new");
|
2009-08-12 16:17:46 +00:00
|
|
|
apk_pkg_uninstall(db, newpkg);
|
2010-12-14 17:51:16 +00:00
|
|
|
goto ret_r;
|
2009-08-12 16:17:46 +00:00
|
|
|
}
|
2013-06-20 10:12:44 +00:00
|
|
|
apk_db_migrate_files(db, ipkg);
|
2009-05-14 12:01:09 +00:00
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-08-12 16:17:46 +00:00
|
|
|
if (oldpkg != NULL && oldpkg != newpkg && oldpkg->ipkg != NULL) {
|
|
|
|
apk_db_purge_pkg(db, oldpkg->ipkg, NULL);
|
|
|
|
apk_pkg_uninstall(db, oldpkg);
|
|
|
|
}
|
2009-01-16 07:32:04 +00:00
|
|
|
|
2013-06-20 10:12:44 +00:00
|
|
|
apk_ipkg_run_script(
|
|
|
|
ipkg, db,
|
|
|
|
(oldpkg == NULL) ? APK_SCRIPT_POST_INSTALL : APK_SCRIPT_POST_UPGRADE,
|
|
|
|
script_args);
|
|
|
|
|
|
|
|
if (ipkg->broken_files || ipkg->broken_script)
|
|
|
|
r = -1;
|
2010-12-14 17:51:16 +00:00
|
|
|
ret_r:
|
|
|
|
free(script_args[1]);
|
|
|
|
free(script_args[2]);
|
2008-04-17 14:09:13 +00:00
|
|
|
return r;
|
|
|
|
}
|
2013-06-18 10:01:51 +00:00
|
|
|
|
|
|
|
struct match_ctx {
|
|
|
|
struct apk_database *db;
|
|
|
|
struct apk_string_array *filter;
|
|
|
|
unsigned int match;
|
|
|
|
void (*cb)(struct apk_database *db, const char *match, struct apk_name *name, void *ctx);
|
|
|
|
void *cb_ctx;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int match_names(apk_hash_item item, void *pctx)
|
|
|
|
{
|
|
|
|
struct match_ctx *ctx = (struct match_ctx *) pctx;
|
|
|
|
struct apk_name *name = (struct apk_name *) item;
|
|
|
|
unsigned int genid = ctx->match & APK_FOREACH_GENID_MASK;
|
|
|
|
char **pmatch;
|
|
|
|
|
|
|
|
if (genid) {
|
|
|
|
if (name->foreach_genid >= genid)
|
|
|
|
return 0;
|
|
|
|
name->foreach_genid = genid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctx->filter->num == 0) {
|
|
|
|
ctx->cb(ctx->db, NULL, name, ctx->cb_ctx);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach_array_item(pmatch, ctx->filter) {
|
|
|
|
if (fnmatch(*pmatch, name->name, FNM_CASEFOLD) == 0) {
|
|
|
|
ctx->cb(ctx->db, *pmatch, name, ctx->cb_ctx);
|
|
|
|
if (genid)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void apk_name_foreach_matching(struct apk_database *db, struct apk_string_array *filter, unsigned int match,
|
|
|
|
void (*cb)(struct apk_database *db, const char *match, struct apk_name *name, void *ctx),
|
|
|
|
void *ctx)
|
|
|
|
{
|
|
|
|
char **pmatch;
|
|
|
|
unsigned int genid = match & APK_FOREACH_GENID_MASK;
|
|
|
|
struct apk_name *name;
|
|
|
|
struct match_ctx mctx = {
|
|
|
|
.db = db,
|
|
|
|
.filter = filter,
|
|
|
|
.match = match,
|
|
|
|
.cb = cb,
|
|
|
|
.cb_ctx = ctx,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (filter == NULL || filter->num == 0) {
|
2013-06-19 17:55:01 +00:00
|
|
|
if (!(match & APK_FOREACH_NULL_MATCHES_ALL))
|
|
|
|
return;
|
2013-06-18 10:01:51 +00:00
|
|
|
apk_string_array_init(&mctx.filter);
|
|
|
|
goto all;
|
|
|
|
}
|
|
|
|
foreach_array_item(pmatch, filter)
|
|
|
|
if (strchr(*pmatch, '*') != NULL)
|
|
|
|
goto all;
|
|
|
|
|
|
|
|
foreach_array_item(pmatch, filter) {
|
|
|
|
name = (struct apk_name *) apk_hash_get(&db->available.names, APK_BLOB_STR(*pmatch));
|
2014-12-08 06:30:58 +00:00
|
|
|
if (genid && name) {
|
2013-06-18 10:01:51 +00:00
|
|
|
if (name->foreach_genid >= genid)
|
|
|
|
continue;
|
|
|
|
name->foreach_genid = genid;
|
|
|
|
}
|
|
|
|
cb(db, *pmatch, name, ctx);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
all:
|
|
|
|
apk_hash_foreach(&db->available.names, match_names, &mctx);
|
|
|
|
}
|