2006-07-02 19:47:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2001-07-13 18:35:24 +00:00
|
|
|
/*
|
2006-08-03 15:41:12 +00:00
|
|
|
* mini dpkg implementation for busybox.
|
|
|
|
* this is not meant as a replacement for dpkg
|
2001-07-13 18:35:24 +00:00
|
|
|
*
|
2006-08-03 15:41:12 +00:00
|
|
|
* written by glenn mcgrath with the help of others
|
|
|
|
* copyright (c) 2001 by glenn mcgrath
|
2004-03-15 08:29:22 +00:00
|
|
|
*
|
2006-08-03 15:41:12 +00:00
|
|
|
* started life as a busybox implementation of udpkg
|
2001-07-13 18:35:24 +00:00
|
|
|
*
|
2006-08-03 15:41:12 +00:00
|
|
|
* licensed under gplv2 or later, see file license in this tarball for details.
|
2001-07-13 18:35:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2006-08-03 15:41:12 +00:00
|
|
|
* known difference between busybox dpkg and the official dpkg that i don't
|
2001-07-13 18:35:24 +00:00
|
|
|
* consider important, its worth keeping a note of differences anyway, just to
|
|
|
|
* make it easier to maintain.
|
2006-08-03 15:41:12 +00:00
|
|
|
* - the first value for the confflile: field isnt placed on a new line.
|
|
|
|
* - when installing a package the status: field is placed at the end of the
|
|
|
|
* section, rather than just after the package: field.
|
2001-07-13 18:35:24 +00:00
|
|
|
*
|
2006-08-03 15:41:12 +00:00
|
|
|
* bugs that need to be fixed
|
2001-10-25 14:49:48 +00:00
|
|
|
* - (unknown, please let me know when you find any)
|
|
|
|
*
|
2001-07-13 18:35:24 +00:00
|
|
|
*/
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2006-08-03 15:41:12 +00:00
|
|
|
#include "unarchive.h"
|
2001-02-10 02:05:24 +00:00
|
|
|
|
2006-08-03 15:41:12 +00:00
|
|
|
/* note: if you vary hash_prime sizes be aware,
|
|
|
|
* 1) tweaking these will have a big effect on how much memory this program uses.
|
|
|
|
* 2) for computational efficiency these hash tables should be at least 20%
|
2001-10-25 14:49:48 +00:00
|
|
|
* larger than the maximum number of elements stored in it.
|
2006-08-03 15:41:12 +00:00
|
|
|
* 3) all _hash_prime's must be a prime number or chaos is assured, if your looking
|
2001-10-25 14:49:48 +00:00
|
|
|
* for a prime, try http://www.utm.edu/research/primes/lists/small/10000.txt
|
2006-08-03 15:41:12 +00:00
|
|
|
* 4) if you go bigger than 15 bits you may get into trouble (untested) as its
|
2006-12-22 18:32:40 +00:00
|
|
|
* sometimes cast to an unsigned, if you go to 16 bit you will overlap
|
2001-10-25 14:49:48 +00:00
|
|
|
* int's and chaos is assured, 16381 is the max prime for 14 bit field
|
|
|
|
*/
|
|
|
|
|
2004-03-15 08:29:22 +00:00
|
|
|
/* NAME_HASH_PRIME, Stores package names and versions,
|
2001-10-25 14:49:48 +00:00
|
|
|
* I estimate it should be at least 50% bigger than PACKAGE_HASH_PRIME,
|
|
|
|
* as there a lot of duplicate version numbers */
|
|
|
|
#define NAME_HASH_PRIME 16381
|
|
|
|
|
|
|
|
/* PACKAGE_HASH_PRIME, Maximum number of unique packages,
|
|
|
|
* It must not be smaller than STATUS_HASH_PRIME,
|
|
|
|
* Currently only packages from status_hashtable are stored in here, but in
|
|
|
|
* future this may be used to store packages not only from a status file,
|
|
|
|
* but an available_hashtable, and even multiple packages files.
|
|
|
|
* Package can be stored more than once if they have different versions.
|
|
|
|
* e.g. The same package may have different versions in the status file
|
|
|
|
* and available file */
|
|
|
|
#define PACKAGE_HASH_PRIME 10007
|
|
|
|
typedef struct edge_s {
|
2007-04-13 23:22:58 +00:00
|
|
|
unsigned operator:4; /* was:3 */
|
2006-12-22 18:32:40 +00:00
|
|
|
unsigned type:4;
|
2007-04-13 23:22:58 +00:00
|
|
|
unsigned name:16; /* was:14 */
|
|
|
|
unsigned version:16; /* was:14 */
|
2001-10-25 14:49:48 +00:00
|
|
|
} edge_t;
|
|
|
|
|
|
|
|
typedef struct common_node_s {
|
2007-04-13 23:22:58 +00:00
|
|
|
unsigned name:16; /* was:14 */
|
|
|
|
unsigned version:16; /* was:14 */
|
|
|
|
unsigned num_of_edges:16; /* was:14 */
|
2001-10-25 14:49:48 +00:00
|
|
|
edge_t **edge;
|
|
|
|
} common_node_t;
|
|
|
|
|
|
|
|
/* Currently it doesnt store packages that have state-status of not-installed
|
|
|
|
* So it only really has to be the size of the maximum number of packages
|
2004-04-14 17:51:38 +00:00
|
|
|
* likely to be installed at any one time, so there is a bit of leeway here */
|
2001-10-25 14:49:48 +00:00
|
|
|
#define STATUS_HASH_PRIME 8191
|
|
|
|
typedef struct status_node_s {
|
2007-04-13 23:22:58 +00:00
|
|
|
unsigned package:16; /* was:14 */ /* has to fit PACKAGE_HASH_PRIME */
|
|
|
|
unsigned status:16; /* was:14 */ /* has to fit STATUS_HASH_PRIME */
|
2001-10-25 14:49:48 +00:00
|
|
|
} status_node_t;
|
2006-09-28 22:34:46 +00:00
|
|
|
|
|
|
|
/* Were statically declared here, but such a big bss is nommu-unfriendly */
|
|
|
|
static char **name_hashtable; /* [NAME_HASH_PRIME + 1] */
|
|
|
|
static common_node_t **package_hashtable; /* [PACKAGE_HASH_PRIME + 1] */
|
|
|
|
static status_node_t **status_hashtable; /* [STATUS_HASH_PRIME + 1] */
|
2001-10-25 14:49:48 +00:00
|
|
|
|
2004-04-14 17:51:38 +00:00
|
|
|
/* Even numbers are for 'extras', like ored dependencies or null */
|
2001-10-25 14:49:48 +00:00
|
|
|
enum edge_type_e {
|
|
|
|
EDGE_NULL = 0,
|
|
|
|
EDGE_PRE_DEPENDS = 1,
|
|
|
|
EDGE_OR_PRE_DEPENDS = 2,
|
|
|
|
EDGE_DEPENDS = 3,
|
|
|
|
EDGE_OR_DEPENDS = 4,
|
|
|
|
EDGE_REPLACES = 5,
|
|
|
|
EDGE_PROVIDES = 7,
|
|
|
|
EDGE_CONFLICTS = 9,
|
|
|
|
EDGE_SUGGESTS = 11,
|
|
|
|
EDGE_RECOMMENDS = 13,
|
|
|
|
EDGE_ENHANCES = 15
|
|
|
|
};
|
|
|
|
enum operator_e {
|
|
|
|
VER_NULL = 0,
|
|
|
|
VER_EQUAL = 1,
|
|
|
|
VER_LESS = 2,
|
|
|
|
VER_LESS_EQUAL = 3,
|
|
|
|
VER_MORE = 4,
|
|
|
|
VER_MORE_EQUAL = 5,
|
|
|
|
VER_ANY = 6
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct deb_file_s {
|
|
|
|
char *control_file;
|
|
|
|
char *filename;
|
2007-04-13 23:22:58 +00:00
|
|
|
unsigned package:16; /* was:14 */
|
2001-10-25 14:49:48 +00:00
|
|
|
} deb_file_t;
|
|
|
|
|
|
|
|
|
2006-12-22 18:32:40 +00:00
|
|
|
static void make_hash(const char *key, unsigned *start, unsigned *decrement, const int hash_prime)
|
2001-02-10 02:05:24 +00:00
|
|
|
{
|
2007-04-13 23:22:58 +00:00
|
|
|
unsigned long hash_num = key[0];
|
2001-10-25 14:49:48 +00:00
|
|
|
int len = strlen(key);
|
2001-10-25 14:26:05 +00:00
|
|
|
int i;
|
2001-07-13 18:35:24 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
/* Maybe i should have uses a "proper" hashing algorithm here instead
|
|
|
|
* of making one up myself, seems to be working ok though. */
|
2006-09-28 22:34:46 +00:00
|
|
|
for (i = 1; i < len; i++) {
|
2001-10-25 14:49:48 +00:00
|
|
|
/* shifts the ascii based value and adds it to previous value
|
|
|
|
* shift amount is mod 24 because long int is 32 bit and data
|
2004-04-14 17:51:38 +00:00
|
|
|
* to be shifted is 8, don't want to shift data to where it has
|
2001-10-25 14:49:48 +00:00
|
|
|
* no effect*/
|
2004-03-15 08:29:22 +00:00
|
|
|
hash_num += ((key[i] + key[i-1]) << ((key[i] * i) % 24));
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2006-12-22 18:32:40 +00:00
|
|
|
*start = (unsigned) hash_num % hash_prime;
|
|
|
|
*decrement = (unsigned) 1 + (hash_num % (hash_prime - 1));
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* this adds the key to the hash table */
|
2005-04-16 19:39:00 +00:00
|
|
|
static int search_name_hashtable(const char *key)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
2006-12-22 18:32:40 +00:00
|
|
|
unsigned probe_address = 0;
|
|
|
|
unsigned probe_decrement = 0;
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
make_hash(key, &probe_address, &probe_decrement, NAME_HASH_PRIME);
|
2006-09-28 22:34:46 +00:00
|
|
|
while (name_hashtable[probe_address] != NULL) {
|
2001-10-25 14:49:48 +00:00
|
|
|
if (strcmp(name_hashtable[probe_address], key) == 0) {
|
2006-09-28 22:35:42 +00:00
|
|
|
return probe_address;
|
2006-12-22 18:32:40 +00:00
|
|
|
}
|
|
|
|
probe_address -= probe_decrement;
|
|
|
|
if ((int)probe_address < 0) {
|
|
|
|
probe_address += NAME_HASH_PRIME;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
}
|
2006-08-03 15:41:12 +00:00
|
|
|
name_hashtable[probe_address] = xstrdup(key);
|
2006-09-28 22:35:42 +00:00
|
|
|
return probe_address;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* this DOESNT add the key to the hashtable
|
|
|
|
* TODO make it consistent with search_name_hashtable
|
|
|
|
*/
|
2006-12-22 18:32:40 +00:00
|
|
|
static unsigned search_status_hashtable(const char *key)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
2006-12-22 18:32:40 +00:00
|
|
|
unsigned probe_address = 0;
|
|
|
|
unsigned probe_decrement = 0;
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
make_hash(key, &probe_address, &probe_decrement, STATUS_HASH_PRIME);
|
2006-09-28 22:34:46 +00:00
|
|
|
while (status_hashtable[probe_address] != NULL) {
|
2001-10-25 14:49:48 +00:00
|
|
|
if (strcmp(key, name_hashtable[package_hashtable[status_hashtable[probe_address]->package]->name]) == 0) {
|
|
|
|
break;
|
2006-12-22 18:32:40 +00:00
|
|
|
}
|
|
|
|
probe_address -= probe_decrement;
|
|
|
|
if ((int)probe_address < 0) {
|
|
|
|
probe_address += STATUS_HASH_PRIME;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
}
|
2006-09-28 22:35:42 +00:00
|
|
|
return probe_address;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Need to rethink version comparison, maybe the official dpkg has something i can use ? */
|
2005-04-16 19:39:00 +00:00
|
|
|
static int version_compare_part(const char *version1, const char *version2)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
int upstream_len1 = 0;
|
|
|
|
int upstream_len2 = 0;
|
|
|
|
char *name1_char;
|
|
|
|
char *name2_char;
|
|
|
|
int len1 = 0;
|
|
|
|
int len2 = 0;
|
|
|
|
int tmp_int;
|
|
|
|
int ver_num1;
|
|
|
|
int ver_num2;
|
|
|
|
|
|
|
|
if (version1 == NULL) {
|
2006-08-03 15:41:12 +00:00
|
|
|
version1 = xstrdup("");
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
if (version2 == NULL) {
|
2006-08-03 15:41:12 +00:00
|
|
|
version2 = xstrdup("");
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
upstream_len1 = strlen(version1);
|
|
|
|
upstream_len2 = strlen(version2);
|
|
|
|
|
|
|
|
while ((len1 < upstream_len1) || (len2 < upstream_len2)) {
|
|
|
|
/* Compare non-digit section */
|
|
|
|
tmp_int = strcspn(&version1[len1], "0123456789");
|
2006-08-03 15:41:12 +00:00
|
|
|
name1_char = xstrndup(&version1[len1], tmp_int);
|
2001-10-25 14:49:48 +00:00
|
|
|
len1 += tmp_int;
|
|
|
|
tmp_int = strcspn(&version2[len2], "0123456789");
|
2006-08-03 15:41:12 +00:00
|
|
|
name2_char = xstrndup(&version2[len2], tmp_int);
|
2001-10-25 14:49:48 +00:00
|
|
|
len2 += tmp_int;
|
|
|
|
tmp_int = strcmp(name1_char, name2_char);
|
|
|
|
free(name1_char);
|
|
|
|
free(name2_char);
|
|
|
|
if (tmp_int != 0) {
|
2006-12-22 18:32:40 +00:00
|
|
|
return tmp_int;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Compare digits */
|
|
|
|
tmp_int = strspn(&version1[len1], "0123456789");
|
2006-08-03 15:41:12 +00:00
|
|
|
name1_char = xstrndup(&version1[len1], tmp_int);
|
2001-10-25 14:49:48 +00:00
|
|
|
len1 += tmp_int;
|
|
|
|
tmp_int = strspn(&version2[len2], "0123456789");
|
2006-08-03 15:41:12 +00:00
|
|
|
name2_char = xstrndup(&version2[len2], tmp_int);
|
2001-10-25 14:49:48 +00:00
|
|
|
len2 += tmp_int;
|
|
|
|
ver_num1 = atoi(name1_char);
|
|
|
|
ver_num2 = atoi(name2_char);
|
|
|
|
free(name1_char);
|
|
|
|
free(name2_char);
|
|
|
|
if (ver_num1 < ver_num2) {
|
2006-12-22 18:32:40 +00:00
|
|
|
return -1;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2006-12-22 18:32:40 +00:00
|
|
|
if (ver_num1 > ver_num2) {
|
|
|
|
return 1;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
}
|
2006-12-22 18:32:40 +00:00
|
|
|
return 0;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if ver1 < ver2 return -1,
|
|
|
|
* if ver1 = ver2 return 0,
|
|
|
|
* if ver1 > ver2 return 1,
|
|
|
|
*/
|
2006-12-22 18:32:40 +00:00
|
|
|
static int version_compare(const unsigned ver1, const unsigned ver2)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
char *ch_ver1 = name_hashtable[ver1];
|
|
|
|
char *ch_ver2 = name_hashtable[ver2];
|
|
|
|
|
|
|
|
char epoch1, epoch2;
|
|
|
|
char *deb_ver1, *deb_ver2;
|
|
|
|
char *ver1_ptr, *ver2_ptr;
|
|
|
|
char *upstream_ver1;
|
|
|
|
char *upstream_ver2;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
/* Compare epoch */
|
|
|
|
if (ch_ver1[1] == ':') {
|
|
|
|
epoch1 = ch_ver1[0];
|
|
|
|
ver1_ptr = strchr(ch_ver1, ':') + 1;
|
|
|
|
} else {
|
|
|
|
epoch1 = '0';
|
|
|
|
ver1_ptr = ch_ver1;
|
|
|
|
}
|
|
|
|
if (ch_ver2[1] == ':') {
|
|
|
|
epoch2 = ch_ver2[0];
|
|
|
|
ver2_ptr = strchr(ch_ver2, ':') + 1;
|
|
|
|
} else {
|
|
|
|
epoch2 = '0';
|
|
|
|
ver2_ptr = ch_ver2;
|
|
|
|
}
|
|
|
|
if (epoch1 < epoch2) {
|
2006-09-28 22:35:42 +00:00
|
|
|
return -1;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
else if (epoch1 > epoch2) {
|
2006-09-28 22:35:42 +00:00
|
|
|
return 1;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Compare upstream version */
|
2006-08-03 15:41:12 +00:00
|
|
|
upstream_ver1 = xstrdup(ver1_ptr);
|
|
|
|
upstream_ver2 = xstrdup(ver2_ptr);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Chop off debian version, and store for later use */
|
|
|
|
deb_ver1 = strrchr(upstream_ver1, '-');
|
|
|
|
deb_ver2 = strrchr(upstream_ver2, '-');
|
|
|
|
if (deb_ver1) {
|
|
|
|
deb_ver1[0] = '\0';
|
|
|
|
deb_ver1++;
|
|
|
|
}
|
|
|
|
if (deb_ver2) {
|
|
|
|
deb_ver2[0] = '\0';
|
|
|
|
deb_ver2++;
|
|
|
|
}
|
|
|
|
result = version_compare_part(upstream_ver1, upstream_ver2);
|
2006-09-30 21:05:25 +00:00
|
|
|
if (!result)
|
|
|
|
/* Compare debian versions */
|
|
|
|
result = version_compare_part(deb_ver1, deb_ver2);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
free(upstream_ver1);
|
|
|
|
free(upstream_ver2);
|
2006-09-30 21:05:25 +00:00
|
|
|
return result;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
2006-12-22 18:32:40 +00:00
|
|
|
static int test_version(const unsigned version1, const unsigned version2, const unsigned operator)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
const int version_result = version_compare(version1, version2);
|
2006-09-27 19:51:06 +00:00
|
|
|
switch (operator) {
|
2006-12-22 18:32:40 +00:00
|
|
|
case VER_ANY:
|
|
|
|
return TRUE;
|
|
|
|
case VER_EQUAL:
|
|
|
|
return (version_result == 0);
|
|
|
|
case VER_LESS:
|
|
|
|
return (version_result < 0);
|
|
|
|
case VER_LESS_EQUAL:
|
|
|
|
return (version_result <= 0);
|
|
|
|
case VER_MORE:
|
|
|
|
return (version_result > 0);
|
|
|
|
case VER_MORE_EQUAL:
|
|
|
|
return (version_result >= 0);
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2006-09-28 22:35:42 +00:00
|
|
|
return FALSE;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-22 18:32:40 +00:00
|
|
|
static int search_package_hashtable(const unsigned name, const unsigned version, const unsigned operator)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
2006-12-22 18:32:40 +00:00
|
|
|
unsigned probe_address = 0;
|
|
|
|
unsigned probe_decrement = 0;
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
make_hash(name_hashtable[name], &probe_address, &probe_decrement, PACKAGE_HASH_PRIME);
|
2006-09-28 22:34:46 +00:00
|
|
|
while (package_hashtable[probe_address] != NULL) {
|
2001-10-25 14:49:48 +00:00
|
|
|
if (package_hashtable[probe_address]->name == name) {
|
|
|
|
if (operator == VER_ANY) {
|
2006-09-28 22:35:42 +00:00
|
|
|
return probe_address;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
if (test_version(package_hashtable[probe_address]->version, version, operator)) {
|
2006-09-28 22:35:42 +00:00
|
|
|
return probe_address;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
probe_address -= probe_decrement;
|
|
|
|
if ((int)probe_address < 0) {
|
|
|
|
probe_address += PACKAGE_HASH_PRIME;
|
|
|
|
}
|
|
|
|
}
|
2006-09-28 22:35:42 +00:00
|
|
|
return probe_address;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
2003-11-28 22:38:14 +00:00
|
|
|
/*
|
|
|
|
* This function searches through the entire package_hashtable looking
|
|
|
|
* for a package which provides "needle". It returns the index into
|
2004-04-14 17:51:38 +00:00
|
|
|
* the package_hashtable for the providing package.
|
2003-11-28 22:38:14 +00:00
|
|
|
*
|
|
|
|
* needle is the index into name_hashtable of the package we are
|
|
|
|
* looking for.
|
|
|
|
*
|
|
|
|
* start_at is the index in the package_hashtable to start looking
|
|
|
|
* at. If start_at is -1 then start at the beginning. This is to allow
|
|
|
|
* for repeated searches since more than one package might provide
|
|
|
|
* needle.
|
|
|
|
*
|
|
|
|
* FIXME: I don't think this is very efficient, but I thought I'd keep
|
|
|
|
* it simple for now until it proves to be a problem.
|
|
|
|
*/
|
2007-04-16 22:32:04 +00:00
|
|
|
static int search_for_provides(int needle, int start_at)
|
|
|
|
{
|
2003-11-28 22:38:14 +00:00
|
|
|
int i, j;
|
|
|
|
common_node_t *p;
|
|
|
|
for (i = start_at + 1; i < PACKAGE_HASH_PRIME; i++) {
|
|
|
|
p = package_hashtable[i];
|
2006-12-22 18:32:40 +00:00
|
|
|
if (p == NULL)
|
|
|
|
continue;
|
2006-09-28 22:34:46 +00:00
|
|
|
for (j = 0; j < p->num_of_edges; j++)
|
|
|
|
if (p->edge[j]->type == EDGE_PROVIDES && p->edge[j]->name == needle)
|
2003-11-28 22:38:14 +00:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add an edge to a node
|
|
|
|
*/
|
2005-04-16 19:39:00 +00:00
|
|
|
static void add_edge_to_node(common_node_t *node, edge_t *edge)
|
2003-11-28 22:38:14 +00:00
|
|
|
{
|
|
|
|
node->num_of_edges++;
|
|
|
|
node->edge = xrealloc(node->edge, sizeof(edge_t) * (node->num_of_edges + 1));
|
|
|
|
node->edge[node->num_of_edges - 1] = edge;
|
|
|
|
}
|
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
/*
|
|
|
|
* Create one new node and one new edge for every dependency.
|
2003-11-28 22:38:14 +00:00
|
|
|
*
|
|
|
|
* Dependencies which contain multiple alternatives are represented as
|
|
|
|
* an EDGE_OR_PRE_DEPENDS or EDGE_OR_DEPENDS node, followed by a
|
|
|
|
* number of EDGE_PRE_DEPENDS or EDGE_DEPENDS nodes. The name field of
|
|
|
|
* the OR edge contains the full dependency string while the version
|
|
|
|
* field contains the number of EDGE nodes which follow as part of
|
|
|
|
* this alternative.
|
2001-10-25 14:49:48 +00:00
|
|
|
*/
|
2006-12-22 18:32:40 +00:00
|
|
|
static void add_split_dependencies(common_node_t *parent_node, const char *whole_line, unsigned edge_type)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
2006-08-03 15:41:12 +00:00
|
|
|
char *line = xstrdup(whole_line);
|
2001-10-25 14:49:48 +00:00
|
|
|
char *line2;
|
|
|
|
char *line_ptr1 = NULL;
|
|
|
|
char *line_ptr2 = NULL;
|
|
|
|
char *field;
|
|
|
|
char *field2;
|
|
|
|
char *version;
|
|
|
|
edge_t *edge;
|
2003-11-28 22:38:14 +00:00
|
|
|
edge_t *or_edge;
|
2001-10-25 14:49:48 +00:00
|
|
|
int offset_ch;
|
|
|
|
|
|
|
|
field = strtok_r(line, ",", &line_ptr1);
|
|
|
|
do {
|
2003-11-28 22:38:14 +00:00
|
|
|
/* skip leading spaces */
|
|
|
|
field += strspn(field, " ");
|
2006-08-03 15:41:12 +00:00
|
|
|
line2 = xstrdup(field);
|
2001-10-25 14:49:48 +00:00
|
|
|
field2 = strtok_r(line2, "|", &line_ptr2);
|
2006-12-22 18:32:40 +00:00
|
|
|
or_edge = NULL;
|
|
|
|
if ((edge_type == EDGE_DEPENDS || edge_type == EDGE_PRE_DEPENDS)
|
|
|
|
&& (strcmp(field, field2) != 0)
|
|
|
|
) {
|
2006-12-19 23:36:04 +00:00
|
|
|
or_edge = xmalloc(sizeof(edge_t));
|
2003-11-28 22:38:14 +00:00
|
|
|
or_edge->type = edge_type + 1;
|
|
|
|
or_edge->name = search_name_hashtable(field);
|
2007-06-05 17:28:56 +00:00
|
|
|
or_edge->version = 0; // tracks the number of alternatives
|
2003-11-28 22:38:14 +00:00
|
|
|
add_edge_to_node(parent_node, or_edge);
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
2006-12-19 23:36:04 +00:00
|
|
|
edge = xmalloc(sizeof(edge_t));
|
2003-11-28 22:38:14 +00:00
|
|
|
edge->type = edge_type;
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Skip any extra leading spaces */
|
|
|
|
field2 += strspn(field2, " ");
|
|
|
|
|
|
|
|
/* Get dependency version info */
|
|
|
|
version = strchr(field2, '(');
|
|
|
|
if (version == NULL) {
|
|
|
|
edge->operator = VER_ANY;
|
|
|
|
/* Get the versions hash number, adding it if the number isnt already in there */
|
|
|
|
edge->version = search_name_hashtable("ANY");
|
|
|
|
} else {
|
|
|
|
/* Skip leading ' ' or '(' */
|
2007-06-05 17:28:56 +00:00
|
|
|
version += strspn(version, " (");
|
2004-04-14 17:51:38 +00:00
|
|
|
/* Calculate length of any operator characters */
|
2001-10-25 14:49:48 +00:00
|
|
|
offset_ch = strspn(version, "<=>");
|
|
|
|
/* Determine operator */
|
|
|
|
if (offset_ch > 0) {
|
|
|
|
if (strncmp(version, "=", offset_ch) == 0) {
|
|
|
|
edge->operator = VER_EQUAL;
|
|
|
|
}
|
|
|
|
else if (strncmp(version, "<<", offset_ch) == 0) {
|
|
|
|
edge->operator = VER_LESS;
|
|
|
|
}
|
|
|
|
else if (strncmp(version, "<=", offset_ch) == 0) {
|
|
|
|
edge->operator = VER_LESS_EQUAL;
|
|
|
|
}
|
|
|
|
else if (strncmp(version, ">>", offset_ch) == 0) {
|
|
|
|
edge->operator = VER_MORE;
|
|
|
|
}
|
|
|
|
else if (strncmp(version, ">=", offset_ch) == 0) {
|
|
|
|
edge->operator = VER_MORE_EQUAL;
|
|
|
|
} else {
|
2006-09-28 22:34:46 +00:00
|
|
|
bb_error_msg_and_die("illegal operator");
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* skip to start of version numbers */
|
|
|
|
version += offset_ch;
|
|
|
|
version += strspn(version, " ");
|
|
|
|
|
|
|
|
/* Truncate version at trailing ' ' or ')' */
|
|
|
|
version[strcspn(version, " )")] = '\0';
|
|
|
|
/* Get the versions hash number, adding it if the number isnt already in there */
|
|
|
|
edge->version = search_name_hashtable(version);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the dependency name */
|
|
|
|
field2[strcspn(field2, " (")] = '\0';
|
|
|
|
edge->name = search_name_hashtable(field2);
|
2003-11-28 22:38:14 +00:00
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
if (or_edge)
|
2003-11-28 22:38:14 +00:00
|
|
|
or_edge->version++;
|
|
|
|
|
|
|
|
add_edge_to_node(parent_node, edge);
|
2007-04-13 23:22:58 +00:00
|
|
|
field2 = strtok_r(NULL, "|", &line_ptr2);
|
|
|
|
} while (field2 != NULL);
|
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
free(line2);
|
2007-04-13 23:22:58 +00:00
|
|
|
field = strtok_r(NULL, ",", &line_ptr1);
|
|
|
|
} while (field != NULL);
|
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
free(line);
|
|
|
|
}
|
|
|
|
|
2005-04-16 19:39:00 +00:00
|
|
|
static void free_package(common_node_t *node)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
2006-09-28 22:35:42 +00:00
|
|
|
unsigned i;
|
2002-05-29 13:45:34 +00:00
|
|
|
if (node) {
|
2001-10-25 14:49:48 +00:00
|
|
|
for (i = 0; i < node->num_of_edges; i++) {
|
2002-11-28 11:27:31 +00:00
|
|
|
free(node->edge[i]);
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2006-03-01 16:39:45 +00:00
|
|
|
free(node->edge);
|
2002-05-29 13:45:34 +00:00
|
|
|
free(node);
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-03 15:41:12 +00:00
|
|
|
/*
|
|
|
|
* Gets the next package field from package_buffer, seperated into the field name
|
|
|
|
* and field value, it returns the int offset to the first character of the next field
|
|
|
|
*/
|
|
|
|
static int read_package_field(const char *package_buffer, char **field_name, char **field_value)
|
|
|
|
{
|
|
|
|
int offset_name_start = 0;
|
|
|
|
int offset_name_end = 0;
|
|
|
|
int offset_value_start = 0;
|
|
|
|
int offset_value_end = 0;
|
|
|
|
int offset = 0;
|
|
|
|
int next_offset;
|
|
|
|
int name_length;
|
|
|
|
int value_length;
|
|
|
|
int exit_flag = FALSE;
|
|
|
|
|
|
|
|
if (package_buffer == NULL) {
|
|
|
|
*field_name = NULL;
|
|
|
|
*field_value = NULL;
|
2006-09-28 22:35:42 +00:00
|
|
|
return -1;
|
2006-08-03 15:41:12 +00:00
|
|
|
}
|
|
|
|
while (1) {
|
|
|
|
next_offset = offset + 1;
|
|
|
|
switch (package_buffer[offset]) {
|
2006-09-28 22:35:42 +00:00
|
|
|
case '\0':
|
2006-08-03 15:41:12 +00:00
|
|
|
exit_flag = TRUE;
|
|
|
|
break;
|
2006-09-28 22:35:42 +00:00
|
|
|
case ':':
|
2006-08-03 15:41:12 +00:00
|
|
|
if (offset_name_end == 0) {
|
|
|
|
offset_name_end = offset;
|
|
|
|
offset_value_start = next_offset;
|
|
|
|
}
|
|
|
|
/* TODO: Name might still have trailing spaces if ':' isnt
|
|
|
|
* immediately after name */
|
|
|
|
break;
|
2006-09-28 22:35:42 +00:00
|
|
|
case '\n':
|
2006-08-03 15:41:12 +00:00
|
|
|
/* TODO: The char next_offset may be out of bounds */
|
|
|
|
if (package_buffer[next_offset] != ' ') {
|
|
|
|
exit_flag = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
2006-09-28 22:35:42 +00:00
|
|
|
case '\t':
|
|
|
|
case ' ':
|
2006-08-03 15:41:12 +00:00
|
|
|
/* increment the value start point if its a just filler */
|
|
|
|
if (offset_name_start == offset) {
|
|
|
|
offset_name_start++;
|
|
|
|
}
|
|
|
|
if (offset_value_start == offset) {
|
|
|
|
offset_value_start++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (exit_flag) {
|
|
|
|
/* Check that the names are valid */
|
|
|
|
offset_value_end = offset;
|
|
|
|
name_length = offset_name_end - offset_name_start;
|
|
|
|
value_length = offset_value_end - offset_value_start;
|
|
|
|
if (name_length == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ((name_length > 0) && (value_length > 0)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If not valid, start fresh with next field */
|
|
|
|
exit_flag = FALSE;
|
|
|
|
offset_name_start = offset + 1;
|
|
|
|
offset_name_end = 0;
|
|
|
|
offset_value_start = offset + 1;
|
|
|
|
offset_value_end = offset + 1;
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
offset++;
|
|
|
|
}
|
2006-12-22 18:32:40 +00:00
|
|
|
*field_name = NULL;
|
|
|
|
if (name_length) {
|
2006-08-03 15:41:12 +00:00
|
|
|
*field_name = xstrndup(&package_buffer[offset_name_start], name_length);
|
|
|
|
}
|
2006-12-22 18:32:40 +00:00
|
|
|
*field_value = NULL;
|
2006-08-03 15:41:12 +00:00
|
|
|
if (value_length > 0) {
|
|
|
|
*field_value = xstrndup(&package_buffer[offset_value_start], value_length);
|
|
|
|
}
|
2006-09-28 22:35:42 +00:00
|
|
|
return next_offset;
|
2006-08-03 15:41:12 +00:00
|
|
|
}
|
|
|
|
|
2006-12-22 18:32:40 +00:00
|
|
|
static unsigned fill_package_struct(char *control_buffer)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
2007-08-12 20:58:27 +00:00
|
|
|
static const char field_names[] ALIGN1 =
|
|
|
|
"Package\0""Version\0"
|
2007-07-24 15:54:42 +00:00
|
|
|
"Pre-Depends\0""Depends\0""Replaces\0""Provides\0"
|
|
|
|
"Conflicts\0""Suggests\0""Recommends\0""Enhances\0";
|
2006-02-22 17:01:00 +00:00
|
|
|
|
2006-12-22 18:37:07 +00:00
|
|
|
common_node_t *new_node = xzalloc(sizeof(common_node_t));
|
2001-10-25 14:49:48 +00:00
|
|
|
char *field_name;
|
|
|
|
char *field_value;
|
|
|
|
int field_start = 0;
|
|
|
|
int num = -1;
|
|
|
|
int buffer_length = strlen(control_buffer);
|
|
|
|
|
|
|
|
new_node->version = search_name_hashtable("unknown");
|
|
|
|
while (field_start < buffer_length) {
|
2006-09-28 22:35:42 +00:00
|
|
|
unsigned field_num;
|
2002-11-06 23:35:28 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
field_start += read_package_field(&control_buffer[field_start],
|
|
|
|
&field_name, &field_value);
|
|
|
|
|
|
|
|
if (field_name == NULL) {
|
2007-12-26 20:44:45 +00:00
|
|
|
goto fill_package_struct_cleanup;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
2007-07-24 15:54:42 +00:00
|
|
|
field_num = index_in_strings(field_names, field_name);
|
2006-09-27 19:51:06 +00:00
|
|
|
switch (field_num) {
|
2006-12-22 18:32:40 +00:00
|
|
|
case 0: /* Package */
|
|
|
|
new_node->name = search_name_hashtable(field_value);
|
|
|
|
break;
|
|
|
|
case 1: /* Version */
|
|
|
|
new_node->version = search_name_hashtable(field_value);
|
|
|
|
break;
|
|
|
|
case 2: /* Pre-Depends */
|
|
|
|
add_split_dependencies(new_node, field_value, EDGE_PRE_DEPENDS);
|
|
|
|
break;
|
|
|
|
case 3: /* Depends */
|
|
|
|
add_split_dependencies(new_node, field_value, EDGE_DEPENDS);
|
|
|
|
break;
|
|
|
|
case 4: /* Replaces */
|
|
|
|
add_split_dependencies(new_node, field_value, EDGE_REPLACES);
|
|
|
|
break;
|
|
|
|
case 5: /* Provides */
|
|
|
|
add_split_dependencies(new_node, field_value, EDGE_PROVIDES);
|
|
|
|
break;
|
|
|
|
case 6: /* Conflicts */
|
|
|
|
add_split_dependencies(new_node, field_value, EDGE_CONFLICTS);
|
|
|
|
break;
|
|
|
|
case 7: /* Suggests */
|
|
|
|
add_split_dependencies(new_node, field_value, EDGE_SUGGESTS);
|
|
|
|
break;
|
|
|
|
case 8: /* Recommends */
|
|
|
|
add_split_dependencies(new_node, field_value, EDGE_RECOMMENDS);
|
|
|
|
break;
|
|
|
|
case 9: /* Enhances */
|
|
|
|
add_split_dependencies(new_node, field_value, EDGE_ENHANCES);
|
|
|
|
break;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2006-12-22 18:32:40 +00:00
|
|
|
fill_package_struct_cleanup:
|
2002-11-28 11:27:31 +00:00
|
|
|
free(field_name);
|
|
|
|
free(field_value);
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (new_node->version == search_name_hashtable("unknown")) {
|
|
|
|
free_package(new_node);
|
2006-09-28 22:35:42 +00:00
|
|
|
return -1;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
num = search_package_hashtable(new_node->name, new_node->version, VER_EQUAL);
|
2007-03-19 21:48:56 +00:00
|
|
|
free_package(package_hashtable[num]);
|
2007-03-19 13:44:18 +00:00
|
|
|
package_hashtable[num] = new_node;
|
2006-09-28 22:35:42 +00:00
|
|
|
return num;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2001-02-10 02:05:24 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
/* if num = 1, it returns the want status, 2 returns flag, 3 returns status */
|
2006-12-22 18:32:40 +00:00
|
|
|
static unsigned get_status(const unsigned status_node, const int num)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
char *status_string = name_hashtable[status_hashtable[status_node]->status];
|
|
|
|
char *state_sub_string;
|
2006-12-22 18:32:40 +00:00
|
|
|
unsigned state_sub_num;
|
2001-10-25 14:49:48 +00:00
|
|
|
int len;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* set tmp_string to point to the start of the word number */
|
|
|
|
for (i = 1; i < num; i++) {
|
|
|
|
/* skip past a word */
|
|
|
|
status_string += strcspn(status_string, " ");
|
2004-04-14 17:51:38 +00:00
|
|
|
/* skip past the separating spaces */
|
2001-10-25 14:49:48 +00:00
|
|
|
status_string += strspn(status_string, " ");
|
|
|
|
}
|
2006-10-20 13:28:22 +00:00
|
|
|
len = strcspn(status_string, " \n");
|
2006-08-03 15:41:12 +00:00
|
|
|
state_sub_string = xstrndup(status_string, len);
|
2001-10-25 14:49:48 +00:00
|
|
|
state_sub_num = search_name_hashtable(state_sub_string);
|
|
|
|
free(state_sub_string);
|
2006-09-28 22:35:42 +00:00
|
|
|
return state_sub_num;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
2006-12-22 18:32:40 +00:00
|
|
|
static void set_status(const unsigned status_node_num, const char *new_value, const int position)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
2006-12-22 18:32:40 +00:00
|
|
|
const unsigned new_value_len = strlen(new_value);
|
|
|
|
const unsigned new_value_num = search_name_hashtable(new_value);
|
|
|
|
unsigned want = get_status(status_node_num, 1);
|
|
|
|
unsigned flag = get_status(status_node_num, 2);
|
|
|
|
unsigned status = get_status(status_node_num, 3);
|
2001-10-25 14:49:48 +00:00
|
|
|
int want_len = strlen(name_hashtable[want]);
|
|
|
|
int flag_len = strlen(name_hashtable[flag]);
|
|
|
|
int status_len = strlen(name_hashtable[status]);
|
|
|
|
char *new_status;
|
|
|
|
|
|
|
|
switch (position) {
|
2006-09-28 22:35:42 +00:00
|
|
|
case 1:
|
2001-10-25 14:49:48 +00:00
|
|
|
want = new_value_num;
|
|
|
|
want_len = new_value_len;
|
|
|
|
break;
|
2006-09-28 22:35:42 +00:00
|
|
|
case 2:
|
2001-10-25 14:49:48 +00:00
|
|
|
flag = new_value_num;
|
|
|
|
flag_len = new_value_len;
|
|
|
|
break;
|
2006-09-28 22:35:42 +00:00
|
|
|
case 3:
|
2001-10-25 14:49:48 +00:00
|
|
|
status = new_value_num;
|
|
|
|
status_len = new_value_len;
|
|
|
|
break;
|
|
|
|
default:
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg_and_die("DEBUG ONLY: this shouldnt happen");
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
2006-08-03 15:41:12 +00:00
|
|
|
new_status = xasprintf("%s %s %s", name_hashtable[want], name_hashtable[flag], name_hashtable[status]);
|
2001-10-25 14:49:48 +00:00
|
|
|
status_hashtable[status_node_num]->status = search_name_hashtable(new_status);
|
|
|
|
free(new_status);
|
|
|
|
}
|
|
|
|
|
2007-04-13 23:22:58 +00:00
|
|
|
static const char *describe_status(int status_num)
|
|
|
|
{
|
2007-07-21 15:08:09 +00:00
|
|
|
int status_want, status_state;
|
2006-09-28 22:34:46 +00:00
|
|
|
if (status_hashtable[status_num] == NULL || status_hashtable[status_num]->status == 0)
|
2007-06-12 08:52:02 +00:00
|
|
|
return "is not installed or flagged to be installed";
|
2003-11-28 22:38:14 +00:00
|
|
|
|
|
|
|
status_want = get_status(status_num, 1);
|
|
|
|
status_state = get_status(status_num, 3);
|
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
if (status_state == search_name_hashtable("installed")) {
|
|
|
|
if (status_want == search_name_hashtable("install"))
|
2003-11-28 22:38:14 +00:00
|
|
|
return "is installed";
|
2006-09-28 22:34:46 +00:00
|
|
|
if (status_want == search_name_hashtable("deinstall"))
|
2003-11-28 22:38:14 +00:00
|
|
|
return "is marked to be removed";
|
2006-09-28 22:34:46 +00:00
|
|
|
if (status_want == search_name_hashtable("purge"))
|
2003-11-28 22:38:14 +00:00
|
|
|
return "is marked to be purged";
|
2004-03-15 08:29:22 +00:00
|
|
|
}
|
2007-04-13 23:22:58 +00:00
|
|
|
if (status_want == search_name_hashtable("unknown"))
|
2003-11-28 22:38:14 +00:00
|
|
|
return "is in an indeterminate state";
|
2006-09-28 22:34:46 +00:00
|
|
|
if (status_want == search_name_hashtable("install"))
|
2003-11-28 22:38:14 +00:00
|
|
|
return "is marked to be installed";
|
|
|
|
|
|
|
|
return "is not installed or flagged to be installed";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-04-16 19:39:00 +00:00
|
|
|
static void index_status_file(const char *filename)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
FILE *status_file;
|
|
|
|
char *control_buffer;
|
|
|
|
char *status_line;
|
|
|
|
status_node_t *status_node = NULL;
|
2006-12-22 18:32:40 +00:00
|
|
|
unsigned status_num;
|
2001-10-25 14:49:48 +00:00
|
|
|
|
2006-08-03 15:41:12 +00:00
|
|
|
status_file = xfopen(filename, "r");
|
2007-12-26 20:44:45 +00:00
|
|
|
while ((control_buffer = xmalloc_fgetline_str(status_file, "\n\n")) != NULL) {
|
2006-12-22 18:32:40 +00:00
|
|
|
const unsigned package_num = fill_package_struct(control_buffer);
|
2001-10-25 14:49:48 +00:00
|
|
|
if (package_num != -1) {
|
|
|
|
status_node = xmalloc(sizeof(status_node_t));
|
|
|
|
/* fill_package_struct doesnt handle the status field */
|
|
|
|
status_line = strstr(control_buffer, "Status:");
|
|
|
|
if (status_line != NULL) {
|
|
|
|
status_line += 7;
|
|
|
|
status_line += strspn(status_line, " \n\t");
|
2006-10-20 13:28:22 +00:00
|
|
|
status_line = xstrndup(status_line, strcspn(status_line, "\n"));
|
2001-10-25 14:49:48 +00:00
|
|
|
status_node->status = search_name_hashtable(status_line);
|
|
|
|
free(status_line);
|
2001-07-13 18:35:24 +00:00
|
|
|
}
|
2001-10-25 14:49:48 +00:00
|
|
|
status_node->package = package_num;
|
|
|
|
status_num = search_status_hashtable(name_hashtable[package_hashtable[status_node->package]->name]);
|
|
|
|
status_hashtable[status_num] = status_node;
|
|
|
|
}
|
|
|
|
free(control_buffer);
|
|
|
|
}
|
|
|
|
fclose(status_file);
|
|
|
|
}
|
2001-07-13 18:35:24 +00:00
|
|
|
|
2005-04-16 19:39:00 +00:00
|
|
|
static void write_buffer_no_status(FILE *new_status_file, const char *control_buffer)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
char *value;
|
|
|
|
int start = 0;
|
|
|
|
while (1) {
|
|
|
|
start += read_package_field(&control_buffer[start], &name, &value);
|
|
|
|
if (name == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (strcmp(name, "Status") != 0) {
|
|
|
|
fprintf(new_status_file, "%s: %s\n", name, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This could do with a cleanup */
|
2005-04-16 19:39:00 +00:00
|
|
|
static void write_status_file(deb_file_t **deb_file)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
2006-08-03 15:41:12 +00:00
|
|
|
FILE *old_status_file = xfopen("/var/lib/dpkg/status", "r");
|
|
|
|
FILE *new_status_file = xfopen("/var/lib/dpkg/status.udeb", "w");
|
2001-10-25 14:49:48 +00:00
|
|
|
char *package_name;
|
|
|
|
char *status_from_file;
|
|
|
|
char *control_buffer = NULL;
|
|
|
|
char *tmp_string;
|
|
|
|
int status_num;
|
|
|
|
int field_start = 0;
|
|
|
|
int write_flag;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
/* Update previously known packages */
|
2007-12-26 20:44:45 +00:00
|
|
|
while ((control_buffer = xmalloc_fgetline_str(old_status_file, "\n\n")) != NULL) {
|
2007-04-13 23:22:58 +00:00
|
|
|
tmp_string = strstr(control_buffer, "Package:");
|
|
|
|
if (tmp_string == NULL) {
|
2001-10-25 14:49:48 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp_string += 8;
|
2006-01-25 00:08:53 +00:00
|
|
|
tmp_string += strspn(tmp_string, " \n\t");
|
2006-10-20 13:28:22 +00:00
|
|
|
package_name = xstrndup(tmp_string, strcspn(tmp_string, "\n"));
|
2001-10-25 14:49:48 +00:00
|
|
|
write_flag = FALSE;
|
|
|
|
tmp_string = strstr(control_buffer, "Status:");
|
|
|
|
if (tmp_string != NULL) {
|
|
|
|
/* Seperate the status value from the control buffer */
|
|
|
|
tmp_string += 7;
|
|
|
|
tmp_string += strspn(tmp_string, " \n\t");
|
2006-08-03 15:41:12 +00:00
|
|
|
status_from_file = xstrndup(tmp_string, strcspn(tmp_string, "\n"));
|
2001-10-25 14:49:48 +00:00
|
|
|
} else {
|
|
|
|
status_from_file = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find this package in the status hashtable */
|
|
|
|
status_num = search_status_hashtable(package_name);
|
|
|
|
if (status_hashtable[status_num] != NULL) {
|
|
|
|
const char *status_from_hashtable = name_hashtable[status_hashtable[status_num]->status];
|
|
|
|
if (strcmp(status_from_file, status_from_hashtable) != 0) {
|
|
|
|
/* New status isnt exactly the same as old status */
|
|
|
|
const int state_status = get_status(status_num, 3);
|
2007-04-13 23:22:58 +00:00
|
|
|
if ((strcmp("installed", name_hashtable[state_status]) == 0)
|
|
|
|
|| (strcmp("unpacked", name_hashtable[state_status]) == 0)
|
|
|
|
) {
|
2001-10-25 14:49:48 +00:00
|
|
|
/* We need to add the control file from the package */
|
|
|
|
i = 0;
|
2006-09-28 22:34:46 +00:00
|
|
|
while (deb_file[i] != NULL) {
|
2001-10-25 14:49:48 +00:00
|
|
|
if (strcmp(package_name, name_hashtable[package_hashtable[deb_file[i]->package]->name]) == 0) {
|
|
|
|
/* Write a status file entry with a modified status */
|
|
|
|
/* remove trailing \n's */
|
|
|
|
write_buffer_no_status(new_status_file, deb_file[i]->control_file);
|
|
|
|
set_status(status_num, "ok", 2);
|
2006-10-12 19:29:44 +00:00
|
|
|
fprintf(new_status_file, "Status: %s\n\n",
|
|
|
|
name_hashtable[status_hashtable[status_num]->status]);
|
2001-10-25 14:49:48 +00:00
|
|
|
write_flag = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
/* This is temperary, debugging only */
|
|
|
|
if (deb_file[i] == NULL) {
|
2006-10-12 19:29:44 +00:00
|
|
|
bb_error_msg_and_die("ALERT: cannot find a control file, "
|
|
|
|
"your status file may be broken, status may be "
|
|
|
|
"incorrect for %s", package_name);
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (strcmp("not-installed", name_hashtable[state_status]) == 0) {
|
|
|
|
/* Only write the Package, Status, Priority and Section lines */
|
|
|
|
fprintf(new_status_file, "Package: %s\n", package_name);
|
|
|
|
fprintf(new_status_file, "Status: %s\n", status_from_hashtable);
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
char *field_name;
|
|
|
|
char *field_value;
|
|
|
|
field_start += read_package_field(&control_buffer[field_start], &field_name, &field_value);
|
|
|
|
if (field_name == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ((strcmp(field_name, "Priority") == 0) ||
|
|
|
|
(strcmp(field_name, "Section") == 0)) {
|
|
|
|
fprintf(new_status_file, "%s: %s\n", field_name, field_value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
write_flag = TRUE;
|
|
|
|
fputs("\n", new_status_file);
|
|
|
|
}
|
|
|
|
else if (strcmp("config-files", name_hashtable[state_status]) == 0) {
|
|
|
|
/* only change the status line */
|
|
|
|
while (1) {
|
|
|
|
char *field_name;
|
|
|
|
char *field_value;
|
|
|
|
field_start += read_package_field(&control_buffer[field_start], &field_name, &field_value);
|
|
|
|
if (field_name == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Setup start point for next field */
|
|
|
|
if (strcmp(field_name, "Status") == 0) {
|
|
|
|
fprintf(new_status_file, "Status: %s\n", status_from_hashtable);
|
|
|
|
} else {
|
|
|
|
fprintf(new_status_file, "%s: %s\n", field_name, field_value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
write_flag = TRUE;
|
|
|
|
fputs("\n", new_status_file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* If the package from the status file wasnt handle above, do it now*/
|
2007-04-13 23:22:58 +00:00
|
|
|
if (!write_flag) {
|
2001-10-25 14:49:48 +00:00
|
|
|
fprintf(new_status_file, "%s\n\n", control_buffer);
|
|
|
|
}
|
|
|
|
|
2002-11-28 11:27:31 +00:00
|
|
|
free(status_from_file);
|
2001-10-25 14:49:48 +00:00
|
|
|
free(package_name);
|
|
|
|
free(control_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write any new packages */
|
2006-09-28 22:34:46 +00:00
|
|
|
for (i = 0; deb_file[i] != NULL; i++) {
|
2001-10-25 14:49:48 +00:00
|
|
|
status_num = search_status_hashtable(name_hashtable[package_hashtable[deb_file[i]->package]->name]);
|
|
|
|
if (strcmp("reinstreq", name_hashtable[get_status(status_num, 2)]) == 0) {
|
|
|
|
write_buffer_no_status(new_status_file, deb_file[i]->control_file);
|
|
|
|
set_status(status_num, "ok", 2);
|
|
|
|
fprintf(new_status_file, "Status: %s\n\n", name_hashtable[status_hashtable[status_num]->status]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(old_status_file);
|
|
|
|
fclose(new_status_file);
|
|
|
|
|
2004-04-14 17:51:38 +00:00
|
|
|
/* Create a separate backfile to dpkg */
|
2001-10-25 14:49:48 +00:00
|
|
|
if (rename("/var/lib/dpkg/status", "/var/lib/dpkg/status.udeb.bak") == -1) {
|
2008-02-17 14:29:25 +00:00
|
|
|
if (errno != ENOENT)
|
|
|
|
bb_error_msg_and_die("cannot create backup status file");
|
2004-04-14 17:51:38 +00:00
|
|
|
/* Its ok if renaming the status file fails because status
|
2001-10-25 14:49:48 +00:00
|
|
|
* file doesnt exist, maybe we are starting from scratch */
|
2006-09-28 22:34:46 +00:00
|
|
|
bb_error_msg("no status file found, creating new one");
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
2008-02-17 14:29:25 +00:00
|
|
|
xrename("/var/lib/dpkg/status.udeb", "/var/lib/dpkg/status");
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
2004-04-14 17:51:38 +00:00
|
|
|
/* This function returns TRUE if the given package can satisfy a
|
2003-11-28 22:38:14 +00:00
|
|
|
* dependency of type depend_type.
|
|
|
|
*
|
2004-04-14 17:51:38 +00:00
|
|
|
* A pre-depends is satisfied only if a package is already installed,
|
2003-11-28 22:38:14 +00:00
|
|
|
* which a regular depends can be satisfied by a package which we want
|
|
|
|
* to install.
|
|
|
|
*/
|
2005-04-16 19:39:00 +00:00
|
|
|
static int package_satisfies_dependency(int package, int depend_type)
|
2003-11-28 22:38:14 +00:00
|
|
|
{
|
|
|
|
int status_num = search_status_hashtable(name_hashtable[package_hashtable[package]->name]);
|
|
|
|
|
|
|
|
/* status could be unknown if package is a pure virtual
|
|
|
|
* provides which cannot satisfy any dependency by itself.
|
|
|
|
*/
|
2006-09-28 22:34:46 +00:00
|
|
|
if (status_hashtable[status_num] == NULL)
|
2003-11-28 22:38:14 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch (depend_type) {
|
2006-01-25 00:08:53 +00:00
|
|
|
case EDGE_PRE_DEPENDS: return get_status(status_num, 3) == search_name_hashtable("installed");
|
|
|
|
case EDGE_DEPENDS: return get_status(status_num, 1) == search_name_hashtable("install");
|
2003-11-28 22:38:14 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-03-17 09:00:54 +00:00
|
|
|
static int check_deps(deb_file_t **deb_file, int deb_start /*, int dep_max_count - ?? */)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
int *conflicts = NULL;
|
|
|
|
int conflicts_num = 0;
|
|
|
|
int i = deb_start;
|
2002-05-29 13:45:34 +00:00
|
|
|
int j;
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Check for conflicts
|
|
|
|
* TODO: TEST if conflicts with other packages to be installed
|
|
|
|
*
|
|
|
|
* Add install packages and the packages they provide
|
|
|
|
* to the list of files to check conflicts for
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Create array of package numbers to check against
|
|
|
|
* installed package for conflicts*/
|
|
|
|
while (deb_file[i] != NULL) {
|
2006-12-22 18:32:40 +00:00
|
|
|
const unsigned package_num = deb_file[i]->package;
|
2001-10-25 14:49:48 +00:00
|
|
|
conflicts = xrealloc(conflicts, sizeof(int) * (conflicts_num + 1));
|
|
|
|
conflicts[conflicts_num] = package_num;
|
|
|
|
conflicts_num++;
|
|
|
|
/* add provides to conflicts list */
|
|
|
|
for (j = 0; j < package_hashtable[package_num]->num_of_edges; j++) {
|
|
|
|
if (package_hashtable[package_num]->edge[j]->type == EDGE_PROVIDES) {
|
|
|
|
const int conflicts_package_num = search_package_hashtable(
|
|
|
|
package_hashtable[package_num]->edge[j]->name,
|
|
|
|
package_hashtable[package_num]->edge[j]->version,
|
|
|
|
package_hashtable[package_num]->edge[j]->operator);
|
|
|
|
if (package_hashtable[conflicts_package_num] == NULL) {
|
|
|
|
/* create a new package */
|
2006-12-22 18:37:07 +00:00
|
|
|
common_node_t *new_node = xzalloc(sizeof(common_node_t));
|
2001-10-25 14:49:48 +00:00
|
|
|
new_node->name = package_hashtable[package_num]->edge[j]->name;
|
|
|
|
new_node->version = package_hashtable[package_num]->edge[j]->version;
|
|
|
|
package_hashtable[conflicts_package_num] = new_node;
|
|
|
|
}
|
|
|
|
conflicts = xrealloc(conflicts, sizeof(int) * (conflicts_num + 1));
|
|
|
|
conflicts[conflicts_num] = conflicts_package_num;
|
|
|
|
conflicts_num++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check conflicts */
|
2002-05-29 13:45:34 +00:00
|
|
|
i = 0;
|
|
|
|
while (deb_file[i] != NULL) {
|
|
|
|
const common_node_t *package_node = package_hashtable[deb_file[i]->package];
|
|
|
|
int status_num = 0;
|
|
|
|
status_num = search_status_hashtable(name_hashtable[package_node->name]);
|
|
|
|
|
|
|
|
if (get_status(status_num, 3) == search_name_hashtable("installed")) {
|
|
|
|
i++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (j = 0; j < package_node->num_of_edges; j++) {
|
|
|
|
const edge_t *package_edge = package_node->edge[j];
|
|
|
|
|
|
|
|
if (package_edge->type == EDGE_CONFLICTS) {
|
2006-12-22 18:32:40 +00:00
|
|
|
const unsigned package_num =
|
2003-11-28 22:38:14 +00:00
|
|
|
search_package_hashtable(package_edge->name,
|
2004-03-15 08:29:22 +00:00
|
|
|
package_edge->version,
|
|
|
|
package_edge->operator);
|
2002-05-29 13:45:34 +00:00
|
|
|
int result = 0;
|
|
|
|
if (package_hashtable[package_num] != NULL) {
|
|
|
|
status_num = search_status_hashtable(name_hashtable[package_hashtable[package_num]->name]);
|
|
|
|
|
2003-11-28 22:38:14 +00:00
|
|
|
if (get_status(status_num, 1) == search_name_hashtable("install")) {
|
2002-05-29 13:45:34 +00:00
|
|
|
result = test_version(package_hashtable[deb_file[i]->package]->version,
|
|
|
|
package_edge->version, package_edge->operator);
|
|
|
|
}
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2002-05-29 13:45:34 +00:00
|
|
|
|
|
|
|
if (result) {
|
2006-09-28 22:34:46 +00:00
|
|
|
bb_error_msg_and_die("package %s conflicts with %s",
|
2002-05-29 13:45:34 +00:00
|
|
|
name_hashtable[package_node->name],
|
|
|
|
name_hashtable[package_edge->name]);
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-05-29 13:45:34 +00:00
|
|
|
i++;
|
2006-01-25 00:08:53 +00:00
|
|
|
}
|
2002-05-29 13:45:34 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Check dependendcies */
|
2003-11-28 22:38:14 +00:00
|
|
|
for (i = 0; i < PACKAGE_HASH_PRIME; i++) {
|
2001-10-25 14:49:48 +00:00
|
|
|
int status_num = 0;
|
2003-11-28 22:38:14 +00:00
|
|
|
int number_of_alternatives = 0;
|
2004-04-14 17:51:38 +00:00
|
|
|
const edge_t * root_of_alternatives = NULL;
|
2003-11-28 22:38:14 +00:00
|
|
|
const common_node_t *package_node = package_hashtable[i];
|
2001-10-25 14:49:48 +00:00
|
|
|
|
2003-11-28 22:38:14 +00:00
|
|
|
/* If the package node does not exist then this
|
|
|
|
* package is a virtual one. In which case there are
|
|
|
|
* no dependencies to check.
|
|
|
|
*/
|
2006-09-28 22:34:46 +00:00
|
|
|
if (package_node == NULL) continue;
|
2002-05-29 13:45:34 +00:00
|
|
|
|
2003-11-28 22:38:14 +00:00
|
|
|
status_num = search_status_hashtable(name_hashtable[package_node->name]);
|
|
|
|
|
|
|
|
/* If there is no status then this package is a
|
|
|
|
* virtual one provided by something else. In which
|
2004-03-15 08:29:22 +00:00
|
|
|
* case there are no dependencies to check.
|
2003-11-28 22:38:14 +00:00
|
|
|
*/
|
2006-09-28 22:34:46 +00:00
|
|
|
if (status_hashtable[status_num] == NULL) continue;
|
2003-11-28 22:38:14 +00:00
|
|
|
|
|
|
|
/* If we don't want this package installed then we may
|
|
|
|
* as well ignore it's dependencies.
|
|
|
|
*/
|
|
|
|
if (get_status(status_num, 1) != search_name_hashtable("install")) {
|
2002-05-29 13:45:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2004-04-14 17:51:38 +00:00
|
|
|
/* This code is tested only for EDGE_DEPENDS, since I
|
2003-11-28 22:38:14 +00:00
|
|
|
* have no suitable pre-depends available. There is no
|
|
|
|
* reason that it shouldn't work though :-)
|
|
|
|
*/
|
|
|
|
for (j = 0; j < package_node->num_of_edges; j++) {
|
2001-10-25 14:49:48 +00:00
|
|
|
const edge_t *package_edge = package_node->edge[j];
|
2006-12-22 18:32:40 +00:00
|
|
|
unsigned package_num;
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2007-04-13 23:22:58 +00:00
|
|
|
if (package_edge->type == EDGE_OR_PRE_DEPENDS
|
|
|
|
|| package_edge->type == EDGE_OR_DEPENDS
|
|
|
|
) { /* start an EDGE_OR_ list */
|
2003-11-28 22:38:14 +00:00
|
|
|
number_of_alternatives = package_edge->version;
|
|
|
|
root_of_alternatives = package_edge;
|
|
|
|
continue;
|
2007-04-13 23:22:58 +00:00
|
|
|
}
|
|
|
|
if (number_of_alternatives == 0) { /* not in the middle of an EDGE_OR_ list */
|
2003-11-28 22:38:14 +00:00
|
|
|
number_of_alternatives = 1;
|
|
|
|
root_of_alternatives = NULL;
|
|
|
|
}
|
2001-10-25 14:49:48 +00:00
|
|
|
|
2001-12-05 04:10:14 +00:00
|
|
|
package_num = search_package_hashtable(package_edge->name, package_edge->version, package_edge->operator);
|
|
|
|
|
2003-11-28 22:38:14 +00:00
|
|
|
if (package_edge->type == EDGE_PRE_DEPENDS ||
|
2006-09-28 22:34:46 +00:00
|
|
|
package_edge->type == EDGE_DEPENDS) {
|
2003-11-28 22:38:14 +00:00
|
|
|
int result=1;
|
|
|
|
status_num = 0;
|
|
|
|
|
|
|
|
/* If we are inside an alternative then check
|
|
|
|
* this edge is the right type.
|
|
|
|
*
|
|
|
|
* EDGE_DEPENDS == OR_DEPENDS -1
|
2004-03-15 08:29:22 +00:00
|
|
|
* EDGE_PRE_DEPENDS == OR_PRE_DEPENDS -1
|
2003-11-28 22:38:14 +00:00
|
|
|
*/
|
2006-09-28 22:34:46 +00:00
|
|
|
if (root_of_alternatives && package_edge->type != root_of_alternatives->type - 1)
|
|
|
|
bb_error_msg_and_die("fatal error, package dependencies corrupt: %d != %d - 1",
|
2003-11-28 22:38:14 +00:00
|
|
|
package_edge->type, root_of_alternatives->type);
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2003-11-28 22:38:14 +00:00
|
|
|
if (package_hashtable[package_num] != NULL)
|
|
|
|
result = !package_satisfies_dependency(package_num, package_edge->type);
|
|
|
|
|
|
|
|
if (result) { /* check for other package which provide what we are looking for */
|
|
|
|
int provider = -1;
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
while ((provider = search_for_provides(package_edge->name, provider)) > -1) {
|
|
|
|
if (package_hashtable[provider] == NULL) {
|
|
|
|
puts("Have a provider but no package information for it");
|
2003-11-28 22:38:14 +00:00
|
|
|
continue;
|
2004-03-15 08:29:22 +00:00
|
|
|
}
|
2003-11-28 22:38:14 +00:00
|
|
|
result = !package_satisfies_dependency(provider, package_edge->type);
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
if (result == 0)
|
2003-11-28 22:38:14 +00:00
|
|
|
break;
|
2002-05-29 13:45:34 +00:00
|
|
|
}
|
2003-11-28 22:38:14 +00:00
|
|
|
}
|
2002-05-29 13:45:34 +00:00
|
|
|
|
2003-11-28 22:38:14 +00:00
|
|
|
/* It must be already installed, or to be installed */
|
|
|
|
number_of_alternatives--;
|
|
|
|
if (result && number_of_alternatives == 0) {
|
2006-09-28 22:34:46 +00:00
|
|
|
if (root_of_alternatives)
|
2003-11-28 22:38:14 +00:00
|
|
|
bb_error_msg_and_die(
|
2006-09-28 22:34:46 +00:00
|
|
|
"package %s %sdepends on %s, "
|
2003-11-28 22:38:14 +00:00
|
|
|
"which cannot be satisfied",
|
2001-10-25 14:49:48 +00:00
|
|
|
name_hashtable[package_node->name],
|
2003-11-28 22:38:14 +00:00
|
|
|
package_edge->type == EDGE_PRE_DEPENDS ? "pre-" : "",
|
|
|
|
name_hashtable[root_of_alternatives->name]);
|
2007-04-13 23:22:58 +00:00
|
|
|
bb_error_msg_and_die(
|
|
|
|
"package %s %sdepends on %s, which %s\n",
|
|
|
|
name_hashtable[package_node->name],
|
|
|
|
package_edge->type == EDGE_PRE_DEPENDS ? "pre-" : "",
|
|
|
|
name_hashtable[package_edge->name],
|
|
|
|
describe_status(status_num));
|
|
|
|
}
|
|
|
|
if (result == 0 && number_of_alternatives) {
|
2003-11-28 22:38:14 +00:00
|
|
|
/* we've found a package which
|
|
|
|
* satisfies the dependency,
|
|
|
|
* so skip over the rest of
|
2004-03-15 08:29:22 +00:00
|
|
|
* the alternatives.
|
2003-11-28 22:38:14 +00:00
|
|
|
*/
|
|
|
|
j += number_of_alternatives;
|
|
|
|
number_of_alternatives = 0;
|
2002-05-29 13:45:34 +00:00
|
|
|
}
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(conflicts);
|
2006-09-28 22:35:42 +00:00
|
|
|
return TRUE;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 19:39:00 +00:00
|
|
|
static char **create_list(const char *filename)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
FILE *list_stream;
|
2002-05-29 13:45:34 +00:00
|
|
|
char **file_list = NULL;
|
2001-10-25 14:49:48 +00:00
|
|
|
char *line = NULL;
|
|
|
|
int count = 0;
|
|
|
|
|
2004-04-14 17:51:38 +00:00
|
|
|
/* don't use [xw]fopen here, handle error ourself */
|
2001-10-25 14:49:48 +00:00
|
|
|
list_stream = fopen(filename, "r");
|
|
|
|
if (list_stream == NULL) {
|
2006-09-28 22:35:42 +00:00
|
|
|
return NULL;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2002-05-29 13:45:34 +00:00
|
|
|
|
2008-03-26 20:04:27 +00:00
|
|
|
while ((line = xmalloc_fgetline(list_stream)) != NULL) {
|
2002-05-29 13:45:34 +00:00
|
|
|
file_list = xrealloc(file_list, sizeof(char *) * (count + 2));
|
2002-12-11 03:10:13 +00:00
|
|
|
file_list[count] = line;
|
2001-10-25 14:49:48 +00:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
fclose(list_stream);
|
|
|
|
|
|
|
|
if (count == 0) {
|
2006-09-28 22:35:42 +00:00
|
|
|
return NULL;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2007-04-13 23:22:58 +00:00
|
|
|
file_list[count] = NULL;
|
|
|
|
return file_list;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* maybe i should try and hook this into remove_file.c somehow */
|
2005-04-16 19:39:00 +00:00
|
|
|
static int remove_file_array(char **remove_names, char **exclude_names)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
struct stat path_stat;
|
2007-04-13 23:22:58 +00:00
|
|
|
int remove_flag = 1; /* not removed anything yet */
|
|
|
|
int i, j;
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
if (remove_names == NULL) {
|
2007-04-13 23:22:58 +00:00
|
|
|
return 0;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
for (i = 0; remove_names[i] != NULL; i++) {
|
|
|
|
if (exclude_names != NULL) {
|
2007-04-13 23:22:58 +00:00
|
|
|
for (j = 0; exclude_names[j] != NULL; j++) {
|
2001-10-25 14:49:48 +00:00
|
|
|
if (strcmp(remove_names[i], exclude_names[j]) == 0) {
|
2007-04-13 23:22:58 +00:00
|
|
|
goto skip;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-04-13 23:22:58 +00:00
|
|
|
/* TODO: why we are checking lstat? we can just try rm/rmdir */
|
|
|
|
if (lstat(remove_names[i], &path_stat) < 0) {
|
|
|
|
continue;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2007-04-13 23:22:58 +00:00
|
|
|
if (S_ISDIR(path_stat.st_mode)) {
|
|
|
|
remove_flag &= rmdir(remove_names[i]); /* 0 if no error */
|
|
|
|
} else {
|
|
|
|
remove_flag &= unlink(remove_names[i]); /* 0 if no error */
|
|
|
|
}
|
|
|
|
skip:
|
|
|
|
continue;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2007-04-13 23:22:58 +00:00
|
|
|
return (remove_flag == 0);
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2001-02-12 11:33:09 +00:00
|
|
|
|
2005-04-16 19:39:00 +00:00
|
|
|
static int run_package_script(const char *package_name, const char *script_type)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
struct stat path_stat;
|
|
|
|
char *script_path;
|
|
|
|
int result;
|
|
|
|
|
2006-08-03 15:41:12 +00:00
|
|
|
script_path = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, script_type);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* If the file doesnt exist is isnt a fatal */
|
2006-05-29 07:42:02 +00:00
|
|
|
result = lstat(script_path, &path_stat) < 0 ? EXIT_SUCCESS : system(script_path);
|
2001-10-25 14:49:48 +00:00
|
|
|
free(script_path);
|
2006-09-28 22:35:42 +00:00
|
|
|
return result;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
2007-08-12 20:58:27 +00:00
|
|
|
static const char *const all_control_files[] = {
|
2007-04-13 23:22:58 +00:00
|
|
|
"preinst", "postinst", "prerm", "postrm",
|
|
|
|
"list", "md5sums", "shlibs", "conffiles",
|
|
|
|
"config", "templates", NULL
|
|
|
|
};
|
2003-11-26 21:53:37 +00:00
|
|
|
|
2005-04-16 19:39:00 +00:00
|
|
|
static char **all_control_list(const char *package_name)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
2006-09-28 22:35:42 +00:00
|
|
|
unsigned i = 0;
|
2002-05-29 13:45:34 +00:00
|
|
|
char **remove_files;
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Create a list of all /var/lib/dpkg/info/<package> files */
|
2006-05-29 07:42:02 +00:00
|
|
|
remove_files = xzalloc(sizeof(all_control_files));
|
2003-11-26 21:53:37 +00:00
|
|
|
while (all_control_files[i]) {
|
2006-08-03 15:41:12 +00:00
|
|
|
remove_files[i] = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, all_control_files[i]);
|
2002-05-29 13:45:34 +00:00
|
|
|
i++;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
2002-05-29 13:45:34 +00:00
|
|
|
|
2006-09-28 22:35:42 +00:00
|
|
|
return remove_files;
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 19:39:00 +00:00
|
|
|
static void free_array(char **array)
|
2002-05-29 13:45:34 +00:00
|
|
|
{
|
|
|
|
if (array) {
|
2006-09-28 22:35:42 +00:00
|
|
|
unsigned i = 0;
|
2002-05-29 13:45:34 +00:00
|
|
|
while (array[i]) {
|
|
|
|
free(array[i]);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
free(array);
|
|
|
|
}
|
|
|
|
}
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* This function lists information on the installed packages. It loops through
|
|
|
|
* the status_hashtable to retrieve the info. This results in smaller code than
|
2004-03-15 08:29:22 +00:00
|
|
|
* scanning the status file. The resulting list, however, is unsorted.
|
2001-10-25 14:49:48 +00:00
|
|
|
*/
|
2005-04-16 04:30:38 +00:00
|
|
|
static void list_packages(void)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
2006-01-25 00:08:53 +00:00
|
|
|
int i;
|
2001-10-25 14:49:48 +00:00
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
puts(" Name Version");
|
|
|
|
puts("+++-==============-==============");
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
/* go through status hash, dereference package hash and finally strings */
|
2007-04-13 23:22:58 +00:00
|
|
|
for (i = 0; i < STATUS_HASH_PRIME+1; i++) {
|
2006-09-17 16:28:10 +00:00
|
|
|
if (status_hashtable[i]) {
|
|
|
|
const char *stat_str; /* status string */
|
2001-10-25 14:49:48 +00:00
|
|
|
const char *name_str; /* package name */
|
|
|
|
const char *vers_str; /* version */
|
|
|
|
char s1, s2; /* status abbreviations */
|
2004-03-15 08:29:22 +00:00
|
|
|
int spccnt; /* space count */
|
2001-10-25 14:49:48 +00:00
|
|
|
int j;
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
stat_str = name_hashtable[status_hashtable[i]->status];
|
|
|
|
name_str = name_hashtable[package_hashtable[status_hashtable[i]->package]->name];
|
|
|
|
vers_str = name_hashtable[package_hashtable[status_hashtable[i]->package]->version];
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
/* get abbreviation for status field 1 */
|
|
|
|
s1 = stat_str[0] == 'i' ? 'i' : 'r';
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
/* get abbreviation for status field 2 */
|
2007-04-13 23:22:58 +00:00
|
|
|
for (j = 0, spccnt = 0; stat_str[j] && spccnt < 2; j++) {
|
2006-09-17 16:28:10 +00:00
|
|
|
if (stat_str[j] == ' ') spccnt++;
|
2001-10-25 14:26:05 +00:00
|
|
|
}
|
2001-10-25 14:49:48 +00:00
|
|
|
s2 = stat_str[j];
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
/* print out the line formatted like Debian dpkg */
|
|
|
|
printf("%c%c %-14s %s\n", s1, s2, name_str, vers_str);
|
2001-09-21 04:30:51 +00:00
|
|
|
}
|
2007-04-13 23:22:58 +00:00
|
|
|
}
|
2001-09-21 04:30:51 +00:00
|
|
|
}
|
2001-10-25 14:49:48 +00:00
|
|
|
|
2006-12-22 18:32:40 +00:00
|
|
|
static void remove_package(const unsigned package_num, int noisy)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
const char *package_name = name_hashtable[package_hashtable[package_num]->name];
|
2003-11-26 21:53:37 +00:00
|
|
|
const char *package_version = name_hashtable[package_hashtable[package_num]->version];
|
2006-12-22 18:32:40 +00:00
|
|
|
const unsigned status_num = search_status_hashtable(package_name);
|
2001-10-25 14:49:48 +00:00
|
|
|
const int package_name_length = strlen(package_name);
|
|
|
|
char **remove_files;
|
|
|
|
char **exclude_files;
|
|
|
|
char list_name[package_name_length + 25];
|
|
|
|
char conffile_name[package_name_length + 30];
|
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
if (noisy)
|
|
|
|
printf("Removing %s (%s)...\n", package_name, package_version);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* run prerm script */
|
2007-03-29 19:42:19 +00:00
|
|
|
if (run_package_script(package_name, "prerm") != 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg_and_die("script failed, prerm failure");
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
2004-04-14 17:51:38 +00:00
|
|
|
/* Create a list of files to remove, and a separate list of those to keep */
|
2001-10-25 14:49:48 +00:00
|
|
|
sprintf(list_name, "/var/lib/dpkg/info/%s.list", package_name);
|
|
|
|
remove_files = create_list(list_name);
|
|
|
|
|
|
|
|
sprintf(conffile_name, "/var/lib/dpkg/info/%s.conffiles", package_name);
|
|
|
|
exclude_files = create_list(conffile_name);
|
|
|
|
|
2006-10-20 13:28:22 +00:00
|
|
|
/* Some directories can't be removed straight away, so do multiple passes */
|
|
|
|
while (remove_file_array(remove_files, exclude_files)) /*repeat */;
|
2002-05-29 13:45:34 +00:00
|
|
|
free_array(exclude_files);
|
|
|
|
free_array(remove_files);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Create a list of files in /var/lib/dpkg/info/<package>.* to keep */
|
2006-05-29 07:42:02 +00:00
|
|
|
exclude_files = xzalloc(sizeof(char*) * 3);
|
2006-08-03 15:41:12 +00:00
|
|
|
exclude_files[0] = xstrdup(conffile_name);
|
|
|
|
exclude_files[1] = xasprintf("/var/lib/dpkg/info/%s.postrm", package_name);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
2002-05-29 13:45:34 +00:00
|
|
|
/* Create a list of all /var/lib/dpkg/info/<package> files */
|
|
|
|
remove_files = all_control_list(package_name);
|
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
remove_file_array(remove_files, exclude_files);
|
2002-05-29 13:45:34 +00:00
|
|
|
free_array(remove_files);
|
|
|
|
free_array(exclude_files);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* rename <package>.conffile to <package>.list */
|
2008-02-17 14:29:25 +00:00
|
|
|
xrename(conffile_name, list_name);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Change package status */
|
|
|
|
set_status(status_num, "config-files", 3);
|
|
|
|
}
|
|
|
|
|
2006-12-22 18:32:40 +00:00
|
|
|
static void purge_package(const unsigned package_num)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
const char *package_name = name_hashtable[package_hashtable[package_num]->name];
|
2003-11-26 21:53:37 +00:00
|
|
|
const char *package_version = name_hashtable[package_hashtable[package_num]->version];
|
2006-12-22 18:32:40 +00:00
|
|
|
const unsigned status_num = search_status_hashtable(package_name);
|
2001-10-25 14:49:48 +00:00
|
|
|
char **remove_files;
|
|
|
|
char **exclude_files;
|
|
|
|
char list_name[strlen(package_name) + 25];
|
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
printf("Purging %s (%s)...\n", package_name, package_version);
|
2003-11-26 21:53:37 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
/* run prerm script */
|
|
|
|
if (run_package_script(package_name, "prerm") != 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg_and_die("script failed, prerm failure");
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a list of files to remove */
|
|
|
|
sprintf(list_name, "/var/lib/dpkg/info/%s.list", package_name);
|
|
|
|
remove_files = create_list(list_name);
|
|
|
|
|
2006-05-29 07:42:02 +00:00
|
|
|
exclude_files = xzalloc(sizeof(char*));
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Some directories cant be removed straight away, so do multiple passes */
|
2006-10-20 13:28:22 +00:00
|
|
|
while (remove_file_array(remove_files, exclude_files)) /* repeat */;
|
2002-05-29 13:45:34 +00:00
|
|
|
free_array(remove_files);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Create a list of all /var/lib/dpkg/info/<package> files */
|
2002-05-29 13:45:34 +00:00
|
|
|
remove_files = all_control_list(package_name);
|
2001-10-25 14:49:48 +00:00
|
|
|
remove_file_array(remove_files, exclude_files);
|
2002-05-29 13:45:34 +00:00
|
|
|
free_array(remove_files);
|
|
|
|
free(exclude_files);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* run postrm script */
|
2007-03-29 19:42:19 +00:00
|
|
|
if (run_package_script(package_name, "postrm") != 0) {
|
|
|
|
bb_error_msg_and_die("postrm failure.. set status to what?");
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Change package status */
|
|
|
|
set_status(status_num, "not-installed", 3);
|
|
|
|
}
|
|
|
|
|
2002-11-06 22:54:41 +00:00
|
|
|
static archive_handle_t *init_archive_deb_ar(const char *filename)
|
2002-10-19 10:40:55 +00:00
|
|
|
{
|
2002-11-06 22:54:41 +00:00
|
|
|
archive_handle_t *ar_handle;
|
|
|
|
|
2004-03-15 08:29:22 +00:00
|
|
|
/* Setup an ar archive handle that refers to the gzip sub archive */
|
2002-11-06 22:54:41 +00:00
|
|
|
ar_handle = init_handle();
|
|
|
|
ar_handle->filter = filter_accept_list_reassign;
|
2006-08-03 15:41:12 +00:00
|
|
|
ar_handle->src_fd = xopen(filename, O_RDONLY);
|
2002-11-06 22:54:41 +00:00
|
|
|
|
2006-09-28 22:35:42 +00:00
|
|
|
return ar_handle;
|
2002-11-06 22:54:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void init_archive_deb_control(archive_handle_t *ar_handle)
|
|
|
|
{
|
|
|
|
archive_handle_t *tar_handle;
|
2002-10-19 10:40:55 +00:00
|
|
|
|
|
|
|
/* Setup the tar archive handle */
|
2002-11-06 22:54:41 +00:00
|
|
|
tar_handle = init_handle();
|
|
|
|
tar_handle->src_fd = ar_handle->src_fd;
|
2002-10-19 10:40:55 +00:00
|
|
|
|
2004-04-14 17:51:38 +00:00
|
|
|
/* We don't care about data.tar.* or debian-binary, just control.tar.* */
|
2007-08-14 16:43:01 +00:00
|
|
|
#if ENABLE_FEATURE_DEB_TAR_GZ
|
2007-01-29 22:51:25 +00:00
|
|
|
llist_add_to(&(ar_handle->accept), (char*)"control.tar.gz");
|
2002-11-06 22:54:41 +00:00
|
|
|
#endif
|
2007-08-14 16:43:01 +00:00
|
|
|
#if ENABLE_FEATURE_DEB_TAR_BZ2
|
2007-01-29 22:51:25 +00:00
|
|
|
llist_add_to(&(ar_handle->accept), (char*)"control.tar.bz2");
|
2002-11-06 22:54:41 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Assign the tar handle as a subarchive of the ar handle */
|
|
|
|
ar_handle->sub_archive = tar_handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_archive_deb_data(archive_handle_t *ar_handle)
|
|
|
|
{
|
|
|
|
archive_handle_t *tar_handle;
|
|
|
|
|
|
|
|
/* Setup the tar archive handle */
|
|
|
|
tar_handle = init_handle();
|
|
|
|
tar_handle->src_fd = ar_handle->src_fd;
|
|
|
|
|
2004-04-14 17:51:38 +00:00
|
|
|
/* We don't care about control.tar.* or debian-binary, just data.tar.* */
|
2007-08-14 16:43:01 +00:00
|
|
|
#if ENABLE_FEATURE_DEB_TAR_GZ
|
2007-01-29 22:51:25 +00:00
|
|
|
llist_add_to(&(ar_handle->accept), (char*)"data.tar.gz");
|
2002-11-06 22:54:41 +00:00
|
|
|
#endif
|
2007-08-14 16:43:01 +00:00
|
|
|
#if ENABLE_FEATURE_DEB_TAR_BZ2
|
2007-01-29 22:51:25 +00:00
|
|
|
llist_add_to(&(ar_handle->accept), (char*)"data.tar.bz2");
|
2002-11-06 22:54:41 +00:00
|
|
|
#endif
|
2002-10-19 10:40:55 +00:00
|
|
|
|
2002-11-06 22:54:41 +00:00
|
|
|
/* Assign the tar handle as a subarchive of the ar handle */
|
|
|
|
ar_handle->sub_archive = tar_handle;
|
|
|
|
}
|
|
|
|
|
2003-09-15 08:06:15 +00:00
|
|
|
static char *deb_extract_control_file_to_buffer(archive_handle_t *ar_handle, llist_t *myaccept)
|
2002-11-06 22:54:41 +00:00
|
|
|
{
|
|
|
|
ar_handle->sub_archive->action_data = data_extract_to_buffer;
|
2003-09-15 08:06:15 +00:00
|
|
|
ar_handle->sub_archive->accept = myaccept;
|
2005-07-22 13:17:41 +00:00
|
|
|
ar_handle->sub_archive->filter = filter_accept_list;
|
2002-11-06 22:54:41 +00:00
|
|
|
|
|
|
|
unpack_ar_archive(ar_handle);
|
|
|
|
close(ar_handle->src_fd);
|
|
|
|
|
2006-09-28 22:35:42 +00:00
|
|
|
return ar_handle->sub_archive->buffer;
|
2002-10-19 10:40:55 +00:00
|
|
|
}
|
|
|
|
|
2002-11-03 11:57:10 +00:00
|
|
|
static void data_extract_all_prefix(archive_handle_t *archive_handle)
|
|
|
|
{
|
|
|
|
char *name_ptr = archive_handle->file_header->name;
|
|
|
|
|
|
|
|
name_ptr += strspn(name_ptr, "./");
|
|
|
|
if (name_ptr[0] != '\0') {
|
2006-08-03 15:41:12 +00:00
|
|
|
archive_handle->file_header->name = xasprintf("%s%s", archive_handle->buffer, name_ptr);
|
2002-11-03 11:57:10 +00:00
|
|
|
data_extract_all(archive_handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void unpack_package(deb_file_t *deb_file)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
const char *package_name = name_hashtable[package_hashtable[deb_file->package]->name];
|
2006-12-22 18:32:40 +00:00
|
|
|
const unsigned status_num = search_status_hashtable(package_name);
|
|
|
|
const unsigned status_package_num = status_hashtable[status_num]->package;
|
2001-10-25 14:49:48 +00:00
|
|
|
char *info_prefix;
|
2006-09-03 16:33:58 +00:00
|
|
|
char *list_filename;
|
2002-10-19 10:40:55 +00:00
|
|
|
archive_handle_t *archive_handle;
|
|
|
|
FILE *out_stream;
|
2003-11-26 21:53:37 +00:00
|
|
|
llist_t *accept_list = NULL;
|
|
|
|
int i = 0;
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* If existing version, remove it first */
|
|
|
|
if (strcmp(name_hashtable[get_status(status_num, 3)], "installed") == 0) {
|
|
|
|
/* Package is already installed, remove old version first */
|
2006-09-28 22:34:46 +00:00
|
|
|
printf("Preparing to replace %s %s (using %s)...\n", package_name,
|
2001-10-25 14:49:48 +00:00
|
|
|
name_hashtable[package_hashtable[status_package_num]->version],
|
|
|
|
deb_file->filename);
|
2003-11-26 21:53:37 +00:00
|
|
|
remove_package(status_package_num, 0);
|
2001-10-25 14:49:48 +00:00
|
|
|
} else {
|
2006-09-28 22:34:46 +00:00
|
|
|
printf("Unpacking %s (from %s)...\n", package_name, deb_file->filename);
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Extract control.tar.gz to /var/lib/dpkg/info/<package>.filename */
|
2006-08-03 15:41:12 +00:00
|
|
|
info_prefix = xasprintf("/var/lib/dpkg/info/%s.", package_name);
|
2002-11-06 22:54:41 +00:00
|
|
|
archive_handle = init_archive_deb_ar(deb_file->filename);
|
|
|
|
init_archive_deb_control(archive_handle);
|
2003-11-26 21:53:37 +00:00
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
while (all_control_files[i]) {
|
2006-08-03 15:41:12 +00:00
|
|
|
char *c = xasprintf("./%s", all_control_files[i]);
|
2006-05-26 23:44:51 +00:00
|
|
|
llist_add_to(&accept_list, c);
|
2003-11-26 21:53:37 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
archive_handle->sub_archive->accept = accept_list;
|
|
|
|
archive_handle->sub_archive->filter = filter_accept_list;
|
2002-11-06 22:54:41 +00:00
|
|
|
archive_handle->sub_archive->action_data = data_extract_all_prefix;
|
|
|
|
archive_handle->sub_archive->buffer = info_prefix;
|
2003-11-26 21:53:37 +00:00
|
|
|
archive_handle->sub_archive->flags |= ARCHIVE_EXTRACT_UNCONDITIONAL;
|
2002-11-06 22:54:41 +00:00
|
|
|
unpack_ar_archive(archive_handle);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Run the preinst prior to extracting */
|
|
|
|
if (run_package_script(package_name, "preinst") != 0) {
|
|
|
|
/* when preinst returns exit code != 0 then quit installation process */
|
2006-09-28 22:34:46 +00:00
|
|
|
bb_error_msg_and_die("subprocess pre-installation script returned error");
|
2004-03-15 08:29:22 +00:00
|
|
|
}
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Extract data.tar.gz to the root directory */
|
2002-11-06 22:54:41 +00:00
|
|
|
archive_handle = init_archive_deb_ar(deb_file->filename);
|
|
|
|
init_archive_deb_data(archive_handle);
|
2003-11-26 21:53:37 +00:00
|
|
|
archive_handle->sub_archive->action_data = data_extract_all_prefix;
|
2007-01-29 22:51:25 +00:00
|
|
|
archive_handle->sub_archive->buffer = (char*)"/"; /* huh? */
|
2003-11-26 21:53:37 +00:00
|
|
|
archive_handle->sub_archive->flags |= ARCHIVE_EXTRACT_UNCONDITIONAL;
|
2002-11-06 22:54:41 +00:00
|
|
|
unpack_ar_archive(archive_handle);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Create the list file */
|
2006-09-05 13:48:21 +00:00
|
|
|
list_filename = xasprintf("/var/lib/dpkg/info/%s.list", package_name);
|
|
|
|
out_stream = xfopen(list_filename, "w");
|
2003-11-26 21:53:37 +00:00
|
|
|
while (archive_handle->sub_archive->passed) {
|
|
|
|
/* the leading . has been stripped by data_extract_all_prefix already */
|
|
|
|
fputs(archive_handle->sub_archive->passed->data, out_stream);
|
2002-10-19 10:40:55 +00:00
|
|
|
fputc('\n', out_stream);
|
2003-11-26 21:53:37 +00:00
|
|
|
archive_handle->sub_archive->passed = archive_handle->sub_archive->passed->link;
|
2002-10-19 10:40:55 +00:00
|
|
|
}
|
2001-10-25 14:49:48 +00:00
|
|
|
fclose(out_stream);
|
|
|
|
|
|
|
|
/* change status */
|
|
|
|
set_status(status_num, "install", 1);
|
|
|
|
set_status(status_num, "unpacked", 3);
|
|
|
|
|
|
|
|
free(info_prefix);
|
2006-09-03 16:33:58 +00:00
|
|
|
free(list_filename);
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 19:39:00 +00:00
|
|
|
static void configure_package(deb_file_t *deb_file)
|
2001-10-25 14:49:48 +00:00
|
|
|
{
|
|
|
|
const char *package_name = name_hashtable[package_hashtable[deb_file->package]->name];
|
|
|
|
const char *package_version = name_hashtable[package_hashtable[deb_file->package]->version];
|
|
|
|
const int status_num = search_status_hashtable(package_name);
|
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
printf("Setting up %s (%s)...\n", package_name, package_version);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
|
|
|
/* Run the postinst script */
|
|
|
|
if (run_package_script(package_name, "postinst") != 0) {
|
|
|
|
/* TODO: handle failure gracefully */
|
2007-06-05 17:07:01 +00:00
|
|
|
bb_error_msg_and_die("postinst failure.. set status to what?");
|
2001-10-25 14:49:48 +00:00
|
|
|
}
|
|
|
|
/* Change status to reflect success */
|
|
|
|
set_status(status_num, "install", 1);
|
|
|
|
set_status(status_num, "installed", 3);
|
|
|
|
}
|
2001-02-10 02:05:24 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int dpkg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2002-05-29 13:45:34 +00:00
|
|
|
int dpkg_main(int argc, char **argv)
|
2001-02-10 02:05:24 +00:00
|
|
|
{
|
2001-10-25 14:49:48 +00:00
|
|
|
deb_file_t **deb_file = NULL;
|
|
|
|
status_node_t *status_node;
|
2006-12-22 18:32:40 +00:00
|
|
|
char *str_f;
|
2001-11-19 21:07:15 +00:00
|
|
|
int opt;
|
2001-10-25 14:49:48 +00:00
|
|
|
int package_num;
|
2001-07-13 18:35:24 +00:00
|
|
|
int deb_count = 0;
|
2001-10-25 14:49:48 +00:00
|
|
|
int state_status;
|
|
|
|
int status_num;
|
2001-07-13 18:35:24 +00:00
|
|
|
int i;
|
2006-12-22 18:32:40 +00:00
|
|
|
enum {
|
|
|
|
OPT_configure = 0x1,
|
|
|
|
OPT_force_ignore_depends = 0x2,
|
|
|
|
OPT_install = 0x4,
|
|
|
|
OPT_list_installed = 0x8,
|
|
|
|
OPT_purge = 0x10,
|
|
|
|
OPT_remove = 0x20,
|
|
|
|
OPT_unpack = 0x40,
|
|
|
|
};
|
2001-10-25 14:49:48 +00:00
|
|
|
|
2007-08-18 15:32:12 +00:00
|
|
|
opt = getopt32(argv, "CF:ilPru", &str_f);
|
2007-02-15 21:19:50 +00:00
|
|
|
//if (opt & OPT_configure) ... // -C
|
2006-12-22 18:32:40 +00:00
|
|
|
if (opt & OPT_force_ignore_depends) { // -F (--force in official dpkg)
|
|
|
|
if (strcmp(str_f, "depends"))
|
|
|
|
opt &= ~OPT_force_ignore_depends;
|
2001-04-08 05:27:18 +00:00
|
|
|
}
|
2007-02-15 21:19:50 +00:00
|
|
|
//if (opt & OPT_install) ... // -i
|
2006-12-22 18:32:40 +00:00
|
|
|
//if (opt & OPT_list_installed) ... // -l
|
2007-02-15 21:19:50 +00:00
|
|
|
//if (opt & OPT_purge) ... // -P
|
|
|
|
//if (opt & OPT_remove) ... // -r
|
|
|
|
//if (opt & OPT_unpack) ... // -u (--unpack in official dpkg)
|
2006-12-22 18:32:40 +00:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2006-09-28 22:35:42 +00:00
|
|
|
/* check for non-option argument if expected */
|
2006-12-22 18:32:40 +00:00
|
|
|
if (!opt || (!argc && !(opt && OPT_list_installed)))
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_show_usage();
|
2006-12-22 18:32:40 +00:00
|
|
|
|
|
|
|
name_hashtable = xzalloc(sizeof(name_hashtable[0]) * (NAME_HASH_PRIME + 1));
|
|
|
|
package_hashtable = xzalloc(sizeof(package_hashtable[0]) * (PACKAGE_HASH_PRIME + 1));
|
|
|
|
status_hashtable = xzalloc(sizeof(status_hashtable[0]) * (STATUS_HASH_PRIME + 1));
|
2001-07-13 18:35:24 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
/* puts("(Reading database ... xxxxx files and directories installed.)"); */
|
2001-07-13 18:35:24 +00:00
|
|
|
index_status_file("/var/lib/dpkg/status");
|
|
|
|
|
2001-09-21 04:30:51 +00:00
|
|
|
/* if the list action was given print the installed packages and exit */
|
2006-12-22 18:32:40 +00:00
|
|
|
if (opt & OPT_list_installed) {
|
2001-09-21 04:30:51 +00:00
|
|
|
list_packages();
|
2006-09-28 22:35:42 +00:00
|
|
|
return EXIT_SUCCESS;
|
2001-09-21 04:30:51 +00:00
|
|
|
}
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2001-07-13 18:35:24 +00:00
|
|
|
/* Read arguments and store relevant info in structs */
|
2006-12-22 18:32:40 +00:00
|
|
|
while (*argv) {
|
2002-05-29 13:45:34 +00:00
|
|
|
/* deb_count = nb_elem - 1 and we need nb_elem + 1 to allocate terminal node [NULL pointer] */
|
2007-02-15 21:19:50 +00:00
|
|
|
deb_file = xrealloc(deb_file, sizeof(deb_file[0]) * (deb_count + 2));
|
|
|
|
deb_file[deb_count] = xzalloc(sizeof(deb_file[0][0]));
|
|
|
|
if (opt & (OPT_install | OPT_unpack)) {
|
|
|
|
/* -i/-u: require filename */
|
2002-10-19 10:40:55 +00:00
|
|
|
archive_handle_t *archive_handle;
|
2002-12-08 00:54:33 +00:00
|
|
|
llist_t *control_list = NULL;
|
2002-11-05 13:56:04 +00:00
|
|
|
|
2002-11-06 22:54:41 +00:00
|
|
|
/* Extract the control file */
|
2007-01-29 22:51:25 +00:00
|
|
|
llist_add_to(&control_list, (char*)"./control");
|
2006-12-22 18:32:40 +00:00
|
|
|
archive_handle = init_archive_deb_ar(argv[0]);
|
2002-11-06 22:54:41 +00:00
|
|
|
init_archive_deb_control(archive_handle);
|
|
|
|
deb_file[deb_count]->control_file = deb_extract_control_file_to_buffer(archive_handle, control_list);
|
2001-10-25 14:49:48 +00:00
|
|
|
if (deb_file[deb_count]->control_file == NULL) {
|
2006-09-28 22:34:46 +00:00
|
|
|
bb_error_msg_and_die("cannot extract control file");
|
2001-07-13 18:35:24 +00:00
|
|
|
}
|
2006-12-22 18:32:40 +00:00
|
|
|
deb_file[deb_count]->filename = xstrdup(argv[0]);
|
2001-10-25 14:49:48 +00:00
|
|
|
package_num = fill_package_struct(deb_file[deb_count]->control_file);
|
2001-10-25 14:26:05 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
if (package_num == -1) {
|
2006-12-22 18:32:40 +00:00
|
|
|
bb_error_msg("invalid control file in %s", argv[0]);
|
|
|
|
argv++;
|
2001-10-25 14:49:48 +00:00
|
|
|
continue;
|
|
|
|
}
|
2006-12-22 18:32:40 +00:00
|
|
|
deb_file[deb_count]->package = (unsigned) package_num;
|
2002-11-06 22:54:41 +00:00
|
|
|
|
2001-10-25 14:49:48 +00:00
|
|
|
/* Add the package to the status hashtable */
|
2007-02-15 21:19:50 +00:00
|
|
|
if (opt & (OPT_unpack | OPT_install)) {
|
2001-10-25 14:49:48 +00:00
|
|
|
/* Try and find a currently installed version of this package */
|
|
|
|
status_num = search_status_hashtable(name_hashtable[package_hashtable[deb_file[deb_count]->package]->name]);
|
|
|
|
/* If no previous entry was found initialise a new entry */
|
2006-12-22 18:32:40 +00:00
|
|
|
if (status_hashtable[status_num] == NULL
|
|
|
|
|| status_hashtable[status_num]->status == 0
|
|
|
|
) {
|
2006-12-19 23:36:04 +00:00
|
|
|
status_node = xmalloc(sizeof(status_node_t));
|
2003-11-28 22:38:14 +00:00
|
|
|
status_node->package = deb_file[deb_count]->package;
|
2001-10-25 14:49:48 +00:00
|
|
|
/* reinstreq isnt changed to "ok" until the package control info
|
|
|
|
* is written to the status file*/
|
2003-11-28 22:38:14 +00:00
|
|
|
status_node->status = search_name_hashtable("install reinstreq not-installed");
|
2001-10-25 14:49:48 +00:00
|
|
|
status_hashtable[status_num] = status_node;
|
|
|
|
} else {
|
2003-11-28 22:38:14 +00:00
|
|
|
set_status(status_num, "install", 1);
|
|
|
|
set_status(status_num, "reinstreq", 2);
|
2001-10-04 05:22:42 +00:00
|
|
|
}
|
2001-07-13 18:35:24 +00:00
|
|
|
}
|
2007-02-15 21:19:50 +00:00
|
|
|
} else if (opt & (OPT_configure | OPT_purge | OPT_remove)) {
|
|
|
|
/* -C/-p/-r: require package name */
|
2001-10-25 14:49:48 +00:00
|
|
|
deb_file[deb_count]->package = search_package_hashtable(
|
2006-12-22 18:32:40 +00:00
|
|
|
search_name_hashtable(argv[0]),
|
|
|
|
search_name_hashtable("ANY"), VER_ANY);
|
2001-10-25 14:49:48 +00:00
|
|
|
if (package_hashtable[deb_file[deb_count]->package] == NULL) {
|
2006-12-22 18:32:40 +00:00
|
|
|
bb_error_msg_and_die("package %s is uninstalled or unknown", argv[0]);
|
2001-07-13 18:35:24 +00:00
|
|
|
}
|
2003-11-28 22:38:14 +00:00
|
|
|
package_num = deb_file[deb_count]->package;
|
|
|
|
status_num = search_status_hashtable(name_hashtable[package_hashtable[package_num]->name]);
|
|
|
|
state_status = get_status(status_num, 3);
|
2001-02-11 01:40:23 +00:00
|
|
|
|
2001-07-13 18:35:24 +00:00
|
|
|
/* check package status is "installed" */
|
2006-12-22 18:32:40 +00:00
|
|
|
if (opt & OPT_remove) {
|
|
|
|
if (strcmp(name_hashtable[state_status], "not-installed") == 0
|
|
|
|
|| strcmp(name_hashtable[state_status], "config-files") == 0
|
|
|
|
) {
|
2006-09-28 22:34:46 +00:00
|
|
|
bb_error_msg_and_die("%s is already removed", name_hashtable[package_hashtable[package_num]->name]);
|
2001-07-13 18:35:24 +00:00
|
|
|
}
|
2003-11-28 22:38:14 +00:00
|
|
|
set_status(status_num, "deinstall", 1);
|
2007-02-15 21:19:50 +00:00
|
|
|
} else if (opt & OPT_purge) {
|
2001-10-25 14:49:48 +00:00
|
|
|
/* if package status is "conf-files" then its ok */
|
|
|
|
if (strcmp(name_hashtable[state_status], "not-installed") == 0) {
|
2006-09-28 22:34:46 +00:00
|
|
|
bb_error_msg_and_die("%s is already purged", name_hashtable[package_hashtable[package_num]->name]);
|
2001-07-13 18:35:24 +00:00
|
|
|
}
|
2003-11-28 22:38:14 +00:00
|
|
|
set_status(status_num, "purge", 1);
|
2001-07-13 18:35:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
deb_count++;
|
2006-12-22 18:32:40 +00:00
|
|
|
argv++;
|
2001-02-10 02:05:24 +00:00
|
|
|
}
|
2007-02-15 21:19:50 +00:00
|
|
|
if (!deb_count)
|
|
|
|
bb_error_msg_and_die("no package files specified");
|
2001-10-25 14:49:48 +00:00
|
|
|
deb_file[deb_count] = NULL;
|
2001-02-11 01:40:23 +00:00
|
|
|
|
2001-07-13 18:35:24 +00:00
|
|
|
/* Check that the deb file arguments are installable */
|
2006-12-22 18:32:40 +00:00
|
|
|
if (!(opt & OPT_force_ignore_depends)) {
|
2008-03-17 09:00:54 +00:00
|
|
|
if (!check_deps(deb_file, 0 /*, deb_count*/)) {
|
2006-09-28 22:34:46 +00:00
|
|
|
bb_error_msg_and_die("dependency check failed");
|
2001-07-13 18:35:24 +00:00
|
|
|
}
|
2001-10-25 14:26:05 +00:00
|
|
|
}
|
2001-10-25 14:49:48 +00:00
|
|
|
|
2003-11-26 21:53:37 +00:00
|
|
|
/* TODO: install or remove packages in the correct dependency order */
|
2001-07-13 18:35:24 +00:00
|
|
|
for (i = 0; i < deb_count; i++) {
|
|
|
|
/* Remove or purge packages */
|
2006-12-22 18:32:40 +00:00
|
|
|
if (opt & OPT_remove) {
|
2003-11-26 21:53:37 +00:00
|
|
|
remove_package(deb_file[i]->package, 1);
|
2001-07-13 18:35:24 +00:00
|
|
|
}
|
2006-12-22 18:32:40 +00:00
|
|
|
else if (opt & OPT_purge) {
|
2001-10-25 14:49:48 +00:00
|
|
|
purge_package(deb_file[i]->package);
|
2001-07-13 18:35:24 +00:00
|
|
|
}
|
2006-12-22 18:32:40 +00:00
|
|
|
else if (opt & OPT_unpack) {
|
2001-07-13 18:35:24 +00:00
|
|
|
unpack_package(deb_file[i]);
|
|
|
|
}
|
2006-12-22 18:32:40 +00:00
|
|
|
else if (opt & OPT_install) {
|
2001-07-13 18:35:24 +00:00
|
|
|
unpack_package(deb_file[i]);
|
2003-11-26 21:53:37 +00:00
|
|
|
/* package is configured in second pass below */
|
2001-07-13 18:35:24 +00:00
|
|
|
}
|
2006-12-22 18:32:40 +00:00
|
|
|
else if (opt & OPT_configure) {
|
2001-07-13 18:35:24 +00:00
|
|
|
configure_package(deb_file[i]);
|
|
|
|
}
|
|
|
|
}
|
2003-11-26 21:53:37 +00:00
|
|
|
/* configure installed packages */
|
2006-12-22 18:32:40 +00:00
|
|
|
if (opt & OPT_install) {
|
2003-11-26 21:53:37 +00:00
|
|
|
for (i = 0; i < deb_count; i++)
|
|
|
|
configure_package(deb_file[i]);
|
|
|
|
}
|
2001-07-18 15:47:21 +00:00
|
|
|
|
2001-07-13 18:35:24 +00:00
|
|
|
write_status_file(deb_file);
|
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) {
|
|
|
|
for (i = 0; i < deb_count; i++) {
|
|
|
|
free(deb_file[i]->control_file);
|
|
|
|
free(deb_file[i]->filename);
|
|
|
|
free(deb_file[i]);
|
|
|
|
}
|
2002-05-29 13:45:34 +00:00
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
free(deb_file);
|
2001-10-25 14:49:48 +00:00
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
for (i = 0; i < NAME_HASH_PRIME; i++) {
|
|
|
|
free(name_hashtable[i]);
|
|
|
|
}
|
2001-10-25 14:49:48 +00:00
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
for (i = 0; i < PACKAGE_HASH_PRIME; i++) {
|
2007-03-19 21:48:56 +00:00
|
|
|
free_package(package_hashtable[i]);
|
2002-05-29 13:45:34 +00:00
|
|
|
}
|
2001-10-25 14:49:48 +00:00
|
|
|
|
2006-09-28 22:34:46 +00:00
|
|
|
for (i = 0; i < STATUS_HASH_PRIME; i++) {
|
|
|
|
free(status_hashtable[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(status_hashtable);
|
|
|
|
free(package_hashtable);
|
|
|
|
free(name_hashtable);
|
2001-02-10 02:05:24 +00:00
|
|
|
}
|
2001-07-13 18:35:24 +00:00
|
|
|
|
2006-09-28 22:35:42 +00:00
|
|
|
return EXIT_SUCCESS;
|
2001-02-14 21:23:06 +00:00
|
|
|
}
|