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.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* 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>
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
struct install_ctx {
|
|
|
|
struct apk_database *db;
|
|
|
|
struct apk_package *pkg;
|
|
|
|
|
|
|
|
int script;
|
|
|
|
struct apk_db_dir *dircache;
|
|
|
|
struct hlist_node **file_dir_node;
|
|
|
|
struct hlist_node **file_pkg_node;
|
|
|
|
};
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2008-04-17 14:09:13 +00:00
|
|
|
.delete_item = (apk_hash_delete_f) apk_name_free,
|
|
|
|
};
|
|
|
|
|
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
|
|
|
{
|
2008-11-27 18:25:01 +00:00
|
|
|
return APK_BLOB_BUF(((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 */
|
|
|
|
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
|
|
|
{
|
2008-11-27 18:25:01 +00:00
|
|
|
return APK_BLOB_STR(((struct apk_db_dir *) item)->dirname);
|
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,
|
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
pn = (struct apk_name *) apk_hash_get(&db->available.names, name);
|
|
|
|
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);
|
2008-04-17 14:09:13 +00:00
|
|
|
apk_hash_insert(&db->available.names, pn);
|
|
|
|
|
|
|
|
return pn;
|
|
|
|
}
|
|
|
|
|
|
|
|
void apk_name_free(struct apk_name *name)
|
|
|
|
{
|
|
|
|
free(name->name);
|
|
|
|
free(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct apk_db_dir *apk_db_dir_ref(struct apk_database *db,
|
|
|
|
struct apk_db_dir *dir,
|
|
|
|
int create_dir)
|
|
|
|
{
|
|
|
|
if (dir->refs == 0) {
|
|
|
|
if (dir->parent != NULL)
|
|
|
|
apk_db_dir_ref(db, dir->parent, create_dir);
|
|
|
|
db->installed.stats.dirs++;
|
2008-04-22 06:04:20 +00:00
|
|
|
if (create_dir && dir->mode) {
|
2008-04-17 14:09:13 +00:00
|
|
|
mkdir(dir->dirname, dir->mode);
|
2008-04-22 06:04:20 +00:00
|
|
|
chown(dir->dirname, dir->uid, dir->gid);
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
dir->refs++;
|
|
|
|
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void apk_db_dir_unref(struct apk_database *db, struct apk_db_dir *dir)
|
|
|
|
{
|
|
|
|
dir->refs--;
|
|
|
|
if (dir->refs > 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
db->installed.stats.dirs--;
|
|
|
|
rmdir(dir->dirname);
|
|
|
|
|
|
|
|
if (dir->parent != NULL)
|
|
|
|
apk_db_dir_unref(db, dir->parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct apk_db_dir *apk_db_dir_get(struct apk_database *db,
|
|
|
|
apk_blob_t name)
|
|
|
|
{
|
|
|
|
struct apk_db_dir *dir;
|
|
|
|
apk_blob_t bparent;
|
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--;
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
dir = (struct apk_db_dir *) apk_hash_get(&db->installed.dirs, name);
|
2008-04-17 14:09:13 +00:00
|
|
|
if (dir != NULL)
|
|
|
|
return dir;
|
|
|
|
|
|
|
|
dir = calloc(1, sizeof(*dir) + name.len + 1);
|
|
|
|
memcpy(dir->dirname, name.ptr, name.len);
|
|
|
|
dir->dirname[name.len] = 0;
|
|
|
|
apk_hash_insert(&db->installed.dirs, dir);
|
|
|
|
|
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))
|
2008-04-17 14:09:13 +00:00
|
|
|
dir->parent = apk_db_dir_get(db, bparent);
|
2008-04-21 16:30:10 +00:00
|
|
|
else
|
|
|
|
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] == '-' &&
|
|
|
|
strcmp(&db->protected_paths->item[i][1], dir->dirname) == 0)
|
|
|
|
dir->flags &= ~APK_DBDIRF_PROTECTED;
|
|
|
|
else if (strcmp(db->protected_paths->item[i], dir->dirname) == 0)
|
|
|
|
dir->flags |= APK_DBDIRF_PROTECTED;
|
|
|
|
}
|
|
|
|
|
2008-04-17 14:09:13 +00:00
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct apk_db_file *apk_db_file_new(struct apk_db_dir *dir,
|
|
|
|
apk_blob_t name,
|
|
|
|
struct hlist_node **after)
|
|
|
|
{
|
|
|
|
struct apk_db_file *file;
|
|
|
|
|
|
|
|
file = calloc(1, sizeof(*file) + name.len + 1);
|
|
|
|
hlist_add_after(&file->dir_files_list, after);
|
|
|
|
file->dir = dir;
|
|
|
|
memcpy(file->filename, name.ptr, name.len);
|
|
|
|
file->filename[name.len] = 0;
|
|
|
|
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void apk_db_file_set_owner(struct apk_database *db,
|
|
|
|
struct apk_db_file *file,
|
|
|
|
struct apk_package *owner,
|
|
|
|
int create_dir,
|
|
|
|
struct hlist_node **after)
|
|
|
|
{
|
2008-04-22 08:16:26 +00:00
|
|
|
if (file->owner != NULL) {
|
|
|
|
hlist_del(&file->pkg_files_list, &file->owner->owned_files);
|
|
|
|
} else {
|
|
|
|
db->installed.stats.files++;
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
file->dir = apk_db_dir_ref(db, file->dir, create_dir);
|
|
|
|
file->owner = owner;
|
|
|
|
hlist_add_after(&file->pkg_files_list, after);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct apk_db_file *apk_db_file_get(struct apk_database *db,
|
|
|
|
apk_blob_t name,
|
|
|
|
struct install_ctx *ctx)
|
|
|
|
{
|
|
|
|
struct apk_db_dir *dir;
|
|
|
|
struct apk_db_file *file;
|
|
|
|
struct hlist_node *cur;
|
|
|
|
apk_blob_t bdir, bfile;
|
|
|
|
|
|
|
|
dir = NULL;
|
2008-04-21 16:30:10 +00:00
|
|
|
if (!apk_blob_rsplit(name, '/', &bdir, &bfile)) {
|
|
|
|
dir = apk_db_dir_get(db, APK_BLOB_NULL);
|
|
|
|
bfile = name;
|
|
|
|
} else if (ctx != NULL && ctx->dircache != NULL) {
|
2008-04-17 14:09:13 +00:00
|
|
|
dir = ctx->dircache;
|
|
|
|
if (strncmp(dir->dirname, bdir.ptr, bdir.len) != 0 ||
|
|
|
|
dir->dirname[bdir.len] != 0)
|
|
|
|
dir = NULL;
|
|
|
|
}
|
2008-04-21 16:30:10 +00:00
|
|
|
if (dir == NULL)
|
2008-04-17 14:09:13 +00:00
|
|
|
dir = apk_db_dir_get(db, bdir);
|
2008-04-21 16:30:10 +00:00
|
|
|
if (ctx != NULL && dir != ctx->dircache) {
|
|
|
|
ctx->dircache = dir;
|
2008-04-22 08:16:26 +00:00
|
|
|
ctx->file_dir_node = hlist_tail_ptr(&dir->files);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hlist_for_each_entry(file, cur, &dir->files, dir_files_list) {
|
|
|
|
if (strncmp(file->filename, bfile.ptr, bfile.len) == 0 &&
|
|
|
|
file->filename[bfile.len] == 0)
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
file = apk_db_file_new(dir, bfile, ctx->file_dir_node);
|
|
|
|
ctx->file_dir_node = &file->dir_files_list.next;
|
|
|
|
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
2008-11-27 14:59:04 +00:00
|
|
|
static int apk_db_read_fdb(struct apk_database *db, struct apk_istream *is)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
struct apk_package *pkg = NULL;
|
|
|
|
struct apk_db_dir *dir = NULL;
|
|
|
|
struct apk_db_file *file = NULL;
|
|
|
|
struct hlist_node **file_dir_node = NULL;
|
|
|
|
struct hlist_node **file_pkg_node = NULL;
|
|
|
|
|
|
|
|
char buf[1024];
|
|
|
|
apk_blob_t l, r;
|
|
|
|
csum_t csum;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
r = APK_BLOB_PTR_LEN(buf, 0);
|
|
|
|
while (1) {
|
2008-11-27 14:59:04 +00:00
|
|
|
n = is->read(is, &r.ptr[r.len], sizeof(buf) - r.len);
|
2008-04-17 14:09:13 +00:00
|
|
|
if (n <= 0)
|
|
|
|
break;
|
|
|
|
r.len += n;
|
|
|
|
|
|
|
|
while (apk_blob_splitstr(r, "\n", &l, &r)) {
|
|
|
|
n = l.ptr[0];
|
|
|
|
l.ptr++;
|
|
|
|
l.len--;
|
|
|
|
switch (n) {
|
|
|
|
case 'P':
|
|
|
|
if (apk_hexdump_parse(APK_BLOB_BUF(csum), l)) {
|
|
|
|
apk_error("Not a valid checksum");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
pkg = apk_db_get_pkg(db, csum);
|
|
|
|
if (pkg == NULL) {
|
|
|
|
apk_error("Package '%.*s' is installed, but not in any repository",
|
|
|
|
l.len, l.ptr);
|
|
|
|
return -1;
|
|
|
|
}
|
2008-11-27 18:25:01 +00:00
|
|
|
if (!list_hashed(&pkg->installed_pkgs_list)) {
|
2008-04-17 14:09:13 +00:00
|
|
|
db->installed.stats.packages++;
|
2008-11-27 18:25:01 +00:00
|
|
|
list_add_tail(&pkg->installed_pkgs_list, &db->installed.packages);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
dir = NULL;
|
|
|
|
file_dir_node = NULL;
|
2008-04-22 08:16:26 +00:00
|
|
|
file_pkg_node = hlist_tail_ptr(&pkg->owned_files);
|
2008-04-17 14:09:13 +00:00
|
|
|
break;
|
|
|
|
case 'D':
|
|
|
|
if (pkg == NULL) {
|
|
|
|
apk_error("FDB directory entry before package entry");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
dir = apk_db_dir_get(db, l);
|
2008-04-22 08:16:26 +00:00
|
|
|
file_dir_node = hlist_tail_ptr(&dir->files);
|
2008-04-17 14:09:13 +00:00
|
|
|
break;
|
|
|
|
case 'F':
|
|
|
|
if (dir == NULL) {
|
|
|
|
apk_error("FDB file entry before directory entry");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
file = apk_db_file_new(dir, l, file_dir_node);
|
|
|
|
apk_db_file_set_owner(db, file, pkg, FALSE, file_pkg_node);
|
|
|
|
file_dir_node = &file->dir_files_list.next;
|
|
|
|
file_pkg_node = &file->pkg_files_list.next;
|
|
|
|
break;
|
2008-11-14 12:26:59 +00:00
|
|
|
case 'C':
|
|
|
|
if (file == NULL) {
|
|
|
|
apk_error("FDB checksum entry before file entry");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (apk_hexdump_parse(APK_BLOB_BUF(file->csum), l)) {
|
|
|
|
apk_error("Not a valid checksum");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
2008-04-17 14:09:13 +00:00
|
|
|
default:
|
|
|
|
apk_error("FDB entry '%c' unsupported", n);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(&buf[0], r.ptr, r.len);
|
|
|
|
r = APK_BLOB_PTR_LEN(buf, r.len);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int apk_db_write_fdb(struct apk_database *db, int fd)
|
|
|
|
{
|
|
|
|
struct apk_package *pkg;
|
|
|
|
struct apk_db_dir *dir;
|
|
|
|
struct apk_db_file *file;
|
2008-11-27 18:25:01 +00:00
|
|
|
struct hlist_node *c2;
|
2008-04-17 14:09:13 +00:00
|
|
|
char buf[1024];
|
|
|
|
int n;
|
|
|
|
|
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
|
|
|
n = 0;
|
|
|
|
buf[n++] = 'P';
|
|
|
|
n += apk_hexdump_format(sizeof(buf)-n, &buf[n],
|
|
|
|
APK_BLOB_BUF(pkg->csum));
|
|
|
|
buf[n++] = '\n';
|
2008-11-11 07:00:10 +00:00
|
|
|
if (write(fd, buf, n) != n)
|
|
|
|
return -1;
|
|
|
|
n = 0;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
dir = NULL;
|
|
|
|
hlist_for_each_entry(file, c2, &pkg->owned_files, pkg_files_list) {
|
|
|
|
if (file->owner == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (dir != file->dir) {
|
|
|
|
n += snprintf(&buf[n], sizeof(buf)-n,
|
|
|
|
"D%s\n",
|
|
|
|
file->dir->dirname);
|
|
|
|
dir = file->dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
n += snprintf(&buf[n], sizeof(buf)-n,
|
|
|
|
"F%s\n",
|
|
|
|
file->filename);
|
2008-11-14 12:26:59 +00:00
|
|
|
if (csum_valid(file->csum)) {
|
|
|
|
n += snprintf(&buf[n], sizeof(buf)-n, "C");
|
|
|
|
n += apk_hexdump_format(sizeof(buf)-n, &buf[n],
|
|
|
|
APK_BLOB_BUF(file->csum));
|
|
|
|
n += snprintf(&buf[n], sizeof(buf)-n, "\n");
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-11-11 07:00:10 +00:00
|
|
|
if (write(fd, buf, n) != n)
|
|
|
|
return -1;
|
2008-04-17 14:09:13 +00:00
|
|
|
n = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct apk_script_header {
|
|
|
|
csum_t csum;
|
|
|
|
unsigned int type;
|
|
|
|
unsigned int size;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int apk_db_write_scriptdb(struct apk_database *db, int fd)
|
|
|
|
{
|
|
|
|
struct apk_package *pkg;
|
|
|
|
struct apk_script *script;
|
|
|
|
struct apk_script_header hdr;
|
2008-11-27 18:25:01 +00:00
|
|
|
struct hlist_node *c2;
|
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) {
|
|
|
|
memcpy(hdr.csum, pkg->csum, sizeof(csum_t));
|
|
|
|
hdr.type = script->type;
|
|
|
|
hdr.size = script->size;
|
|
|
|
|
|
|
|
write(fd, &hdr, sizeof(hdr));
|
|
|
|
write(fd, script->script, script->size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-07 15:11:08 +00:00
|
|
|
static int apk_db_read_scriptdb(struct apk_database *db, struct apk_istream *is)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
struct apk_package *pkg;
|
|
|
|
struct apk_script_header hdr;
|
|
|
|
|
2008-11-07 15:11:08 +00:00
|
|
|
while (is->read(is, &hdr, sizeof(hdr)) == sizeof(hdr)) {
|
2008-04-17 14:09:13 +00:00
|
|
|
pkg = apk_db_get_pkg(db, hdr.csum);
|
2008-11-27 18:25:01 +00:00
|
|
|
if (pkg != NULL)
|
|
|
|
apk_pkg_add_script(pkg, is, hdr.type, hdr.size);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-21 16:30:10 +00:00
|
|
|
int apk_db_create(const char *root)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2008-04-21 16:30:10 +00:00
|
|
|
apk_blob_t deps = APK_BLOB_STR("busybox, alpine-baselayout, "
|
2008-04-22 08:16:26 +00:00
|
|
|
"apk-tools, alpine-conf\n");
|
2008-04-21 16:30:10 +00:00
|
|
|
int fd;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-04-22 08:16:26 +00:00
|
|
|
fchdir(apk_cwd_fd);
|
|
|
|
chdir(root);
|
2008-04-21 16:30:10 +00:00
|
|
|
|
2008-04-22 08:16:26 +00:00
|
|
|
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", 0600);
|
2008-04-21 16:30:10 +00:00
|
|
|
if (fd < 0)
|
|
|
|
return -1;
|
|
|
|
write(fd, deps.ptr, deps.len);
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return 0;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2008-11-14 12:26:59 +00:00
|
|
|
static int apk_db_read_state(struct apk_database *db)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2008-11-07 15:11:08 +00:00
|
|
|
struct apk_istream *is;
|
2008-11-27 14:59:04 +00:00
|
|
|
apk_blob_t blob;
|
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
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
2008-11-27 14:59:04 +00:00
|
|
|
blob = apk_blob_from_file("var/lib/apk/world");
|
|
|
|
if (APK_BLOB_IS_NULL(blob)) {
|
2008-10-26 11:35:34 +00:00
|
|
|
apk_error("Please run 'apk create' to initialize root");
|
2008-04-21 16:30:10 +00:00
|
|
|
return -1;
|
2008-10-26 11:35:34 +00:00
|
|
|
}
|
2008-11-27 14:59:04 +00:00
|
|
|
apk_deps_parse(db, &db->world, blob);
|
|
|
|
free(blob.ptr);
|
2008-04-21 16:30:10 +00:00
|
|
|
|
2008-11-27 14:59:04 +00:00
|
|
|
is = apk_istream_from_file("var/lib/apk/files");
|
|
|
|
if (is != NULL) {
|
|
|
|
apk_db_read_fdb(db, is);
|
|
|
|
is->close(is);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2008-11-07 15:11:08 +00:00
|
|
|
is = apk_istream_from_file("var/lib/apk/scripts");
|
|
|
|
if (is != NULL) {
|
|
|
|
apk_db_read_scriptdb(db, is);
|
|
|
|
is->close(is);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
blob = apk_blob_from_file("etc/apk/repositories");
|
|
|
|
if (!APK_BLOB_IS_NULL(blob)) {
|
|
|
|
apk_blob_for_each_segment(blob, "\n", apk_db_add_repository, db);
|
|
|
|
free(blob.ptr);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2008-04-21 16:30:10 +00:00
|
|
|
int apk_db_open(struct apk_database *db, const char *root)
|
|
|
|
{
|
2008-11-14 12:26:59 +00:00
|
|
|
apk_blob_t dirs;
|
|
|
|
|
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);
|
2008-11-27 18:25:01 +00:00
|
|
|
list_init(&db->installed.packages);
|
2008-04-21 16:30:10 +00:00
|
|
|
|
|
|
|
if (root != NULL) {
|
|
|
|
db->root = strdup(root);
|
|
|
|
db->root_fd = open(root, O_RDONLY);
|
|
|
|
if (db->root_fd < 0) {
|
2008-10-26 11:35:34 +00:00
|
|
|
apk_error("%s: %s", root, strerror(errno));
|
2008-04-21 16:30:10 +00:00
|
|
|
free(db->root);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2008-11-06 14:58:58 +00:00
|
|
|
if (apk_repository != NULL)
|
2008-11-27 18:25:01 +00:00
|
|
|
apk_db_add_repository(db, APK_BLOB_STR(apk_repository));
|
2008-04-21 16:30:10 +00:00
|
|
|
|
2008-11-14 12:26:59 +00:00
|
|
|
dirs = APK_BLOB_STR("etc:-etc/init.d");
|
|
|
|
apk_blob_for_each_segment(dirs, ":", add_protected_path, db);
|
|
|
|
|
|
|
|
return apk_db_read_state(db);
|
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;
|
|
|
|
};
|
|
|
|
|
2008-04-21 16:30:10 +00:00
|
|
|
static int apk_db_write_config(struct apk_database *db)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
char buf[1024];
|
|
|
|
int n, fd;
|
|
|
|
|
|
|
|
if (db->root == NULL)
|
2008-04-21 16:30:10 +00:00
|
|
|
return 0;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
2008-04-22 08:16:26 +00:00
|
|
|
fchdir(db->root_fd);
|
|
|
|
|
|
|
|
fd = creat("var/lib/apk/world", 0600);
|
2008-04-17 14:09:13 +00:00
|
|
|
if (fd < 0)
|
|
|
|
return -1;
|
|
|
|
n = apk_deps_format(buf, sizeof(buf), db->world);
|
|
|
|
write(fd, buf, n);
|
|
|
|
close(fd);
|
|
|
|
|
2008-04-22 08:16:26 +00:00
|
|
|
fd = creat("var/lib/apk/files", 0600);
|
2008-04-17 14:09:13 +00:00
|
|
|
if (fd < 0)
|
|
|
|
return -1;
|
|
|
|
apk_db_write_fdb(db, fd);
|
|
|
|
close(fd);
|
|
|
|
|
2008-04-22 08:16:26 +00:00
|
|
|
fd = creat("var/lib/apk/scripts", 0600);
|
2008-04-17 14:09:13 +00:00
|
|
|
if (fd < 0)
|
|
|
|
return -1;
|
|
|
|
apk_db_write_scriptdb(db, fd);
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
apk_hash_free(&db->available.names);
|
|
|
|
apk_hash_free(&db->available.packages);
|
|
|
|
apk_hash_free(&db->installed.dirs);
|
2008-04-21 16:30:10 +00:00
|
|
|
if (db->root != NULL) {
|
|
|
|
close(db->root_fd);
|
2008-04-17 14:09:13 +00:00
|
|
|
free(db->root);
|
2008-04-21 16:30:10 +00:00
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void apk_db_pkg_add(struct apk_database *db, struct apk_package *pkg)
|
|
|
|
{
|
|
|
|
struct apk_package *idb;
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
idb = apk_hash_get(&db->available.packages, APK_BLOB_BUF(pkg->csum));
|
2008-04-17 14:09:13 +00:00
|
|
|
if (idb == NULL) {
|
|
|
|
pkg->id = db->pkg_id++;
|
|
|
|
apk_hash_insert(&db->available.packages, pkg);
|
|
|
|
*apk_package_array_add(&pkg->name->pkgs) = pkg;
|
|
|
|
} else {
|
|
|
|
idb->repos |= pkg->repos;
|
|
|
|
apk_pkg_free(pkg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct apk_package *apk_db_get_pkg(struct apk_database *db, csum_t sum)
|
|
|
|
{
|
2008-11-27 18:25:01 +00:00
|
|
|
return apk_hash_get(&db->available.packages,
|
|
|
|
APK_BLOB_PTR_LEN((void*) sum, sizeof(csum_t)));
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int apk_db_pkg_add_file(struct apk_database *db, const char *file)
|
|
|
|
{
|
|
|
|
struct apk_package *info;
|
|
|
|
|
|
|
|
info = apk_pkg_read(db, file);
|
|
|
|
if (info == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
apk_db_pkg_add(db, info);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
int apk_db_index_read(struct apk_database *db, struct apk_istream *is, int repo)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
|
|
|
struct apk_package *pkg;
|
|
|
|
char buf[1024];
|
|
|
|
int n;
|
|
|
|
apk_blob_t l, r;
|
|
|
|
|
|
|
|
r = APK_BLOB_PTR_LEN(buf, 0);
|
|
|
|
while (1) {
|
2008-11-27 18:25:01 +00:00
|
|
|
n = is->read(is, &r.ptr[r.len], sizeof(buf) - r.len);
|
2008-04-17 14:09:13 +00:00
|
|
|
if (n <= 0)
|
|
|
|
break;
|
|
|
|
r.len += n;
|
|
|
|
|
|
|
|
while (apk_blob_splitstr(r, "\n\n", &l, &r)) {
|
|
|
|
pkg = apk_pkg_parse_index_entry(db, l);
|
|
|
|
if (pkg != NULL) {
|
|
|
|
pkg->repos |= BIT(repo);
|
|
|
|
apk_db_pkg_add(db, pkg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(&buf[0], r.ptr, r.len);
|
|
|
|
r = APK_BLOB_PTR_LEN(buf, r.len);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int write_index_entry(apk_hash_item item, void *ctx)
|
|
|
|
{
|
|
|
|
int fd = (int) ctx;
|
|
|
|
char buf[1024];
|
|
|
|
apk_blob_t blob;
|
|
|
|
|
|
|
|
blob = apk_pkg_format_index_entry(item, sizeof(buf), buf);
|
|
|
|
if (blob.ptr)
|
|
|
|
write(fd, blob.ptr, blob.len);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void apk_db_index_write(struct apk_database *db, int fd)
|
|
|
|
{
|
|
|
|
apk_hash_foreach(&db->available.packages, write_index_entry, (void *) fd);
|
|
|
|
}
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
int apk_db_add_repository(apk_database_t _db, apk_blob_t repository)
|
2008-04-17 14:09:13 +00:00
|
|
|
{
|
2008-11-27 18:25:01 +00:00
|
|
|
struct apk_database *db = _db.db;
|
|
|
|
struct apk_istream *is;
|
2008-04-17 14:09:13 +00:00
|
|
|
char tmp[256];
|
2008-11-27 18:25:01 +00:00
|
|
|
int r;
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
if (db->num_repos >= APK_MAX_REPOS)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
r = db->num_repos++;
|
|
|
|
db->repos[r] = (struct apk_repository){
|
2008-11-27 18:25:01 +00:00
|
|
|
.url = apk_blob_cstr(repository)
|
2008-04-17 14:09:13 +00:00
|
|
|
};
|
|
|
|
|
2008-11-27 18:25:01 +00:00
|
|
|
snprintf(tmp, sizeof(tmp), "%s/APK_INDEX", db->repos[r].url);
|
|
|
|
is = apk_istream_from_file(tmp);
|
|
|
|
if (is == NULL) {
|
2008-04-17 14:09:13 +00:00
|
|
|
apk_error("Failed to open index file %s", tmp);
|
|
|
|
return -1;
|
|
|
|
}
|
2008-11-27 18:25:01 +00:00
|
|
|
apk_db_index_read(db, is, r);
|
|
|
|
is->close(is);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int apk_db_recalculate_and_commit(struct apk_database *db)
|
|
|
|
{
|
|
|
|
struct apk_state *state;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
state = apk_state_new(db);
|
|
|
|
r = apk_state_satisfy_deps(state, db->world);
|
|
|
|
if (r == 0) {
|
|
|
|
r = apk_state_commit(state, db);
|
|
|
|
if (r != 0) {
|
|
|
|
apk_error("Failed to commit changes");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
apk_db_write_config(db);
|
|
|
|
|
|
|
|
apk_message("OK: %d packages, %d dirs, %d files",
|
|
|
|
db->installed.stats.packages,
|
|
|
|
db->installed.stats.dirs,
|
|
|
|
db->installed.stats.files);
|
|
|
|
} else {
|
|
|
|
apk_error("Failed to build installation graph");
|
|
|
|
}
|
|
|
|
apk_state_unref(state);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
struct apk_package *pkg = ctx->pkg;
|
|
|
|
apk_blob_t name = APK_BLOB_STR(ae->name);
|
2008-04-22 06:04:20 +00:00
|
|
|
struct apk_db_dir *dir;
|
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 */
|
|
|
|
if (strcmp(ae->name, ".INSTALL") != 0)
|
|
|
|
return 0;
|
|
|
|
type = APK_SCRIPT_GENERIC;
|
|
|
|
} 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
|
|
|
|
2008-11-07 11:05:55 +00:00
|
|
|
if (type == APK_SCRIPT_GENERIC ||
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2008-11-07 11:05:55 +00:00
|
|
|
/* Installable entry */
|
2008-04-17 14:09:13 +00:00
|
|
|
if (ctx->file_pkg_node == NULL)
|
2008-04-22 08:16:26 +00:00
|
|
|
ctx->file_pkg_node = hlist_tail_ptr(&pkg->owned_files);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
if (!S_ISDIR(ae->mode)) {
|
|
|
|
file = apk_db_file_get(db, name, ctx);
|
|
|
|
if (file == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (file->owner != NULL &&
|
2008-04-22 08:16:26 +00:00
|
|
|
file->owner->name != pkg->name &&
|
|
|
|
strcmp(file->owner->name->name, "busybox") != 0) {
|
2008-04-17 14:09:13 +00:00
|
|
|
apk_error("%s: Trying to overwrite %s owned by %s.\n",
|
|
|
|
pkg->name->name, ae->name,
|
|
|
|
file->owner->name->name);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
apk_db_file_set_owner(db, file, pkg, TRUE, ctx->file_pkg_node);
|
|
|
|
ctx->file_pkg_node = &file->pkg_files_list.next;
|
|
|
|
|
|
|
|
if (strncmp(file->filename, ".keep_", 6) == 0)
|
|
|
|
return 0;
|
|
|
|
|
2008-11-14 12:26:59 +00:00
|
|
|
if ((file->dir->flags & APK_DBDIRF_PROTECTED) &&
|
|
|
|
csum_valid(file->csum) &&
|
|
|
|
apk_file_get_info(ae->name, &fi) == 0 &&
|
|
|
|
memcmp(file->csum, fi.csum, sizeof(csum_t)) != 0) {
|
|
|
|
/* Protected file, which is modified locally.
|
|
|
|
* Extract to separate place */
|
|
|
|
snprintf(alt_name, sizeof(alt_name),
|
|
|
|
"%s/%s.apk-new",
|
|
|
|
dir->dirname, file->filename);
|
|
|
|
r = apk_archive_entry_extract(ae, is, alt_name);
|
|
|
|
} else {
|
|
|
|
r = apk_archive_entry_extract(ae, is, NULL);
|
|
|
|
}
|
|
|
|
memcpy(file->csum, ae->csum, sizeof(csum_t));
|
2008-04-17 14:09:13 +00:00
|
|
|
} else {
|
|
|
|
if (name.ptr[name.len-1] == '/')
|
|
|
|
name.len--;
|
2008-04-22 06:04:20 +00:00
|
|
|
dir = apk_db_dir_get(db, name);
|
|
|
|
dir->mode = ae->mode & 07777;
|
|
|
|
dir->uid = ae->uid;
|
|
|
|
dir->gid = ae->gid;
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void apk_db_purge_pkg(struct apk_database *db,
|
|
|
|
struct apk_package *pkg)
|
|
|
|
{
|
|
|
|
struct apk_db_file *file;
|
|
|
|
struct hlist_node *c, *n;
|
|
|
|
char fn[1024];
|
|
|
|
|
|
|
|
hlist_for_each_entry_safe(file, c, n, &pkg->owned_files, pkg_files_list) {
|
|
|
|
file->owner = NULL;
|
|
|
|
snprintf(fn, sizeof(fn), "%s/%s",
|
|
|
|
file->dir->dirname,
|
|
|
|
file->filename);
|
|
|
|
unlink(fn);
|
|
|
|
|
|
|
|
apk_db_dir_unref(db, file->dir);
|
2008-04-22 08:16:26 +00:00
|
|
|
__hlist_del(c, &pkg->owned_files.first);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
db->installed.stats.files--;
|
|
|
|
}
|
|
|
|
db->installed.stats.packages--;
|
2008-11-27 18:25:01 +00:00
|
|
|
list_del(&pkg->installed_pkgs_list);
|
2008-04-17 14:09:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int apk_db_install_pkg(struct apk_database *db,
|
|
|
|
struct apk_package *oldpkg,
|
|
|
|
struct apk_package *newpkg)
|
|
|
|
{
|
2008-11-07 15:11:08 +00:00
|
|
|
struct apk_bstream *bs;
|
2008-04-17 14:09:13 +00:00
|
|
|
struct install_ctx ctx;
|
|
|
|
csum_t csum;
|
|
|
|
char file[256];
|
|
|
|
int fd, r;
|
|
|
|
|
2008-04-21 16:30:10 +00:00
|
|
|
if (fchdir(db->root_fd) < 0)
|
2008-04-17 14:09:13 +00:00
|
|
|
return errno;
|
|
|
|
|
|
|
|
/* Purge the old package if there */
|
|
|
|
if (oldpkg != NULL) {
|
|
|
|
if (newpkg == NULL) {
|
2008-04-22 08:16:26 +00:00
|
|
|
r = apk_pkg_run_script(oldpkg, db->root_fd,
|
2008-04-17 14:09:13 +00:00
|
|
|
APK_SCRIPT_PRE_DEINSTALL);
|
|
|
|
if (r != 0)
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
apk_db_purge_pkg(db, oldpkg);
|
|
|
|
if (newpkg == NULL) {
|
2008-04-22 08:16:26 +00:00
|
|
|
apk_pkg_run_script(oldpkg, db->root_fd,
|
2008-04-17 14:09:13 +00:00
|
|
|
APK_SCRIPT_POST_DEINSTALL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Install the new stuff */
|
|
|
|
snprintf(file, sizeof(file),
|
2008-04-21 16:30:10 +00:00
|
|
|
"%s/%s-%s.apk",
|
2008-04-17 14:09:13 +00:00
|
|
|
db->repos[0].url, newpkg->name->name, newpkg->version);
|
|
|
|
|
|
|
|
fd = open(file, O_RDONLY);
|
2008-10-26 11:35:34 +00:00
|
|
|
if (fd < 0) {
|
|
|
|
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
|
|
|
|
|
|
|
fcntl(fd, F_SETFD, FD_CLOEXEC);
|
|
|
|
|
2008-11-07 15:11:08 +00:00
|
|
|
bs = apk_bstream_from_fd(fd);
|
|
|
|
if (bs == NULL)
|
2008-04-17 14:09:13 +00:00
|
|
|
goto err_close;
|
|
|
|
|
|
|
|
ctx = (struct install_ctx) {
|
|
|
|
.db = db,
|
|
|
|
.pkg = newpkg,
|
|
|
|
.script = (oldpkg == NULL) ?
|
|
|
|
APK_SCRIPT_PRE_INSTALL : APK_SCRIPT_PRE_UPGRADE,
|
|
|
|
};
|
2008-11-07 15:11:08 +00:00
|
|
|
if (apk_parse_tar_gz(bs, apk_db_install_archive_entry, &ctx) != 0)
|
2008-04-17 14:09:13 +00:00
|
|
|
goto err_close;
|
|
|
|
|
2008-11-07 15:11:08 +00:00
|
|
|
bs->close(bs, csum);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
db->installed.stats.packages++;
|
2008-11-27 18:25:01 +00:00
|
|
|
list_add_tail(&newpkg->installed_pkgs_list, &db->installed.packages);
|
2008-04-17 14:09:13 +00:00
|
|
|
|
|
|
|
if (memcmp(csum, newpkg->csum, sizeof(csum)) != 0)
|
|
|
|
apk_warning("%s-%s: checksum does not match",
|
|
|
|
newpkg->name->name, newpkg->version);
|
|
|
|
|
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
|
|
|
} else if (apk_quiet) {
|
|
|
|
write(STDOUT_FILENO, ".", 1);
|
|
|
|
}
|
2008-04-17 14:09:13 +00:00
|
|
|
return r;
|
|
|
|
|
|
|
|
err_close:
|
|
|
|
close(fd);
|
|
|
|
return -1;
|
|
|
|
}
|