"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 2 | /* |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 3 | * mini dpkg implementation for busybox. |
| 4 | * this is not meant as a replacement for dpkg |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 5 | * |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 6 | * written by glenn mcgrath with the help of others |
| 7 | * copyright (c) 2001 by glenn mcgrath |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 8 | * |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 9 | * parts of the version comparison code is plucked from the real dpkg |
| 10 | * application which is licensed GPLv2 and |
| 11 | * copyright (c) 1995 Ian Jackson <ian@chiark.greenend.org.uk> |
| 12 | * |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 13 | * started life as a busybox implementation of udpkg |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 14 | * |
Denys Vlasenko | 3d4a8f8 | 2010-09-06 16:22:25 +0200 | [diff] [blame] | 15 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 16 | */ |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 17 | /* |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 18 | * known difference between busybox dpkg and the official dpkg that i don't |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 19 | * consider important, its worth keeping a note of differences anyway, just to |
| 20 | * make it easier to maintain. |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 21 | * - the first value for the confflile: field isn't placed on a new line. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 22 | * - when installing a package the status: field is placed at the end of the |
| 23 | * section, rather than just after the package: field. |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 24 | * |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 25 | * bugs that need to be fixed |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 26 | * - (unknown, please let me know when you find any) |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 27 | */ |
Denys Vlasenko | f6beef6 | 2013-11-14 11:39:00 +0100 | [diff] [blame] | 28 | //config:config DPKG |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 29 | //config: bool "dpkg (43 kb)" |
Denys Vlasenko | ce3a98a | 2016-12-23 13:52:53 +0100 | [diff] [blame] | 30 | //config: default y |
Denys Vlasenko | f6beef6 | 2013-11-14 11:39:00 +0100 | [diff] [blame] | 31 | //config: select FEATURE_SEAMLESS_GZ |
| 32 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 33 | //config: dpkg is a medium-level tool to install, build, remove and manage |
| 34 | //config: Debian packages. |
Denys Vlasenko | f6beef6 | 2013-11-14 11:39:00 +0100 | [diff] [blame] | 35 | //config: |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 36 | //config: This implementation of dpkg has a number of limitations, |
| 37 | //config: you should use the official dpkg if possible. |
Denys Vlasenko | f6beef6 | 2013-11-14 11:39:00 +0100 | [diff] [blame] | 38 | |
Denys Vlasenko | 36184a4 | 2013-11-14 09:54:24 +0100 | [diff] [blame] | 39 | //applet:IF_DPKG(APPLET(dpkg, BB_DIR_USR_BIN, BB_SUID_DROP)) |
Denys Vlasenko | 0c4dbd4 | 2017-09-18 16:28:43 +0200 | [diff] [blame] | 40 | |
Denys Vlasenko | 66620fa | 2013-11-14 09:53:52 +0100 | [diff] [blame] | 41 | //kbuild:lib-$(CONFIG_DPKG) += dpkg.o |
| 42 | |
Pere Orga | 1f4447b | 2011-03-27 22:40:30 +0200 | [diff] [blame] | 43 | //usage:#define dpkg_trivial_usage |
| 44 | //usage: "[-ilCPru] [-F OPT] PACKAGE" |
| 45 | //usage:#define dpkg_full_usage "\n\n" |
| 46 | //usage: "Install, remove and manage Debian packages\n" |
Pere Orga | 1f4447b | 2011-03-27 22:40:30 +0200 | [diff] [blame] | 47 | //usage: IF_LONG_OPTS( |
| 48 | //usage: "\n -i,--install Install the package" |
| 49 | //usage: "\n -l,--list List of installed packages" |
| 50 | //usage: "\n --configure Configure an unpackaged package" |
| 51 | //usage: "\n -P,--purge Purge all files of a package" |
| 52 | //usage: "\n -r,--remove Remove all but the configuration files for a package" |
| 53 | //usage: "\n --unpack Unpack a package, but don't configure it" |
| 54 | //usage: "\n --force-depends Ignore dependency problems" |
| 55 | //usage: "\n --force-confnew Overwrite existing config files when installing" |
| 56 | //usage: "\n --force-confold Keep old config files when installing" |
| 57 | //usage: ) |
| 58 | //usage: IF_NOT_LONG_OPTS( |
| 59 | //usage: "\n -i Install the package" |
| 60 | //usage: "\n -l List of installed packages" |
| 61 | //usage: "\n -C Configure an unpackaged package" |
| 62 | //usage: "\n -P Purge all files of a package" |
| 63 | //usage: "\n -r Remove all but the configuration files for a package" |
| 64 | //usage: "\n -u Unpack a package, but don't configure it" |
| 65 | //usage: "\n -F depends Ignore dependency problems" |
| 66 | //usage: "\n -F confnew Overwrite existing config files when installing" |
| 67 | //usage: "\n -F confold Keep old config files when installing" |
| 68 | //usage: ) |
| 69 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 70 | #include "libbb.h" |
Bernhard Reutner-Fischer | 97516fc | 2008-09-25 12:18:49 +0000 | [diff] [blame] | 71 | #include <fnmatch.h> |
Denys Vlasenko | d184a72 | 2011-09-22 12:45:14 +0200 | [diff] [blame] | 72 | #include "bb_archive.h" |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 73 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 74 | /* note: if you vary hash_prime sizes be aware, |
| 75 | * 1) tweaking these will have a big effect on how much memory this program uses. |
| 76 | * 2) for computational efficiency these hash tables should be at least 20% |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 77 | * larger than the maximum number of elements stored in it. |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 78 | * 3) all _hash_prime's must be a prime number or chaos is assured, if your looking |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 79 | * for a prime, try http://www.utm.edu/research/primes/lists/small/10000.txt |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 80 | * 4) if you go bigger than 15 bits you may get into trouble (untested) as its |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 81 | * sometimes cast to an unsigned, if you go to 16 bit you will overlap |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 82 | * int's and chaos is assured, 16381 is the max prime for 14 bit field |
| 83 | */ |
| 84 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 85 | /* NAME_HASH_PRIME, Stores package names and versions, |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 86 | * I estimate it should be at least 50% bigger than PACKAGE_HASH_PRIME, |
| 87 | * as there a lot of duplicate version numbers */ |
| 88 | #define NAME_HASH_PRIME 16381 |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 89 | |
| 90 | /* PACKAGE_HASH_PRIME, Maximum number of unique packages, |
| 91 | * It must not be smaller than STATUS_HASH_PRIME, |
| 92 | * Currently only packages from status_hashtable are stored in here, but in |
| 93 | * future this may be used to store packages not only from a status file, |
| 94 | * but an available_hashtable, and even multiple packages files. |
| 95 | * Package can be stored more than once if they have different versions. |
| 96 | * e.g. The same package may have different versions in the status file |
| 97 | * and available file */ |
| 98 | #define PACKAGE_HASH_PRIME 10007 |
| 99 | typedef struct edge_s { |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 100 | unsigned operator:4; /* was:3 */ |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 101 | unsigned type:4; |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 102 | unsigned name:16; /* was:14 */ |
| 103 | unsigned version:16; /* was:14 */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 104 | } edge_t; |
| 105 | |
| 106 | typedef struct common_node_s { |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 107 | unsigned name:16; /* was:14 */ |
| 108 | unsigned version:16; /* was:14 */ |
| 109 | unsigned num_of_edges:16; /* was:14 */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 110 | edge_t **edge; |
| 111 | } common_node_t; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 112 | |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 113 | /* Currently it doesn't store packages that have state-status of not-installed |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 114 | * So it only really has to be the size of the maximum number of packages |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 115 | * likely to be installed at any one time, so there is a bit of leeway here */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 116 | #define STATUS_HASH_PRIME 8191 |
| 117 | typedef struct status_node_s { |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 118 | unsigned package:16; /* was:14 */ /* has to fit PACKAGE_HASH_PRIME */ |
| 119 | unsigned status:16; /* was:14 */ /* has to fit STATUS_HASH_PRIME */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 120 | } status_node_t; |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 121 | |
Denis Vlasenko | c87339d | 2008-06-21 23:15:43 +0000 | [diff] [blame] | 122 | |
| 123 | /* Globals */ |
| 124 | struct globals { |
| 125 | char *name_hashtable[NAME_HASH_PRIME + 1]; |
| 126 | common_node_t *package_hashtable[PACKAGE_HASH_PRIME + 1]; |
| 127 | status_node_t *status_hashtable[STATUS_HASH_PRIME + 1]; |
| 128 | }; |
| 129 | #define G (*ptr_to_globals) |
| 130 | #define name_hashtable (G.name_hashtable ) |
| 131 | #define package_hashtable (G.package_hashtable) |
| 132 | #define status_hashtable (G.status_hashtable ) |
| 133 | #define INIT_G() do { \ |
| 134 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
| 135 | } while (0) |
| 136 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 137 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 138 | /* Even numbers are for 'extras', like ored dependencies or null */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 139 | enum edge_type_e { |
| 140 | EDGE_NULL = 0, |
| 141 | EDGE_PRE_DEPENDS = 1, |
| 142 | EDGE_OR_PRE_DEPENDS = 2, |
| 143 | EDGE_DEPENDS = 3, |
| 144 | EDGE_OR_DEPENDS = 4, |
| 145 | EDGE_REPLACES = 5, |
| 146 | EDGE_PROVIDES = 7, |
| 147 | EDGE_CONFLICTS = 9, |
| 148 | EDGE_SUGGESTS = 11, |
| 149 | EDGE_RECOMMENDS = 13, |
| 150 | EDGE_ENHANCES = 15 |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 151 | }; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 152 | enum operator_e { |
| 153 | VER_NULL = 0, |
| 154 | VER_EQUAL = 1, |
| 155 | VER_LESS = 2, |
| 156 | VER_LESS_EQUAL = 3, |
| 157 | VER_MORE = 4, |
| 158 | VER_MORE_EQUAL = 5, |
| 159 | VER_ANY = 6 |
| 160 | }; |
| 161 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 162 | typedef struct deb_file_s { |
| 163 | char *control_file; |
| 164 | char *filename; |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 165 | unsigned package:16; /* was:14 */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 166 | } deb_file_t; |
| 167 | |
| 168 | |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 169 | static void make_hash(const char *key, unsigned *start, unsigned *decrement, const int hash_prime) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 170 | { |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 171 | unsigned long hash_num = key[0]; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 172 | int len = strlen(key); |
| 173 | int i; |
| 174 | |
| 175 | /* Maybe i should have uses a "proper" hashing algorithm here instead |
| 176 | * of making one up myself, seems to be working ok though. */ |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 177 | for (i = 1; i < len; i++) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 178 | /* shifts the ascii based value and adds it to previous value |
| 179 | * shift amount is mod 24 because long int is 32 bit and data |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 180 | * to be shifted is 8, don't want to shift data to where it has |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 181 | * no effect */ |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 182 | hash_num += (key[i] + key[i-1]) << ((key[i] * i) % 24); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 183 | } |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 184 | *start = (unsigned) hash_num % hash_prime; |
| 185 | *decrement = (unsigned) 1 + (hash_num % (hash_prime - 1)); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | /* this adds the key to the hash table */ |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 189 | static int search_name_hashtable(const char *key) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 190 | { |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 191 | unsigned probe_address; |
| 192 | unsigned probe_decrement; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 193 | |
| 194 | make_hash(key, &probe_address, &probe_decrement, NAME_HASH_PRIME); |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 195 | while (name_hashtable[probe_address] != NULL) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 196 | if (strcmp(name_hashtable[probe_address], key) == 0) { |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 197 | return probe_address; |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 198 | } |
| 199 | probe_address -= probe_decrement; |
| 200 | if ((int)probe_address < 0) { |
| 201 | probe_address += NAME_HASH_PRIME; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 202 | } |
| 203 | } |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 204 | name_hashtable[probe_address] = xstrdup(key); |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 205 | return probe_address; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 208 | /* this DOESN'T add the key to the hashtable |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 209 | * TODO make it consistent with search_name_hashtable |
| 210 | */ |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 211 | static unsigned search_status_hashtable(const char *key) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 212 | { |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 213 | unsigned probe_address; |
| 214 | unsigned probe_decrement; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 215 | |
| 216 | make_hash(key, &probe_address, &probe_decrement, STATUS_HASH_PRIME); |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 217 | while (status_hashtable[probe_address] != NULL) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 218 | if (strcmp(key, name_hashtable[package_hashtable[status_hashtable[probe_address]->package]->name]) == 0) { |
| 219 | break; |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 220 | } |
| 221 | probe_address -= probe_decrement; |
| 222 | if ((int)probe_address < 0) { |
| 223 | probe_address += STATUS_HASH_PRIME; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 224 | } |
| 225 | } |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 226 | return probe_address; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 227 | } |
| 228 | |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 229 | static int order(char x) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 230 | { |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 231 | return (x == '~' ? -1 |
| 232 | : x == '\0' ? 0 |
| 233 | : isdigit(x) ? 0 |
| 234 | : isalpha(x) ? x |
| 235 | : (unsigned char)x + 256 |
| 236 | ); |
| 237 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 238 | |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 239 | /* This code is taken from dpkg and modified slightly to work with busybox */ |
| 240 | static int version_compare_part(const char *val, const char *ref) |
| 241 | { |
| 242 | if (!val) val = ""; |
| 243 | if (!ref) ref = ""; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 244 | |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 245 | while (*val || *ref) { |
| 246 | int first_diff; |
| 247 | |
| 248 | while ((*val && !isdigit(*val)) || (*ref && !isdigit(*ref))) { |
| 249 | int vc = order(*val); |
| 250 | int rc = order(*ref); |
| 251 | if (vc != rc) |
| 252 | return vc - rc; |
| 253 | val++; |
| 254 | ref++; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 255 | } |
| 256 | |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 257 | while (*val == '0') |
| 258 | val++; |
| 259 | while (*ref == '0') |
| 260 | ref++; |
| 261 | |
| 262 | first_diff = 0; |
| 263 | while (isdigit(*val) && isdigit(*ref)) { |
| 264 | if (first_diff == 0) |
| 265 | first_diff = *val - *ref; |
| 266 | val++; |
| 267 | ref++; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 268 | } |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 269 | if (isdigit(*val)) |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 270 | return 1; |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 271 | if (isdigit(*ref)) |
| 272 | return -1; |
| 273 | if (first_diff) |
| 274 | return first_diff; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 275 | } |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 276 | return 0; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | /* if ver1 < ver2 return -1, |
| 280 | * if ver1 = ver2 return 0, |
| 281 | * if ver1 > ver2 return 1, |
| 282 | */ |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 283 | static int version_compare(const unsigned ver1, const unsigned ver2) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 284 | { |
| 285 | char *ch_ver1 = name_hashtable[ver1]; |
| 286 | char *ch_ver2 = name_hashtable[ver2]; |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 287 | unsigned epoch1 = 0, epoch2 = 0; |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 288 | char *colon; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 289 | char *deb_ver1, *deb_ver2; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 290 | char *upstream_ver1; |
| 291 | char *upstream_ver2; |
| 292 | int result; |
| 293 | |
| 294 | /* Compare epoch */ |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 295 | colon = strchr(ch_ver1, ':'); |
| 296 | if (colon) { |
| 297 | epoch1 = atoi(ch_ver1); |
| 298 | ch_ver1 = colon + 1; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 299 | } |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 300 | colon = strchr(ch_ver2, ':'); |
| 301 | if (colon) { |
| 302 | epoch2 = atoi(ch_ver2); |
| 303 | ch_ver2 = colon + 1; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 304 | } |
| 305 | if (epoch1 < epoch2) { |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 306 | return -1; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 307 | } |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 308 | if (epoch1 > epoch2) { |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 309 | return 1; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | /* Compare upstream version */ |
Denis Vlasenko | b8baf40 | 2008-11-20 23:41:56 +0000 | [diff] [blame] | 313 | upstream_ver1 = xstrdup(ch_ver1); |
| 314 | upstream_ver2 = xstrdup(ch_ver2); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 315 | |
| 316 | /* Chop off debian version, and store for later use */ |
| 317 | deb_ver1 = strrchr(upstream_ver1, '-'); |
| 318 | deb_ver2 = strrchr(upstream_ver2, '-'); |
| 319 | if (deb_ver1) { |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 320 | *deb_ver1++ = '\0'; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 321 | } |
| 322 | if (deb_ver2) { |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 323 | *deb_ver2++ = '\0'; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 324 | } |
| 325 | result = version_compare_part(upstream_ver1, upstream_ver2); |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 326 | if (result == 0) { |
Denis Vlasenko | aecabff | 2006-09-30 21:05:25 +0000 | [diff] [blame] | 327 | /* Compare debian versions */ |
| 328 | result = version_compare_part(deb_ver1, deb_ver2); |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 329 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 330 | |
| 331 | free(upstream_ver1); |
| 332 | free(upstream_ver2); |
Denis Vlasenko | aecabff | 2006-09-30 21:05:25 +0000 | [diff] [blame] | 333 | return result; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 334 | } |
| 335 | |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 336 | static int test_version(const unsigned version1, const unsigned version2, const unsigned operator) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 337 | { |
| 338 | const int version_result = version_compare(version1, version2); |
Denis Vlasenko | c16bd21 | 2006-09-27 19:51:06 +0000 | [diff] [blame] | 339 | switch (operator) { |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 340 | case VER_ANY: |
| 341 | return TRUE; |
| 342 | case VER_EQUAL: |
| 343 | return (version_result == 0); |
| 344 | case VER_LESS: |
| 345 | return (version_result < 0); |
| 346 | case VER_LESS_EQUAL: |
| 347 | return (version_result <= 0); |
| 348 | case VER_MORE: |
| 349 | return (version_result > 0); |
| 350 | case VER_MORE_EQUAL: |
| 351 | return (version_result >= 0); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 352 | } |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 353 | return FALSE; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 354 | } |
| 355 | |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 356 | static int search_package_hashtable(const unsigned name, const unsigned version, const unsigned operator) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 357 | { |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 358 | unsigned probe_address; |
| 359 | unsigned probe_decrement; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 360 | |
| 361 | make_hash(name_hashtable[name], &probe_address, &probe_decrement, PACKAGE_HASH_PRIME); |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 362 | while (package_hashtable[probe_address] != NULL) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 363 | if (package_hashtable[probe_address]->name == name) { |
| 364 | if (operator == VER_ANY) { |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 365 | return probe_address; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 366 | } |
| 367 | if (test_version(package_hashtable[probe_address]->version, version, operator)) { |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 368 | return probe_address; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 369 | } |
| 370 | } |
| 371 | probe_address -= probe_decrement; |
| 372 | if ((int)probe_address < 0) { |
| 373 | probe_address += PACKAGE_HASH_PRIME; |
| 374 | } |
| 375 | } |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 376 | return probe_address; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | /* |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 380 | * This function searches through the entire package_hashtable looking |
| 381 | * for a package which provides "needle". It returns the index into |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 382 | * the package_hashtable for the providing package. |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 383 | * |
| 384 | * needle is the index into name_hashtable of the package we are |
| 385 | * looking for. |
| 386 | * |
| 387 | * start_at is the index in the package_hashtable to start looking |
| 388 | * at. If start_at is -1 then start at the beginning. This is to allow |
| 389 | * for repeated searches since more than one package might provide |
| 390 | * needle. |
| 391 | * |
| 392 | * FIXME: I don't think this is very efficient, but I thought I'd keep |
| 393 | * it simple for now until it proves to be a problem. |
| 394 | */ |
Denis Vlasenko | ac678ec | 2007-04-16 22:32:04 +0000 | [diff] [blame] | 395 | static int search_for_provides(int needle, int start_at) |
| 396 | { |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 397 | int i, j; |
| 398 | common_node_t *p; |
| 399 | for (i = start_at + 1; i < PACKAGE_HASH_PRIME; i++) { |
| 400 | p = package_hashtable[i]; |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 401 | if (p == NULL) |
| 402 | continue; |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 403 | for (j = 0; j < p->num_of_edges; j++) |
| 404 | if (p->edge[j]->type == EDGE_PROVIDES && p->edge[j]->name == needle) |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 405 | return i; |
| 406 | } |
| 407 | return -1; |
| 408 | } |
| 409 | |
| 410 | /* |
| 411 | * Add an edge to a node |
| 412 | */ |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 413 | static void add_edge_to_node(common_node_t *node, edge_t *edge) |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 414 | { |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 415 | node->edge = xrealloc_vector(node->edge, 2, node->num_of_edges); |
| 416 | node->edge[node->num_of_edges++] = edge; |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | /* |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 420 | * Create one new node and one new edge for every dependency. |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 421 | * |
| 422 | * Dependencies which contain multiple alternatives are represented as |
| 423 | * an EDGE_OR_PRE_DEPENDS or EDGE_OR_DEPENDS node, followed by a |
| 424 | * number of EDGE_PRE_DEPENDS or EDGE_DEPENDS nodes. The name field of |
| 425 | * the OR edge contains the full dependency string while the version |
| 426 | * field contains the number of EDGE nodes which follow as part of |
| 427 | * this alternative. |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 428 | */ |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 429 | static void add_split_dependencies(common_node_t *parent_node, const char *whole_line, unsigned edge_type) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 430 | { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 431 | char *line = xstrdup(whole_line); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 432 | char *line2; |
| 433 | char *line_ptr1 = NULL; |
| 434 | char *line_ptr2 = NULL; |
| 435 | char *field; |
| 436 | char *field2; |
| 437 | char *version; |
| 438 | edge_t *edge; |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 439 | edge_t *or_edge; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 440 | int offset_ch; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 441 | |
| 442 | field = strtok_r(line, ",", &line_ptr1); |
| 443 | do { |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 444 | /* skip leading spaces */ |
| 445 | field += strspn(field, " "); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 446 | line2 = xstrdup(field); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 447 | field2 = strtok_r(line2, "|", &line_ptr2); |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 448 | or_edge = NULL; |
| 449 | if ((edge_type == EDGE_DEPENDS || edge_type == EDGE_PRE_DEPENDS) |
| 450 | && (strcmp(field, field2) != 0) |
| 451 | ) { |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 452 | or_edge = xzalloc(sizeof(edge_t)); |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 453 | or_edge->type = edge_type + 1; |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 454 | or_edge->name = search_name_hashtable(field); |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 455 | //or_edge->version = 0; // tracks the number of alternatives |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 456 | add_edge_to_node(parent_node, or_edge); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | do { |
Denis Vlasenko | b95636c | 2006-12-19 23:36:04 +0000 | [diff] [blame] | 460 | edge = xmalloc(sizeof(edge_t)); |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 461 | edge->type = edge_type; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 462 | |
| 463 | /* Skip any extra leading spaces */ |
| 464 | field2 += strspn(field2, " "); |
| 465 | |
| 466 | /* Get dependency version info */ |
| 467 | version = strchr(field2, '('); |
| 468 | if (version == NULL) { |
| 469 | edge->operator = VER_ANY; |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 470 | /* Get the versions hash number, adding it if the number isn't already in there */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 471 | edge->version = search_name_hashtable("ANY"); |
| 472 | } else { |
| 473 | /* Skip leading ' ' or '(' */ |
Bernhard Reutner-Fischer | 6c501a7 | 2007-06-05 17:28:56 +0000 | [diff] [blame] | 474 | version += strspn(version, " ("); |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 475 | /* Calculate length of any operator characters */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 476 | offset_ch = strspn(version, "<=>"); |
| 477 | /* Determine operator */ |
| 478 | if (offset_ch > 0) { |
| 479 | if (strncmp(version, "=", offset_ch) == 0) { |
| 480 | edge->operator = VER_EQUAL; |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 481 | } else if (strncmp(version, "<<", offset_ch) == 0) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 482 | edge->operator = VER_LESS; |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 483 | } else if (strncmp(version, "<=", offset_ch) == 0) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 484 | edge->operator = VER_LESS_EQUAL; |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 485 | } else if (strncmp(version, ">>", offset_ch) == 0) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 486 | edge->operator = VER_MORE; |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 487 | } else if (strncmp(version, ">=", offset_ch) == 0) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 488 | edge->operator = VER_MORE_EQUAL; |
| 489 | } else { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame^] | 490 | bb_simple_error_msg_and_die("illegal operator"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 491 | } |
| 492 | } |
| 493 | /* skip to start of version numbers */ |
| 494 | version += offset_ch; |
| 495 | version += strspn(version, " "); |
| 496 | |
| 497 | /* Truncate version at trailing ' ' or ')' */ |
| 498 | version[strcspn(version, " )")] = '\0'; |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 499 | /* Get the versions hash number, adding it if the number isn't already in there */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 500 | edge->version = search_name_hashtable(version); |
| 501 | } |
| 502 | |
| 503 | /* Get the dependency name */ |
| 504 | field2[strcspn(field2, " (")] = '\0'; |
| 505 | edge->name = search_name_hashtable(field2); |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 506 | |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 507 | if (or_edge) |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 508 | or_edge->version++; |
| 509 | |
| 510 | add_edge_to_node(parent_node, edge); |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 511 | field2 = strtok_r(NULL, "|", &line_ptr2); |
| 512 | } while (field2 != NULL); |
| 513 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 514 | free(line2); |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 515 | field = strtok_r(NULL, ",", &line_ptr1); |
| 516 | } while (field != NULL); |
| 517 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 518 | free(line); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 519 | } |
| 520 | |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 521 | static void free_package(common_node_t *node) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 522 | { |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 523 | unsigned i; |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 524 | if (node) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 525 | for (i = 0; i < node->num_of_edges; i++) { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 526 | free(node->edge[i]); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 527 | } |
Rob Landley | e7c43b6 | 2006-03-01 16:39:45 +0000 | [diff] [blame] | 528 | free(node->edge); |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 529 | free(node); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 530 | } |
| 531 | } |
| 532 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 533 | /* |
Denys Vlasenko | 5370bfb | 2009-09-06 02:58:59 +0200 | [diff] [blame] | 534 | * Gets the next package field from package_buffer, separated into the field name |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 535 | * and field value, it returns the int offset to the first character of the next field |
| 536 | */ |
| 537 | static int read_package_field(const char *package_buffer, char **field_name, char **field_value) |
| 538 | { |
| 539 | int offset_name_start = 0; |
| 540 | int offset_name_end = 0; |
| 541 | int offset_value_start = 0; |
| 542 | int offset_value_end = 0; |
| 543 | int offset = 0; |
| 544 | int next_offset; |
| 545 | int name_length; |
| 546 | int value_length; |
| 547 | int exit_flag = FALSE; |
| 548 | |
| 549 | if (package_buffer == NULL) { |
| 550 | *field_name = NULL; |
| 551 | *field_value = NULL; |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 552 | return -1; |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 553 | } |
| 554 | while (1) { |
| 555 | next_offset = offset + 1; |
| 556 | switch (package_buffer[offset]) { |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 557 | case '\0': |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 558 | exit_flag = TRUE; |
| 559 | break; |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 560 | case ':': |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 561 | if (offset_name_end == 0) { |
| 562 | offset_name_end = offset; |
| 563 | offset_value_start = next_offset; |
| 564 | } |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 565 | /* TODO: Name might still have trailing spaces if ':' isn't |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 566 | * immediately after name */ |
| 567 | break; |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 568 | case '\n': |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 569 | /* TODO: The char next_offset may be out of bounds */ |
| 570 | if (package_buffer[next_offset] != ' ') { |
| 571 | exit_flag = TRUE; |
| 572 | break; |
| 573 | } |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 574 | case '\t': |
| 575 | case ' ': |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 576 | /* increment the value start point if its a just filler */ |
| 577 | if (offset_name_start == offset) { |
| 578 | offset_name_start++; |
| 579 | } |
| 580 | if (offset_value_start == offset) { |
| 581 | offset_value_start++; |
| 582 | } |
| 583 | break; |
| 584 | } |
| 585 | if (exit_flag) { |
| 586 | /* Check that the names are valid */ |
| 587 | offset_value_end = offset; |
| 588 | name_length = offset_name_end - offset_name_start; |
| 589 | value_length = offset_value_end - offset_value_start; |
| 590 | if (name_length == 0) { |
| 591 | break; |
| 592 | } |
| 593 | if ((name_length > 0) && (value_length > 0)) { |
| 594 | break; |
| 595 | } |
| 596 | |
| 597 | /* If not valid, start fresh with next field */ |
| 598 | exit_flag = FALSE; |
| 599 | offset_name_start = offset + 1; |
| 600 | offset_name_end = 0; |
| 601 | offset_value_start = offset + 1; |
| 602 | offset_value_end = offset + 1; |
| 603 | offset++; |
| 604 | } |
| 605 | offset++; |
| 606 | } |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 607 | *field_name = NULL; |
| 608 | if (name_length) { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 609 | *field_name = xstrndup(&package_buffer[offset_name_start], name_length); |
| 610 | } |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 611 | *field_value = NULL; |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 612 | if (value_length > 0) { |
| 613 | *field_value = xstrndup(&package_buffer[offset_value_start], value_length); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 614 | } |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 615 | return next_offset; |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 616 | } |
| 617 | |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 618 | static unsigned fill_package_struct(char *control_buffer) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 619 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 620 | static const char field_names[] ALIGN1 = |
| 621 | "Package\0""Version\0" |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 622 | "Pre-Depends\0""Depends\0""Replaces\0""Provides\0" |
| 623 | "Conflicts\0""Suggests\0""Recommends\0""Enhances\0"; |
Rob Landley | 0a7c8ef | 2006-02-22 17:01:00 +0000 | [diff] [blame] | 624 | |
Denis Vlasenko | 4cccc03 | 2006-12-22 18:37:07 +0000 | [diff] [blame] | 625 | common_node_t *new_node = xzalloc(sizeof(common_node_t)); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 626 | char *field_name; |
| 627 | char *field_value; |
| 628 | int field_start = 0; |
| 629 | int num = -1; |
| 630 | int buffer_length = strlen(control_buffer); |
| 631 | |
| 632 | new_node->version = search_name_hashtable("unknown"); |
| 633 | while (field_start < buffer_length) { |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 634 | unsigned field_num; |
Glenn L McGrath | 62d2882 | 2002-11-06 23:35:28 +0000 | [diff] [blame] | 635 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 636 | field_start += read_package_field(&control_buffer[field_start], |
| 637 | &field_name, &field_value); |
| 638 | |
| 639 | if (field_name == NULL) { |
Denis Vlasenko | abee3d0 | 2007-12-26 20:44:45 +0000 | [diff] [blame] | 640 | goto fill_package_struct_cleanup; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 641 | } |
| 642 | |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 643 | field_num = index_in_strings(field_names, field_name); |
Denis Vlasenko | c16bd21 | 2006-09-27 19:51:06 +0000 | [diff] [blame] | 644 | switch (field_num) { |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 645 | case 0: /* Package */ |
| 646 | new_node->name = search_name_hashtable(field_value); |
| 647 | break; |
| 648 | case 1: /* Version */ |
| 649 | new_node->version = search_name_hashtable(field_value); |
| 650 | break; |
| 651 | case 2: /* Pre-Depends */ |
| 652 | add_split_dependencies(new_node, field_value, EDGE_PRE_DEPENDS); |
| 653 | break; |
| 654 | case 3: /* Depends */ |
| 655 | add_split_dependencies(new_node, field_value, EDGE_DEPENDS); |
| 656 | break; |
| 657 | case 4: /* Replaces */ |
| 658 | add_split_dependencies(new_node, field_value, EDGE_REPLACES); |
| 659 | break; |
| 660 | case 5: /* Provides */ |
| 661 | add_split_dependencies(new_node, field_value, EDGE_PROVIDES); |
| 662 | break; |
| 663 | case 6: /* Conflicts */ |
| 664 | add_split_dependencies(new_node, field_value, EDGE_CONFLICTS); |
| 665 | break; |
| 666 | case 7: /* Suggests */ |
| 667 | add_split_dependencies(new_node, field_value, EDGE_SUGGESTS); |
| 668 | break; |
| 669 | case 8: /* Recommends */ |
| 670 | add_split_dependencies(new_node, field_value, EDGE_RECOMMENDS); |
| 671 | break; |
| 672 | case 9: /* Enhances */ |
| 673 | add_split_dependencies(new_node, field_value, EDGE_ENHANCES); |
| 674 | break; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 675 | } |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 676 | fill_package_struct_cleanup: |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 677 | free(field_name); |
| 678 | free(field_value); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 679 | } |
| 680 | |
| 681 | if (new_node->version == search_name_hashtable("unknown")) { |
| 682 | free_package(new_node); |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 683 | return -1; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 684 | } |
| 685 | num = search_package_hashtable(new_node->name, new_node->version, VER_EQUAL); |
Denis Vlasenko | 88a2aa9 | 2007-03-19 21:48:56 +0000 | [diff] [blame] | 686 | free_package(package_hashtable[num]); |
Bernhard Reutner-Fischer | de8a6a0 | 2007-03-19 13:44:18 +0000 | [diff] [blame] | 687 | package_hashtable[num] = new_node; |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 688 | return num; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 689 | } |
| 690 | |
| 691 | /* if num = 1, it returns the want status, 2 returns flag, 3 returns status */ |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 692 | static unsigned get_status(const unsigned status_node, const int num) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 693 | { |
| 694 | char *status_string = name_hashtable[status_hashtable[status_node]->status]; |
| 695 | char *state_sub_string; |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 696 | unsigned state_sub_num; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 697 | int len; |
| 698 | int i; |
| 699 | |
| 700 | /* set tmp_string to point to the start of the word number */ |
| 701 | for (i = 1; i < num; i++) { |
| 702 | /* skip past a word */ |
| 703 | status_string += strcspn(status_string, " "); |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 704 | /* skip past the separating spaces */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 705 | status_string += strspn(status_string, " "); |
| 706 | } |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 707 | len = strcspn(status_string, " \n"); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 708 | state_sub_string = xstrndup(status_string, len); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 709 | state_sub_num = search_name_hashtable(state_sub_string); |
| 710 | free(state_sub_string); |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 711 | return state_sub_num; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 712 | } |
| 713 | |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 714 | static void set_status(const unsigned status_node_num, const char *new_value, const int position) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 715 | { |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 716 | const unsigned new_value_num = search_name_hashtable(new_value); |
| 717 | unsigned want = get_status(status_node_num, 1); |
| 718 | unsigned flag = get_status(status_node_num, 2); |
| 719 | unsigned status = get_status(status_node_num, 3); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 720 | char *new_status; |
| 721 | |
| 722 | switch (position) { |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 723 | case 1: |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 724 | want = new_value_num; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 725 | break; |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 726 | case 2: |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 727 | flag = new_value_num; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 728 | break; |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 729 | case 3: |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 730 | status = new_value_num; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 731 | break; |
| 732 | default: |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame^] | 733 | bb_simple_error_msg_and_die("DEBUG ONLY: this shouldnt happen"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 734 | } |
| 735 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 736 | new_status = xasprintf("%s %s %s", name_hashtable[want], name_hashtable[flag], name_hashtable[status]); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 737 | status_hashtable[status_node_num]->status = search_name_hashtable(new_status); |
| 738 | free(new_status); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 739 | } |
| 740 | |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 741 | static const char *describe_status(int status_num) |
| 742 | { |
Denis Vlasenko | b71c668 | 2007-07-21 15:08:09 +0000 | [diff] [blame] | 743 | int status_want, status_state; |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 744 | if (status_hashtable[status_num] == NULL || status_hashtable[status_num]->status == 0) |
Denis Vlasenko | 15611bb | 2007-06-12 08:52:02 +0000 | [diff] [blame] | 745 | return "is not installed or flagged to be installed"; |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 746 | |
| 747 | status_want = get_status(status_num, 1); |
| 748 | status_state = get_status(status_num, 3); |
| 749 | |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 750 | if (status_state == search_name_hashtable("installed")) { |
| 751 | if (status_want == search_name_hashtable("install")) |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 752 | return "is installed"; |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 753 | if (status_want == search_name_hashtable("deinstall")) |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 754 | return "is marked to be removed"; |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 755 | if (status_want == search_name_hashtable("purge")) |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 756 | return "is marked to be purged"; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 757 | } |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 758 | if (status_want == search_name_hashtable("unknown")) |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 759 | return "is in an indeterminate state"; |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 760 | if (status_want == search_name_hashtable("install")) |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 761 | return "is marked to be installed"; |
| 762 | |
| 763 | return "is not installed or flagged to be installed"; |
| 764 | } |
| 765 | |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 766 | static void index_status_file(const char *filename) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 767 | { |
| 768 | FILE *status_file; |
| 769 | char *control_buffer; |
| 770 | char *status_line; |
| 771 | status_node_t *status_node = NULL; |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 772 | unsigned status_num; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 773 | |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 774 | status_file = xfopen_for_read(filename); |
Denis Vlasenko | abee3d0 | 2007-12-26 20:44:45 +0000 | [diff] [blame] | 775 | while ((control_buffer = xmalloc_fgetline_str(status_file, "\n\n")) != NULL) { |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 776 | const unsigned package_num = fill_package_struct(control_buffer); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 777 | if (package_num != -1) { |
| 778 | status_node = xmalloc(sizeof(status_node_t)); |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 779 | /* fill_package_struct doesn't handle the status field */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 780 | status_line = strstr(control_buffer, "Status:"); |
| 781 | if (status_line != NULL) { |
| 782 | status_line += 7; |
| 783 | status_line += strspn(status_line, " \n\t"); |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 784 | status_line = xstrndup(status_line, strcspn(status_line, "\n")); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 785 | status_node->status = search_name_hashtable(status_line); |
| 786 | free(status_line); |
| 787 | } |
| 788 | status_node->package = package_num; |
| 789 | status_num = search_status_hashtable(name_hashtable[package_hashtable[status_node->package]->name]); |
| 790 | status_hashtable[status_num] = status_node; |
| 791 | } |
| 792 | free(control_buffer); |
| 793 | } |
| 794 | fclose(status_file); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 795 | } |
| 796 | |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 797 | static void write_buffer_no_status(FILE *new_status_file, const char *control_buffer) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 798 | { |
| 799 | char *name; |
| 800 | char *value; |
| 801 | int start = 0; |
| 802 | while (1) { |
| 803 | start += read_package_field(&control_buffer[start], &name, &value); |
| 804 | if (name == NULL) { |
| 805 | break; |
| 806 | } |
| 807 | if (strcmp(name, "Status") != 0) { |
| 808 | fprintf(new_status_file, "%s: %s\n", name, value); |
| 809 | } |
| 810 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 811 | } |
| 812 | |
| 813 | /* This could do with a cleanup */ |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 814 | static void write_status_file(deb_file_t **deb_file) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 815 | { |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 816 | FILE *old_status_file = xfopen_for_read("/var/lib/dpkg/status"); |
| 817 | FILE *new_status_file = xfopen_for_write("/var/lib/dpkg/status.udeb"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 818 | char *package_name; |
| 819 | char *status_from_file; |
| 820 | char *control_buffer = NULL; |
| 821 | char *tmp_string; |
| 822 | int status_num; |
| 823 | int field_start = 0; |
| 824 | int write_flag; |
| 825 | int i = 0; |
| 826 | |
| 827 | /* Update previously known packages */ |
Denis Vlasenko | abee3d0 | 2007-12-26 20:44:45 +0000 | [diff] [blame] | 828 | while ((control_buffer = xmalloc_fgetline_str(old_status_file, "\n\n")) != NULL) { |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 829 | tmp_string = strstr(control_buffer, "Package:"); |
| 830 | if (tmp_string == NULL) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 831 | continue; |
| 832 | } |
| 833 | |
| 834 | tmp_string += 8; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 835 | tmp_string += strspn(tmp_string, " \n\t"); |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 836 | package_name = xstrndup(tmp_string, strcspn(tmp_string, "\n")); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 837 | write_flag = FALSE; |
| 838 | tmp_string = strstr(control_buffer, "Status:"); |
| 839 | if (tmp_string != NULL) { |
Denys Vlasenko | 5370bfb | 2009-09-06 02:58:59 +0200 | [diff] [blame] | 840 | /* Separate the status value from the control buffer */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 841 | tmp_string += 7; |
| 842 | tmp_string += strspn(tmp_string, " \n\t"); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 843 | status_from_file = xstrndup(tmp_string, strcspn(tmp_string, "\n")); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 844 | } else { |
| 845 | status_from_file = NULL; |
| 846 | } |
| 847 | |
| 848 | /* Find this package in the status hashtable */ |
| 849 | status_num = search_status_hashtable(package_name); |
| 850 | if (status_hashtable[status_num] != NULL) { |
| 851 | const char *status_from_hashtable = name_hashtable[status_hashtable[status_num]->status]; |
| 852 | if (strcmp(status_from_file, status_from_hashtable) != 0) { |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 853 | /* New status isn't exactly the same as old status */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 854 | const int state_status = get_status(status_num, 3); |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 855 | if ((strcmp("installed", name_hashtable[state_status]) == 0) |
| 856 | || (strcmp("unpacked", name_hashtable[state_status]) == 0) |
| 857 | ) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 858 | /* We need to add the control file from the package */ |
| 859 | i = 0; |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 860 | while (deb_file[i] != NULL) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 861 | if (strcmp(package_name, name_hashtable[package_hashtable[deb_file[i]->package]->name]) == 0) { |
| 862 | /* Write a status file entry with a modified status */ |
| 863 | /* remove trailing \n's */ |
| 864 | write_buffer_no_status(new_status_file, deb_file[i]->control_file); |
| 865 | set_status(status_num, "ok", 2); |
Denis Vlasenko | a6dbb08 | 2006-10-12 19:29:44 +0000 | [diff] [blame] | 866 | fprintf(new_status_file, "Status: %s\n\n", |
| 867 | name_hashtable[status_hashtable[status_num]->status]); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 868 | write_flag = TRUE; |
| 869 | break; |
| 870 | } |
| 871 | i++; |
| 872 | } |
| 873 | /* This is temperary, debugging only */ |
| 874 | if (deb_file[i] == NULL) { |
Denis Vlasenko | a6dbb08 | 2006-10-12 19:29:44 +0000 | [diff] [blame] | 875 | bb_error_msg_and_die("ALERT: cannot find a control file, " |
| 876 | "your status file may be broken, status may be " |
| 877 | "incorrect for %s", package_name); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 878 | } |
| 879 | } |
| 880 | else if (strcmp("not-installed", name_hashtable[state_status]) == 0) { |
| 881 | /* Only write the Package, Status, Priority and Section lines */ |
| 882 | fprintf(new_status_file, "Package: %s\n", package_name); |
| 883 | fprintf(new_status_file, "Status: %s\n", status_from_hashtable); |
| 884 | |
| 885 | while (1) { |
| 886 | char *field_name; |
| 887 | char *field_value; |
| 888 | field_start += read_package_field(&control_buffer[field_start], &field_name, &field_value); |
| 889 | if (field_name == NULL) { |
| 890 | break; |
| 891 | } |
Denys Vlasenko | 6b9f163 | 2010-01-28 02:24:24 +0100 | [diff] [blame] | 892 | if ((strcmp(field_name, "Priority") == 0) |
| 893 | || (strcmp(field_name, "Section") == 0) |
| 894 | ) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 895 | fprintf(new_status_file, "%s: %s\n", field_name, field_value); |
| 896 | } |
| 897 | } |
| 898 | write_flag = TRUE; |
| 899 | fputs("\n", new_status_file); |
| 900 | } |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 901 | else if (strcmp("config-files", name_hashtable[state_status]) == 0) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 902 | /* only change the status line */ |
| 903 | while (1) { |
| 904 | char *field_name; |
| 905 | char *field_value; |
| 906 | field_start += read_package_field(&control_buffer[field_start], &field_name, &field_value); |
| 907 | if (field_name == NULL) { |
| 908 | break; |
| 909 | } |
| 910 | /* Setup start point for next field */ |
| 911 | if (strcmp(field_name, "Status") == 0) { |
| 912 | fprintf(new_status_file, "Status: %s\n", status_from_hashtable); |
| 913 | } else { |
| 914 | fprintf(new_status_file, "%s: %s\n", field_name, field_value); |
| 915 | } |
| 916 | } |
| 917 | write_flag = TRUE; |
| 918 | fputs("\n", new_status_file); |
| 919 | } |
| 920 | } |
| 921 | } |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 922 | /* If the package from the status file wasn't handle above, do it now*/ |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 923 | if (!write_flag) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 924 | fprintf(new_status_file, "%s\n\n", control_buffer); |
| 925 | } |
| 926 | |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 927 | free(status_from_file); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 928 | free(package_name); |
| 929 | free(control_buffer); |
| 930 | } |
| 931 | |
| 932 | /* Write any new packages */ |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 933 | for (i = 0; deb_file[i] != NULL; i++) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 934 | status_num = search_status_hashtable(name_hashtable[package_hashtable[deb_file[i]->package]->name]); |
| 935 | if (strcmp("reinstreq", name_hashtable[get_status(status_num, 2)]) == 0) { |
| 936 | write_buffer_no_status(new_status_file, deb_file[i]->control_file); |
| 937 | set_status(status_num, "ok", 2); |
| 938 | fprintf(new_status_file, "Status: %s\n\n", name_hashtable[status_hashtable[status_num]->status]); |
| 939 | } |
| 940 | } |
| 941 | fclose(old_status_file); |
| 942 | fclose(new_status_file); |
| 943 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 944 | /* Create a separate backfile to dpkg */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 945 | if (rename("/var/lib/dpkg/status", "/var/lib/dpkg/status.udeb.bak") == -1) { |
Denis Vlasenko | b3b0753 | 2008-02-17 14:29:25 +0000 | [diff] [blame] | 946 | if (errno != ENOENT) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame^] | 947 | bb_simple_error_msg_and_die("can't create backup status file"); |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 948 | /* Its ok if renaming the status file fails because status |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 949 | * file doesn't exist, maybe we are starting from scratch */ |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame^] | 950 | bb_simple_error_msg("no status file found, creating new one"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 951 | } |
| 952 | |
Denis Vlasenko | b3b0753 | 2008-02-17 14:29:25 +0000 | [diff] [blame] | 953 | xrename("/var/lib/dpkg/status.udeb", "/var/lib/dpkg/status"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 954 | } |
| 955 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 956 | /* This function returns TRUE if the given package can satisfy a |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 957 | * dependency of type depend_type. |
| 958 | * |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 959 | * A pre-depends is satisfied only if a package is already installed, |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 960 | * which a regular depends can be satisfied by a package which we want |
| 961 | * to install. |
| 962 | */ |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 963 | static int package_satisfies_dependency(int package, int depend_type) |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 964 | { |
| 965 | int status_num = search_status_hashtable(name_hashtable[package_hashtable[package]->name]); |
| 966 | |
| 967 | /* status could be unknown if package is a pure virtual |
| 968 | * provides which cannot satisfy any dependency by itself. |
| 969 | */ |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 970 | if (status_hashtable[status_num] == NULL) |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 971 | return 0; |
| 972 | |
| 973 | switch (depend_type) { |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 974 | case EDGE_PRE_DEPENDS: return get_status(status_num, 3) == search_name_hashtable("installed"); |
| 975 | case EDGE_DEPENDS: return get_status(status_num, 1) == search_name_hashtable("install"); |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 976 | } |
| 977 | return 0; |
| 978 | } |
| 979 | |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 980 | static int check_deps(deb_file_t **deb_file, int deb_start /*, int dep_max_count - ?? */) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 981 | { |
| 982 | int *conflicts = NULL; |
| 983 | int conflicts_num = 0; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 984 | int i = deb_start; |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 985 | int j; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 986 | |
| 987 | /* Check for conflicts |
| 988 | * TODO: TEST if conflicts with other packages to be installed |
| 989 | * |
| 990 | * Add install packages and the packages they provide |
| 991 | * to the list of files to check conflicts for |
| 992 | */ |
| 993 | |
| 994 | /* Create array of package numbers to check against |
| 995 | * installed package for conflicts*/ |
| 996 | while (deb_file[i] != NULL) { |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 997 | const unsigned package_num = deb_file[i]->package; |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 998 | conflicts = xrealloc_vector(conflicts, 2, conflicts_num); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 999 | conflicts[conflicts_num] = package_num; |
| 1000 | conflicts_num++; |
| 1001 | /* add provides to conflicts list */ |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 1002 | for (j = 0; j < package_hashtable[package_num]->num_of_edges; j++) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1003 | if (package_hashtable[package_num]->edge[j]->type == EDGE_PROVIDES) { |
| 1004 | const int conflicts_package_num = search_package_hashtable( |
| 1005 | package_hashtable[package_num]->edge[j]->name, |
| 1006 | package_hashtable[package_num]->edge[j]->version, |
| 1007 | package_hashtable[package_num]->edge[j]->operator); |
| 1008 | if (package_hashtable[conflicts_package_num] == NULL) { |
| 1009 | /* create a new package */ |
Denis Vlasenko | 4cccc03 | 2006-12-22 18:37:07 +0000 | [diff] [blame] | 1010 | common_node_t *new_node = xzalloc(sizeof(common_node_t)); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1011 | new_node->name = package_hashtable[package_num]->edge[j]->name; |
| 1012 | new_node->version = package_hashtable[package_num]->edge[j]->version; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1013 | package_hashtable[conflicts_package_num] = new_node; |
| 1014 | } |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 1015 | conflicts = xrealloc_vector(conflicts, 2, conflicts_num); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1016 | conflicts[conflicts_num] = conflicts_package_num; |
| 1017 | conflicts_num++; |
| 1018 | } |
| 1019 | } |
| 1020 | i++; |
| 1021 | } |
| 1022 | |
| 1023 | /* Check conflicts */ |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1024 | i = 0; |
| 1025 | while (deb_file[i] != NULL) { |
| 1026 | const common_node_t *package_node = package_hashtable[deb_file[i]->package]; |
| 1027 | int status_num = 0; |
| 1028 | status_num = search_status_hashtable(name_hashtable[package_node->name]); |
| 1029 | |
| 1030 | if (get_status(status_num, 3) == search_name_hashtable("installed")) { |
| 1031 | i++; |
| 1032 | continue; |
| 1033 | } |
| 1034 | |
| 1035 | for (j = 0; j < package_node->num_of_edges; j++) { |
| 1036 | const edge_t *package_edge = package_node->edge[j]; |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1037 | |
| 1038 | if (package_edge->type == EDGE_CONFLICTS) { |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1039 | const unsigned package_num = |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1040 | search_package_hashtable(package_edge->name, |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 1041 | package_edge->version, |
| 1042 | package_edge->operator); |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1043 | int result = 0; |
| 1044 | if (package_hashtable[package_num] != NULL) { |
| 1045 | status_num = search_status_hashtable(name_hashtable[package_hashtable[package_num]->name]); |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1046 | |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1047 | if (get_status(status_num, 1) == search_name_hashtable("install")) { |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1048 | result = test_version(package_hashtable[deb_file[i]->package]->version, |
| 1049 | package_edge->version, package_edge->operator); |
| 1050 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1051 | } |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1052 | |
| 1053 | if (result) { |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1054 | bb_error_msg_and_die("package %s conflicts with %s", |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1055 | name_hashtable[package_node->name], |
| 1056 | name_hashtable[package_edge->name]); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1057 | } |
| 1058 | } |
| 1059 | } |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1060 | i++; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1061 | } |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1062 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1063 | |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 1064 | /* Check dependentcies */ |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1065 | for (i = 0; i < PACKAGE_HASH_PRIME; i++) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1066 | int status_num = 0; |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1067 | int number_of_alternatives = 0; |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 1068 | const edge_t * root_of_alternatives = NULL; |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1069 | const common_node_t *package_node = package_hashtable[i]; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1070 | |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1071 | /* If the package node does not exist then this |
| 1072 | * package is a virtual one. In which case there are |
| 1073 | * no dependencies to check. |
| 1074 | */ |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1075 | if (package_node == NULL) continue; |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1076 | |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1077 | status_num = search_status_hashtable(name_hashtable[package_node->name]); |
| 1078 | |
| 1079 | /* If there is no status then this package is a |
| 1080 | * virtual one provided by something else. In which |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1081 | * case there are no dependencies to check. |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1082 | */ |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1083 | if (status_hashtable[status_num] == NULL) continue; |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1084 | |
| 1085 | /* If we don't want this package installed then we may |
| 1086 | * as well ignore it's dependencies. |
| 1087 | */ |
| 1088 | if (get_status(status_num, 1) != search_name_hashtable("install")) { |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1089 | continue; |
| 1090 | } |
| 1091 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 1092 | /* This code is tested only for EDGE_DEPENDS, since I |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1093 | * have no suitable pre-depends available. There is no |
| 1094 | * reason that it shouldn't work though :-) |
| 1095 | */ |
| 1096 | for (j = 0; j < package_node->num_of_edges; j++) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1097 | const edge_t *package_edge = package_node->edge[j]; |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1098 | unsigned package_num; |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1099 | |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1100 | if (package_edge->type == EDGE_OR_PRE_DEPENDS |
| 1101 | || package_edge->type == EDGE_OR_DEPENDS |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 1102 | ) { |
| 1103 | /* start an EDGE_OR_ list */ |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1104 | number_of_alternatives = package_edge->version; |
| 1105 | root_of_alternatives = package_edge; |
| 1106 | continue; |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1107 | } |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 1108 | if (number_of_alternatives == 0) { /* not in the middle of an EDGE_OR_ list */ |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1109 | number_of_alternatives = 1; |
| 1110 | root_of_alternatives = NULL; |
| 1111 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1112 | |
Glenn L McGrath | 1dbbd2f | 2001-12-05 04:10:14 +0000 | [diff] [blame] | 1113 | package_num = search_package_hashtable(package_edge->name, package_edge->version, package_edge->operator); |
Glenn L McGrath | 1dbbd2f | 2001-12-05 04:10:14 +0000 | [diff] [blame] | 1114 | |
Denys Vlasenko | 6b9f163 | 2010-01-28 02:24:24 +0100 | [diff] [blame] | 1115 | if (package_edge->type == EDGE_PRE_DEPENDS |
| 1116 | || package_edge->type == EDGE_DEPENDS |
| 1117 | ) { |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1118 | int result=1; |
| 1119 | status_num = 0; |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1120 | |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1121 | /* If we are inside an alternative then check |
| 1122 | * this edge is the right type. |
| 1123 | * |
| 1124 | * EDGE_DEPENDS == OR_DEPENDS -1 |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1125 | * EDGE_PRE_DEPENDS == OR_PRE_DEPENDS -1 |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1126 | */ |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1127 | if (root_of_alternatives && package_edge->type != root_of_alternatives->type - 1) |
| 1128 | bb_error_msg_and_die("fatal error, package dependencies corrupt: %d != %d - 1", |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 1129 | package_edge->type, root_of_alternatives->type); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1130 | |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1131 | if (package_hashtable[package_num] != NULL) |
| 1132 | result = !package_satisfies_dependency(package_num, package_edge->type); |
| 1133 | |
| 1134 | if (result) { /* check for other package which provide what we are looking for */ |
| 1135 | int provider = -1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1136 | |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1137 | while ((provider = search_for_provides(package_edge->name, provider)) > -1) { |
| 1138 | if (package_hashtable[provider] == NULL) { |
| 1139 | puts("Have a provider but no package information for it"); |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1140 | continue; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1141 | } |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1142 | result = !package_satisfies_dependency(provider, package_edge->type); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1143 | |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1144 | if (result == 0) |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1145 | break; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1146 | } |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1147 | } |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1148 | |
| 1149 | /* It must be already installed, or to be installed */ |
| 1150 | number_of_alternatives--; |
| 1151 | if (result && number_of_alternatives == 0) { |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1152 | if (root_of_alternatives) |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1153 | bb_error_msg_and_die( |
Denys Vlasenko | 7f3a2a2 | 2015-10-08 11:24:44 +0200 | [diff] [blame] | 1154 | "package %s %sdepends on %s, which %s", |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1155 | name_hashtable[package_node->name], |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1156 | package_edge->type == EDGE_PRE_DEPENDS ? "pre-" : "", |
Denys Vlasenko | 7f3a2a2 | 2015-10-08 11:24:44 +0200 | [diff] [blame] | 1157 | name_hashtable[root_of_alternatives->name], |
| 1158 | "cannot be satisfied"); |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1159 | bb_error_msg_and_die( |
Denys Vlasenko | 7f3a2a2 | 2015-10-08 11:24:44 +0200 | [diff] [blame] | 1160 | "package %s %sdepends on %s, which %s", |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1161 | name_hashtable[package_node->name], |
| 1162 | package_edge->type == EDGE_PRE_DEPENDS ? "pre-" : "", |
| 1163 | name_hashtable[package_edge->name], |
| 1164 | describe_status(status_num)); |
| 1165 | } |
| 1166 | if (result == 0 && number_of_alternatives) { |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1167 | /* we've found a package which |
| 1168 | * satisfies the dependency, |
| 1169 | * so skip over the rest of |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1170 | * the alternatives. |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1171 | */ |
| 1172 | j += number_of_alternatives; |
| 1173 | number_of_alternatives = 0; |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1174 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1175 | } |
| 1176 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1177 | } |
| 1178 | free(conflicts); |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 1179 | return TRUE; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1180 | } |
| 1181 | |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 1182 | static char **create_list(const char *filename) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1183 | { |
| 1184 | FILE *list_stream; |
Denis Vlasenko | 2027313 | 2008-06-21 22:10:52 +0000 | [diff] [blame] | 1185 | char **file_list; |
| 1186 | char *line; |
| 1187 | int count; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1188 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 1189 | /* don't use [xw]fopen here, handle error ourself */ |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 1190 | list_stream = fopen_for_read(filename); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1191 | if (list_stream == NULL) { |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 1192 | return NULL; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1193 | } |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1194 | |
Denis Vlasenko | 2027313 | 2008-06-21 22:10:52 +0000 | [diff] [blame] | 1195 | file_list = NULL; |
| 1196 | count = 0; |
Denis Vlasenko | 8ee649a | 2008-03-26 20:04:27 +0000 | [diff] [blame] | 1197 | while ((line = xmalloc_fgetline(list_stream)) != NULL) { |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 1198 | file_list = xrealloc_vector(file_list, 2, count); |
Denis Vlasenko | 2027313 | 2008-06-21 22:10:52 +0000 | [diff] [blame] | 1199 | file_list[count++] = line; |
Denis Vlasenko | 2784228 | 2008-08-04 13:20:36 +0000 | [diff] [blame] | 1200 | /*file_list[count] = NULL; - xrealloc_vector did it */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1201 | } |
| 1202 | fclose(list_stream); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1203 | |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1204 | return file_list; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1205 | } |
| 1206 | |
| 1207 | /* maybe i should try and hook this into remove_file.c somehow */ |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 1208 | static int remove_file_array(char **remove_names, char **exclude_names) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1209 | { |
| 1210 | struct stat path_stat; |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1211 | int remove_flag = 1; /* not removed anything yet */ |
| 1212 | int i, j; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1213 | |
| 1214 | if (remove_names == NULL) { |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1215 | return 0; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1216 | } |
| 1217 | for (i = 0; remove_names[i] != NULL; i++) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1218 | if (exclude_names != NULL) { |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1219 | for (j = 0; exclude_names[j] != NULL; j++) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1220 | if (strcmp(remove_names[i], exclude_names[j]) == 0) { |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1221 | goto skip; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1222 | } |
| 1223 | } |
| 1224 | } |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1225 | /* TODO: why we are checking lstat? we can just try rm/rmdir */ |
| 1226 | if (lstat(remove_names[i], &path_stat) < 0) { |
| 1227 | continue; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1228 | } |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1229 | if (S_ISDIR(path_stat.st_mode)) { |
| 1230 | remove_flag &= rmdir(remove_names[i]); /* 0 if no error */ |
| 1231 | } else { |
| 1232 | remove_flag &= unlink(remove_names[i]); /* 0 if no error */ |
| 1233 | } |
| 1234 | skip: |
| 1235 | continue; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1236 | } |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1237 | return (remove_flag == 0); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1238 | } |
| 1239 | |
Denis Vlasenko | c87339d | 2008-06-21 23:15:43 +0000 | [diff] [blame] | 1240 | static void run_package_script_or_die(const char *package_name, const char *script_type) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1241 | { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1242 | char *script_path; |
| 1243 | int result; |
| 1244 | |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 1245 | script_path = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, script_type); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1246 | |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 1247 | /* If the file doesn't exist it isn't fatal */ |
Denis Vlasenko | c87339d | 2008-06-21 23:15:43 +0000 | [diff] [blame] | 1248 | result = access(script_path, F_OK) ? EXIT_SUCCESS : system(script_path); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1249 | free(script_path); |
Denis Vlasenko | c87339d | 2008-06-21 23:15:43 +0000 | [diff] [blame] | 1250 | if (result) |
| 1251 | bb_error_msg_and_die("%s failed, exit code %d", script_type, result); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1252 | } |
| 1253 | |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1254 | /* |
| 1255 | The policy manual defines what scripts get called when and with |
| 1256 | what arguments. I realize that busybox does not support all of |
| 1257 | these scenarios, but it does support some of them; it does not, |
Denis Vlasenko | c87339d | 2008-06-21 23:15:43 +0000 | [diff] [blame] | 1258 | however, run them with any parameters in run_package_script_or_die(). |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1259 | Here are the scripts: |
| 1260 | |
| 1261 | preinst install |
| 1262 | preinst install <old_version> |
| 1263 | preinst upgrade <old_version> |
| 1264 | preinst abort_upgrade <new_version> |
| 1265 | postinst configure <most_recent_version> |
| 1266 | postinst abort-upgade <new_version> |
| 1267 | postinst abort-remove |
| 1268 | postinst abort-remove in-favour <package> <version> |
| 1269 | postinst abort-deconfigure in-favor <failed_install_package> removing <conflicting_package> <version> |
| 1270 | prerm remove |
| 1271 | prerm upgrade <new_version> |
| 1272 | prerm failed-upgrade <old_version> |
| 1273 | prerm remove in-favor <package> <new_version> |
| 1274 | prerm deconfigure in-favour <package> <version> removing <package> <version> |
| 1275 | postrm remove |
| 1276 | postrm purge |
| 1277 | postrm upgrade <new_version> |
| 1278 | postrm failed-upgrade <old_version> |
| 1279 | postrm abort-install |
| 1280 | postrm abort-install <old_version> |
| 1281 | postrm abort-upgrade <old_version> |
| 1282 | postrm disappear <overwriter> <version> |
| 1283 | */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 1284 | static const char *const all_control_files[] = { |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1285 | "preinst", "postinst", "prerm", "postrm", |
| 1286 | "list", "md5sums", "shlibs", "conffiles", |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1287 | "config", "templates" |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1288 | }; |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1289 | |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 1290 | static char **all_control_list(const char *package_name) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1291 | { |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 1292 | unsigned i = 0; |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1293 | char **remove_files; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1294 | |
| 1295 | /* Create a list of all /var/lib/dpkg/info/<package> files */ |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1296 | remove_files = xzalloc(sizeof(all_control_files) + sizeof(char*)); |
| 1297 | while (i < ARRAY_SIZE(all_control_files)) { |
| 1298 | remove_files[i] = xasprintf("/var/lib/dpkg/info/%s.%s", |
| 1299 | package_name, all_control_files[i]); |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1300 | i++; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1301 | } |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1302 | |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 1303 | return remove_files; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1304 | } |
| 1305 | |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 1306 | static void free_array(char **array) |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1307 | { |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1308 | if (array) { |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 1309 | unsigned i = 0; |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1310 | while (array[i]) { |
| 1311 | free(array[i]); |
| 1312 | i++; |
| 1313 | } |
| 1314 | free(array); |
| 1315 | } |
| 1316 | } |
Glenn L McGrath | e738661 | 2001-09-21 04:30:51 +0000 | [diff] [blame] | 1317 | |
| 1318 | /* This function lists information on the installed packages. It loops through |
| 1319 | * the status_hashtable to retrieve the info. This results in smaller code than |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1320 | * scanning the status file. The resulting list, however, is unsorted. |
Glenn L McGrath | e738661 | 2001-09-21 04:30:51 +0000 | [diff] [blame] | 1321 | */ |
Bernhard Reutner-Fischer | 97516fc | 2008-09-25 12:18:49 +0000 | [diff] [blame] | 1322 | static void list_packages(const char *pattern) |
Glenn L McGrath | e738661 | 2001-09-21 04:30:51 +0000 | [diff] [blame] | 1323 | { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 1324 | int i; |
Glenn L McGrath | e738661 | 2001-09-21 04:30:51 +0000 | [diff] [blame] | 1325 | |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1326 | puts(" Name Version"); |
| 1327 | puts("+++-==============-=============="); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1328 | |
Glenn L McGrath | e738661 | 2001-09-21 04:30:51 +0000 | [diff] [blame] | 1329 | /* go through status hash, dereference package hash and finally strings */ |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1330 | for (i = 0; i < STATUS_HASH_PRIME+1; i++) { |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 1331 | if (status_hashtable[i]) { |
| 1332 | const char *stat_str; /* status string */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1333 | const char *name_str; /* package name */ |
| 1334 | const char *vers_str; /* version */ |
| 1335 | char s1, s2; /* status abbreviations */ |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1336 | int spccnt; /* space count */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1337 | int j; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1338 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1339 | stat_str = name_hashtable[status_hashtable[i]->status]; |
| 1340 | name_str = name_hashtable[package_hashtable[status_hashtable[i]->package]->name]; |
| 1341 | vers_str = name_hashtable[package_hashtable[status_hashtable[i]->package]->version]; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1342 | |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1343 | if (pattern && fnmatch(pattern, name_str, 0) != 0) |
Bernhard Reutner-Fischer | 97516fc | 2008-09-25 12:18:49 +0000 | [diff] [blame] | 1344 | continue; |
| 1345 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1346 | /* get abbreviation for status field 1 */ |
| 1347 | s1 = stat_str[0] == 'i' ? 'i' : 'r'; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1348 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1349 | /* get abbreviation for status field 2 */ |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1350 | for (j = 0, spccnt = 0; stat_str[j] && spccnt < 2; j++) { |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 1351 | if (stat_str[j] == ' ') spccnt++; |
Glenn L McGrath | e738661 | 2001-09-21 04:30:51 +0000 | [diff] [blame] | 1352 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1353 | s2 = stat_str[j]; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1354 | |
Glenn L McGrath | e738661 | 2001-09-21 04:30:51 +0000 | [diff] [blame] | 1355 | /* print out the line formatted like Debian dpkg */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1356 | printf("%c%c %-14s %s\n", s1, s2, name_str, vers_str); |
Glenn L McGrath | e738661 | 2001-09-21 04:30:51 +0000 | [diff] [blame] | 1357 | } |
Denis Vlasenko | 334fa9b | 2007-04-13 23:22:58 +0000 | [diff] [blame] | 1358 | } |
Glenn L McGrath | e738661 | 2001-09-21 04:30:51 +0000 | [diff] [blame] | 1359 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1360 | |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1361 | static void remove_package(const unsigned package_num, int noisy) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1362 | { |
| 1363 | const char *package_name = name_hashtable[package_hashtable[package_num]->name]; |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1364 | const char *package_version = name_hashtable[package_hashtable[package_num]->version]; |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1365 | const unsigned status_num = search_status_hashtable(package_name); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1366 | const int package_name_length = strlen(package_name); |
| 1367 | char **remove_files; |
| 1368 | char **exclude_files; |
| 1369 | char list_name[package_name_length + 25]; |
| 1370 | char conffile_name[package_name_length + 30]; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1371 | |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1372 | if (noisy) |
| 1373 | printf("Removing %s (%s)...\n", package_name, package_version); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1374 | |
Denis Vlasenko | c87339d | 2008-06-21 23:15:43 +0000 | [diff] [blame] | 1375 | /* Run prerm script */ |
| 1376 | run_package_script_or_die(package_name, "prerm"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1377 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 1378 | /* Create a list of files to remove, and a separate list of those to keep */ |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1379 | sprintf(list_name, "/var/lib/dpkg/info/%s.%s", package_name, "list"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1380 | remove_files = create_list(list_name); |
| 1381 | |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1382 | sprintf(conffile_name, "/var/lib/dpkg/info/%s.%s", package_name, "conffiles"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1383 | exclude_files = create_list(conffile_name); |
| 1384 | |
Denis Vlasenko | e1a0d48 | 2006-10-20 13:28:22 +0000 | [diff] [blame] | 1385 | /* Some directories can't be removed straight away, so do multiple passes */ |
Denis Vlasenko | c87339d | 2008-06-21 23:15:43 +0000 | [diff] [blame] | 1386 | while (remove_file_array(remove_files, exclude_files)) |
| 1387 | continue; |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1388 | free_array(exclude_files); |
| 1389 | free_array(remove_files); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1390 | |
Denys Vlasenko | d1090c9 | 2009-07-25 11:52:32 +0200 | [diff] [blame] | 1391 | /* Create a list of files in /var/lib/dpkg/info/<package>.* to keep */ |
| 1392 | exclude_files = xzalloc(sizeof(exclude_files[0]) * 3); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 1393 | exclude_files[0] = xstrdup(conffile_name); |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1394 | exclude_files[1] = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, "postrm"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1395 | |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1396 | /* Create a list of all /var/lib/dpkg/info/<package> files */ |
| 1397 | remove_files = all_control_list(package_name); |
| 1398 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1399 | remove_file_array(remove_files, exclude_files); |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1400 | free_array(remove_files); |
| 1401 | free_array(exclude_files); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1402 | |
Bernhard Reutner-Fischer | f0d6068 | 2008-06-05 12:18:42 +0000 | [diff] [blame] | 1403 | /* rename <package>.conffiles to <package>.list |
| 1404 | * The conffiles control file isn't required in Debian packages, so don't |
| 1405 | * error out if it's missing. */ |
| 1406 | rename(conffile_name, list_name); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1407 | |
| 1408 | /* Change package status */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1409 | set_status(status_num, "config-files", 3); |
| 1410 | } |
| 1411 | |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1412 | static void purge_package(const unsigned package_num) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1413 | { |
| 1414 | const char *package_name = name_hashtable[package_hashtable[package_num]->name]; |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1415 | const char *package_version = name_hashtable[package_hashtable[package_num]->version]; |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1416 | const unsigned status_num = search_status_hashtable(package_name); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1417 | char **remove_files; |
| 1418 | char **exclude_files; |
| 1419 | char list_name[strlen(package_name) + 25]; |
| 1420 | |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1421 | printf("Purging %s (%s)...\n", package_name, package_version); |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1422 | |
Denis Vlasenko | c87339d | 2008-06-21 23:15:43 +0000 | [diff] [blame] | 1423 | /* Run prerm script */ |
| 1424 | run_package_script_or_die(package_name, "prerm"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1425 | |
| 1426 | /* Create a list of files to remove */ |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1427 | sprintf(list_name, "/var/lib/dpkg/info/%s.%s", package_name, "list"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1428 | remove_files = create_list(list_name); |
| 1429 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1430 | /* Some directories cant be removed straight away, so do multiple passes */ |
Denys Vlasenko | d1090c9 | 2009-07-25 11:52:32 +0200 | [diff] [blame] | 1431 | while (remove_file_array(remove_files, NULL)) |
| 1432 | continue; |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1433 | free_array(remove_files); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1434 | |
| 1435 | /* Create a list of all /var/lib/dpkg/info/<package> files */ |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1436 | remove_files = all_control_list(package_name); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1437 | |
Denys Vlasenko | d1090c9 | 2009-07-25 11:52:32 +0200 | [diff] [blame] | 1438 | /* Delete all of them except the postrm script */ |
| 1439 | exclude_files = xzalloc(sizeof(exclude_files[0]) * 2); |
| 1440 | exclude_files[0] = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, "postrm"); |
| 1441 | remove_file_array(remove_files, exclude_files); |
| 1442 | free_array(exclude_files); |
| 1443 | |
| 1444 | /* Run and remove postrm script */ |
Denis Vlasenko | c87339d | 2008-06-21 23:15:43 +0000 | [diff] [blame] | 1445 | run_package_script_or_die(package_name, "postrm"); |
Denys Vlasenko | d1090c9 | 2009-07-25 11:52:32 +0200 | [diff] [blame] | 1446 | remove_file_array(remove_files, NULL); |
| 1447 | |
| 1448 | free_array(remove_files); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1449 | |
| 1450 | /* Change package status */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1451 | set_status(status_num, "not-installed", 3); |
| 1452 | } |
| 1453 | |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1454 | static archive_handle_t *init_archive_deb_ar(const char *filename) |
Glenn L McGrath | 61b7904 | 2002-10-19 10:40:55 +0000 | [diff] [blame] | 1455 | { |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1456 | archive_handle_t *ar_handle; |
Glenn L McGrath | 61b7904 | 2002-10-19 10:40:55 +0000 | [diff] [blame] | 1457 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1458 | /* Setup an ar archive handle that refers to the gzip sub archive */ |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1459 | ar_handle = init_handle(); |
| 1460 | ar_handle->filter = filter_accept_list_reassign; |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 1461 | ar_handle->src_fd = xopen(filename, O_RDONLY); |
Glenn L McGrath | 61b7904 | 2002-10-19 10:40:55 +0000 | [diff] [blame] | 1462 | |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 1463 | return ar_handle; |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1464 | } |
Glenn L McGrath | 61b7904 | 2002-10-19 10:40:55 +0000 | [diff] [blame] | 1465 | |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1466 | static void init_archive_deb_control(archive_handle_t *ar_handle) |
| 1467 | { |
| 1468 | archive_handle_t *tar_handle; |
| 1469 | |
| 1470 | /* Setup the tar archive handle */ |
| 1471 | tar_handle = init_handle(); |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1472 | tar_handle->src_fd = ar_handle->src_fd; |
| 1473 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 1474 | /* We don't care about data.tar.* or debian-binary, just control.tar.* */ |
Denys Vlasenko | 08f9ffc | 2015-01-30 15:15:38 +0100 | [diff] [blame] | 1475 | llist_add_to(&(ar_handle->accept), (char*)"control.tar"); |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 1476 | #if ENABLE_FEATURE_SEAMLESS_GZ |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 1477 | llist_add_to(&(ar_handle->accept), (char*)"control.tar.gz"); |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1478 | #endif |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 1479 | #if ENABLE_FEATURE_SEAMLESS_BZ2 |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 1480 | llist_add_to(&(ar_handle->accept), (char*)"control.tar.bz2"); |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1481 | #endif |
Denys Vlasenko | 08f9ffc | 2015-01-30 15:15:38 +0100 | [diff] [blame] | 1482 | #if ENABLE_FEATURE_SEAMLESS_XZ |
| 1483 | llist_add_to(&(ar_handle->accept), (char*)"control.tar.xz"); |
| 1484 | #endif |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1485 | |
| 1486 | /* Assign the tar handle as a subarchive of the ar handle */ |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 1487 | ar_handle->dpkg__sub_archive = tar_handle; |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1488 | } |
| 1489 | |
| 1490 | static void init_archive_deb_data(archive_handle_t *ar_handle) |
| 1491 | { |
| 1492 | archive_handle_t *tar_handle; |
| 1493 | |
| 1494 | /* Setup the tar archive handle */ |
| 1495 | tar_handle = init_handle(); |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1496 | tar_handle->src_fd = ar_handle->src_fd; |
| 1497 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 1498 | /* We don't care about control.tar.* or debian-binary, just data.tar.* */ |
Denys Vlasenko | 08f9ffc | 2015-01-30 15:15:38 +0100 | [diff] [blame] | 1499 | llist_add_to(&(ar_handle->accept), (char*)"data.tar"); |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 1500 | #if ENABLE_FEATURE_SEAMLESS_GZ |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 1501 | llist_add_to(&(ar_handle->accept), (char*)"data.tar.gz"); |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1502 | #endif |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 1503 | #if ENABLE_FEATURE_SEAMLESS_BZ2 |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 1504 | llist_add_to(&(ar_handle->accept), (char*)"data.tar.bz2"); |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1505 | #endif |
Denys Vlasenko | 08f9ffc | 2015-01-30 15:15:38 +0100 | [diff] [blame] | 1506 | #if ENABLE_FEATURE_SEAMLESS_LZMA |
| 1507 | llist_add_to(&(ar_handle->accept), (char*)"data.tar.lzma"); |
| 1508 | #endif |
| 1509 | #if ENABLE_FEATURE_SEAMLESS_XZ |
| 1510 | llist_add_to(&(ar_handle->accept), (char*)"data.tar.xz"); |
| 1511 | #endif |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1512 | |
| 1513 | /* Assign the tar handle as a subarchive of the ar handle */ |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 1514 | ar_handle->dpkg__sub_archive = tar_handle; |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1515 | } |
| 1516 | |
Denys Vlasenko | 425ad9c | 2009-12-16 22:46:01 +0100 | [diff] [blame] | 1517 | static void FAST_FUNC data_extract_to_buffer(archive_handle_t *archive_handle) |
| 1518 | { |
| 1519 | unsigned size = archive_handle->file_header->size; |
| 1520 | |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 1521 | archive_handle->dpkg__buffer = xzalloc(size + 1); |
| 1522 | xread(archive_handle->src_fd, archive_handle->dpkg__buffer, size); |
Denys Vlasenko | 425ad9c | 2009-12-16 22:46:01 +0100 | [diff] [blame] | 1523 | } |
| 1524 | |
Eric Andersen | 1393a39 | 2003-09-15 08:06:15 +0000 | [diff] [blame] | 1525 | static char *deb_extract_control_file_to_buffer(archive_handle_t *ar_handle, llist_t *myaccept) |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1526 | { |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 1527 | ar_handle->dpkg__sub_archive->action_data = data_extract_to_buffer; |
| 1528 | ar_handle->dpkg__sub_archive->accept = myaccept; |
| 1529 | ar_handle->dpkg__sub_archive->filter = filter_accept_list; |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1530 | |
| 1531 | unpack_ar_archive(ar_handle); |
| 1532 | close(ar_handle->src_fd); |
| 1533 | |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 1534 | return ar_handle->dpkg__sub_archive->dpkg__buffer; |
Glenn L McGrath | 61b7904 | 2002-10-19 10:40:55 +0000 | [diff] [blame] | 1535 | } |
| 1536 | |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1537 | static void append_control_file_to_llist(const char *package_name, const char *control_name, llist_t **ll) |
| 1538 | { |
| 1539 | FILE *fp; |
| 1540 | char *filename, *line; |
| 1541 | |
| 1542 | filename = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, control_name); |
| 1543 | fp = fopen_for_read(filename); |
| 1544 | free(filename); |
| 1545 | if (fp != NULL) { |
| 1546 | while ((line = xmalloc_fgetline(fp)) != NULL) |
| 1547 | llist_add_to(ll, line); |
| 1548 | fclose(fp); |
| 1549 | } |
| 1550 | } |
| 1551 | |
| 1552 | static char FAST_FUNC filter_rename_config(archive_handle_t *archive_handle) |
| 1553 | { |
| 1554 | int fd; |
| 1555 | char *name_ptr = archive_handle->file_header->name + 1; |
| 1556 | |
| 1557 | /* Is this file marked as config file? */ |
| 1558 | if (!find_list_entry(archive_handle->accept, name_ptr)) |
| 1559 | return EXIT_SUCCESS; /* no */ |
| 1560 | |
| 1561 | fd = open(name_ptr, O_RDONLY); |
| 1562 | if (fd >= 0) { |
| 1563 | md5_ctx_t md5; |
| 1564 | char *md5line, *buf; |
| 1565 | int count; |
| 1566 | |
| 1567 | /* Calculate MD5 of existing file */ |
| 1568 | buf = xmalloc(4096); |
| 1569 | md5_begin(&md5); |
| 1570 | while ((count = safe_read(fd, buf, 4096)) > 0) |
Denys Vlasenko | c0683ac | 2010-10-16 20:45:27 +0200 | [diff] [blame] | 1571 | md5_hash(&md5, buf, count); |
| 1572 | md5_end(&md5, buf); /* using buf as result storage */ |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1573 | close(fd); |
| 1574 | |
| 1575 | md5line = xmalloc(16 * 2 + 2 + strlen(name_ptr) + 1); |
| 1576 | sprintf(bin2hex(md5line, buf, 16), " %s", name_ptr); |
| 1577 | free(buf); |
| 1578 | |
| 1579 | /* Is it changed after install? */ |
| 1580 | if (find_list_entry(archive_handle->accept, md5line) == NULL) { |
| 1581 | printf("Warning: Creating %s as %s.dpkg-new\n", name_ptr, name_ptr); |
| 1582 | archive_handle->file_header->name = xasprintf("%s.dpkg-new", archive_handle->file_header->name); |
| 1583 | } |
| 1584 | free(md5line); |
| 1585 | } |
| 1586 | return EXIT_SUCCESS; |
| 1587 | } |
| 1588 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 1589 | static void FAST_FUNC data_extract_all_prefix(archive_handle_t *archive_handle) |
Glenn L McGrath | 6ab32eb | 2002-11-03 11:57:10 +0000 | [diff] [blame] | 1590 | { |
| 1591 | char *name_ptr = archive_handle->file_header->name; |
| 1592 | |
Denys Vlasenko | 6fd42b3 | 2010-01-08 18:07:33 +0100 | [diff] [blame] | 1593 | /* Skip all leading "/" */ |
| 1594 | while (*name_ptr == '/') |
| 1595 | name_ptr++; |
| 1596 | /* Skip all leading "./" and "../" */ |
| 1597 | while (name_ptr[0] == '.') { |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1598 | if (name_ptr[1] == '.') |
Denys Vlasenko | 6fd42b3 | 2010-01-08 18:07:33 +0100 | [diff] [blame] | 1599 | name_ptr++; |
| 1600 | if (name_ptr[1] != '/') |
| 1601 | break; |
| 1602 | name_ptr += 2; |
| 1603 | } |
| 1604 | |
Glenn L McGrath | 6ab32eb | 2002-11-03 11:57:10 +0000 | [diff] [blame] | 1605 | if (name_ptr[0] != '\0') { |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 1606 | archive_handle->file_header->name = xasprintf("%s%s", archive_handle->dpkg__buffer, name_ptr); |
Glenn L McGrath | 6ab32eb | 2002-11-03 11:57:10 +0000 | [diff] [blame] | 1607 | data_extract_all(archive_handle); |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1608 | if (fnmatch("*.dpkg-new", archive_handle->file_header->name, 0) == 0) { |
| 1609 | /* remove .dpkg-new suffix */ |
| 1610 | archive_handle->file_header->name[strlen(archive_handle->file_header->name) - 9] = '\0'; |
| 1611 | } |
Glenn L McGrath | 6ab32eb | 2002-11-03 11:57:10 +0000 | [diff] [blame] | 1612 | } |
Glenn L McGrath | 6ab32eb | 2002-11-03 11:57:10 +0000 | [diff] [blame] | 1613 | } |
| 1614 | |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1615 | enum { |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 1616 | /* Commands */ |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1617 | OPT_configure = (1 << 0), |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 1618 | OPT_install = (1 << 1), |
| 1619 | OPT_list_installed = (1 << 2), |
| 1620 | OPT_purge = (1 << 3), |
| 1621 | OPT_remove = (1 << 4), |
| 1622 | OPT_unpack = (1 << 5), |
| 1623 | OPTMASK_cmd = (1 << 6) - 1, |
| 1624 | /* Options */ |
| 1625 | OPT_force = (1 << 6), |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1626 | OPT_force_ignore_depends = (1 << 7), |
| 1627 | OPT_force_confnew = (1 << 8), |
| 1628 | OPT_force_confold = (1 << 9), |
| 1629 | }; |
| 1630 | |
Glenn L McGrath | 6ab32eb | 2002-11-03 11:57:10 +0000 | [diff] [blame] | 1631 | static void unpack_package(deb_file_t *deb_file) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1632 | { |
| 1633 | const char *package_name = name_hashtable[package_hashtable[deb_file->package]->name]; |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1634 | const unsigned status_num = search_status_hashtable(package_name); |
| 1635 | const unsigned status_package_num = status_hashtable[status_num]->package; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1636 | char *info_prefix; |
Denis Vlasenko | 1da6a21 | 2006-09-03 16:33:58 +0000 | [diff] [blame] | 1637 | char *list_filename; |
Glenn L McGrath | 61b7904 | 2002-10-19 10:40:55 +0000 | [diff] [blame] | 1638 | archive_handle_t *archive_handle; |
| 1639 | FILE *out_stream; |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1640 | llist_t *accept_list; |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1641 | llist_t *conffile_list; |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1642 | int i; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1643 | |
| 1644 | /* If existing version, remove it first */ |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1645 | conffile_list = NULL; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1646 | if (strcmp(name_hashtable[get_status(status_num, 3)], "installed") == 0) { |
| 1647 | /* Package is already installed, remove old version first */ |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1648 | printf("Preparing to replace %s %s (using %s)...\n", package_name, |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1649 | name_hashtable[package_hashtable[status_package_num]->version], |
| 1650 | deb_file->filename); |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1651 | |
| 1652 | /* Read md5sums from old package */ |
| 1653 | if (!(option_mask32 & OPT_force_confold)) |
| 1654 | append_control_file_to_llist(package_name, "md5sums", &conffile_list); |
| 1655 | |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1656 | remove_package(status_package_num, 0); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1657 | } else { |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1658 | printf("Unpacking %s (from %s)...\n", package_name, deb_file->filename); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1659 | } |
| 1660 | |
| 1661 | /* Extract control.tar.gz to /var/lib/dpkg/info/<package>.filename */ |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1662 | info_prefix = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, ""); |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1663 | archive_handle = init_archive_deb_ar(deb_file->filename); |
| 1664 | init_archive_deb_control(archive_handle); |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1665 | |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1666 | accept_list = NULL; |
| 1667 | i = 0; |
| 1668 | while (i < ARRAY_SIZE(all_control_files)) { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 1669 | char *c = xasprintf("./%s", all_control_files[i]); |
Rob Landley | 8bb5078 | 2006-05-26 23:44:51 +0000 | [diff] [blame] | 1670 | llist_add_to(&accept_list, c); |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1671 | i++; |
| 1672 | } |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 1673 | archive_handle->dpkg__sub_archive->accept = accept_list; |
| 1674 | archive_handle->dpkg__sub_archive->filter = filter_accept_list; |
| 1675 | archive_handle->dpkg__sub_archive->action_data = data_extract_all_prefix; |
| 1676 | archive_handle->dpkg__sub_archive->dpkg__buffer = info_prefix; |
| 1677 | archive_handle->dpkg__sub_archive->ah_flags |= ARCHIVE_UNLINK_OLD; |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1678 | unpack_ar_archive(archive_handle); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1679 | |
| 1680 | /* Run the preinst prior to extracting */ |
Denis Vlasenko | c87339d | 2008-06-21 23:15:43 +0000 | [diff] [blame] | 1681 | run_package_script_or_die(package_name, "preinst"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1682 | |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1683 | /* Don't overwrite existing config files */ |
| 1684 | if (!(option_mask32 & OPT_force_confnew)) |
| 1685 | append_control_file_to_llist(package_name, "conffiles", &conffile_list); |
| 1686 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1687 | /* Extract data.tar.gz to the root directory */ |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1688 | archive_handle = init_archive_deb_ar(deb_file->filename); |
| 1689 | init_archive_deb_data(archive_handle); |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1690 | archive_handle->dpkg__sub_archive->accept = conffile_list; |
Denys Vlasenko | 440a509 | 2012-06-22 16:27:21 +0200 | [diff] [blame] | 1691 | /* Why ARCHIVE_REMEMBER_NAMES? |
| 1692 | * We want names collected in ->passed list even if conffile_list |
| 1693 | * is NULL (otherwise get_header_tar may optimize name saving out): |
| 1694 | */ |
| 1695 | archive_handle->dpkg__sub_archive->ah_flags |= ARCHIVE_REMEMBER_NAMES | ARCHIVE_UNLINK_OLD; |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1696 | archive_handle->dpkg__sub_archive->filter = filter_rename_config; |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 1697 | archive_handle->dpkg__sub_archive->action_data = data_extract_all_prefix; |
| 1698 | archive_handle->dpkg__sub_archive->dpkg__buffer = (char*)"/"; /* huh? */ |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1699 | unpack_ar_archive(archive_handle); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1700 | |
| 1701 | /* Create the list file */ |
Denis Vlasenko | d235f58 | 2008-06-21 22:46:58 +0000 | [diff] [blame] | 1702 | list_filename = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, "list"); |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 1703 | out_stream = xfopen_for_write(list_filename); |
Denys Vlasenko | 440a509 | 2012-06-22 16:27:21 +0200 | [diff] [blame] | 1704 | archive_handle->dpkg__sub_archive->passed = llist_rev(archive_handle->dpkg__sub_archive->passed); |
Denys Vlasenko | aa4977d | 2010-01-06 10:53:17 +0100 | [diff] [blame] | 1705 | while (archive_handle->dpkg__sub_archive->passed) { |
Denys Vlasenko | 440a509 | 2012-06-22 16:27:21 +0200 | [diff] [blame] | 1706 | char *filename = llist_pop(&archive_handle->dpkg__sub_archive->passed); |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1707 | /* the leading . has been stripped by data_extract_all_prefix already */ |
Denys Vlasenko | 440a509 | 2012-06-22 16:27:21 +0200 | [diff] [blame] | 1708 | fprintf(out_stream, "%s\n", filename); |
| 1709 | free(filename); |
Glenn L McGrath | 61b7904 | 2002-10-19 10:40:55 +0000 | [diff] [blame] | 1710 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1711 | fclose(out_stream); |
| 1712 | |
| 1713 | /* change status */ |
| 1714 | set_status(status_num, "install", 1); |
| 1715 | set_status(status_num, "unpacked", 3); |
| 1716 | |
| 1717 | free(info_prefix); |
Denis Vlasenko | 1da6a21 | 2006-09-03 16:33:58 +0000 | [diff] [blame] | 1718 | free(list_filename); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1719 | } |
| 1720 | |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 1721 | static void configure_package(deb_file_t *deb_file) |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1722 | { |
| 1723 | const char *package_name = name_hashtable[package_hashtable[deb_file->package]->name]; |
| 1724 | const char *package_version = name_hashtable[package_hashtable[deb_file->package]->version]; |
| 1725 | const int status_num = search_status_hashtable(package_name); |
| 1726 | |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1727 | printf("Setting up %s (%s)...\n", package_name, package_version); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1728 | |
| 1729 | /* Run the postinst script */ |
Denis Vlasenko | c87339d | 2008-06-21 23:15:43 +0000 | [diff] [blame] | 1730 | /* TODO: handle failure gracefully */ |
| 1731 | run_package_script_or_die(package_name, "postinst"); |
| 1732 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1733 | /* Change status to reflect success */ |
| 1734 | set_status(status_num, "install", 1); |
| 1735 | set_status(status_num, "installed", 3); |
| 1736 | } |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 1737 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 1738 | int dpkg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1739 | int dpkg_main(int argc UNUSED_PARAM, char **argv) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 1740 | { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1741 | deb_file_t **deb_file = NULL; |
| 1742 | status_node_t *status_node; |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1743 | char *str_f; |
Matt Kraai | efd7f03 | 2001-11-19 21:07:15 +0000 | [diff] [blame] | 1744 | int opt; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1745 | int package_num; |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1746 | int deb_count = 0; |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1747 | int state_status; |
| 1748 | int status_num; |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1749 | int i; |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1750 | #if ENABLE_LONG_OPTS |
| 1751 | static const char dpkg_longopts[] ALIGN1 = |
| 1752 | // FIXME: we use -C non-compatibly, should be: |
| 1753 | // "-C|--audit Check for broken package(s)" |
| 1754 | "configure\0" No_argument "C" |
| 1755 | "force\0" Required_argument "F" |
| 1756 | "install\0" No_argument "i" |
| 1757 | "list\0" No_argument "l" |
| 1758 | "purge\0" No_argument "P" |
| 1759 | "remove\0" No_argument "r" |
| 1760 | "unpack\0" No_argument "u" |
| 1761 | "force-depends\0" No_argument "\xff" |
| 1762 | "force-confnew\0" No_argument "\xfe" |
| 1763 | "force-confold\0" No_argument "\xfd" |
| 1764 | ; |
| 1765 | #endif |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1766 | |
Denis Vlasenko | c87339d | 2008-06-21 23:15:43 +0000 | [diff] [blame] | 1767 | INIT_G(); |
| 1768 | |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 1769 | opt = getopt32long(argv, "CilPruF:", dpkg_longopts, &str_f); |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 1770 | argv += optind; |
Denis Vlasenko | 7fd00cb | 2007-02-15 21:19:50 +0000 | [diff] [blame] | 1771 | //if (opt & OPT_configure) ... // -C |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1772 | if (opt & OPT_force) { // -F (--force in official dpkg) |
| 1773 | if (strcmp(str_f, "depends") == 0) |
| 1774 | opt |= OPT_force_ignore_depends; |
| 1775 | else if (strcmp(str_f, "confnew") == 0) |
| 1776 | opt |= OPT_force_confnew; |
| 1777 | else if (strcmp(str_f, "confold") == 0) |
| 1778 | opt |= OPT_force_confold; |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 1779 | else |
| 1780 | bb_show_usage(); |
Kim B. Heino | 3d43aed | 2010-03-29 14:18:27 +0200 | [diff] [blame] | 1781 | option_mask32 = opt; |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1782 | } |
Denis Vlasenko | 7fd00cb | 2007-02-15 21:19:50 +0000 | [diff] [blame] | 1783 | //if (opt & OPT_install) ... // -i |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1784 | //if (opt & OPT_list_installed) ... // -l |
Denis Vlasenko | 7fd00cb | 2007-02-15 21:19:50 +0000 | [diff] [blame] | 1785 | //if (opt & OPT_purge) ... // -P |
| 1786 | //if (opt & OPT_remove) ... // -r |
| 1787 | //if (opt & OPT_unpack) ... // -u (--unpack in official dpkg) |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 1788 | if (!(opt & OPTMASK_cmd) /* no cmd */ |
| 1789 | || ((opt & OPTMASK_cmd) & ((opt & OPTMASK_cmd)-1)) /* more than one cmd */ |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 1790 | ) { |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1791 | bb_show_usage(); |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 1792 | } |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 1793 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1794 | /* puts("(Reading database ... xxxxx files and directories installed.)"); */ |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1795 | index_status_file("/var/lib/dpkg/status"); |
| 1796 | |
Glenn L McGrath | e738661 | 2001-09-21 04:30:51 +0000 | [diff] [blame] | 1797 | /* if the list action was given print the installed packages and exit */ |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1798 | if (opt & OPT_list_installed) { |
Denys Vlasenko | eab75f6 | 2010-03-30 15:03:26 +0200 | [diff] [blame] | 1799 | list_packages(argv[0]); /* param can be NULL */ |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 1800 | return EXIT_SUCCESS; |
Glenn L McGrath | e738661 | 2001-09-21 04:30:51 +0000 | [diff] [blame] | 1801 | } |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 1802 | |
Glenn L McGrath | 0d2fb76 | 2001-10-25 14:26:05 +0000 | [diff] [blame] | 1803 | /* Read arguments and store relevant info in structs */ |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1804 | while (*argv) { |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1805 | /* deb_count = nb_elem - 1 and we need nb_elem + 1 to allocate terminal node [NULL pointer] */ |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 1806 | deb_file = xrealloc_vector(deb_file, 2, deb_count); |
Denis Vlasenko | 7fd00cb | 2007-02-15 21:19:50 +0000 | [diff] [blame] | 1807 | deb_file[deb_count] = xzalloc(sizeof(deb_file[0][0])); |
| 1808 | if (opt & (OPT_install | OPT_unpack)) { |
| 1809 | /* -i/-u: require filename */ |
Glenn L McGrath | 61b7904 | 2002-10-19 10:40:55 +0000 | [diff] [blame] | 1810 | archive_handle_t *archive_handle; |
Glenn L McGrath | 66125c8 | 2002-12-08 00:54:33 +0000 | [diff] [blame] | 1811 | llist_t *control_list = NULL; |
Glenn L McGrath | d8d1191 | 2002-11-05 13:56:04 +0000 | [diff] [blame] | 1812 | |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1813 | /* Extract the control file */ |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 1814 | llist_add_to(&control_list, (char*)"./control"); |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1815 | archive_handle = init_archive_deb_ar(argv[0]); |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1816 | init_archive_deb_control(archive_handle); |
| 1817 | deb_file[deb_count]->control_file = deb_extract_control_file_to_buffer(archive_handle, control_list); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1818 | if (deb_file[deb_count]->control_file == NULL) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame^] | 1819 | bb_simple_error_msg_and_die("can't extract control file"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1820 | } |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1821 | deb_file[deb_count]->filename = xstrdup(argv[0]); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1822 | package_num = fill_package_struct(deb_file[deb_count]->control_file); |
Glenn L McGrath | 0d2fb76 | 2001-10-25 14:26:05 +0000 | [diff] [blame] | 1823 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1824 | if (package_num == -1) { |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1825 | bb_error_msg("invalid control file in %s", argv[0]); |
| 1826 | argv++; |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1827 | continue; |
| 1828 | } |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1829 | deb_file[deb_count]->package = (unsigned) package_num; |
Glenn L McGrath | 747381c | 2002-11-06 22:54:41 +0000 | [diff] [blame] | 1830 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1831 | /* Add the package to the status hashtable */ |
Denis Vlasenko | 7fd00cb | 2007-02-15 21:19:50 +0000 | [diff] [blame] | 1832 | if (opt & (OPT_unpack | OPT_install)) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1833 | /* Try and find a currently installed version of this package */ |
| 1834 | status_num = search_status_hashtable(name_hashtable[package_hashtable[deb_file[deb_count]->package]->name]); |
| 1835 | /* If no previous entry was found initialise a new entry */ |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1836 | if (status_hashtable[status_num] == NULL |
| 1837 | || status_hashtable[status_num]->status == 0 |
| 1838 | ) { |
Denis Vlasenko | b95636c | 2006-12-19 23:36:04 +0000 | [diff] [blame] | 1839 | status_node = xmalloc(sizeof(status_node_t)); |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1840 | status_node->package = deb_file[deb_count]->package; |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 1841 | /* reinstreq isn't changed to "ok" until the package control info |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1842 | * is written to the status file*/ |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1843 | status_node->status = search_name_hashtable("install reinstreq not-installed"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1844 | status_hashtable[status_num] = status_node; |
| 1845 | } else { |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1846 | set_status(status_num, "install", 1); |
| 1847 | set_status(status_num, "reinstreq", 2); |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1848 | } |
| 1849 | } |
Denis Vlasenko | 7fd00cb | 2007-02-15 21:19:50 +0000 | [diff] [blame] | 1850 | } else if (opt & (OPT_configure | OPT_purge | OPT_remove)) { |
| 1851 | /* -C/-p/-r: require package name */ |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1852 | deb_file[deb_count]->package = search_package_hashtable( |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1853 | search_name_hashtable(argv[0]), |
| 1854 | search_name_hashtable("ANY"), VER_ANY); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1855 | if (package_hashtable[deb_file[deb_count]->package] == NULL) { |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1856 | bb_error_msg_and_die("package %s is uninstalled or unknown", argv[0]); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1857 | } |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1858 | package_num = deb_file[deb_count]->package; |
| 1859 | status_num = search_status_hashtable(name_hashtable[package_hashtable[package_num]->name]); |
| 1860 | state_status = get_status(status_num, 3); |
Glenn L McGrath | 0d2fb76 | 2001-10-25 14:26:05 +0000 | [diff] [blame] | 1861 | |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1862 | /* check package status is "installed" */ |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1863 | if (opt & OPT_remove) { |
| 1864 | if (strcmp(name_hashtable[state_status], "not-installed") == 0 |
| 1865 | || strcmp(name_hashtable[state_status], "config-files") == 0 |
| 1866 | ) { |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1867 | bb_error_msg_and_die("%s is already removed", name_hashtable[package_hashtable[package_num]->name]); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1868 | } |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1869 | set_status(status_num, "deinstall", 1); |
Denis Vlasenko | 7fd00cb | 2007-02-15 21:19:50 +0000 | [diff] [blame] | 1870 | } else if (opt & OPT_purge) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1871 | /* if package status is "conf-files" then its ok */ |
| 1872 | if (strcmp(name_hashtable[state_status], "not-installed") == 0) { |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1873 | bb_error_msg_and_die("%s is already purged", name_hashtable[package_hashtable[package_num]->name]); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1874 | } |
Glenn L McGrath | b8c3a54 | 2003-11-28 22:38:14 +0000 | [diff] [blame] | 1875 | set_status(status_num, "purge", 1); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1876 | } |
| 1877 | } |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1878 | deb_count++; |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1879 | argv++; |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 1880 | } |
Denis Vlasenko | 7fd00cb | 2007-02-15 21:19:50 +0000 | [diff] [blame] | 1881 | if (!deb_count) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame^] | 1882 | bb_simple_error_msg_and_die("no package files specified"); |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1883 | deb_file[deb_count] = NULL; |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 1884 | |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1885 | /* Check that the deb file arguments are installable */ |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1886 | if (!(opt & OPT_force_ignore_depends)) { |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 1887 | if (!check_deps(deb_file, 0 /*, deb_count*/)) { |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame^] | 1888 | bb_simple_error_msg_and_die("dependency check failed"); |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1889 | } |
Glenn L McGrath | 0d2fb76 | 2001-10-25 14:26:05 +0000 | [diff] [blame] | 1890 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1891 | |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1892 | /* TODO: install or remove packages in the correct dependency order */ |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1893 | for (i = 0; i < deb_count; i++) { |
| 1894 | /* Remove or purge packages */ |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1895 | if (opt & OPT_remove) { |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1896 | remove_package(deb_file[i]->package, 1); |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1897 | } |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1898 | else if (opt & OPT_purge) { |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1899 | purge_package(deb_file[i]->package); |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1900 | } |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1901 | else if (opt & OPT_unpack) { |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1902 | unpack_package(deb_file[i]); |
| 1903 | } |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1904 | else if (opt & OPT_install) { |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1905 | unpack_package(deb_file[i]); |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1906 | /* package is configured in second pass below */ |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1907 | } |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1908 | else if (opt & OPT_configure) { |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1909 | configure_package(deb_file[i]); |
| 1910 | } |
| 1911 | } |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1912 | /* configure installed packages */ |
Denis Vlasenko | a6df590 | 2006-12-22 18:32:40 +0000 | [diff] [blame] | 1913 | if (opt & OPT_install) { |
Glenn L McGrath | fea4b44 | 2003-11-26 21:53:37 +0000 | [diff] [blame] | 1914 | for (i = 0; i < deb_count; i++) |
| 1915 | configure_package(deb_file[i]); |
| 1916 | } |
Glenn L McGrath | c3fbec7 | 2001-07-18 15:47:21 +0000 | [diff] [blame] | 1917 | |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1918 | write_status_file(deb_file); |
| 1919 | |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1920 | if (ENABLE_FEATURE_CLEAN_UP) { |
| 1921 | for (i = 0; i < deb_count; i++) { |
| 1922 | free(deb_file[i]->control_file); |
| 1923 | free(deb_file[i]->filename); |
| 1924 | free(deb_file[i]); |
Glenn L McGrath | a94a06a | 2002-05-29 13:45:34 +0000 | [diff] [blame] | 1925 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1926 | |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1927 | free(deb_file); |
| 1928 | |
| 1929 | for (i = 0; i < NAME_HASH_PRIME; i++) { |
| 1930 | free(name_hashtable[i]); |
| 1931 | } |
| 1932 | |
| 1933 | for (i = 0; i < PACKAGE_HASH_PRIME; i++) { |
Denis Vlasenko | 88a2aa9 | 2007-03-19 21:48:56 +0000 | [diff] [blame] | 1934 | free_package(package_hashtable[i]); |
Denis Vlasenko | 57308af | 2006-09-28 22:34:46 +0000 | [diff] [blame] | 1935 | } |
| 1936 | |
| 1937 | for (i = 0; i < STATUS_HASH_PRIME; i++) { |
| 1938 | free(status_hashtable[i]); |
| 1939 | } |
Glenn L McGrath | ef0eab5 | 2001-10-25 14:49:48 +0000 | [diff] [blame] | 1940 | } |
Glenn L McGrath | ccd65c9 | 2001-07-13 18:35:24 +0000 | [diff] [blame] | 1941 | |
Denis Vlasenko | 5492884 | 2006-09-28 22:35:42 +0000 | [diff] [blame] | 1942 | return EXIT_SUCCESS; |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 1943 | } |