2008-04-17 14:09:13 +00:00
|
|
|
/* database.c - Alpine Package Keeper (APK)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
|
|
|
|
* Copyright (C) 2008 Timo Teräs <timo.teras@iki.fi>
|
|
|
|
* 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>
|
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-01-17 09:07:56 +00:00
|
|
|
#include <sys/file.h>
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
#include "apk_defines.h"
|
|
|
|
#include "apk_package.h"
|
|
|
|
#include "apk_database.h"
|
|
|
|
#include "apk_state.h"
|
2008-04-21 16:30:10 +00:00
|
|
|
#include "apk_applet.h"
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-06-29 08:22:55 +00:00
|
|
|
const char * const apk_index_gz = "APK_INDEX.gz";
|
2009-06-28 17:36:16 +00:00
|
|
|
static const char * const apk_static_cache_dir = "var/lib/apk";
|
|
|
|
static const char * const apk_linked_cache_dir = "etc/apk/cache";
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
struct install_ctx {
|
|
|
|
struct apk_database *db;
|
|
|
|
struct apk_package *pkg;
|
|
|
|
|
|
|
|
int script;
|
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-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);
|
|
|
|
free(name->pkgs);
|
|
|
|
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);
|
2009-04-14 15:48:02 +00:00
|
|
|
pn->id = db->name_id++;
|
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;
|
|
|
|
}
|
|
|
|
|
2009-01-13 18:32:18 +00:00
|
|
|
static void apk_db_dir_unref(struct apk_database *db, struct apk_db_dir *dir)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
dir->refs--;
|
|
|
|
if (dir->refs > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
db->installed.stats.dirs--;
|
|
|
|
|
|
|
|
if (dir->parent != NULL)
|
2009-01-13 18:32:18 +00:00
|
|
|
apk_db_dir_unref(db, dir->parent);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2009-01-13 18:32:18 +00:00
|
|
|
static 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);
|
|
|
|
}
|
|
|
|
|
2009-01-13 18:32:18 +00:00
|
|
|
static 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;
|
|
|
|
apk_blob_t bparent;
|
2009-07-14 07:47:20 +00:00
|
|
|
unsigned long hash = apk_hash_from_key(&db->installed.dirs, name);
|
2008-11-14 12:26:59 +00:00
|
|
|
int i;
|
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;
|
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;
|
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
|
|
|
|
2008-04-21 16:30:10 +00:00
|
|
|
if (name.len == 0)
|
|
|
|
dir->parent = NULL;
|
2008-11-14 12:26:59 +00:00
|
|
|
else if (apk_blob_rsplit(name, '/', &bparent, NULL))
|
2009-01-13 18:32:18 +00:00
|
|
|
dir->parent = apk_db_dir_get(db, bparent);
|
2008-04-21 16:30:10 +00:00
|
|
|
else
|
2009-01-13 18:32:18 +00:00
|
|
|
dir->parent = apk_db_dir_get(db, APK_BLOB_NULL);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-11-14 12:26:59 +00:00
|
|
|
if (dir->parent != NULL)
|
|
|
|
dir->flags = dir->parent->flags;
|
|
|
|
|
|
|
|
for (i = 0; i < db->protected_paths->num; i++) {
|
|
|
|
if (db->protected_paths->item[i][0] == '-' &&
|
2009-07-14 08:55:08 +00:00
|
|
|
strcmp(&db->protected_paths->item[i][1], dir->name) == 0)
|
2008-11-14 12:26:59 +00:00
|
|
|
dir->flags &= ~APK_DBDIRF_PROTECTED;
|
2009-07-14 08:55:08 +00:00
|
|
|
else if (strcmp(db->protected_paths->item[i], dir->name) == 0)
|
2008-11-14 12:26:59 +00:00
|
|
|
dir->flags |= APK_DBDIRF_PROTECTED;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2009-01-06 17:44:54 +00:00
|
|
|
|
|
|
|
return diri;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void apk_db_diri_set(struct apk_db_dir_instance *diri, mode_t mode,
|
|
|
|
uid_t uid, gid_t gid)
|
|
|
|
{
|
|
|
|
diri->mode = mode;
|
|
|
|
diri->uid = uid;
|
|
|
|
diri->gid = gid;
|
|
|
|
}
|
|
|
|
|
2009-01-06 19:10:00 +00:00
|
|
|
static void apk_db_diri_mkdir(struct apk_db_dir_instance *diri)
|
2009-01-06 17:44:54 +00:00
|
|
|
{
|
2009-07-14 08:55:08 +00:00
|
|
|
if (mkdir(diri->dir->name, diri->mode) == 0)
|
|
|
|
chown(diri->dir->name, diri->uid, diri->gid);
|
2009-01-06 17:44:54 +00:00
|
|
|
}
|
|
|
|
|
2009-01-06 19:10:00 +00:00
|
|
|
static void apk_db_diri_rmdir(struct apk_db_dir_instance *diri)
|
|
|
|
{
|
2009-07-14 08:55:08 +00:00
|
|
|
if (diri->dir->refs == 1)
|
|
|
|
rmdir(diri->dir->name);
|
2009-01-06 19:10:00 +00:00
|
|
|
}
|
|
|
|
|
2009-01-06 18:30:22 +00:00
|
|
|
static void apk_db_diri_free(struct apk_database *db,
|
|
|
|
struct apk_db_dir_instance *diri)
|
|
|
|
{
|
2009-01-13 18:32:18 +00:00
|
|
|
apk_db_dir_unref(db, diri->dir);
|
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;
|
|
|
|
|
|
|
|
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-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-14 06:33:32 +00:00
|
|
|
file = malloc(sizeof(*file) + name.len + 1);
|
|
|
|
memset(file, 0, sizeof(*file));
|
2009-07-14 08:55:08 +00:00
|
|
|
memcpy(file->name, name.ptr, name.len);
|
|
|
|
file->name[name.len] = 0;
|
|
|
|
file->namelen = name.len;
|
2009-01-16 07:32:04 +00:00
|
|
|
|
2009-01-14 08:44:47 +00:00
|
|
|
file->diri = diri;
|
2009-01-16 07:32:04 +00:00
|
|
|
hlist_add_after(&file->diri_files_list, *after);
|
|
|
|
*after = &file->diri_files_list.next;
|
|
|
|
|
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-01-16 07:32:04 +00:00
|
|
|
static void apk_db_file_change_owner(struct apk_database *db,
|
|
|
|
struct apk_db_file *file,
|
|
|
|
struct apk_db_dir_instance *diri,
|
|
|
|
struct hlist_node ***after)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2009-01-16 07:32:04 +00:00
|
|
|
hlist_del(&file->diri_files_list, &file->diri->owned_files);
|
2009-01-06 17:44:54 +00:00
|
|
|
file->diri = diri;
|
2009-01-16 07:32:04 +00:00
|
|
|
hlist_add_after(&file->diri_files_list, *after);
|
|
|
|
*after = &file->diri_files_list.next;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2009-04-14 06:21:30 +00:00
|
|
|
static void apk_db_pkg_rdepends(struct apk_database *db, struct apk_package *pkg)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
if (pkg->depends == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < pkg->depends->num; i++) {
|
|
|
|
struct apk_name *rname = pkg->depends->item[i].name;
|
|
|
|
|
|
|
|
if (rname->rdepends) {
|
|
|
|
for (j = 0; j < rname->rdepends->num; j++)
|
|
|
|
if (rname->rdepends->item[j] == pkg->name)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
*apk_name_array_add(&rname->rdepends) = pkg->name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
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);
|
|
|
|
*apk_package_array_add(&pkg->name->pkgs) = pkg;
|
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;
|
|
|
|
}
|
2008-11-28 11:15:06 +00:00
|
|
|
apk_pkg_free(pkg);
|
|
|
|
}
|
|
|
|
return idb;
|
|
|
|
}
|
|
|
|
|
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-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;
|
2009-01-06 17:44:54 +00:00
|
|
|
struct hlist_node **diri_node = NULL;
|
|
|
|
struct hlist_node **file_diri_node = NULL;
|
2009-07-14 06:33:32 +00:00
|
|
|
apk_blob_t token = APK_BLOB_STR("\n"), l;
|
|
|
|
int field;
|
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))) {
|
|
|
|
if (l.len < 2 || l.ptr[1] != ':') {
|
|
|
|
if (pkg == NULL)
|
|
|
|
continue;
|
2008-11-28 11:15:06 +00:00
|
|
|
|
2009-07-14 06:33:32 +00:00
|
|
|
if (repo != -1)
|
|
|
|
pkg->repos |= BIT(repo);
|
|
|
|
else
|
|
|
|
apk_pkg_set_state(db, pkg, APK_PKG_INSTALLED);
|
2008-11-28 11:15:06 +00:00
|
|
|
|
2009-07-14 06:33:32 +00:00
|
|
|
if (apk_db_pkg_add(db, pkg) != pkg && repo == -1) {
|
|
|
|
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;
|
|
|
|
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();
|
|
|
|
diri = NULL;
|
|
|
|
diri_node = hlist_tail_ptr(&pkg->owned_dirs);
|
|
|
|
file_diri_node = NULL;
|
|
|
|
}
|
2008-11-28 11:15:06 +00:00
|
|
|
|
2009-07-14 06:33:32 +00:00
|
|
|
/* Standard index line? */
|
|
|
|
if (apk_pkg_add_info(db, pkg, field, l) == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (repo != -1) {
|
|
|
|
apk_error("Invalid index entry '%c'", field);
|
|
|
|
return -1;
|
|
|
|
}
|
2008-11-28 11:15:06 +00:00
|
|
|
|
2009-07-14 06:33:32 +00:00
|
|
|
/* Check FDB special entries */
|
|
|
|
switch (field) {
|
|
|
|
case 'F':
|
|
|
|
if (pkg->name == NULL) {
|
|
|
|
apk_error("FDB directory entry before package entry");
|
2008-11-28 11:15:06 +00:00
|
|
|
return -1;
|
|
|
|
}
|
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;
|
|
|
|
case 'M':
|
|
|
|
if (diri == NULL) {
|
|
|
|
apk_error("FDB directory metadata entry before directory entry");
|
|
|
|
return -1;
|
|
|
|
}
|
2009-07-14 10:27:21 +00:00
|
|
|
diri->uid = apk_blob_pull_uint(&l, 10);
|
|
|
|
apk_blob_pull_char(&l, ':');
|
|
|
|
diri->gid = apk_blob_pull_uint(&l, 10);
|
|
|
|
apk_blob_pull_char(&l, ':');
|
|
|
|
diri->mode = apk_blob_pull_uint(&l, 8);
|
2009-07-14 06:33:32 +00:00
|
|
|
break;
|
|
|
|
case 'R':
|
|
|
|
if (diri == NULL) {
|
|
|
|
apk_error("FDB file entry before directory entry");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
file = apk_db_file_get(db, diri, l,
|
|
|
|
&file_diri_node);
|
|
|
|
break;
|
|
|
|
case 'Z':
|
|
|
|
if (file == NULL) {
|
|
|
|
apk_error("FDB checksum entry before file entry");
|
|
|
|
return -1;
|
|
|
|
}
|
2009-07-14 16:14:05 +00:00
|
|
|
apk_blob_pull_csum(&l, &file->csum);
|
2009-07-14 06:33:32 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
apk_error("FDB entry '%c' unsupported", field);
|
|
|
|
return -1;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
2009-07-14 10:27:21 +00:00
|
|
|
if (APK_BLOB_IS_NULL(l)) {
|
|
|
|
apk_error("FDB format error in entry '%c'", field);
|
|
|
|
return -1;
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2009-01-13 18:32:18 +00:00
|
|
|
return 0;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
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
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
list_for_each_entry(pkg, &db->installed.packages, installed_pkgs_list) {
|
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
|
|
|
|
2009-01-06 17:44:54 +00:00
|
|
|
hlist_for_each_entry(diri, c1, &pkg->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("\nM:"));
|
|
|
|
apk_blob_push_uint(&bbuf, diri->uid, 10);
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR(":"));
|
|
|
|
apk_blob_push_uint(&bbuf, diri->gid, 10);
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR(":"));
|
|
|
|
apk_blob_push_uint(&bbuf, diri->mode, 8);
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("\n"));
|
2008-04-17 14:09:13 +00:00
|
|
|
|
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));
|
2009-07-14 16:14:05 +00:00
|
|
|
if (file->csum.type != APK_CHECKSUM_NONE) {
|
2009-07-14 10:27:21 +00:00
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("\nZ:"));
|
2009-07-14 16:14:05 +00:00
|
|
|
apk_blob_push_csum(&bbuf, &file->csum);
|
2009-01-06 17:44:54 +00:00
|
|
|
}
|
2009-07-14 10:27:21 +00:00
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_STR("\n"));
|
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)
|
2009-01-06 17:44:54 +00:00
|
|
|
return -1;
|
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)
|
2009-01-07 19:45:11 +00:00
|
|
|
return -1;
|
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
|
|
|
{
|
|
|
|
struct apk_package *pkg;
|
|
|
|
struct apk_script *script;
|
2008-11-27 18:25:01 +00:00
|
|
|
struct hlist_node *c2;
|
2009-07-14 16:14:05 +00:00
|
|
|
struct apk_file_info fi;
|
|
|
|
char filename[256];
|
|
|
|
apk_blob_t bfn;
|
|
|
|
int r, i;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
list_for_each_entry(pkg, &db->installed.packages, installed_pkgs_list) {
|
2008-04-17 14:09:13 +00:00
|
|
|
hlist_for_each_entry(script, c2, &pkg->scripts, script_list) {
|
2009-07-14 16:14:05 +00:00
|
|
|
fi = (struct apk_file_info) {
|
|
|
|
.name = filename,
|
|
|
|
.uname = "root",
|
|
|
|
.gname = "root",
|
|
|
|
.size = script->size,
|
|
|
|
.uid = 0,
|
|
|
|
.gid = 0,
|
|
|
|
.mode = 0755 | S_IFREG,
|
|
|
|
.mtime = time(NULL),
|
|
|
|
};
|
|
|
|
/* 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("-"));
|
|
|
|
apk_blob_push_blob(&bfn, APK_BLOB_STR(pkg->version));
|
|
|
|
apk_blob_push_blob(&bfn, APK_BLOB_STR("."));
|
|
|
|
apk_blob_push_csum(&bfn, &pkg->csum);
|
|
|
|
apk_blob_push_blob(&bfn, APK_BLOB_STR("."));
|
|
|
|
apk_blob_push_blob(&bfn, APK_BLOB_STR(apk_script_types[script->type]));
|
|
|
|
apk_blob_push_blob(&bfn, APK_BLOB_PTR_LEN("", 1));
|
|
|
|
|
|
|
|
r = apk_write_tar_entry(os, &fi, script->script);
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
r = apk_write_tar_entry(os, NULL, NULL);
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
static int apk_db_scriptdb_read_v1(struct apk_database *db, struct apk_istream *is)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
struct apk_package *pkg;
|
2009-07-14 16:14:05 +00:00
|
|
|
struct {
|
|
|
|
unsigned char md5sum[16];
|
|
|
|
unsigned int type;
|
|
|
|
unsigned int size;
|
|
|
|
} hdr;
|
|
|
|
struct apk_checksum csum;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-11-07 15:11:08 +00:00
|
|
|
while (is->read(is, &hdr, sizeof(hdr)) == sizeof(hdr)) {
|
2009-07-14 16:14:05 +00:00
|
|
|
memcpy(csum.data, hdr.md5sum, sizeof(hdr.md5sum));
|
|
|
|
csum.type = APK_CHECKSUM_MD5;
|
|
|
|
|
|
|
|
pkg = apk_db_get_pkg(db, &csum);
|
2008-11-27 18:25:01 +00:00
|
|
|
if (pkg != NULL)
|
|
|
|
apk_pkg_add_script(pkg, is, hdr.type, hdr.size);
|
2009-07-14 16:14:05 +00:00
|
|
|
else
|
|
|
|
apk_istream_skip(is, hdr.size);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
if (pkg != NULL)
|
|
|
|
apk_pkg_add_script(pkg, is, type, ae->size);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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;
|
2008-11-27 14:59:04 +00:00
|
|
|
apk_blob_t blob;
|
2009-04-14 15:48:02 +00:00
|
|
|
int i;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
/* Read:
|
|
|
|
* 1. installed repository
|
|
|
|
* 2. source repositories
|
|
|
|
* 3. master dependencies
|
|
|
|
* 4. package statuses
|
|
|
|
* 5. files db
|
|
|
|
* 6. script db
|
|
|
|
*/
|
2008-04-22 08:16:26 +00:00
|
|
|
fchdir(db->root_fd);
|
|
|
|
|
2009-07-07 06:27:56 +00:00
|
|
|
if (!(flags & APK_OPENF_NO_WORLD)) {
|
|
|
|
blob = apk_blob_from_file("var/lib/apk/world");
|
|
|
|
if (APK_BLOB_IS_NULL(blob))
|
|
|
|
return -ENOENT;
|
|
|
|
apk_deps_parse(db, &db->world, blob);
|
|
|
|
free(blob.ptr);
|
2008-04-21 16:30:10 +00:00
|
|
|
|
2009-07-07 06:27:56 +00:00
|
|
|
for (i = 0; i < db->world->num; i++)
|
|
|
|
db->world->item[i].name->flags |= APK_NAME_TOPLEVEL;
|
|
|
|
}
|
2009-04-14 15:48:02 +00:00
|
|
|
|
2009-07-07 06:27:56 +00:00
|
|
|
if (!(flags & APK_OPENF_NO_INSTALLED)) {
|
2009-07-14 06:33:32 +00:00
|
|
|
bs = apk_bstream_from_file("var/lib/apk/installed");
|
|
|
|
if (bs != NULL) {
|
|
|
|
apk_db_index_read(db, bs, -1);
|
|
|
|
bs->close(bs, NULL);
|
2009-07-07 06:27:56 +00:00
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2009-07-07 06:27:56 +00:00
|
|
|
if (!(flags & APK_OPENF_NO_SCRIPTS)) {
|
2009-07-14 16:14:05 +00:00
|
|
|
is = apk_istream_from_file("var/lib/apk/scripts.tar");
|
2009-07-07 06:27:56 +00:00
|
|
|
if (is != NULL) {
|
2009-07-14 16:14:05 +00:00
|
|
|
apk_parse_tar(is, apk_read_script_archive_entry, db);
|
|
|
|
} else {
|
|
|
|
is = apk_istream_from_file("var/lib/apk/scripts");
|
|
|
|
if (is != NULL)
|
|
|
|
apk_db_scriptdb_read_v1(db, is);
|
2009-07-07 06:27:56 +00:00
|
|
|
}
|
2009-07-14 16:14:05 +00:00
|
|
|
if (is != NULL)
|
|
|
|
is->close(is);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
*apk_string_array_add(&db->protected_paths) = apk_blob_cstr(blob);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-17 09:07:56 +00:00
|
|
|
static int apk_db_create(struct apk_database *db)
|
|
|
|
{
|
|
|
|
apk_blob_t deps = APK_BLOB_STR("busybox alpine-baselayout "
|
|
|
|
"apk-tools alpine-conf");
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
fchdir(db->root_fd);
|
|
|
|
mkdir("tmp", 01777);
|
|
|
|
mkdir("dev", 0755);
|
|
|
|
mknod("dev/null", 0666, makedev(1, 3));
|
|
|
|
mkdir("var", 0755);
|
|
|
|
mkdir("var/lib", 0755);
|
|
|
|
mkdir("var/lib/apk", 0755);
|
|
|
|
|
|
|
|
fd = creat("var/lib/apk/world", 0644);
|
|
|
|
if (fd < 0)
|
|
|
|
return -errno;
|
|
|
|
write(fd, deps.ptr, deps.len);
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-07 07:30:54 +00:00
|
|
|
static void handle_alarm(int sig)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-01-17 09:07:56 +00:00
|
|
|
int apk_db_open(struct apk_database *db, const char *root, unsigned int flags)
|
2008-04-21 16:30:10 +00:00
|
|
|
{
|
2009-04-21 08:17:17 +00:00
|
|
|
const char *apk_repos = getenv("APK_REPOS"), *msg = NULL;
|
2009-02-17 12:23:01 +00:00
|
|
|
struct apk_repository_url *repo = NULL;
|
2009-06-28 17:36:16 +00:00
|
|
|
struct stat st;
|
|
|
|
apk_blob_t blob;
|
|
|
|
int r;
|
2008-11-14 12:26:59 +00:00
|
|
|
|
2008-04-21 16:30:10 +00:00
|
|
|
memset(db, 0, sizeof(*db));
|
|
|
|
apk_hash_init(&db->available.names, &pkg_name_hash_ops, 1000);
|
|
|
|
apk_hash_init(&db->available.packages, &pkg_info_hash_ops, 4000);
|
|
|
|
apk_hash_init(&db->installed.dirs, &dir_hash_ops, 1000);
|
2009-01-13 18:32:18 +00:00
|
|
|
apk_hash_init(&db->installed.files, &file_hash_ops, 4000);
|
2008-11-27 18:25:01 +00:00
|
|
|
list_init(&db->installed.packages);
|
2009-06-28 17:36:16 +00:00
|
|
|
db->cache_dir = apk_static_cache_dir;
|
2008-04-21 16:30:10 +00:00
|
|
|
|
|
|
|
if (root != NULL) {
|
2009-01-16 12:52:47 +00:00
|
|
|
fchdir(apk_cwd_fd);
|
2008-04-21 16:30:10 +00:00
|
|
|
db->root = strdup(root);
|
|
|
|
db->root_fd = open(root, O_RDONLY);
|
2009-01-17 09:07:56 +00:00
|
|
|
if (db->root_fd < 0 && (flags & APK_OPENF_CREATE)) {
|
|
|
|
mkdir(db->root, 0755);
|
|
|
|
db->root_fd = open(root, O_RDONLY);
|
|
|
|
}
|
2008-04-21 16:30:10 +00:00
|
|
|
if (db->root_fd < 0) {
|
2009-01-17 09:07:56 +00:00
|
|
|
msg = "Unable to open root";
|
|
|
|
goto ret_errno;
|
|
|
|
}
|
|
|
|
|
|
|
|
fchdir(db->root_fd);
|
2009-07-08 13:19:53 +00:00
|
|
|
if (stat(apk_linked_cache_dir, &st) == 0 && S_ISDIR(st.st_mode))
|
|
|
|
db->cache_dir = apk_linked_cache_dir;
|
|
|
|
|
2009-01-17 09:07:56 +00:00
|
|
|
if (flags & APK_OPENF_WRITE) {
|
|
|
|
db->lock_fd = open("var/lib/apk/lock",
|
|
|
|
O_CREAT | O_WRONLY, 0400);
|
2009-01-19 19:19:36 +00:00
|
|
|
if (db->lock_fd < 0 && errno == ENOENT &&
|
|
|
|
(flags & APK_OPENF_CREATE)) {
|
|
|
|
r = apk_db_create(db);
|
|
|
|
if (r != 0) {
|
|
|
|
msg = "Unable to create database";
|
|
|
|
goto ret_r;
|
|
|
|
}
|
|
|
|
db->lock_fd = open("var/lib/apk/lock",
|
|
|
|
O_CREAT | O_WRONLY, 0400);
|
|
|
|
}
|
2009-01-17 09:07:56 +00:00
|
|
|
if (db->lock_fd < 0 ||
|
|
|
|
flock(db->lock_fd, LOCK_EX | LOCK_NB) < 0) {
|
2009-07-07 07:30:54 +00:00
|
|
|
if (apk_wait) {
|
|
|
|
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);
|
|
|
|
|
|
|
|
alarm(apk_wait);
|
|
|
|
if (flock(db->lock_fd, LOCK_EX) < 0) {
|
|
|
|
msg = "Unable to lock database";
|
|
|
|
goto ret_errno;
|
|
|
|
}
|
|
|
|
|
|
|
|
alarm(0);
|
|
|
|
sigaction(SIGALRM, &old_sa, NULL);
|
|
|
|
}
|
2009-01-17 09:07:56 +00:00
|
|
|
}
|
2008-04-21 16:30:10 +00:00
|
|
|
}
|
|
|
|
}
|
2008-11-28 11:15:06 +00:00
|
|
|
|
|
|
|
blob = APK_BLOB_STR("etc:-etc/init.d");
|
|
|
|
apk_blob_for_each_segment(blob, ":", add_protected_path, db);
|
|
|
|
|
2009-01-16 14:25:19 +00:00
|
|
|
if (root != NULL) {
|
2009-07-07 06:27:56 +00:00
|
|
|
r = apk_db_read_state(db, flags);
|
|
|
|
if (r == -ENOENT && (flags & APK_OPENF_CREATE)) {
|
|
|
|
r = apk_db_create(db);
|
2009-01-17 09:07:56 +00:00
|
|
|
if (r != 0) {
|
2009-07-07 06:27:56 +00:00
|
|
|
msg = "Unable to create database";
|
2009-01-17 09:07:56 +00:00
|
|
|
goto ret_r;
|
|
|
|
}
|
2009-07-07 06:27:56 +00:00
|
|
|
r = apk_db_read_state(db, flags);
|
|
|
|
}
|
|
|
|
if (r != 0) {
|
|
|
|
msg = "Unable to read database state";
|
|
|
|
goto ret_r;
|
2009-01-17 09:07:56 +00:00
|
|
|
}
|
|
|
|
|
2009-07-07 06:27:56 +00:00
|
|
|
if (!(flags & APK_OPENF_NO_REPOS)) {
|
2009-04-21 11:39:16 +00:00
|
|
|
if (apk_repos == NULL)
|
|
|
|
apk_repos = "/etc/apk/repositories";
|
|
|
|
blob = apk_blob_from_file(apk_repos);
|
|
|
|
if (!APK_BLOB_IS_NULL(blob)) {
|
2009-05-19 09:39:57 +00:00
|
|
|
apk_blob_for_each_segment(blob, "\n",
|
|
|
|
apk_db_add_repository, db);
|
2009-04-21 11:39:16 +00:00
|
|
|
free(blob.ptr);
|
|
|
|
}
|
2009-01-16 14:25:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-07 06:27:56 +00:00
|
|
|
if (!(flags & APK_OPENF_NO_REPOS)) {
|
2009-05-19 09:39:57 +00:00
|
|
|
list_for_each_entry(repo, &apk_repository_list.list, list)
|
|
|
|
apk_db_add_repository(db, APK_BLOB_STR(repo->url));
|
2009-01-17 09:07:56 +00:00
|
|
|
}
|
2008-04-21 16:30:10 +00:00
|
|
|
|
2009-01-21 09:03:10 +00:00
|
|
|
fchdir(apk_cwd_fd);
|
2008-11-28 11:15:06 +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-01-21 09:03:10 +00:00
|
|
|
fchdir(apk_cwd_fd);
|
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;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
if (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;
|
|
|
|
}
|
|
|
|
|
2008-04-22 08:16:26 +00:00
|
|
|
fchdir(db->root_fd);
|
|
|
|
|
2009-01-16 08:16:17 +00:00
|
|
|
os = apk_ostream_to_file("var/lib/apk/world", 0644);
|
2008-11-28 14:28:54 +00:00
|
|
|
if (os == NULL)
|
2008-04-17 14:09:13 +00:00
|
|
|
return -1;
|
2009-03-17 11:19:06 +00:00
|
|
|
apk_deps_write(db->world, os);
|
|
|
|
os->write(os, "\n", 1);
|
2008-11-28 14:28:54 +00:00
|
|
|
os->close(os);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-01-17 09:07:56 +00:00
|
|
|
os = apk_ostream_to_file("var/lib/apk/installed.new", 0644);
|
2008-11-28 14:28:54 +00:00
|
|
|
if (os == NULL)
|
2008-04-17 14:09:13 +00:00
|
|
|
return -1;
|
2008-11-28 14:28:54 +00:00
|
|
|
apk_db_write_fdb(db, os);
|
|
|
|
os->close(os);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-01-17 09:07:56 +00:00
|
|
|
if (rename("var/lib/apk/installed.new", "var/lib/apk/installed") < 0)
|
|
|
|
return -errno;
|
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
os = apk_ostream_to_file("var/lib/apk/scripts.tar.new", 0644);
|
2008-11-28 14:28:54 +00:00
|
|
|
if (os == NULL)
|
2008-04-17 14:09:13 +00:00
|
|
|
return -1;
|
2008-11-28 14:28:54 +00:00
|
|
|
apk_db_scriptdb_write(db, os);
|
|
|
|
os->close(os);
|
2009-07-14 16:14:05 +00:00
|
|
|
if (rename("var/lib/apk/scripts.tar.new", "var/lib/apk/scripts.tar") < 0)
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
unlink("var/lib/apk/scripts");
|
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-01-06 18:30:22 +00:00
|
|
|
struct apk_package *pkg;
|
|
|
|
struct apk_db_dir_instance *diri;
|
2009-01-13 18:32:18 +00:00
|
|
|
struct hlist_node *dc, *dn;
|
2009-01-06 18:30:22 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
list_for_each_entry(pkg, &db->installed.packages, installed_pkgs_list) {
|
|
|
|
hlist_for_each_entry_safe(diri, dc, dn, &pkg->owned_dirs, pkg_dirs_list) {
|
|
|
|
apk_db_diri_free(db, diri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-16 17:05:22 +00:00
|
|
|
for (i = 0; i < db->num_repos; i++) {
|
2009-01-06 18:30:22 +00:00
|
|
|
free(db->repos[i].url);
|
2009-04-16 17:05:22 +00:00
|
|
|
}
|
2009-01-17 09:07:56 +00:00
|
|
|
if (db->protected_paths) {
|
|
|
|
for (i = 0; i < db->protected_paths->num; i++)
|
|
|
|
free(db->protected_paths->item[i]);
|
|
|
|
free(db->protected_paths);
|
|
|
|
}
|
|
|
|
if (db->world)
|
|
|
|
free(db->world);
|
2009-01-06 18:30:22 +00:00
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
apk_hash_free(&db->available.names);
|
|
|
|
apk_hash_free(&db->available.packages);
|
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-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);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2009-01-14 08:44:47 +00:00
|
|
|
if (!apk_blob_rsplit(filename, '/', &key.dirname, &key.filename))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2008-11-28 11:34:40 +00:00
|
|
|
struct apk_package *apk_db_pkg_add_file(struct apk_database *db, const char *file)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
struct apk_package *info;
|
|
|
|
|
|
|
|
info = apk_pkg_read(db, file);
|
2008-11-28 11:34:40 +00:00
|
|
|
if (info != NULL)
|
2009-04-16 11:03:17 +00:00
|
|
|
info = apk_db_pkg_add(db, info);
|
2008-11-28 11:34:40 +00:00
|
|
|
return info;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 13:14:23 +00:00
|
|
|
struct index_write_ctx {
|
|
|
|
struct apk_ostream *os;
|
|
|
|
int count;
|
|
|
|
};
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
static int write_index_entry(apk_hash_item item, void *ctx)
|
|
|
|
{
|
2009-01-16 13:14:23 +00:00
|
|
|
struct index_write_ctx *iwctx = (struct index_write_ctx *) ctx;
|
|
|
|
struct apk_package *pkg = (struct apk_package *) item;
|
2009-04-16 14:05:27 +00:00
|
|
|
int r;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-07-15 13:47:43 +00:00
|
|
|
if (pkg->filename == NULL)
|
2009-01-16 13:14:23 +00:00
|
|
|
return 0;
|
|
|
|
|
2009-04-16 14:05:27 +00:00
|
|
|
r = apk_pkg_write_index_entry(pkg, iwctx->os);
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
2008-11-28 14:28:54 +00:00
|
|
|
|
2009-04-16 14:05:27 +00:00
|
|
|
if (iwctx->os->write(iwctx->os, "\n", 1) != 1)
|
2008-11-28 14:28:54 +00:00
|
|
|
return -1;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-01-16 13:14:23 +00:00
|
|
|
iwctx->count++;
|
2008-04-17 14:09:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-16 13:14:23 +00:00
|
|
|
int apk_db_index_write(struct apk_database *db, struct apk_ostream *os)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2009-01-16 13:14:23 +00:00
|
|
|
struct index_write_ctx ctx = { os, 0 };
|
|
|
|
|
|
|
|
apk_hash_foreach(&db->available.packages, write_index_entry, &ctx);
|
|
|
|
|
|
|
|
return ctx.count;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2009-06-28 17:36:16 +00:00
|
|
|
static void apk_db_cache_get_name(char *buf, size_t bufsz,
|
2009-07-14 16:14:05 +00:00
|
|
|
struct apk_database *db,
|
|
|
|
struct apk_checksum *csum,
|
2009-06-28 17:36:16 +00:00
|
|
|
const char *file, int temp)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2009-07-14 16:14:05 +00:00
|
|
|
char csumstr[APK_CACHE_CSUM_BYTES*2+1];
|
2009-07-14 10:27:21 +00:00
|
|
|
apk_blob_t bbuf = APK_BLOB_BUF(csumstr);
|
|
|
|
|
|
|
|
apk_blob_push_hexdump(&bbuf,
|
2009-07-14 16:14:05 +00:00
|
|
|
APK_BLOB_PTR_LEN((char *) csum->data, APK_CACHE_CSUM_BYTES));
|
|
|
|
apk_blob_push_blob(&bbuf, APK_BLOB_PTR_LEN("", 1));
|
2009-04-16 17:05:22 +00:00
|
|
|
|
2009-06-28 17:36:16 +00:00
|
|
|
snprintf(buf, bufsz, "%s/%s/%s.%s%s",
|
|
|
|
db->root, db->cache_dir, csumstr, file, temp ? ".new" : "");
|
2009-04-16 17:05:22 +00:00
|
|
|
}
|
|
|
|
|
2009-06-28 17:36:16 +00:00
|
|
|
static struct apk_bstream *apk_db_cache_open(struct apk_database *db,
|
2009-07-14 16:14:05 +00:00
|
|
|
struct apk_checksum *csum,
|
|
|
|
const char *file)
|
2009-04-16 17:05:22 +00:00
|
|
|
{
|
|
|
|
char tmp[256];
|
|
|
|
|
|
|
|
if (db->root == NULL)
|
2009-06-28 17:36:16 +00:00
|
|
|
return NULL;
|
2009-04-16 17:05:22 +00:00
|
|
|
|
2009-06-28 17:36:16 +00:00
|
|
|
apk_db_cache_get_name(tmp, sizeof(tmp), db, csum, file, FALSE);
|
|
|
|
return apk_bstream_from_file(tmp);
|
2009-04-16 17:05:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct apk_bstream *apk_repository_file_open(struct apk_repository *repo,
|
|
|
|
const char *file)
|
|
|
|
{
|
|
|
|
char tmp[256];
|
|
|
|
|
|
|
|
snprintf(tmp, sizeof(tmp), "%s/%s", repo->url, file);
|
|
|
|
|
|
|
|
return apk_bstream_from_url(tmp);
|
|
|
|
}
|
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
int apk_cache_download(struct apk_database *db, struct apk_checksum *csum,
|
2009-06-29 08:22:55 +00:00
|
|
|
const char *url, const char *item)
|
2009-04-16 17:05:22 +00:00
|
|
|
{
|
|
|
|
char tmp[256], tmp2[256];
|
2008-11-27 18:25:01 +00:00
|
|
|
int r;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-06-29 08:22:55 +00:00
|
|
|
snprintf(tmp, sizeof(tmp), "%s/%s", url, item);
|
|
|
|
apk_message("fetch %s", tmp);
|
2009-04-16 17:05:22 +00:00
|
|
|
|
2009-06-29 08:22:55 +00:00
|
|
|
if (apk_flags & APK_SIMULATE)
|
|
|
|
return 0;
|
2009-06-28 17:36:16 +00:00
|
|
|
|
2009-06-29 08:22:55 +00:00
|
|
|
apk_db_cache_get_name(tmp2, sizeof(tmp2), db, csum, item, TRUE);
|
2009-04-16 17:05:22 +00:00
|
|
|
r = apk_url_download(tmp, tmp2);
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
|
|
|
|
2009-06-29 08:22:55 +00:00
|
|
|
apk_db_cache_get_name(tmp, sizeof(tmp), db, csum, item, FALSE);
|
2009-04-16 17:05:22 +00:00
|
|
|
if (rename(tmp2, tmp) < 0)
|
|
|
|
return -errno;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
int apk_cache_exists(struct apk_database *db, struct apk_checksum *csum,
|
|
|
|
const char *item)
|
2009-06-29 08:22:55 +00:00
|
|
|
{
|
|
|
|
char tmp[256];
|
|
|
|
|
|
|
|
if (db->root == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
apk_db_cache_get_name(tmp, sizeof(tmp), db, csum, item, FALSE);
|
|
|
|
return access(tmp, R_OK | W_OK) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int apk_repository_update(struct apk_database *db, struct apk_repository *repo)
|
|
|
|
{
|
2009-07-14 16:14:05 +00:00
|
|
|
if (repo->csum.type == APK_CHECKSUM_NONE)
|
2009-06-29 08:22:55 +00:00
|
|
|
return 0;
|
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
return apk_cache_download(db, &repo->csum, repo->url, apk_index_gz);
|
2009-06-29 08:22:55 +00:00
|
|
|
}
|
|
|
|
|
2009-04-16 17:05:22 +00:00
|
|
|
int apk_db_add_repository(apk_database_t _db, apk_blob_t repository)
|
|
|
|
{
|
|
|
|
struct apk_database *db = _db.db;
|
2009-06-28 17:36:16 +00:00
|
|
|
struct apk_bstream *bs = NULL;
|
|
|
|
struct apk_repository *repo;
|
2009-07-07 09:12:24 +00:00
|
|
|
int r, n = 1;
|
2009-04-16 17:05:22 +00:00
|
|
|
|
2009-06-28 15:05:17 +00:00
|
|
|
if (repository.ptr == NULL || *repository.ptr == '\0'
|
2009-01-08 09:12:39 +00:00
|
|
|
|| *repository.ptr == '#')
|
|
|
|
return 0;
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
if (db->num_repos >= APK_MAX_REPOS)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
r = db->num_repos++;
|
2009-06-28 17:36:16 +00:00
|
|
|
|
|
|
|
repo = &db->repos[r];
|
|
|
|
*repo = (struct apk_repository) {
|
2009-04-16 17:05:22 +00:00
|
|
|
.url = apk_blob_cstr(repository),
|
2008-04-17 14:09:13 +00:00
|
|
|
};
|
|
|
|
|
2009-06-28 17:36:16 +00:00
|
|
|
if (apk_url_local_file(repo->url) == NULL) {
|
2009-07-14 16:14:05 +00:00
|
|
|
apk_blob_checksum(repository, apk_default_checksum(), &repo->csum);
|
2009-04-16 17:05:22 +00:00
|
|
|
|
2009-07-07 09:12:24 +00:00
|
|
|
if (apk_flags & APK_UPDATE_CACHE)
|
|
|
|
n = apk_repository_update(db, repo);
|
|
|
|
|
2009-07-14 16:14:05 +00:00
|
|
|
bs = apk_db_cache_open(db, &repo->csum, apk_index_gz);
|
2009-06-28 17:36:16 +00:00
|
|
|
if (bs == NULL) {
|
2009-07-07 09:12:24 +00:00
|
|
|
if (n == 1)
|
|
|
|
n = apk_repository_update(db, repo);
|
2009-04-16 17:05:22 +00:00
|
|
|
if (n < 0)
|
|
|
|
return n;
|
2009-07-14 16:14:05 +00:00
|
|
|
bs = apk_db_cache_open(db, &repo->csum, apk_index_gz);
|
2009-04-16 17:05:22 +00:00
|
|
|
}
|
|
|
|
} else {
|
2009-06-28 17:36:16 +00:00
|
|
|
bs = apk_repository_file_open(repo, apk_index_gz);
|
2009-04-16 17:05:22 +00:00
|
|
|
}
|
2009-07-16 10:47:26 +00:00
|
|
|
bs = apk_bstream_from_istream(apk_bstream_gunzip(bs));
|
2009-07-14 06:33:32 +00:00
|
|
|
if (bs == NULL) {
|
2009-06-28 17:36:16 +00:00
|
|
|
apk_warning("Failed to open index for %s", repo->url);
|
2008-04-17 14:09:13 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2009-07-14 06:33:32 +00:00
|
|
|
apk_db_index_read(db, bs, r);
|
|
|
|
bs->close(bs, NULL);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-07 19:45:11 +00:00
|
|
|
static void extract_cb(void *_ctx, size_t progress)
|
|
|
|
{
|
|
|
|
struct install_ctx *ctx = (struct install_ctx *) _ctx;
|
|
|
|
|
|
|
|
if (ctx->cb) {
|
|
|
|
size_t size = ctx->installed_size;
|
|
|
|
|
|
|
|
size += muldiv(progress, ctx->current_file_size, APK_PROGRESS_SCALE);
|
|
|
|
if (size > ctx->pkg->installed_size)
|
|
|
|
size = ctx->pkg->installed_size;
|
|
|
|
|
|
|
|
ctx->cb(ctx->cb_ctx, muldiv(APK_PROGRESS_SCALE, size, ctx->pkg->installed_size));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
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;
|
2008-11-14 12:26:59 +00:00
|
|
|
struct apk_file_info fi;
|
|
|
|
char alt_name[PATH_MAX];
|
2008-04-17 14:09:13 +00:00
|
|
|
const char *p;
|
2008-11-07 11:05:55 +00:00
|
|
|
int r = 0, type = APK_SCRIPT_INVALID;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-11-07 11:05:55 +00:00
|
|
|
/* Package metainfo and script processing */
|
|
|
|
if (ae->name[0] == '.') {
|
|
|
|
/* APK 2.0 format */
|
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;
|
|
|
|
} else if (strncmp(ae->name, "var/db/apk/", 11) == 0) {
|
|
|
|
/* APK 1.0 format */
|
2008-04-17 14:09:13 +00:00
|
|
|
p = &ae->name[11];
|
|
|
|
if (strncmp(p, pkg->name->name, strlen(pkg->name->name)) != 0)
|
|
|
|
return 0;
|
|
|
|
p += strlen(pkg->name->name) + 1;
|
|
|
|
if (strncmp(p, pkg->version, strlen(pkg->version)) != 0)
|
|
|
|
return 0;
|
|
|
|
p += strlen(pkg->version) + 1;
|
|
|
|
|
|
|
|
type = apk_script_type(p);
|
2008-11-07 11:22:16 +00:00
|
|
|
if (type == APK_SCRIPT_INVALID)
|
2008-04-17 14:09:13 +00:00
|
|
|
return 0;
|
2008-11-07 11:05:55 +00:00
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-11-07 11:05:55 +00:00
|
|
|
/* Handle script */
|
|
|
|
if (type != APK_SCRIPT_INVALID) {
|
2008-11-07 15:11:08 +00:00
|
|
|
apk_pkg_add_script(pkg, is, type, ae->size);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-07-16 05:52:22 +00:00
|
|
|
if (type == ctx->script) {
|
2008-11-07 11:22:16 +00:00
|
|
|
r = apk_pkg_run_script(pkg, db->root_fd, ctx->script);
|
2008-04-17 14:09:13 +00:00
|
|
|
if (r != 0)
|
|
|
|
apk_error("%s-%s: Failed to execute pre-install/upgrade script",
|
|
|
|
pkg->name->name, pkg->version);
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2009-01-07 19:45:11 +00:00
|
|
|
/* Show progress */
|
|
|
|
if (ctx->cb) {
|
|
|
|
size_t size = ctx->installed_size;
|
|
|
|
if (size > pkg->installed_size)
|
|
|
|
size = pkg->installed_size;
|
|
|
|
ctx->cb(ctx->cb_ctx, muldiv(APK_PROGRESS_SCALE, size, pkg->installed_size));
|
|
|
|
}
|
|
|
|
|
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)) {
|
2009-01-06 17:44:54 +00:00
|
|
|
if (!apk_blob_rsplit(name, '/', &bdir, &bfile))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (bfile.len > 6 && memcmp(bfile.ptr, ".keep_", 6) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Make sure the file is part of the cached directory tree */
|
|
|
|
if (diri == NULL ||
|
2009-07-14 08:55:08 +00:00
|
|
|
apk_blob_compare(APK_BLOB_PTR_LEN(diri->dir->name, diri->dir->namelen), bdir) != 0) {
|
2009-01-06 17:44:54 +00:00
|
|
|
struct hlist_node *n;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-01-06 17:44:54 +00:00
|
|
|
hlist_for_each_entry(diri, n, &pkg->owned_dirs, pkg_dirs_list) {
|
2009-07-14 08:55:08 +00:00
|
|
|
if (apk_blob_compare(APK_BLOB_PTR_LEN(diri->dir->name, diri->dir->namelen), bdir) == 0)
|
2009-01-06 17:44:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (diri == NULL) {
|
|
|
|
apk_error("%s: File '%*s' entry without directory entry.\n",
|
|
|
|
pkg->name->name, name.len, name.ptr);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ctx->diri = diri;
|
2009-01-16 07:32:04 +00:00
|
|
|
ctx->file_diri_node = hlist_tail_ptr(&diri->owned_files);
|
2009-01-06 17:44:54 +00:00
|
|
|
}
|
|
|
|
|
2009-01-16 07:32:04 +00:00
|
|
|
file = apk_db_file_get(db, diri, bfile, &ctx->file_diri_node);
|
2009-01-06 17:44:54 +00:00
|
|
|
if (file == NULL) {
|
|
|
|
apk_error("%s: Failed to create fdb entry for '%*s'\n",
|
|
|
|
pkg->name->name, name.len, name.ptr);
|
2008-04-17 14:09:13 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-01-16 07:32:04 +00:00
|
|
|
if (file->diri != diri) {
|
2009-01-06 17:44:54 +00:00
|
|
|
opkg = file->diri->pkg;
|
2009-02-08 19:31:25 +00:00
|
|
|
if (opkg->name != pkg->name) {
|
2009-04-14 15:48:02 +00:00
|
|
|
if (!(apk_flags & APK_FORCE)) {
|
2009-03-04 06:36:56 +00:00
|
|
|
apk_error("%s: Trying to overwrite %s "
|
|
|
|
"owned by %s.\n",
|
|
|
|
pkg->name->name, ae->name,
|
|
|
|
opkg->name->name);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-03-04 09:00:17 +00:00
|
|
|
apk_warning("%s: Overwriting %s owned by %s.\n",
|
2009-03-04 06:36:56 +00:00
|
|
|
pkg->name->name, ae->name,
|
|
|
|
opkg->name->name);
|
2009-01-06 17:44:54 +00:00
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-01-16 07:32:04 +00:00
|
|
|
apk_db_file_change_owner(db, file, diri,
|
|
|
|
&ctx->file_diri_node);
|
|
|
|
}
|
2009-06-28 15:05:17 +00:00
|
|
|
|
2009-01-22 15:55:27 +00:00
|
|
|
if (apk_verbosity > 1)
|
|
|
|
printf("%s\n", ae->name);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-01-06 17:44:54 +00:00
|
|
|
if ((diri->dir->flags & APK_DBDIRF_PROTECTED) &&
|
2009-07-14 16:14:05 +00:00
|
|
|
apk_file_get_info(ae->name, file->csum.type, &fi) == 0 &&
|
|
|
|
apk_checksum_compare(&file->csum, &fi.csum) != 0) {
|
2009-01-18 13:49:18 +00:00
|
|
|
/* Protected file. Extract to separate place */
|
2009-04-14 15:48:02 +00:00
|
|
|
if (!(apk_flags & APK_CLEAN_PROTECTED)) {
|
2009-03-04 06:27:06 +00:00
|
|
|
snprintf(alt_name, sizeof(alt_name),
|
|
|
|
"%s/%s.apk-new",
|
2009-07-14 08:55:08 +00:00
|
|
|
diri->dir->name, file->name);
|
2009-03-04 06:27:06 +00:00
|
|
|
r = apk_archive_entry_extract(ae, is, alt_name,
|
|
|
|
extract_cb, ctx);
|
2009-07-14 16:14:05 +00:00
|
|
|
|
2009-03-04 09:27:59 +00:00
|
|
|
/* remove identical apk-new */
|
2009-07-14 16:14:05 +00:00
|
|
|
if (ae->csum.type != fi.csum.type)
|
|
|
|
apk_file_get_info(ae->name, ae->csum.type, &fi);
|
|
|
|
if (apk_checksum_compare(&ae->csum, &fi.csum) == 0)
|
2009-03-04 09:27:59 +00:00
|
|
|
unlink(alt_name);
|
2009-03-04 06:27:06 +00:00
|
|
|
}
|
2008-11-14 12:26:59 +00:00
|
|
|
} else {
|
2009-01-07 19:45:11 +00:00
|
|
|
r = apk_archive_entry_extract(ae, is, NULL,
|
|
|
|
extract_cb, ctx);
|
2008-11-14 12:26:59 +00:00
|
|
|
}
|
2009-07-14 16:14:05 +00:00
|
|
|
memcpy(&file->csum, &ae->csum, sizeof(file->csum));
|
2008-04-17 14:09:13 +00:00
|
|
|
} else {
|
2009-01-22 15:55:27 +00:00
|
|
|
if (apk_verbosity > 1)
|
|
|
|
printf("%s\n", ae->name);
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
if (name.ptr[name.len-1] == '/')
|
|
|
|
name.len--;
|
2009-01-06 17:44:54 +00:00
|
|
|
|
|
|
|
if (ctx->diri_node == NULL)
|
|
|
|
ctx->diri_node = hlist_tail_ptr(&pkg->owned_dirs);
|
|
|
|
ctx->diri = diri = apk_db_diri_new(db, pkg, name,
|
2009-01-16 07:32:04 +00:00
|
|
|
&ctx->diri_node);
|
|
|
|
ctx->file_diri_node = hlist_tail_ptr(&diri->owned_files);
|
2009-01-06 17:44:54 +00:00
|
|
|
|
|
|
|
apk_db_diri_set(diri, ae->mode & 0777, ae->uid, ae->gid);
|
2009-01-06 19:10:00 +00:00
|
|
|
apk_db_diri_mkdir(diri);
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void apk_db_purge_pkg(struct apk_database *db,
|
|
|
|
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-16 07:32:04 +00:00
|
|
|
struct apk_db_file_hash_key key;
|
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-01-06 17:44:54 +00:00
|
|
|
char name[1024];
|
|
|
|
|
|
|
|
hlist_for_each_entry_safe(diri, dc, dn, &pkg->owned_dirs, pkg_dirs_list) {
|
|
|
|
hlist_for_each_entry_safe(file, fc, fn, &diri->owned_files, diri_files_list) {
|
|
|
|
snprintf(name, sizeof(name), "%s/%s",
|
2009-07-14 08:55:08 +00:00
|
|
|
diri->dir->name, file->name);
|
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);
|
2009-01-06 17:44:54 +00:00
|
|
|
unlink(name);
|
2009-01-22 15:55:27 +00:00
|
|
|
if (apk_verbosity > 1)
|
|
|
|
printf("%s\n", name);
|
2009-01-06 17:44:54 +00:00
|
|
|
__hlist_del(fc, &diri->owned_files.first);
|
2009-07-14 08:55:08 +00:00
|
|
|
apk_hash_delete_hashed(&db->installed.files, APK_BLOB_BUF(&key), hash);
|
2009-01-06 17:44:54 +00:00
|
|
|
db->installed.stats.files--;
|
|
|
|
}
|
2009-01-06 19:10:00 +00:00
|
|
|
apk_db_diri_rmdir(diri);
|
2009-01-06 17:44:54 +00:00
|
|
|
__hlist_del(dc, &pkg->owned_dirs.first);
|
2009-01-22 19:45:18 +00:00
|
|
|
apk_db_diri_free(db, diri);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
2009-04-14 15:48:02 +00:00
|
|
|
apk_pkg_set_state(db, pkg, APK_PKG_NOT_INSTALLED);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2009-07-13 17:37:03 +00:00
|
|
|
static int apk_db_gzip_part(void *pctx, EVP_MD_CTX *mdctx, int part)
|
|
|
|
{
|
|
|
|
struct install_ctx *ctx = (struct install_ctx *) pctx;
|
|
|
|
|
|
|
|
switch (part) {
|
|
|
|
case APK_MPART_BEGIN:
|
|
|
|
EVP_DigestInit_ex(mdctx, EVP_md5(), NULL);
|
|
|
|
break;
|
|
|
|
case APK_MPART_END:
|
2009-07-14 16:14:05 +00:00
|
|
|
ctx->data_csum.type = EVP_MD_CTX_size(mdctx);
|
|
|
|
EVP_DigestFinal_ex(mdctx, ctx->data_csum.data, NULL);
|
2009-07-13 17:37:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-05-14 12:01:09 +00:00
|
|
|
static int apk_db_unpack_pkg(struct apk_database *db,
|
|
|
|
struct apk_package *newpkg,
|
2009-07-13 17:37:03 +00:00
|
|
|
int upgrade, apk_progress_cb cb, void *cb_ctx)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
struct install_ctx ctx;
|
2009-06-28 17:36:16 +00:00
|
|
|
struct apk_bstream *bs = NULL;
|
2009-07-13 17:37:03 +00:00
|
|
|
struct apk_istream *tar;
|
2009-06-28 17:36:16 +00:00
|
|
|
char pkgname[256], file[256];
|
2009-06-29 08:22:55 +00:00
|
|
|
int i, need_copy = FALSE;
|
2009-06-28 17:36:16 +00:00
|
|
|
|
|
|
|
snprintf(pkgname, sizeof(pkgname), "%s-%s.apk",
|
|
|
|
newpkg->name->name, newpkg->version);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-11-28 11:34:40 +00:00
|
|
|
if (newpkg->filename == NULL) {
|
2009-06-28 17:36:16 +00:00
|
|
|
struct apk_repository *repo;
|
|
|
|
|
2009-01-16 13:38:04 +00:00
|
|
|
for (i = 0; i < APK_MAX_REPOS; i++)
|
|
|
|
if (newpkg->repos & BIT(i))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (i >= APK_MAX_REPOS) {
|
|
|
|
apk_error("%s-%s: not present in any repository",
|
|
|
|
newpkg->name->name, newpkg->version);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-06-28 17:36:16 +00:00
|
|
|
repo = &db->repos[i];
|
2009-07-14 16:14:05 +00:00
|
|
|
if (apk_db_cache_active(db) &&
|
|
|
|
repo->csum.type != APK_CHECKSUM_NONE)
|
|
|
|
bs = apk_db_cache_open(db, &newpkg->csum, pkgname);
|
2009-06-28 17:36:16 +00:00
|
|
|
|
|
|
|
if (bs == NULL) {
|
|
|
|
snprintf(file, sizeof(file), "%s/%s",
|
|
|
|
repo->url, pkgname);
|
|
|
|
bs = apk_bstream_from_url(file);
|
2009-07-14 16:14:05 +00:00
|
|
|
if (repo->csum.type != APK_CHECKSUM_NONE)
|
2009-06-28 17:36:16 +00:00
|
|
|
need_copy = TRUE;
|
|
|
|
}
|
|
|
|
} else {
|
2008-11-28 13:03:27 +00:00
|
|
|
bs = apk_bstream_from_file(newpkg->filename);
|
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;
|
2009-06-28 17:36:16 +00:00
|
|
|
if (need_copy) {
|
2009-07-14 16:14:05 +00:00
|
|
|
apk_db_cache_get_name(file, sizeof(file), db, &newpkg->csum,
|
2009-06-28 17:36:16 +00:00
|
|
|
pkgname, TRUE);
|
|
|
|
bs = apk_bstream_tee(bs, file);
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-11-28 13:03:27 +00:00
|
|
|
if (bs == NULL) {
|
2008-10-26 11:35:34 +00:00
|
|
|
apk_error("%s: %s", file, strerror(errno));
|
2008-04-17 14:09:13 +00:00
|
|
|
return errno;
|
2008-10-26 11:35:34 +00:00
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
ctx = (struct install_ctx) {
|
|
|
|
.db = db,
|
|
|
|
.pkg = newpkg,
|
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-01-07 19:45:11 +00:00
|
|
|
.cb = cb,
|
|
|
|
.cb_ctx = cb_ctx,
|
2008-04-17 14:09:13 +00:00
|
|
|
};
|
2009-07-13 17:37:03 +00:00
|
|
|
|
2009-07-16 10:47:26 +00:00
|
|
|
tar = apk_bstream_gunzip_mpart(bs, apk_db_gzip_part, &ctx);
|
2009-07-13 17:37:03 +00:00
|
|
|
if (apk_parse_tar(tar, apk_db_install_archive_entry, &ctx) != 0)
|
2008-04-17 14:09:13 +00:00
|
|
|
goto err_close;
|
2009-07-16 10:47:26 +00:00
|
|
|
tar->close(tar);
|
2009-07-13 17:37:03 +00:00
|
|
|
|
|
|
|
/* Check the package checksum */
|
2009-07-14 16:14:05 +00:00
|
|
|
if (apk_checksum_compare(&ctx.data_csum, &newpkg->csum) != 0)
|
2009-07-13 17:37:03 +00:00
|
|
|
apk_warning("%s-%s: checksum does not match",
|
|
|
|
newpkg->name->name, newpkg->version);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-06-28 17:36:16 +00:00
|
|
|
if (need_copy) {
|
2009-07-16 10:47:26 +00:00
|
|
|
char file2[256];
|
|
|
|
apk_db_cache_get_name(file2, sizeof(file2), db,
|
|
|
|
&newpkg->csum, pkgname, FALSE);
|
|
|
|
rename(file, file2);
|
2009-06-28 17:36:16 +00:00
|
|
|
}
|
|
|
|
|
2009-05-14 12:01:09 +00:00
|
|
|
return 0;
|
|
|
|
err_close:
|
2009-07-13 17:37:03 +00:00
|
|
|
bs->close(bs, NULL);
|
2009-05-14 12:01:09 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int apk_db_install_pkg(struct apk_database *db,
|
|
|
|
struct apk_package *oldpkg,
|
|
|
|
struct apk_package *newpkg,
|
|
|
|
apk_progress_cb cb, void *cb_ctx)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (fchdir(db->root_fd) < 0)
|
|
|
|
return errno;
|
|
|
|
|
|
|
|
/* Just purging? */
|
|
|
|
if (oldpkg != NULL && newpkg == NULL) {
|
|
|
|
r = apk_pkg_run_script(oldpkg, db->root_fd,
|
|
|
|
APK_SCRIPT_PRE_DEINSTALL);
|
|
|
|
if (r != 0)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
apk_db_purge_pkg(db, oldpkg);
|
|
|
|
|
|
|
|
r = apk_pkg_run_script(oldpkg, db->root_fd,
|
|
|
|
APK_SCRIPT_POST_DEINSTALL);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Install the new stuff */
|
|
|
|
if (!(newpkg->name->flags & APK_NAME_VIRTUAL)) {
|
2009-07-13 17:37:03 +00:00
|
|
|
r = apk_db_unpack_pkg(db, newpkg, (oldpkg != NULL), cb, cb_ctx);
|
2009-05-14 12:01:09 +00:00
|
|
|
if (r != 0)
|
|
|
|
return r;
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-04-14 15:48:02 +00:00
|
|
|
apk_pkg_set_state(db, newpkg, APK_PKG_INSTALLED);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2009-01-16 07:32:04 +00:00
|
|
|
if (oldpkg != NULL)
|
|
|
|
apk_db_purge_pkg(db, oldpkg);
|
|
|
|
|
2008-04-22 08:16:26 +00:00
|
|
|
r = apk_pkg_run_script(newpkg, db->root_fd,
|
2008-04-17 14:09:13 +00:00
|
|
|
(oldpkg == NULL) ?
|
|
|
|
APK_SCRIPT_POST_INSTALL : APK_SCRIPT_POST_UPGRADE);
|
2008-04-22 06:04:20 +00:00
|
|
|
if (r != 0) {
|
2008-04-17 14:09:13 +00:00
|
|
|
apk_error("%s-%s: Failed to execute post-install/upgrade script",
|
|
|
|
newpkg->name->name, newpkg->version);
|
2008-04-22 06:04:20 +00:00
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
return r;
|
|
|
|
}
|