blob: ed86f3355df460d64b2247f5b66f71f540e39850 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrathccd65c92001-07-13 18:35:24 +00002/*
Rob Landleyd921b2e2006-08-03 15:41:12 +00003 * mini dpkg implementation for busybox.
4 * this is not meant as a replacement for dpkg
Glenn L McGrathccd65c92001-07-13 18:35:24 +00005 *
Rob Landleyd921b2e2006-08-03 15:41:12 +00006 * written by glenn mcgrath with the help of others
7 * copyright (c) 2001 by glenn mcgrath
Eric Andersenc7bda1c2004-03-15 08:29:22 +00008 *
Denis Vlasenkob8baf402008-11-20 23:41:56 +00009 * 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 Landleyd921b2e2006-08-03 15:41:12 +000013 * started life as a busybox implementation of udpkg
Glenn L McGrathccd65c92001-07-13 18:35:24 +000014 *
Denys Vlasenko3d4a8f82010-09-06 16:22:25 +020015 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrathccd65c92001-07-13 18:35:24 +000016 */
Glenn L McGrath649968c2001-02-10 14:26:48 +000017
Glenn L McGrathccd65c92001-07-13 18:35:24 +000018/*
Rob Landleyd921b2e2006-08-03 15:41:12 +000019 * known difference between busybox dpkg and the official dpkg that i don't
Glenn L McGrathccd65c92001-07-13 18:35:24 +000020 * consider important, its worth keeping a note of differences anyway, just to
21 * make it easier to maintain.
Rob Landleyd921b2e2006-08-03 15:41:12 +000022 * - the first value for the confflile: field isnt placed on a new line.
23 * - when installing a package the status: field is placed at the end of the
24 * section, rather than just after the package: field.
Glenn L McGrathccd65c92001-07-13 18:35:24 +000025 *
Rob Landleyd921b2e2006-08-03 15:41:12 +000026 * bugs that need to be fixed
Glenn L McGrathef0eab52001-10-25 14:49:48 +000027 * - (unknown, please let me know when you find any)
28 *
Glenn L McGrathccd65c92001-07-13 18:35:24 +000029 */
30
Pere Orga1f4447b2011-03-27 22:40:30 +020031//usage:#define dpkg_trivial_usage
32//usage: "[-ilCPru] [-F OPT] PACKAGE"
33//usage:#define dpkg_full_usage "\n\n"
34//usage: "Install, remove and manage Debian packages\n"
Pere Orga1f4447b2011-03-27 22:40:30 +020035//usage: IF_LONG_OPTS(
36//usage: "\n -i,--install Install the package"
37//usage: "\n -l,--list List of installed packages"
38//usage: "\n --configure Configure an unpackaged package"
39//usage: "\n -P,--purge Purge all files of a package"
40//usage: "\n -r,--remove Remove all but the configuration files for a package"
41//usage: "\n --unpack Unpack a package, but don't configure it"
42//usage: "\n --force-depends Ignore dependency problems"
43//usage: "\n --force-confnew Overwrite existing config files when installing"
44//usage: "\n --force-confold Keep old config files when installing"
45//usage: )
46//usage: IF_NOT_LONG_OPTS(
47//usage: "\n -i Install the package"
48//usage: "\n -l List of installed packages"
49//usage: "\n -C Configure an unpackaged package"
50//usage: "\n -P Purge all files of a package"
51//usage: "\n -r Remove all but the configuration files for a package"
52//usage: "\n -u Unpack a package, but don't configure it"
53//usage: "\n -F depends Ignore dependency problems"
54//usage: "\n -F confnew Overwrite existing config files when installing"
55//usage: "\n -F confold Keep old config files when installing"
56//usage: )
57
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000058#include "libbb.h"
Bernhard Reutner-Fischer97516fc2008-09-25 12:18:49 +000059#include <fnmatch.h>
Denys Vlasenkod184a722011-09-22 12:45:14 +020060#include "bb_archive.h"
Glenn L McGrathc9005752001-02-10 02:05:24 +000061
Rob Landleyd921b2e2006-08-03 15:41:12 +000062/* note: if you vary hash_prime sizes be aware,
63 * 1) tweaking these will have a big effect on how much memory this program uses.
64 * 2) for computational efficiency these hash tables should be at least 20%
Glenn L McGrathef0eab52001-10-25 14:49:48 +000065 * larger than the maximum number of elements stored in it.
Rob Landleyd921b2e2006-08-03 15:41:12 +000066 * 3) all _hash_prime's must be a prime number or chaos is assured, if your looking
Glenn L McGrathef0eab52001-10-25 14:49:48 +000067 * for a prime, try http://www.utm.edu/research/primes/lists/small/10000.txt
Rob Landleyd921b2e2006-08-03 15:41:12 +000068 * 4) if you go bigger than 15 bits you may get into trouble (untested) as its
Denis Vlasenkoa6df5902006-12-22 18:32:40 +000069 * sometimes cast to an unsigned, if you go to 16 bit you will overlap
Glenn L McGrathef0eab52001-10-25 14:49:48 +000070 * int's and chaos is assured, 16381 is the max prime for 14 bit field
71 */
72
Eric Andersenc7bda1c2004-03-15 08:29:22 +000073/* NAME_HASH_PRIME, Stores package names and versions,
Glenn L McGrathef0eab52001-10-25 14:49:48 +000074 * I estimate it should be at least 50% bigger than PACKAGE_HASH_PRIME,
75 * as there a lot of duplicate version numbers */
76#define NAME_HASH_PRIME 16381
Glenn L McGrathef0eab52001-10-25 14:49:48 +000077
78/* PACKAGE_HASH_PRIME, Maximum number of unique packages,
79 * It must not be smaller than STATUS_HASH_PRIME,
80 * Currently only packages from status_hashtable are stored in here, but in
81 * future this may be used to store packages not only from a status file,
82 * but an available_hashtable, and even multiple packages files.
83 * Package can be stored more than once if they have different versions.
84 * e.g. The same package may have different versions in the status file
85 * and available file */
86#define PACKAGE_HASH_PRIME 10007
87typedef struct edge_s {
Denis Vlasenko334fa9b2007-04-13 23:22:58 +000088 unsigned operator:4; /* was:3 */
Denis Vlasenkoa6df5902006-12-22 18:32:40 +000089 unsigned type:4;
Denis Vlasenko334fa9b2007-04-13 23:22:58 +000090 unsigned name:16; /* was:14 */
91 unsigned version:16; /* was:14 */
Glenn L McGrathef0eab52001-10-25 14:49:48 +000092} edge_t;
93
94typedef struct common_node_s {
Denis Vlasenko334fa9b2007-04-13 23:22:58 +000095 unsigned name:16; /* was:14 */
96 unsigned version:16; /* was:14 */
97 unsigned num_of_edges:16; /* was:14 */
Glenn L McGrathef0eab52001-10-25 14:49:48 +000098 edge_t **edge;
99} common_node_t;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000100
101/* Currently it doesnt store packages that have state-status of not-installed
102 * So it only really has to be the size of the maximum number of packages
Eric Andersenaff114c2004-04-14 17:51:38 +0000103 * likely to be installed at any one time, so there is a bit of leeway here */
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000104#define STATUS_HASH_PRIME 8191
105typedef struct status_node_s {
Denis Vlasenko334fa9b2007-04-13 23:22:58 +0000106 unsigned package:16; /* was:14 */ /* has to fit PACKAGE_HASH_PRIME */
107 unsigned status:16; /* was:14 */ /* has to fit STATUS_HASH_PRIME */
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000108} status_node_t;
Denis Vlasenko57308af2006-09-28 22:34:46 +0000109
Denis Vlasenkoc87339d2008-06-21 23:15:43 +0000110
111/* Globals */
112struct globals {
113 char *name_hashtable[NAME_HASH_PRIME + 1];
114 common_node_t *package_hashtable[PACKAGE_HASH_PRIME + 1];
115 status_node_t *status_hashtable[STATUS_HASH_PRIME + 1];
116};
117#define G (*ptr_to_globals)
118#define name_hashtable (G.name_hashtable )
119#define package_hashtable (G.package_hashtable)
120#define status_hashtable (G.status_hashtable )
121#define INIT_G() do { \
122 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
123} while (0)
124
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000125
Eric Andersenaff114c2004-04-14 17:51:38 +0000126/* Even numbers are for 'extras', like ored dependencies or null */
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000127enum edge_type_e {
128 EDGE_NULL = 0,
129 EDGE_PRE_DEPENDS = 1,
130 EDGE_OR_PRE_DEPENDS = 2,
131 EDGE_DEPENDS = 3,
132 EDGE_OR_DEPENDS = 4,
133 EDGE_REPLACES = 5,
134 EDGE_PROVIDES = 7,
135 EDGE_CONFLICTS = 9,
136 EDGE_SUGGESTS = 11,
137 EDGE_RECOMMENDS = 13,
138 EDGE_ENHANCES = 15
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000139};
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000140enum operator_e {
141 VER_NULL = 0,
142 VER_EQUAL = 1,
143 VER_LESS = 2,
144 VER_LESS_EQUAL = 3,
145 VER_MORE = 4,
146 VER_MORE_EQUAL = 5,
147 VER_ANY = 6
148};
149
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000150typedef struct deb_file_s {
151 char *control_file;
152 char *filename;
Denis Vlasenko334fa9b2007-04-13 23:22:58 +0000153 unsigned package:16; /* was:14 */
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000154} deb_file_t;
155
156
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000157static void make_hash(const char *key, unsigned *start, unsigned *decrement, const int hash_prime)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000158{
Denis Vlasenko334fa9b2007-04-13 23:22:58 +0000159 unsigned long hash_num = key[0];
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000160 int len = strlen(key);
161 int i;
162
163 /* Maybe i should have uses a "proper" hashing algorithm here instead
164 * of making one up myself, seems to be working ok though. */
Denis Vlasenko57308af2006-09-28 22:34:46 +0000165 for (i = 1; i < len; i++) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000166 /* shifts the ascii based value and adds it to previous value
167 * shift amount is mod 24 because long int is 32 bit and data
Eric Andersenaff114c2004-04-14 17:51:38 +0000168 * to be shifted is 8, don't want to shift data to where it has
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000169 * no effect */
Denis Vlasenkod235f582008-06-21 22:46:58 +0000170 hash_num += (key[i] + key[i-1]) << ((key[i] * i) % 24);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000171 }
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000172 *start = (unsigned) hash_num % hash_prime;
173 *decrement = (unsigned) 1 + (hash_num % (hash_prime - 1));
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000174}
175
176/* this adds the key to the hash table */
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000177static int search_name_hashtable(const char *key)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000178{
Denis Vlasenkod235f582008-06-21 22:46:58 +0000179 unsigned probe_address;
180 unsigned probe_decrement;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000181
182 make_hash(key, &probe_address, &probe_decrement, NAME_HASH_PRIME);
Denis Vlasenko57308af2006-09-28 22:34:46 +0000183 while (name_hashtable[probe_address] != NULL) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000184 if (strcmp(name_hashtable[probe_address], key) == 0) {
Denis Vlasenko54928842006-09-28 22:35:42 +0000185 return probe_address;
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000186 }
187 probe_address -= probe_decrement;
188 if ((int)probe_address < 0) {
189 probe_address += NAME_HASH_PRIME;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000190 }
191 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000192 name_hashtable[probe_address] = xstrdup(key);
Denis Vlasenko54928842006-09-28 22:35:42 +0000193 return probe_address;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000194}
195
196/* this DOESNT add the key to the hashtable
197 * TODO make it consistent with search_name_hashtable
198 */
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000199static unsigned search_status_hashtable(const char *key)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000200{
Denis Vlasenkod235f582008-06-21 22:46:58 +0000201 unsigned probe_address;
202 unsigned probe_decrement;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000203
204 make_hash(key, &probe_address, &probe_decrement, STATUS_HASH_PRIME);
Denis Vlasenko57308af2006-09-28 22:34:46 +0000205 while (status_hashtable[probe_address] != NULL) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000206 if (strcmp(key, name_hashtable[package_hashtable[status_hashtable[probe_address]->package]->name]) == 0) {
207 break;
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000208 }
209 probe_address -= probe_decrement;
210 if ((int)probe_address < 0) {
211 probe_address += STATUS_HASH_PRIME;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000212 }
213 }
Denis Vlasenko54928842006-09-28 22:35:42 +0000214 return probe_address;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000215}
216
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000217static int order(char x)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000218{
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000219 return (x == '~' ? -1
220 : x == '\0' ? 0
221 : isdigit(x) ? 0
222 : isalpha(x) ? x
223 : (unsigned char)x + 256
224 );
225}
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000226
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000227/* This code is taken from dpkg and modified slightly to work with busybox */
228static int version_compare_part(const char *val, const char *ref)
229{
230 if (!val) val = "";
231 if (!ref) ref = "";
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000232
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000233 while (*val || *ref) {
234 int first_diff;
235
236 while ((*val && !isdigit(*val)) || (*ref && !isdigit(*ref))) {
237 int vc = order(*val);
238 int rc = order(*ref);
239 if (vc != rc)
240 return vc - rc;
241 val++;
242 ref++;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000243 }
244
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000245 while (*val == '0')
246 val++;
247 while (*ref == '0')
248 ref++;
249
250 first_diff = 0;
251 while (isdigit(*val) && isdigit(*ref)) {
252 if (first_diff == 0)
253 first_diff = *val - *ref;
254 val++;
255 ref++;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000256 }
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000257 if (isdigit(*val))
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000258 return 1;
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000259 if (isdigit(*ref))
260 return -1;
261 if (first_diff)
262 return first_diff;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000263 }
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000264 return 0;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000265}
266
267/* if ver1 < ver2 return -1,
268 * if ver1 = ver2 return 0,
269 * if ver1 > ver2 return 1,
270 */
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000271static int version_compare(const unsigned ver1, const unsigned ver2)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000272{
273 char *ch_ver1 = name_hashtable[ver1];
274 char *ch_ver2 = name_hashtable[ver2];
Denys Vlasenkoeab75f62010-03-30 15:03:26 +0200275 unsigned epoch1 = 0, epoch2 = 0;
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000276 char *colon;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000277 char *deb_ver1, *deb_ver2;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000278 char *upstream_ver1;
279 char *upstream_ver2;
280 int result;
281
282 /* Compare epoch */
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000283 colon = strchr(ch_ver1, ':');
284 if (colon) {
285 epoch1 = atoi(ch_ver1);
286 ch_ver1 = colon + 1;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000287 }
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000288 colon = strchr(ch_ver2, ':');
289 if (colon) {
290 epoch2 = atoi(ch_ver2);
291 ch_ver2 = colon + 1;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000292 }
293 if (epoch1 < epoch2) {
Denis Vlasenko54928842006-09-28 22:35:42 +0000294 return -1;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000295 }
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000296 if (epoch1 > epoch2) {
Denis Vlasenko54928842006-09-28 22:35:42 +0000297 return 1;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000298 }
299
300 /* Compare upstream version */
Denis Vlasenkob8baf402008-11-20 23:41:56 +0000301 upstream_ver1 = xstrdup(ch_ver1);
302 upstream_ver2 = xstrdup(ch_ver2);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000303
304 /* Chop off debian version, and store for later use */
305 deb_ver1 = strrchr(upstream_ver1, '-');
306 deb_ver2 = strrchr(upstream_ver2, '-');
307 if (deb_ver1) {
Denys Vlasenkoeab75f62010-03-30 15:03:26 +0200308 *deb_ver1++ = '\0';
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000309 }
310 if (deb_ver2) {
Denys Vlasenkoeab75f62010-03-30 15:03:26 +0200311 *deb_ver2++ = '\0';
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000312 }
313 result = version_compare_part(upstream_ver1, upstream_ver2);
Denys Vlasenkoeab75f62010-03-30 15:03:26 +0200314 if (result == 0) {
Denis Vlasenkoaecabff2006-09-30 21:05:25 +0000315 /* Compare debian versions */
316 result = version_compare_part(deb_ver1, deb_ver2);
Denys Vlasenkoeab75f62010-03-30 15:03:26 +0200317 }
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000318
319 free(upstream_ver1);
320 free(upstream_ver2);
Denis Vlasenkoaecabff2006-09-30 21:05:25 +0000321 return result;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000322}
323
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000324static int test_version(const unsigned version1, const unsigned version2, const unsigned operator)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000325{
326 const int version_result = version_compare(version1, version2);
Denis Vlasenkoc16bd212006-09-27 19:51:06 +0000327 switch (operator) {
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000328 case VER_ANY:
329 return TRUE;
330 case VER_EQUAL:
331 return (version_result == 0);
332 case VER_LESS:
333 return (version_result < 0);
334 case VER_LESS_EQUAL:
335 return (version_result <= 0);
336 case VER_MORE:
337 return (version_result > 0);
338 case VER_MORE_EQUAL:
339 return (version_result >= 0);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000340 }
Denis Vlasenko54928842006-09-28 22:35:42 +0000341 return FALSE;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000342}
343
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000344static int search_package_hashtable(const unsigned name, const unsigned version, const unsigned operator)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000345{
Denis Vlasenkod235f582008-06-21 22:46:58 +0000346 unsigned probe_address;
347 unsigned probe_decrement;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000348
349 make_hash(name_hashtable[name], &probe_address, &probe_decrement, PACKAGE_HASH_PRIME);
Denis Vlasenko57308af2006-09-28 22:34:46 +0000350 while (package_hashtable[probe_address] != NULL) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000351 if (package_hashtable[probe_address]->name == name) {
352 if (operator == VER_ANY) {
Denis Vlasenko54928842006-09-28 22:35:42 +0000353 return probe_address;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000354 }
355 if (test_version(package_hashtable[probe_address]->version, version, operator)) {
Denis Vlasenko54928842006-09-28 22:35:42 +0000356 return probe_address;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000357 }
358 }
359 probe_address -= probe_decrement;
360 if ((int)probe_address < 0) {
361 probe_address += PACKAGE_HASH_PRIME;
362 }
363 }
Denis Vlasenko54928842006-09-28 22:35:42 +0000364 return probe_address;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000365}
366
367/*
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000368 * This function searches through the entire package_hashtable looking
369 * for a package which provides "needle". It returns the index into
Eric Andersenaff114c2004-04-14 17:51:38 +0000370 * the package_hashtable for the providing package.
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000371 *
372 * needle is the index into name_hashtable of the package we are
373 * looking for.
374 *
375 * start_at is the index in the package_hashtable to start looking
376 * at. If start_at is -1 then start at the beginning. This is to allow
377 * for repeated searches since more than one package might provide
378 * needle.
379 *
380 * FIXME: I don't think this is very efficient, but I thought I'd keep
381 * it simple for now until it proves to be a problem.
382 */
Denis Vlasenkoac678ec2007-04-16 22:32:04 +0000383static int search_for_provides(int needle, int start_at)
384{
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000385 int i, j;
386 common_node_t *p;
387 for (i = start_at + 1; i < PACKAGE_HASH_PRIME; i++) {
388 p = package_hashtable[i];
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000389 if (p == NULL)
390 continue;
Denis Vlasenko57308af2006-09-28 22:34:46 +0000391 for (j = 0; j < p->num_of_edges; j++)
392 if (p->edge[j]->type == EDGE_PROVIDES && p->edge[j]->name == needle)
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000393 return i;
394 }
395 return -1;
396}
397
398/*
399 * Add an edge to a node
400 */
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000401static void add_edge_to_node(common_node_t *node, edge_t *edge)
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000402{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000403 node->edge = xrealloc_vector(node->edge, 2, node->num_of_edges);
404 node->edge[node->num_of_edges++] = edge;
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000405}
406
407/*
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000408 * Create one new node and one new edge for every dependency.
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000409 *
410 * Dependencies which contain multiple alternatives are represented as
411 * an EDGE_OR_PRE_DEPENDS or EDGE_OR_DEPENDS node, followed by a
412 * number of EDGE_PRE_DEPENDS or EDGE_DEPENDS nodes. The name field of
413 * the OR edge contains the full dependency string while the version
414 * field contains the number of EDGE nodes which follow as part of
415 * this alternative.
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000416 */
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000417static void add_split_dependencies(common_node_t *parent_node, const char *whole_line, unsigned edge_type)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000418{
Rob Landleyd921b2e2006-08-03 15:41:12 +0000419 char *line = xstrdup(whole_line);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000420 char *line2;
421 char *line_ptr1 = NULL;
422 char *line_ptr2 = NULL;
423 char *field;
424 char *field2;
425 char *version;
426 edge_t *edge;
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000427 edge_t *or_edge;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000428 int offset_ch;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000429
430 field = strtok_r(line, ",", &line_ptr1);
431 do {
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000432 /* skip leading spaces */
433 field += strspn(field, " ");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000434 line2 = xstrdup(field);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000435 field2 = strtok_r(line2, "|", &line_ptr2);
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000436 or_edge = NULL;
437 if ((edge_type == EDGE_DEPENDS || edge_type == EDGE_PRE_DEPENDS)
438 && (strcmp(field, field2) != 0)
439 ) {
Denis Vlasenkod235f582008-06-21 22:46:58 +0000440 or_edge = xzalloc(sizeof(edge_t));
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000441 or_edge->type = edge_type + 1;
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000442 or_edge->name = search_name_hashtable(field);
Denis Vlasenkod235f582008-06-21 22:46:58 +0000443 //or_edge->version = 0; // tracks the number of alternatives
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000444 add_edge_to_node(parent_node, or_edge);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000445 }
446
447 do {
Denis Vlasenkob95636c2006-12-19 23:36:04 +0000448 edge = xmalloc(sizeof(edge_t));
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000449 edge->type = edge_type;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000450
451 /* Skip any extra leading spaces */
452 field2 += strspn(field2, " ");
453
454 /* Get dependency version info */
455 version = strchr(field2, '(');
456 if (version == NULL) {
457 edge->operator = VER_ANY;
458 /* Get the versions hash number, adding it if the number isnt already in there */
459 edge->version = search_name_hashtable("ANY");
460 } else {
461 /* Skip leading ' ' or '(' */
Bernhard Reutner-Fischer6c501a72007-06-05 17:28:56 +0000462 version += strspn(version, " (");
Eric Andersenaff114c2004-04-14 17:51:38 +0000463 /* Calculate length of any operator characters */
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000464 offset_ch = strspn(version, "<=>");
465 /* Determine operator */
466 if (offset_ch > 0) {
467 if (strncmp(version, "=", offset_ch) == 0) {
468 edge->operator = VER_EQUAL;
Denis Vlasenkod235f582008-06-21 22:46:58 +0000469 } else if (strncmp(version, "<<", offset_ch) == 0) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000470 edge->operator = VER_LESS;
Denis Vlasenkod235f582008-06-21 22:46:58 +0000471 } else if (strncmp(version, "<=", offset_ch) == 0) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000472 edge->operator = VER_LESS_EQUAL;
Denis Vlasenkod235f582008-06-21 22:46:58 +0000473 } else if (strncmp(version, ">>", offset_ch) == 0) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000474 edge->operator = VER_MORE;
Denis Vlasenkod235f582008-06-21 22:46:58 +0000475 } else if (strncmp(version, ">=", offset_ch) == 0) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000476 edge->operator = VER_MORE_EQUAL;
477 } else {
Denis Vlasenko57308af2006-09-28 22:34:46 +0000478 bb_error_msg_and_die("illegal operator");
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000479 }
480 }
481 /* skip to start of version numbers */
482 version += offset_ch;
483 version += strspn(version, " ");
484
485 /* Truncate version at trailing ' ' or ')' */
486 version[strcspn(version, " )")] = '\0';
487 /* Get the versions hash number, adding it if the number isnt already in there */
488 edge->version = search_name_hashtable(version);
489 }
490
491 /* Get the dependency name */
492 field2[strcspn(field2, " (")] = '\0';
493 edge->name = search_name_hashtable(field2);
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000494
Denis Vlasenko57308af2006-09-28 22:34:46 +0000495 if (or_edge)
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000496 or_edge->version++;
497
498 add_edge_to_node(parent_node, edge);
Denis Vlasenko334fa9b2007-04-13 23:22:58 +0000499 field2 = strtok_r(NULL, "|", &line_ptr2);
500 } while (field2 != NULL);
501
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000502 free(line2);
Denis Vlasenko334fa9b2007-04-13 23:22:58 +0000503 field = strtok_r(NULL, ",", &line_ptr1);
504 } while (field != NULL);
505
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000506 free(line);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000507}
508
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000509static void free_package(common_node_t *node)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000510{
Denis Vlasenko54928842006-09-28 22:35:42 +0000511 unsigned i;
Glenn L McGratha94a06a2002-05-29 13:45:34 +0000512 if (node) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000513 for (i = 0; i < node->num_of_edges; i++) {
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000514 free(node->edge[i]);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000515 }
Rob Landleye7c43b62006-03-01 16:39:45 +0000516 free(node->edge);
Glenn L McGratha94a06a2002-05-29 13:45:34 +0000517 free(node);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000518 }
519}
520
Rob Landleyd921b2e2006-08-03 15:41:12 +0000521/*
Denys Vlasenko5370bfb2009-09-06 02:58:59 +0200522 * Gets the next package field from package_buffer, separated into the field name
Rob Landleyd921b2e2006-08-03 15:41:12 +0000523 * and field value, it returns the int offset to the first character of the next field
524 */
525static int read_package_field(const char *package_buffer, char **field_name, char **field_value)
526{
527 int offset_name_start = 0;
528 int offset_name_end = 0;
529 int offset_value_start = 0;
530 int offset_value_end = 0;
531 int offset = 0;
532 int next_offset;
533 int name_length;
534 int value_length;
535 int exit_flag = FALSE;
536
537 if (package_buffer == NULL) {
538 *field_name = NULL;
539 *field_value = NULL;
Denis Vlasenko54928842006-09-28 22:35:42 +0000540 return -1;
Rob Landleyd921b2e2006-08-03 15:41:12 +0000541 }
542 while (1) {
543 next_offset = offset + 1;
544 switch (package_buffer[offset]) {
Denis Vlasenko54928842006-09-28 22:35:42 +0000545 case '\0':
Rob Landleyd921b2e2006-08-03 15:41:12 +0000546 exit_flag = TRUE;
547 break;
Denis Vlasenko54928842006-09-28 22:35:42 +0000548 case ':':
Rob Landleyd921b2e2006-08-03 15:41:12 +0000549 if (offset_name_end == 0) {
550 offset_name_end = offset;
551 offset_value_start = next_offset;
552 }
553 /* TODO: Name might still have trailing spaces if ':' isnt
554 * immediately after name */
555 break;
Denis Vlasenko54928842006-09-28 22:35:42 +0000556 case '\n':
Rob Landleyd921b2e2006-08-03 15:41:12 +0000557 /* TODO: The char next_offset may be out of bounds */
558 if (package_buffer[next_offset] != ' ') {
559 exit_flag = TRUE;
560 break;
561 }
Denis Vlasenko54928842006-09-28 22:35:42 +0000562 case '\t':
563 case ' ':
Rob Landleyd921b2e2006-08-03 15:41:12 +0000564 /* increment the value start point if its a just filler */
565 if (offset_name_start == offset) {
566 offset_name_start++;
567 }
568 if (offset_value_start == offset) {
569 offset_value_start++;
570 }
571 break;
572 }
573 if (exit_flag) {
574 /* Check that the names are valid */
575 offset_value_end = offset;
576 name_length = offset_name_end - offset_name_start;
577 value_length = offset_value_end - offset_value_start;
578 if (name_length == 0) {
579 break;
580 }
581 if ((name_length > 0) && (value_length > 0)) {
582 break;
583 }
584
585 /* If not valid, start fresh with next field */
586 exit_flag = FALSE;
587 offset_name_start = offset + 1;
588 offset_name_end = 0;
589 offset_value_start = offset + 1;
590 offset_value_end = offset + 1;
591 offset++;
592 }
593 offset++;
594 }
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000595 *field_name = NULL;
596 if (name_length) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000597 *field_name = xstrndup(&package_buffer[offset_name_start], name_length);
598 }
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000599 *field_value = NULL;
Rob Landleyd921b2e2006-08-03 15:41:12 +0000600 if (value_length > 0) {
601 *field_value = xstrndup(&package_buffer[offset_value_start], value_length);
Rob Landleyd921b2e2006-08-03 15:41:12 +0000602 }
Denis Vlasenko54928842006-09-28 22:35:42 +0000603 return next_offset;
Rob Landleyd921b2e2006-08-03 15:41:12 +0000604}
605
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000606static unsigned fill_package_struct(char *control_buffer)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000607{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000608 static const char field_names[] ALIGN1 =
609 "Package\0""Version\0"
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000610 "Pre-Depends\0""Depends\0""Replaces\0""Provides\0"
611 "Conflicts\0""Suggests\0""Recommends\0""Enhances\0";
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000612
Denis Vlasenko4cccc032006-12-22 18:37:07 +0000613 common_node_t *new_node = xzalloc(sizeof(common_node_t));
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000614 char *field_name;
615 char *field_value;
616 int field_start = 0;
617 int num = -1;
618 int buffer_length = strlen(control_buffer);
619
620 new_node->version = search_name_hashtable("unknown");
621 while (field_start < buffer_length) {
Denis Vlasenko54928842006-09-28 22:35:42 +0000622 unsigned field_num;
Glenn L McGrath62d28822002-11-06 23:35:28 +0000623
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000624 field_start += read_package_field(&control_buffer[field_start],
625 &field_name, &field_value);
626
627 if (field_name == NULL) {
Denis Vlasenkoabee3d02007-12-26 20:44:45 +0000628 goto fill_package_struct_cleanup;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000629 }
630
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000631 field_num = index_in_strings(field_names, field_name);
Denis Vlasenkoc16bd212006-09-27 19:51:06 +0000632 switch (field_num) {
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000633 case 0: /* Package */
634 new_node->name = search_name_hashtable(field_value);
635 break;
636 case 1: /* Version */
637 new_node->version = search_name_hashtable(field_value);
638 break;
639 case 2: /* Pre-Depends */
640 add_split_dependencies(new_node, field_value, EDGE_PRE_DEPENDS);
641 break;
642 case 3: /* Depends */
643 add_split_dependencies(new_node, field_value, EDGE_DEPENDS);
644 break;
645 case 4: /* Replaces */
646 add_split_dependencies(new_node, field_value, EDGE_REPLACES);
647 break;
648 case 5: /* Provides */
649 add_split_dependencies(new_node, field_value, EDGE_PROVIDES);
650 break;
651 case 6: /* Conflicts */
652 add_split_dependencies(new_node, field_value, EDGE_CONFLICTS);
653 break;
654 case 7: /* Suggests */
655 add_split_dependencies(new_node, field_value, EDGE_SUGGESTS);
656 break;
657 case 8: /* Recommends */
658 add_split_dependencies(new_node, field_value, EDGE_RECOMMENDS);
659 break;
660 case 9: /* Enhances */
661 add_split_dependencies(new_node, field_value, EDGE_ENHANCES);
662 break;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000663 }
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000664 fill_package_struct_cleanup:
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000665 free(field_name);
666 free(field_value);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000667 }
668
669 if (new_node->version == search_name_hashtable("unknown")) {
670 free_package(new_node);
Denis Vlasenko54928842006-09-28 22:35:42 +0000671 return -1;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000672 }
673 num = search_package_hashtable(new_node->name, new_node->version, VER_EQUAL);
Denis Vlasenko88a2aa92007-03-19 21:48:56 +0000674 free_package(package_hashtable[num]);
Bernhard Reutner-Fischerde8a6a02007-03-19 13:44:18 +0000675 package_hashtable[num] = new_node;
Denis Vlasenko54928842006-09-28 22:35:42 +0000676 return num;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000677}
678
679/* if num = 1, it returns the want status, 2 returns flag, 3 returns status */
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000680static unsigned get_status(const unsigned status_node, const int num)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000681{
682 char *status_string = name_hashtable[status_hashtable[status_node]->status];
683 char *state_sub_string;
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000684 unsigned state_sub_num;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000685 int len;
686 int i;
687
688 /* set tmp_string to point to the start of the word number */
689 for (i = 1; i < num; i++) {
690 /* skip past a word */
691 status_string += strcspn(status_string, " ");
Eric Andersenaff114c2004-04-14 17:51:38 +0000692 /* skip past the separating spaces */
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000693 status_string += strspn(status_string, " ");
694 }
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000695 len = strcspn(status_string, " \n");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000696 state_sub_string = xstrndup(status_string, len);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000697 state_sub_num = search_name_hashtable(state_sub_string);
698 free(state_sub_string);
Denis Vlasenko54928842006-09-28 22:35:42 +0000699 return state_sub_num;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000700}
701
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000702static void set_status(const unsigned status_node_num, const char *new_value, const int position)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000703{
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000704 const unsigned new_value_num = search_name_hashtable(new_value);
705 unsigned want = get_status(status_node_num, 1);
706 unsigned flag = get_status(status_node_num, 2);
707 unsigned status = get_status(status_node_num, 3);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000708 char *new_status;
709
710 switch (position) {
Denis Vlasenko54928842006-09-28 22:35:42 +0000711 case 1:
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000712 want = new_value_num;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000713 break;
Denis Vlasenko54928842006-09-28 22:35:42 +0000714 case 2:
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000715 flag = new_value_num;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000716 break;
Denis Vlasenko54928842006-09-28 22:35:42 +0000717 case 3:
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000718 status = new_value_num;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000719 break;
720 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000721 bb_error_msg_and_die("DEBUG ONLY: this shouldnt happen");
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000722 }
723
Rob Landleyd921b2e2006-08-03 15:41:12 +0000724 new_status = xasprintf("%s %s %s", name_hashtable[want], name_hashtable[flag], name_hashtable[status]);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000725 status_hashtable[status_node_num]->status = search_name_hashtable(new_status);
726 free(new_status);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000727}
728
Denis Vlasenko334fa9b2007-04-13 23:22:58 +0000729static const char *describe_status(int status_num)
730{
Denis Vlasenkob71c6682007-07-21 15:08:09 +0000731 int status_want, status_state;
Denis Vlasenko57308af2006-09-28 22:34:46 +0000732 if (status_hashtable[status_num] == NULL || status_hashtable[status_num]->status == 0)
Denis Vlasenko15611bb2007-06-12 08:52:02 +0000733 return "is not installed or flagged to be installed";
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000734
735 status_want = get_status(status_num, 1);
736 status_state = get_status(status_num, 3);
737
Denis Vlasenko57308af2006-09-28 22:34:46 +0000738 if (status_state == search_name_hashtable("installed")) {
739 if (status_want == search_name_hashtable("install"))
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000740 return "is installed";
Denis Vlasenko57308af2006-09-28 22:34:46 +0000741 if (status_want == search_name_hashtable("deinstall"))
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000742 return "is marked to be removed";
Denis Vlasenko57308af2006-09-28 22:34:46 +0000743 if (status_want == search_name_hashtable("purge"))
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000744 return "is marked to be purged";
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000745 }
Denis Vlasenko334fa9b2007-04-13 23:22:58 +0000746 if (status_want == search_name_hashtable("unknown"))
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000747 return "is in an indeterminate state";
Denis Vlasenko57308af2006-09-28 22:34:46 +0000748 if (status_want == search_name_hashtable("install"))
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000749 return "is marked to be installed";
750
751 return "is not installed or flagged to be installed";
752}
753
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000754static void index_status_file(const char *filename)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000755{
756 FILE *status_file;
757 char *control_buffer;
758 char *status_line;
759 status_node_t *status_node = NULL;
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000760 unsigned status_num;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000761
Denis Vlasenko5415c852008-07-21 23:05:26 +0000762 status_file = xfopen_for_read(filename);
Denis Vlasenkoabee3d02007-12-26 20:44:45 +0000763 while ((control_buffer = xmalloc_fgetline_str(status_file, "\n\n")) != NULL) {
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000764 const unsigned package_num = fill_package_struct(control_buffer);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000765 if (package_num != -1) {
766 status_node = xmalloc(sizeof(status_node_t));
767 /* fill_package_struct doesnt handle the status field */
768 status_line = strstr(control_buffer, "Status:");
769 if (status_line != NULL) {
770 status_line += 7;
771 status_line += strspn(status_line, " \n\t");
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000772 status_line = xstrndup(status_line, strcspn(status_line, "\n"));
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000773 status_node->status = search_name_hashtable(status_line);
774 free(status_line);
775 }
776 status_node->package = package_num;
777 status_num = search_status_hashtable(name_hashtable[package_hashtable[status_node->package]->name]);
778 status_hashtable[status_num] = status_node;
779 }
780 free(control_buffer);
781 }
782 fclose(status_file);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000783}
784
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000785static void write_buffer_no_status(FILE *new_status_file, const char *control_buffer)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000786{
787 char *name;
788 char *value;
789 int start = 0;
790 while (1) {
791 start += read_package_field(&control_buffer[start], &name, &value);
792 if (name == NULL) {
793 break;
794 }
795 if (strcmp(name, "Status") != 0) {
796 fprintf(new_status_file, "%s: %s\n", name, value);
797 }
798 }
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000799}
800
801/* This could do with a cleanup */
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000802static void write_status_file(deb_file_t **deb_file)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000803{
Denis Vlasenko5415c852008-07-21 23:05:26 +0000804 FILE *old_status_file = xfopen_for_read("/var/lib/dpkg/status");
805 FILE *new_status_file = xfopen_for_write("/var/lib/dpkg/status.udeb");
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000806 char *package_name;
807 char *status_from_file;
808 char *control_buffer = NULL;
809 char *tmp_string;
810 int status_num;
811 int field_start = 0;
812 int write_flag;
813 int i = 0;
814
815 /* Update previously known packages */
Denis Vlasenkoabee3d02007-12-26 20:44:45 +0000816 while ((control_buffer = xmalloc_fgetline_str(old_status_file, "\n\n")) != NULL) {
Denis Vlasenko334fa9b2007-04-13 23:22:58 +0000817 tmp_string = strstr(control_buffer, "Package:");
818 if (tmp_string == NULL) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000819 continue;
820 }
821
822 tmp_string += 8;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000823 tmp_string += strspn(tmp_string, " \n\t");
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000824 package_name = xstrndup(tmp_string, strcspn(tmp_string, "\n"));
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000825 write_flag = FALSE;
826 tmp_string = strstr(control_buffer, "Status:");
827 if (tmp_string != NULL) {
Denys Vlasenko5370bfb2009-09-06 02:58:59 +0200828 /* Separate the status value from the control buffer */
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000829 tmp_string += 7;
830 tmp_string += strspn(tmp_string, " \n\t");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000831 status_from_file = xstrndup(tmp_string, strcspn(tmp_string, "\n"));
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000832 } else {
833 status_from_file = NULL;
834 }
835
836 /* Find this package in the status hashtable */
837 status_num = search_status_hashtable(package_name);
838 if (status_hashtable[status_num] != NULL) {
839 const char *status_from_hashtable = name_hashtable[status_hashtable[status_num]->status];
840 if (strcmp(status_from_file, status_from_hashtable) != 0) {
841 /* New status isnt exactly the same as old status */
842 const int state_status = get_status(status_num, 3);
Denis Vlasenko334fa9b2007-04-13 23:22:58 +0000843 if ((strcmp("installed", name_hashtable[state_status]) == 0)
844 || (strcmp("unpacked", name_hashtable[state_status]) == 0)
845 ) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000846 /* We need to add the control file from the package */
847 i = 0;
Denis Vlasenko57308af2006-09-28 22:34:46 +0000848 while (deb_file[i] != NULL) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000849 if (strcmp(package_name, name_hashtable[package_hashtable[deb_file[i]->package]->name]) == 0) {
850 /* Write a status file entry with a modified status */
851 /* remove trailing \n's */
852 write_buffer_no_status(new_status_file, deb_file[i]->control_file);
853 set_status(status_num, "ok", 2);
Denis Vlasenkoa6dbb082006-10-12 19:29:44 +0000854 fprintf(new_status_file, "Status: %s\n\n",
855 name_hashtable[status_hashtable[status_num]->status]);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000856 write_flag = TRUE;
857 break;
858 }
859 i++;
860 }
861 /* This is temperary, debugging only */
862 if (deb_file[i] == NULL) {
Denis Vlasenkoa6dbb082006-10-12 19:29:44 +0000863 bb_error_msg_and_die("ALERT: cannot find a control file, "
864 "your status file may be broken, status may be "
865 "incorrect for %s", package_name);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000866 }
867 }
868 else if (strcmp("not-installed", name_hashtable[state_status]) == 0) {
869 /* Only write the Package, Status, Priority and Section lines */
870 fprintf(new_status_file, "Package: %s\n", package_name);
871 fprintf(new_status_file, "Status: %s\n", status_from_hashtable);
872
873 while (1) {
874 char *field_name;
875 char *field_value;
876 field_start += read_package_field(&control_buffer[field_start], &field_name, &field_value);
877 if (field_name == NULL) {
878 break;
879 }
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100880 if ((strcmp(field_name, "Priority") == 0)
881 || (strcmp(field_name, "Section") == 0)
882 ) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000883 fprintf(new_status_file, "%s: %s\n", field_name, field_value);
884 }
885 }
886 write_flag = TRUE;
887 fputs("\n", new_status_file);
888 }
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200889 else if (strcmp("config-files", name_hashtable[state_status]) == 0) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000890 /* only change the status line */
891 while (1) {
892 char *field_name;
893 char *field_value;
894 field_start += read_package_field(&control_buffer[field_start], &field_name, &field_value);
895 if (field_name == NULL) {
896 break;
897 }
898 /* Setup start point for next field */
899 if (strcmp(field_name, "Status") == 0) {
900 fprintf(new_status_file, "Status: %s\n", status_from_hashtable);
901 } else {
902 fprintf(new_status_file, "%s: %s\n", field_name, field_value);
903 }
904 }
905 write_flag = TRUE;
906 fputs("\n", new_status_file);
907 }
908 }
909 }
910 /* If the package from the status file wasnt handle above, do it now*/
Denis Vlasenko334fa9b2007-04-13 23:22:58 +0000911 if (!write_flag) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000912 fprintf(new_status_file, "%s\n\n", control_buffer);
913 }
914
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000915 free(status_from_file);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000916 free(package_name);
917 free(control_buffer);
918 }
919
920 /* Write any new packages */
Denis Vlasenko57308af2006-09-28 22:34:46 +0000921 for (i = 0; deb_file[i] != NULL; i++) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000922 status_num = search_status_hashtable(name_hashtable[package_hashtable[deb_file[i]->package]->name]);
923 if (strcmp("reinstreq", name_hashtable[get_status(status_num, 2)]) == 0) {
924 write_buffer_no_status(new_status_file, deb_file[i]->control_file);
925 set_status(status_num, "ok", 2);
926 fprintf(new_status_file, "Status: %s\n\n", name_hashtable[status_hashtable[status_num]->status]);
927 }
928 }
929 fclose(old_status_file);
930 fclose(new_status_file);
931
Eric Andersenaff114c2004-04-14 17:51:38 +0000932 /* Create a separate backfile to dpkg */
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000933 if (rename("/var/lib/dpkg/status", "/var/lib/dpkg/status.udeb.bak") == -1) {
Denis Vlasenkob3b07532008-02-17 14:29:25 +0000934 if (errno != ENOENT)
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100935 bb_error_msg_and_die("can't create backup status file");
Eric Andersenaff114c2004-04-14 17:51:38 +0000936 /* Its ok if renaming the status file fails because status
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000937 * file doesnt exist, maybe we are starting from scratch */
Denis Vlasenko57308af2006-09-28 22:34:46 +0000938 bb_error_msg("no status file found, creating new one");
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000939 }
940
Denis Vlasenkob3b07532008-02-17 14:29:25 +0000941 xrename("/var/lib/dpkg/status.udeb", "/var/lib/dpkg/status");
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000942}
943
Eric Andersenaff114c2004-04-14 17:51:38 +0000944/* This function returns TRUE if the given package can satisfy a
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000945 * dependency of type depend_type.
946 *
Eric Andersenaff114c2004-04-14 17:51:38 +0000947 * A pre-depends is satisfied only if a package is already installed,
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000948 * which a regular depends can be satisfied by a package which we want
949 * to install.
950 */
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000951static int package_satisfies_dependency(int package, int depend_type)
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000952{
953 int status_num = search_status_hashtable(name_hashtable[package_hashtable[package]->name]);
954
955 /* status could be unknown if package is a pure virtual
956 * provides which cannot satisfy any dependency by itself.
957 */
Denis Vlasenko57308af2006-09-28 22:34:46 +0000958 if (status_hashtable[status_num] == NULL)
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000959 return 0;
960
961 switch (depend_type) {
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200962 case EDGE_PRE_DEPENDS: return get_status(status_num, 3) == search_name_hashtable("installed");
963 case EDGE_DEPENDS: return get_status(status_num, 1) == search_name_hashtable("install");
Glenn L McGrathb8c3a542003-11-28 22:38:14 +0000964 }
965 return 0;
966}
967
Denis Vlasenko68404f12008-03-17 09:00:54 +0000968static int check_deps(deb_file_t **deb_file, int deb_start /*, int dep_max_count - ?? */)
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000969{
970 int *conflicts = NULL;
971 int conflicts_num = 0;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000972 int i = deb_start;
Glenn L McGratha94a06a2002-05-29 13:45:34 +0000973 int j;
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000974
975 /* Check for conflicts
976 * TODO: TEST if conflicts with other packages to be installed
977 *
978 * Add install packages and the packages they provide
979 * to the list of files to check conflicts for
980 */
981
982 /* Create array of package numbers to check against
983 * installed package for conflicts*/
984 while (deb_file[i] != NULL) {
Denis Vlasenkoa6df5902006-12-22 18:32:40 +0000985 const unsigned package_num = deb_file[i]->package;
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000986 conflicts = xrealloc_vector(conflicts, 2, conflicts_num);
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000987 conflicts[conflicts_num] = package_num;
988 conflicts_num++;
989 /* add provides to conflicts list */
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200990 for (j = 0; j < package_hashtable[package_num]->num_of_edges; j++) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000991 if (package_hashtable[package_num]->edge[j]->type == EDGE_PROVIDES) {
992 const int conflicts_package_num = search_package_hashtable(
993 package_hashtable[package_num]->edge[j]->name,
994 package_hashtable[package_num]->edge[j]->version,
995 package_hashtable[package_num]->edge[j]->operator);
996 if (package_hashtable[conflicts_package_num] == NULL) {
997 /* create a new package */
Denis Vlasenko4cccc032006-12-22 18:37:07 +0000998 common_node_t *new_node = xzalloc(sizeof(common_node_t));
Glenn L McGrathef0eab52001-10-25 14:49:48 +0000999 new_node->name = package_hashtable[package_num]->edge[j]->name;
1000 new_node->version = package_hashtable[package_num]->edge[j]->version;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001001 package_hashtable[conflicts_package_num] = new_node;
1002 }
Denis Vlasenkodeeed592008-07-08 05:14:36 +00001003 conflicts = xrealloc_vector(conflicts, 2, conflicts_num);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001004 conflicts[conflicts_num] = conflicts_package_num;
1005 conflicts_num++;
1006 }
1007 }
1008 i++;
1009 }
1010
1011 /* Check conflicts */
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001012 i = 0;
1013 while (deb_file[i] != NULL) {
1014 const common_node_t *package_node = package_hashtable[deb_file[i]->package];
1015 int status_num = 0;
1016 status_num = search_status_hashtable(name_hashtable[package_node->name]);
1017
1018 if (get_status(status_num, 3) == search_name_hashtable("installed")) {
1019 i++;
1020 continue;
1021 }
1022
1023 for (j = 0; j < package_node->num_of_edges; j++) {
1024 const edge_t *package_edge = package_node->edge[j];
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001025
1026 if (package_edge->type == EDGE_CONFLICTS) {
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001027 const unsigned package_num =
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001028 search_package_hashtable(package_edge->name,
Denys Vlasenko69675782013-01-14 01:34:48 +01001029 package_edge->version,
1030 package_edge->operator);
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001031 int result = 0;
1032 if (package_hashtable[package_num] != NULL) {
1033 status_num = search_status_hashtable(name_hashtable[package_hashtable[package_num]->name]);
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001034
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001035 if (get_status(status_num, 1) == search_name_hashtable("install")) {
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001036 result = test_version(package_hashtable[deb_file[i]->package]->version,
1037 package_edge->version, package_edge->operator);
1038 }
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001039 }
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001040
1041 if (result) {
Denis Vlasenko57308af2006-09-28 22:34:46 +00001042 bb_error_msg_and_die("package %s conflicts with %s",
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001043 name_hashtable[package_node->name],
1044 name_hashtable[package_edge->name]);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001045 }
1046 }
1047 }
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001048 i++;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001049 }
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001050
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001051
1052 /* Check dependendcies */
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001053 for (i = 0; i < PACKAGE_HASH_PRIME; i++) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001054 int status_num = 0;
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001055 int number_of_alternatives = 0;
Eric Andersenaff114c2004-04-14 17:51:38 +00001056 const edge_t * root_of_alternatives = NULL;
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001057 const common_node_t *package_node = package_hashtable[i];
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001058
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001059 /* If the package node does not exist then this
1060 * package is a virtual one. In which case there are
1061 * no dependencies to check.
1062 */
Denis Vlasenko57308af2006-09-28 22:34:46 +00001063 if (package_node == NULL) continue;
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001064
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001065 status_num = search_status_hashtable(name_hashtable[package_node->name]);
1066
1067 /* If there is no status then this package is a
1068 * virtual one provided by something else. In which
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001069 * case there are no dependencies to check.
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001070 */
Denis Vlasenko57308af2006-09-28 22:34:46 +00001071 if (status_hashtable[status_num] == NULL) continue;
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001072
1073 /* If we don't want this package installed then we may
1074 * as well ignore it's dependencies.
1075 */
1076 if (get_status(status_num, 1) != search_name_hashtable("install")) {
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001077 continue;
1078 }
1079
Eric Andersenaff114c2004-04-14 17:51:38 +00001080 /* This code is tested only for EDGE_DEPENDS, since I
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001081 * have no suitable pre-depends available. There is no
1082 * reason that it shouldn't work though :-)
1083 */
1084 for (j = 0; j < package_node->num_of_edges; j++) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001085 const edge_t *package_edge = package_node->edge[j];
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001086 unsigned package_num;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001087
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001088 if (package_edge->type == EDGE_OR_PRE_DEPENDS
1089 || package_edge->type == EDGE_OR_DEPENDS
Denys Vlasenkofb132e42010-10-29 11:46:52 +02001090 ) {
1091 /* start an EDGE_OR_ list */
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001092 number_of_alternatives = package_edge->version;
1093 root_of_alternatives = package_edge;
1094 continue;
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001095 }
Denys Vlasenkofb132e42010-10-29 11:46:52 +02001096 if (number_of_alternatives == 0) { /* not in the middle of an EDGE_OR_ list */
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001097 number_of_alternatives = 1;
1098 root_of_alternatives = NULL;
1099 }
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001100
Glenn L McGrath1dbbd2f2001-12-05 04:10:14 +00001101 package_num = search_package_hashtable(package_edge->name, package_edge->version, package_edge->operator);
Glenn L McGrath1dbbd2f2001-12-05 04:10:14 +00001102
Denys Vlasenko6b9f1632010-01-28 02:24:24 +01001103 if (package_edge->type == EDGE_PRE_DEPENDS
1104 || package_edge->type == EDGE_DEPENDS
1105 ) {
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001106 int result=1;
1107 status_num = 0;
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001108
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001109 /* If we are inside an alternative then check
1110 * this edge is the right type.
1111 *
1112 * EDGE_DEPENDS == OR_DEPENDS -1
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001113 * EDGE_PRE_DEPENDS == OR_PRE_DEPENDS -1
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001114 */
Denis Vlasenko57308af2006-09-28 22:34:46 +00001115 if (root_of_alternatives && package_edge->type != root_of_alternatives->type - 1)
1116 bb_error_msg_and_die("fatal error, package dependencies corrupt: %d != %d - 1",
Denys Vlasenko69675782013-01-14 01:34:48 +01001117 package_edge->type, root_of_alternatives->type);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001118
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001119 if (package_hashtable[package_num] != NULL)
1120 result = !package_satisfies_dependency(package_num, package_edge->type);
1121
1122 if (result) { /* check for other package which provide what we are looking for */
1123 int provider = -1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001124
Denis Vlasenko57308af2006-09-28 22:34:46 +00001125 while ((provider = search_for_provides(package_edge->name, provider)) > -1) {
1126 if (package_hashtable[provider] == NULL) {
1127 puts("Have a provider but no package information for it");
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001128 continue;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001129 }
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001130 result = !package_satisfies_dependency(provider, package_edge->type);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001131
Denis Vlasenko57308af2006-09-28 22:34:46 +00001132 if (result == 0)
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001133 break;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001134 }
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001135 }
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001136
1137 /* It must be already installed, or to be installed */
1138 number_of_alternatives--;
1139 if (result && number_of_alternatives == 0) {
Denis Vlasenko57308af2006-09-28 22:34:46 +00001140 if (root_of_alternatives)
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001141 bb_error_msg_and_die(
Denis Vlasenko57308af2006-09-28 22:34:46 +00001142 "package %s %sdepends on %s, "
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001143 "which cannot be satisfied",
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001144 name_hashtable[package_node->name],
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001145 package_edge->type == EDGE_PRE_DEPENDS ? "pre-" : "",
1146 name_hashtable[root_of_alternatives->name]);
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001147 bb_error_msg_and_die(
1148 "package %s %sdepends on %s, which %s\n",
1149 name_hashtable[package_node->name],
1150 package_edge->type == EDGE_PRE_DEPENDS ? "pre-" : "",
1151 name_hashtable[package_edge->name],
1152 describe_status(status_num));
1153 }
1154 if (result == 0 && number_of_alternatives) {
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001155 /* we've found a package which
1156 * satisfies the dependency,
1157 * so skip over the rest of
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001158 * the alternatives.
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001159 */
1160 j += number_of_alternatives;
1161 number_of_alternatives = 0;
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001162 }
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001163 }
1164 }
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001165 }
1166 free(conflicts);
Denis Vlasenko54928842006-09-28 22:35:42 +00001167 return TRUE;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001168}
1169
Eric Andersen14f5c8d2005-04-16 19:39:00 +00001170static char **create_list(const char *filename)
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001171{
1172 FILE *list_stream;
Denis Vlasenko20273132008-06-21 22:10:52 +00001173 char **file_list;
1174 char *line;
1175 int count;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001176
Eric Andersenaff114c2004-04-14 17:51:38 +00001177 /* don't use [xw]fopen here, handle error ourself */
Denis Vlasenko5415c852008-07-21 23:05:26 +00001178 list_stream = fopen_for_read(filename);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001179 if (list_stream == NULL) {
Denis Vlasenko54928842006-09-28 22:35:42 +00001180 return NULL;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001181 }
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001182
Denis Vlasenko20273132008-06-21 22:10:52 +00001183 file_list = NULL;
1184 count = 0;
Denis Vlasenko8ee649a2008-03-26 20:04:27 +00001185 while ((line = xmalloc_fgetline(list_stream)) != NULL) {
Denis Vlasenkodeeed592008-07-08 05:14:36 +00001186 file_list = xrealloc_vector(file_list, 2, count);
Denis Vlasenko20273132008-06-21 22:10:52 +00001187 file_list[count++] = line;
Denis Vlasenko27842282008-08-04 13:20:36 +00001188 /*file_list[count] = NULL; - xrealloc_vector did it */
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001189 }
1190 fclose(list_stream);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001191
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001192 return file_list;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001193}
1194
1195/* maybe i should try and hook this into remove_file.c somehow */
Eric Andersen14f5c8d2005-04-16 19:39:00 +00001196static int remove_file_array(char **remove_names, char **exclude_names)
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001197{
1198 struct stat path_stat;
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001199 int remove_flag = 1; /* not removed anything yet */
1200 int i, j;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001201
1202 if (remove_names == NULL) {
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001203 return 0;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001204 }
1205 for (i = 0; remove_names[i] != NULL; i++) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001206 if (exclude_names != NULL) {
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001207 for (j = 0; exclude_names[j] != NULL; j++) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001208 if (strcmp(remove_names[i], exclude_names[j]) == 0) {
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001209 goto skip;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001210 }
1211 }
1212 }
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001213 /* TODO: why we are checking lstat? we can just try rm/rmdir */
1214 if (lstat(remove_names[i], &path_stat) < 0) {
1215 continue;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001216 }
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001217 if (S_ISDIR(path_stat.st_mode)) {
1218 remove_flag &= rmdir(remove_names[i]); /* 0 if no error */
1219 } else {
1220 remove_flag &= unlink(remove_names[i]); /* 0 if no error */
1221 }
1222 skip:
1223 continue;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001224 }
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001225 return (remove_flag == 0);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001226}
1227
Denis Vlasenkoc87339d2008-06-21 23:15:43 +00001228static void run_package_script_or_die(const char *package_name, const char *script_type)
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001229{
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001230 char *script_path;
1231 int result;
1232
Rob Landleyd921b2e2006-08-03 15:41:12 +00001233 script_path = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, script_type);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001234
Denis Vlasenkoc87339d2008-06-21 23:15:43 +00001235 /* If the file doesnt exist is isnt fatal */
1236 result = access(script_path, F_OK) ? EXIT_SUCCESS : system(script_path);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001237 free(script_path);
Denis Vlasenkoc87339d2008-06-21 23:15:43 +00001238 if (result)
1239 bb_error_msg_and_die("%s failed, exit code %d", script_type, result);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001240}
1241
Denis Vlasenkod235f582008-06-21 22:46:58 +00001242/*
1243The policy manual defines what scripts get called when and with
1244what arguments. I realize that busybox does not support all of
1245these scenarios, but it does support some of them; it does not,
Denis Vlasenkoc87339d2008-06-21 23:15:43 +00001246however, run them with any parameters in run_package_script_or_die().
Denis Vlasenkod235f582008-06-21 22:46:58 +00001247Here are the scripts:
1248
1249preinst install
1250preinst install <old_version>
1251preinst upgrade <old_version>
1252preinst abort_upgrade <new_version>
1253postinst configure <most_recent_version>
1254postinst abort-upgade <new_version>
1255postinst abort-remove
1256postinst abort-remove in-favour <package> <version>
1257postinst abort-deconfigure in-favor <failed_install_package> removing <conflicting_package> <version>
1258prerm remove
1259prerm upgrade <new_version>
1260prerm failed-upgrade <old_version>
1261prerm remove in-favor <package> <new_version>
1262prerm deconfigure in-favour <package> <version> removing <package> <version>
1263postrm remove
1264postrm purge
1265postrm upgrade <new_version>
1266postrm failed-upgrade <old_version>
1267postrm abort-install
1268postrm abort-install <old_version>
1269postrm abort-upgrade <old_version>
1270postrm disappear <overwriter> <version>
1271*/
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001272static const char *const all_control_files[] = {
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001273 "preinst", "postinst", "prerm", "postrm",
1274 "list", "md5sums", "shlibs", "conffiles",
Denis Vlasenkod235f582008-06-21 22:46:58 +00001275 "config", "templates"
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001276};
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001277
Eric Andersen14f5c8d2005-04-16 19:39:00 +00001278static char **all_control_list(const char *package_name)
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001279{
Denis Vlasenko54928842006-09-28 22:35:42 +00001280 unsigned i = 0;
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001281 char **remove_files;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001282
1283 /* Create a list of all /var/lib/dpkg/info/<package> files */
Denis Vlasenkod235f582008-06-21 22:46:58 +00001284 remove_files = xzalloc(sizeof(all_control_files) + sizeof(char*));
1285 while (i < ARRAY_SIZE(all_control_files)) {
1286 remove_files[i] = xasprintf("/var/lib/dpkg/info/%s.%s",
1287 package_name, all_control_files[i]);
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001288 i++;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001289 }
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001290
Denis Vlasenko54928842006-09-28 22:35:42 +00001291 return remove_files;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001292}
1293
Eric Andersen14f5c8d2005-04-16 19:39:00 +00001294static void free_array(char **array)
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001295{
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001296 if (array) {
Denis Vlasenko54928842006-09-28 22:35:42 +00001297 unsigned i = 0;
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001298 while (array[i]) {
1299 free(array[i]);
1300 i++;
1301 }
1302 free(array);
1303 }
1304}
Glenn L McGrathe7386612001-09-21 04:30:51 +00001305
1306/* This function lists information on the installed packages. It loops through
1307 * the status_hashtable to retrieve the info. This results in smaller code than
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001308 * scanning the status file. The resulting list, however, is unsorted.
Glenn L McGrathe7386612001-09-21 04:30:51 +00001309 */
Bernhard Reutner-Fischer97516fc2008-09-25 12:18:49 +00001310static void list_packages(const char *pattern)
Glenn L McGrathe7386612001-09-21 04:30:51 +00001311{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001312 int i;
Glenn L McGrathe7386612001-09-21 04:30:51 +00001313
Denis Vlasenko57308af2006-09-28 22:34:46 +00001314 puts(" Name Version");
1315 puts("+++-==============-==============");
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001316
Glenn L McGrathe7386612001-09-21 04:30:51 +00001317 /* go through status hash, dereference package hash and finally strings */
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001318 for (i = 0; i < STATUS_HASH_PRIME+1; i++) {
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00001319 if (status_hashtable[i]) {
1320 const char *stat_str; /* status string */
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001321 const char *name_str; /* package name */
1322 const char *vers_str; /* version */
1323 char s1, s2; /* status abbreviations */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001324 int spccnt; /* space count */
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001325 int j;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001326
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001327 stat_str = name_hashtable[status_hashtable[i]->status];
1328 name_str = name_hashtable[package_hashtable[status_hashtable[i]->package]->name];
1329 vers_str = name_hashtable[package_hashtable[status_hashtable[i]->package]->version];
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001330
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001331 if (pattern && fnmatch(pattern, name_str, 0) != 0)
Bernhard Reutner-Fischer97516fc2008-09-25 12:18:49 +00001332 continue;
1333
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001334 /* get abbreviation for status field 1 */
1335 s1 = stat_str[0] == 'i' ? 'i' : 'r';
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001336
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001337 /* get abbreviation for status field 2 */
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001338 for (j = 0, spccnt = 0; stat_str[j] && spccnt < 2; j++) {
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00001339 if (stat_str[j] == ' ') spccnt++;
Glenn L McGrathe7386612001-09-21 04:30:51 +00001340 }
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001341 s2 = stat_str[j];
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001342
Glenn L McGrathe7386612001-09-21 04:30:51 +00001343 /* print out the line formatted like Debian dpkg */
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001344 printf("%c%c %-14s %s\n", s1, s2, name_str, vers_str);
Glenn L McGrathe7386612001-09-21 04:30:51 +00001345 }
Denis Vlasenko334fa9b2007-04-13 23:22:58 +00001346 }
Glenn L McGrathe7386612001-09-21 04:30:51 +00001347}
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001348
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001349static void remove_package(const unsigned package_num, int noisy)
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001350{
1351 const char *package_name = name_hashtable[package_hashtable[package_num]->name];
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001352 const char *package_version = name_hashtable[package_hashtable[package_num]->version];
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001353 const unsigned status_num = search_status_hashtable(package_name);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001354 const int package_name_length = strlen(package_name);
1355 char **remove_files;
1356 char **exclude_files;
1357 char list_name[package_name_length + 25];
1358 char conffile_name[package_name_length + 30];
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001359
Denis Vlasenko57308af2006-09-28 22:34:46 +00001360 if (noisy)
1361 printf("Removing %s (%s)...\n", package_name, package_version);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001362
Denis Vlasenkoc87339d2008-06-21 23:15:43 +00001363 /* Run prerm script */
1364 run_package_script_or_die(package_name, "prerm");
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001365
Eric Andersenaff114c2004-04-14 17:51:38 +00001366 /* Create a list of files to remove, and a separate list of those to keep */
Denis Vlasenkod235f582008-06-21 22:46:58 +00001367 sprintf(list_name, "/var/lib/dpkg/info/%s.%s", package_name, "list");
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001368 remove_files = create_list(list_name);
1369
Denis Vlasenkod235f582008-06-21 22:46:58 +00001370 sprintf(conffile_name, "/var/lib/dpkg/info/%s.%s", package_name, "conffiles");
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001371 exclude_files = create_list(conffile_name);
1372
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +00001373 /* Some directories can't be removed straight away, so do multiple passes */
Denis Vlasenkoc87339d2008-06-21 23:15:43 +00001374 while (remove_file_array(remove_files, exclude_files))
1375 continue;
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001376 free_array(exclude_files);
1377 free_array(remove_files);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001378
Denys Vlasenkod1090c92009-07-25 11:52:32 +02001379 /* Create a list of files in /var/lib/dpkg/info/<package>.* to keep */
1380 exclude_files = xzalloc(sizeof(exclude_files[0]) * 3);
Rob Landleyd921b2e2006-08-03 15:41:12 +00001381 exclude_files[0] = xstrdup(conffile_name);
Denis Vlasenkod235f582008-06-21 22:46:58 +00001382 exclude_files[1] = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, "postrm");
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001383
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001384 /* Create a list of all /var/lib/dpkg/info/<package> files */
1385 remove_files = all_control_list(package_name);
1386
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001387 remove_file_array(remove_files, exclude_files);
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001388 free_array(remove_files);
1389 free_array(exclude_files);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001390
Bernhard Reutner-Fischerf0d60682008-06-05 12:18:42 +00001391 /* rename <package>.conffiles to <package>.list
1392 * The conffiles control file isn't required in Debian packages, so don't
1393 * error out if it's missing. */
1394 rename(conffile_name, list_name);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001395
1396 /* Change package status */
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001397 set_status(status_num, "config-files", 3);
1398}
1399
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001400static void purge_package(const unsigned package_num)
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001401{
1402 const char *package_name = name_hashtable[package_hashtable[package_num]->name];
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001403 const char *package_version = name_hashtable[package_hashtable[package_num]->version];
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001404 const unsigned status_num = search_status_hashtable(package_name);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001405 char **remove_files;
1406 char **exclude_files;
1407 char list_name[strlen(package_name) + 25];
1408
Denis Vlasenko57308af2006-09-28 22:34:46 +00001409 printf("Purging %s (%s)...\n", package_name, package_version);
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001410
Denis Vlasenkoc87339d2008-06-21 23:15:43 +00001411 /* Run prerm script */
1412 run_package_script_or_die(package_name, "prerm");
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001413
1414 /* Create a list of files to remove */
Denis Vlasenkod235f582008-06-21 22:46:58 +00001415 sprintf(list_name, "/var/lib/dpkg/info/%s.%s", package_name, "list");
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001416 remove_files = create_list(list_name);
1417
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001418 /* Some directories cant be removed straight away, so do multiple passes */
Denys Vlasenkod1090c92009-07-25 11:52:32 +02001419 while (remove_file_array(remove_files, NULL))
1420 continue;
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001421 free_array(remove_files);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001422
1423 /* Create a list of all /var/lib/dpkg/info/<package> files */
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001424 remove_files = all_control_list(package_name);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001425
Denys Vlasenkod1090c92009-07-25 11:52:32 +02001426 /* Delete all of them except the postrm script */
1427 exclude_files = xzalloc(sizeof(exclude_files[0]) * 2);
1428 exclude_files[0] = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, "postrm");
1429 remove_file_array(remove_files, exclude_files);
1430 free_array(exclude_files);
1431
1432 /* Run and remove postrm script */
Denis Vlasenkoc87339d2008-06-21 23:15:43 +00001433 run_package_script_or_die(package_name, "postrm");
Denys Vlasenkod1090c92009-07-25 11:52:32 +02001434 remove_file_array(remove_files, NULL);
1435
1436 free_array(remove_files);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001437
1438 /* Change package status */
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001439 set_status(status_num, "not-installed", 3);
1440}
1441
Glenn L McGrath747381c2002-11-06 22:54:41 +00001442static archive_handle_t *init_archive_deb_ar(const char *filename)
Glenn L McGrath61b79042002-10-19 10:40:55 +00001443{
Glenn L McGrath747381c2002-11-06 22:54:41 +00001444 archive_handle_t *ar_handle;
Glenn L McGrath61b79042002-10-19 10:40:55 +00001445
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001446 /* Setup an ar archive handle that refers to the gzip sub archive */
Glenn L McGrath747381c2002-11-06 22:54:41 +00001447 ar_handle = init_handle();
1448 ar_handle->filter = filter_accept_list_reassign;
Rob Landleyd921b2e2006-08-03 15:41:12 +00001449 ar_handle->src_fd = xopen(filename, O_RDONLY);
Glenn L McGrath61b79042002-10-19 10:40:55 +00001450
Denis Vlasenko54928842006-09-28 22:35:42 +00001451 return ar_handle;
Glenn L McGrath747381c2002-11-06 22:54:41 +00001452}
Glenn L McGrath61b79042002-10-19 10:40:55 +00001453
Glenn L McGrath747381c2002-11-06 22:54:41 +00001454static void init_archive_deb_control(archive_handle_t *ar_handle)
1455{
1456 archive_handle_t *tar_handle;
1457
1458 /* Setup the tar archive handle */
1459 tar_handle = init_handle();
Glenn L McGrath747381c2002-11-06 22:54:41 +00001460 tar_handle->src_fd = ar_handle->src_fd;
1461
Eric Andersenaff114c2004-04-14 17:51:38 +00001462 /* We don't care about data.tar.* or debian-binary, just control.tar.* */
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +00001463#if ENABLE_FEATURE_SEAMLESS_GZ
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +00001464 llist_add_to(&(ar_handle->accept), (char*)"control.tar.gz");
Glenn L McGrath747381c2002-11-06 22:54:41 +00001465#endif
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +00001466#if ENABLE_FEATURE_SEAMLESS_BZ2
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +00001467 llist_add_to(&(ar_handle->accept), (char*)"control.tar.bz2");
Glenn L McGrath747381c2002-11-06 22:54:41 +00001468#endif
1469
1470 /* Assign the tar handle as a subarchive of the ar handle */
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +01001471 ar_handle->dpkg__sub_archive = tar_handle;
Glenn L McGrath747381c2002-11-06 22:54:41 +00001472}
1473
1474static void init_archive_deb_data(archive_handle_t *ar_handle)
1475{
1476 archive_handle_t *tar_handle;
1477
1478 /* Setup the tar archive handle */
1479 tar_handle = init_handle();
Glenn L McGrath747381c2002-11-06 22:54:41 +00001480 tar_handle->src_fd = ar_handle->src_fd;
1481
Eric Andersenaff114c2004-04-14 17:51:38 +00001482 /* We don't care about control.tar.* or debian-binary, just data.tar.* */
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +00001483#if ENABLE_FEATURE_SEAMLESS_GZ
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +00001484 llist_add_to(&(ar_handle->accept), (char*)"data.tar.gz");
Glenn L McGrath747381c2002-11-06 22:54:41 +00001485#endif
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +00001486#if ENABLE_FEATURE_SEAMLESS_BZ2
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +00001487 llist_add_to(&(ar_handle->accept), (char*)"data.tar.bz2");
Glenn L McGrath747381c2002-11-06 22:54:41 +00001488#endif
1489
1490 /* Assign the tar handle as a subarchive of the ar handle */
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +01001491 ar_handle->dpkg__sub_archive = tar_handle;
Glenn L McGrath747381c2002-11-06 22:54:41 +00001492}
1493
Denys Vlasenko425ad9c2009-12-16 22:46:01 +01001494static void FAST_FUNC data_extract_to_buffer(archive_handle_t *archive_handle)
1495{
1496 unsigned size = archive_handle->file_header->size;
1497
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +01001498 archive_handle->dpkg__buffer = xzalloc(size + 1);
1499 xread(archive_handle->src_fd, archive_handle->dpkg__buffer, size);
Denys Vlasenko425ad9c2009-12-16 22:46:01 +01001500}
1501
Eric Andersen1393a392003-09-15 08:06:15 +00001502static char *deb_extract_control_file_to_buffer(archive_handle_t *ar_handle, llist_t *myaccept)
Glenn L McGrath747381c2002-11-06 22:54:41 +00001503{
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +01001504 ar_handle->dpkg__sub_archive->action_data = data_extract_to_buffer;
1505 ar_handle->dpkg__sub_archive->accept = myaccept;
1506 ar_handle->dpkg__sub_archive->filter = filter_accept_list;
Glenn L McGrath747381c2002-11-06 22:54:41 +00001507
1508 unpack_ar_archive(ar_handle);
1509 close(ar_handle->src_fd);
1510
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +01001511 return ar_handle->dpkg__sub_archive->dpkg__buffer;
Glenn L McGrath61b79042002-10-19 10:40:55 +00001512}
1513
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001514static void append_control_file_to_llist(const char *package_name, const char *control_name, llist_t **ll)
1515{
1516 FILE *fp;
1517 char *filename, *line;
1518
1519 filename = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, control_name);
1520 fp = fopen_for_read(filename);
1521 free(filename);
1522 if (fp != NULL) {
1523 while ((line = xmalloc_fgetline(fp)) != NULL)
1524 llist_add_to(ll, line);
1525 fclose(fp);
1526 }
1527}
1528
1529static char FAST_FUNC filter_rename_config(archive_handle_t *archive_handle)
1530{
1531 int fd;
1532 char *name_ptr = archive_handle->file_header->name + 1;
1533
1534 /* Is this file marked as config file? */
1535 if (!find_list_entry(archive_handle->accept, name_ptr))
1536 return EXIT_SUCCESS; /* no */
1537
1538 fd = open(name_ptr, O_RDONLY);
1539 if (fd >= 0) {
1540 md5_ctx_t md5;
1541 char *md5line, *buf;
1542 int count;
1543
1544 /* Calculate MD5 of existing file */
1545 buf = xmalloc(4096);
1546 md5_begin(&md5);
1547 while ((count = safe_read(fd, buf, 4096)) > 0)
Denys Vlasenkoc0683ac2010-10-16 20:45:27 +02001548 md5_hash(&md5, buf, count);
1549 md5_end(&md5, buf); /* using buf as result storage */
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001550 close(fd);
1551
1552 md5line = xmalloc(16 * 2 + 2 + strlen(name_ptr) + 1);
1553 sprintf(bin2hex(md5line, buf, 16), " %s", name_ptr);
1554 free(buf);
1555
1556 /* Is it changed after install? */
1557 if (find_list_entry(archive_handle->accept, md5line) == NULL) {
1558 printf("Warning: Creating %s as %s.dpkg-new\n", name_ptr, name_ptr);
1559 archive_handle->file_header->name = xasprintf("%s.dpkg-new", archive_handle->file_header->name);
1560 }
1561 free(md5line);
1562 }
1563 return EXIT_SUCCESS;
1564}
1565
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001566static void FAST_FUNC data_extract_all_prefix(archive_handle_t *archive_handle)
Glenn L McGrath6ab32eb2002-11-03 11:57:10 +00001567{
1568 char *name_ptr = archive_handle->file_header->name;
1569
Denys Vlasenko6fd42b32010-01-08 18:07:33 +01001570 /* Skip all leading "/" */
1571 while (*name_ptr == '/')
1572 name_ptr++;
1573 /* Skip all leading "./" and "../" */
1574 while (name_ptr[0] == '.') {
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001575 if (name_ptr[1] == '.')
Denys Vlasenko6fd42b32010-01-08 18:07:33 +01001576 name_ptr++;
1577 if (name_ptr[1] != '/')
1578 break;
1579 name_ptr += 2;
1580 }
1581
Glenn L McGrath6ab32eb2002-11-03 11:57:10 +00001582 if (name_ptr[0] != '\0') {
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +01001583 archive_handle->file_header->name = xasprintf("%s%s", archive_handle->dpkg__buffer, name_ptr);
Glenn L McGrath6ab32eb2002-11-03 11:57:10 +00001584 data_extract_all(archive_handle);
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001585 if (fnmatch("*.dpkg-new", archive_handle->file_header->name, 0) == 0) {
1586 /* remove .dpkg-new suffix */
1587 archive_handle->file_header->name[strlen(archive_handle->file_header->name) - 9] = '\0';
1588 }
Glenn L McGrath6ab32eb2002-11-03 11:57:10 +00001589 }
Glenn L McGrath6ab32eb2002-11-03 11:57:10 +00001590}
1591
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001592enum {
Denys Vlasenkoeab75f62010-03-30 15:03:26 +02001593 /* Commands */
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001594 OPT_configure = (1 << 0),
Denys Vlasenkoeab75f62010-03-30 15:03:26 +02001595 OPT_install = (1 << 1),
1596 OPT_list_installed = (1 << 2),
1597 OPT_purge = (1 << 3),
1598 OPT_remove = (1 << 4),
1599 OPT_unpack = (1 << 5),
1600 OPTMASK_cmd = (1 << 6) - 1,
1601 /* Options */
1602 OPT_force = (1 << 6),
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001603 OPT_force_ignore_depends = (1 << 7),
1604 OPT_force_confnew = (1 << 8),
1605 OPT_force_confold = (1 << 9),
1606};
1607
Glenn L McGrath6ab32eb2002-11-03 11:57:10 +00001608static void unpack_package(deb_file_t *deb_file)
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001609{
1610 const char *package_name = name_hashtable[package_hashtable[deb_file->package]->name];
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001611 const unsigned status_num = search_status_hashtable(package_name);
1612 const unsigned status_package_num = status_hashtable[status_num]->package;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001613 char *info_prefix;
Denis Vlasenko1da6a212006-09-03 16:33:58 +00001614 char *list_filename;
Glenn L McGrath61b79042002-10-19 10:40:55 +00001615 archive_handle_t *archive_handle;
1616 FILE *out_stream;
Denis Vlasenkod235f582008-06-21 22:46:58 +00001617 llist_t *accept_list;
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001618 llist_t *conffile_list;
Denis Vlasenkod235f582008-06-21 22:46:58 +00001619 int i;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001620
1621 /* If existing version, remove it first */
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001622 conffile_list = NULL;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001623 if (strcmp(name_hashtable[get_status(status_num, 3)], "installed") == 0) {
1624 /* Package is already installed, remove old version first */
Denis Vlasenko57308af2006-09-28 22:34:46 +00001625 printf("Preparing to replace %s %s (using %s)...\n", package_name,
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001626 name_hashtable[package_hashtable[status_package_num]->version],
1627 deb_file->filename);
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001628
1629 /* Read md5sums from old package */
1630 if (!(option_mask32 & OPT_force_confold))
1631 append_control_file_to_llist(package_name, "md5sums", &conffile_list);
1632
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001633 remove_package(status_package_num, 0);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001634 } else {
Denis Vlasenko57308af2006-09-28 22:34:46 +00001635 printf("Unpacking %s (from %s)...\n", package_name, deb_file->filename);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001636 }
1637
1638 /* Extract control.tar.gz to /var/lib/dpkg/info/<package>.filename */
Denis Vlasenkod235f582008-06-21 22:46:58 +00001639 info_prefix = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, "");
Glenn L McGrath747381c2002-11-06 22:54:41 +00001640 archive_handle = init_archive_deb_ar(deb_file->filename);
1641 init_archive_deb_control(archive_handle);
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001642
Denis Vlasenkod235f582008-06-21 22:46:58 +00001643 accept_list = NULL;
1644 i = 0;
1645 while (i < ARRAY_SIZE(all_control_files)) {
Rob Landleyd921b2e2006-08-03 15:41:12 +00001646 char *c = xasprintf("./%s", all_control_files[i]);
Rob Landley8bb50782006-05-26 23:44:51 +00001647 llist_add_to(&accept_list, c);
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001648 i++;
1649 }
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +01001650 archive_handle->dpkg__sub_archive->accept = accept_list;
1651 archive_handle->dpkg__sub_archive->filter = filter_accept_list;
1652 archive_handle->dpkg__sub_archive->action_data = data_extract_all_prefix;
1653 archive_handle->dpkg__sub_archive->dpkg__buffer = info_prefix;
1654 archive_handle->dpkg__sub_archive->ah_flags |= ARCHIVE_UNLINK_OLD;
Glenn L McGrath747381c2002-11-06 22:54:41 +00001655 unpack_ar_archive(archive_handle);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001656
1657 /* Run the preinst prior to extracting */
Denis Vlasenkoc87339d2008-06-21 23:15:43 +00001658 run_package_script_or_die(package_name, "preinst");
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001659
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001660 /* Don't overwrite existing config files */
1661 if (!(option_mask32 & OPT_force_confnew))
1662 append_control_file_to_llist(package_name, "conffiles", &conffile_list);
1663
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001664 /* Extract data.tar.gz to the root directory */
Glenn L McGrath747381c2002-11-06 22:54:41 +00001665 archive_handle = init_archive_deb_ar(deb_file->filename);
1666 init_archive_deb_data(archive_handle);
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001667 archive_handle->dpkg__sub_archive->accept = conffile_list;
Denys Vlasenko440a5092012-06-22 16:27:21 +02001668 /* Why ARCHIVE_REMEMBER_NAMES?
1669 * We want names collected in ->passed list even if conffile_list
1670 * is NULL (otherwise get_header_tar may optimize name saving out):
1671 */
1672 archive_handle->dpkg__sub_archive->ah_flags |= ARCHIVE_REMEMBER_NAMES | ARCHIVE_UNLINK_OLD;
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001673 archive_handle->dpkg__sub_archive->filter = filter_rename_config;
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +01001674 archive_handle->dpkg__sub_archive->action_data = data_extract_all_prefix;
1675 archive_handle->dpkg__sub_archive->dpkg__buffer = (char*)"/"; /* huh? */
Glenn L McGrath747381c2002-11-06 22:54:41 +00001676 unpack_ar_archive(archive_handle);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001677
1678 /* Create the list file */
Denis Vlasenkod235f582008-06-21 22:46:58 +00001679 list_filename = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, "list");
Denis Vlasenko5415c852008-07-21 23:05:26 +00001680 out_stream = xfopen_for_write(list_filename);
Denys Vlasenko440a5092012-06-22 16:27:21 +02001681 archive_handle->dpkg__sub_archive->passed = llist_rev(archive_handle->dpkg__sub_archive->passed);
Denys Vlasenkoaa4977d2010-01-06 10:53:17 +01001682 while (archive_handle->dpkg__sub_archive->passed) {
Denys Vlasenko440a5092012-06-22 16:27:21 +02001683 char *filename = llist_pop(&archive_handle->dpkg__sub_archive->passed);
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001684 /* the leading . has been stripped by data_extract_all_prefix already */
Denys Vlasenko440a5092012-06-22 16:27:21 +02001685 fprintf(out_stream, "%s\n", filename);
1686 free(filename);
Glenn L McGrath61b79042002-10-19 10:40:55 +00001687 }
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001688 fclose(out_stream);
1689
1690 /* change status */
1691 set_status(status_num, "install", 1);
1692 set_status(status_num, "unpacked", 3);
1693
1694 free(info_prefix);
Denis Vlasenko1da6a212006-09-03 16:33:58 +00001695 free(list_filename);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001696}
1697
Eric Andersen14f5c8d2005-04-16 19:39:00 +00001698static void configure_package(deb_file_t *deb_file)
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001699{
1700 const char *package_name = name_hashtable[package_hashtable[deb_file->package]->name];
1701 const char *package_version = name_hashtable[package_hashtable[deb_file->package]->version];
1702 const int status_num = search_status_hashtable(package_name);
1703
Denis Vlasenko57308af2006-09-28 22:34:46 +00001704 printf("Setting up %s (%s)...\n", package_name, package_version);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001705
1706 /* Run the postinst script */
Denis Vlasenkoc87339d2008-06-21 23:15:43 +00001707 /* TODO: handle failure gracefully */
1708 run_package_script_or_die(package_name, "postinst");
1709
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001710 /* Change status to reflect success */
1711 set_status(status_num, "install", 1);
1712 set_status(status_num, "installed", 3);
1713}
Glenn L McGrathc9005752001-02-10 02:05:24 +00001714
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001715int dpkg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001716int dpkg_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrathc9005752001-02-10 02:05:24 +00001717{
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001718 deb_file_t **deb_file = NULL;
1719 status_node_t *status_node;
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001720 char *str_f;
Matt Kraaiefd7f032001-11-19 21:07:15 +00001721 int opt;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001722 int package_num;
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001723 int deb_count = 0;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001724 int state_status;
1725 int status_num;
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001726 int i;
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001727#if ENABLE_LONG_OPTS
1728 static const char dpkg_longopts[] ALIGN1 =
1729// FIXME: we use -C non-compatibly, should be:
1730// "-C|--audit Check for broken package(s)"
1731 "configure\0" No_argument "C"
1732 "force\0" Required_argument "F"
1733 "install\0" No_argument "i"
1734 "list\0" No_argument "l"
1735 "purge\0" No_argument "P"
1736 "remove\0" No_argument "r"
1737 "unpack\0" No_argument "u"
1738 "force-depends\0" No_argument "\xff"
1739 "force-confnew\0" No_argument "\xfe"
1740 "force-confold\0" No_argument "\xfd"
1741 ;
1742#endif
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001743
Denis Vlasenkoc87339d2008-06-21 23:15:43 +00001744 INIT_G();
1745
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001746 IF_LONG_OPTS(applet_long_options = dpkg_longopts);
Denys Vlasenkoeab75f62010-03-30 15:03:26 +02001747 opt = getopt32(argv, "CilPruF:", &str_f);
1748 argv += optind;
Denis Vlasenko7fd00cb2007-02-15 21:19:50 +00001749 //if (opt & OPT_configure) ... // -C
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001750 if (opt & OPT_force) { // -F (--force in official dpkg)
1751 if (strcmp(str_f, "depends") == 0)
1752 opt |= OPT_force_ignore_depends;
1753 else if (strcmp(str_f, "confnew") == 0)
1754 opt |= OPT_force_confnew;
1755 else if (strcmp(str_f, "confold") == 0)
1756 opt |= OPT_force_confold;
Denys Vlasenkoeab75f62010-03-30 15:03:26 +02001757 else
1758 bb_show_usage();
Kim B. Heino3d43aed2010-03-29 14:18:27 +02001759 option_mask32 = opt;
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001760 }
Denis Vlasenko7fd00cb2007-02-15 21:19:50 +00001761 //if (opt & OPT_install) ... // -i
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001762 //if (opt & OPT_list_installed) ... // -l
Denis Vlasenko7fd00cb2007-02-15 21:19:50 +00001763 //if (opt & OPT_purge) ... // -P
1764 //if (opt & OPT_remove) ... // -r
1765 //if (opt & OPT_unpack) ... // -u (--unpack in official dpkg)
Denys Vlasenkoeab75f62010-03-30 15:03:26 +02001766 if (!(opt & OPTMASK_cmd) /* no cmd */
1767 || ((opt & OPTMASK_cmd) & ((opt & OPTMASK_cmd)-1)) /* more than one cmd */
Denys Vlasenkoeab75f62010-03-30 15:03:26 +02001768 ) {
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001769 bb_show_usage();
Denys Vlasenkoeab75f62010-03-30 15:03:26 +02001770 }
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001771
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001772/* puts("(Reading database ... xxxxx files and directories installed.)"); */
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001773 index_status_file("/var/lib/dpkg/status");
1774
Glenn L McGrathe7386612001-09-21 04:30:51 +00001775 /* if the list action was given print the installed packages and exit */
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001776 if (opt & OPT_list_installed) {
Denys Vlasenkoeab75f62010-03-30 15:03:26 +02001777 list_packages(argv[0]); /* param can be NULL */
Denis Vlasenko54928842006-09-28 22:35:42 +00001778 return EXIT_SUCCESS;
Glenn L McGrathe7386612001-09-21 04:30:51 +00001779 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001780
Glenn L McGrath0d2fb762001-10-25 14:26:05 +00001781 /* Read arguments and store relevant info in structs */
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001782 while (*argv) {
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001783 /* deb_count = nb_elem - 1 and we need nb_elem + 1 to allocate terminal node [NULL pointer] */
Denis Vlasenkodeeed592008-07-08 05:14:36 +00001784 deb_file = xrealloc_vector(deb_file, 2, deb_count);
Denis Vlasenko7fd00cb2007-02-15 21:19:50 +00001785 deb_file[deb_count] = xzalloc(sizeof(deb_file[0][0]));
1786 if (opt & (OPT_install | OPT_unpack)) {
1787 /* -i/-u: require filename */
Glenn L McGrath61b79042002-10-19 10:40:55 +00001788 archive_handle_t *archive_handle;
Glenn L McGrath66125c82002-12-08 00:54:33 +00001789 llist_t *control_list = NULL;
Glenn L McGrathd8d11912002-11-05 13:56:04 +00001790
Glenn L McGrath747381c2002-11-06 22:54:41 +00001791 /* Extract the control file */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +00001792 llist_add_to(&control_list, (char*)"./control");
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001793 archive_handle = init_archive_deb_ar(argv[0]);
Glenn L McGrath747381c2002-11-06 22:54:41 +00001794 init_archive_deb_control(archive_handle);
1795 deb_file[deb_count]->control_file = deb_extract_control_file_to_buffer(archive_handle, control_list);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001796 if (deb_file[deb_count]->control_file == NULL) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +01001797 bb_error_msg_and_die("can't extract control file");
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001798 }
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001799 deb_file[deb_count]->filename = xstrdup(argv[0]);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001800 package_num = fill_package_struct(deb_file[deb_count]->control_file);
Glenn L McGrath0d2fb762001-10-25 14:26:05 +00001801
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001802 if (package_num == -1) {
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001803 bb_error_msg("invalid control file in %s", argv[0]);
1804 argv++;
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001805 continue;
1806 }
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001807 deb_file[deb_count]->package = (unsigned) package_num;
Glenn L McGrath747381c2002-11-06 22:54:41 +00001808
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001809 /* Add the package to the status hashtable */
Denis Vlasenko7fd00cb2007-02-15 21:19:50 +00001810 if (opt & (OPT_unpack | OPT_install)) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001811 /* Try and find a currently installed version of this package */
1812 status_num = search_status_hashtable(name_hashtable[package_hashtable[deb_file[deb_count]->package]->name]);
1813 /* If no previous entry was found initialise a new entry */
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001814 if (status_hashtable[status_num] == NULL
1815 || status_hashtable[status_num]->status == 0
1816 ) {
Denis Vlasenkob95636c2006-12-19 23:36:04 +00001817 status_node = xmalloc(sizeof(status_node_t));
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001818 status_node->package = deb_file[deb_count]->package;
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001819 /* reinstreq isnt changed to "ok" until the package control info
1820 * is written to the status file*/
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001821 status_node->status = search_name_hashtable("install reinstreq not-installed");
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001822 status_hashtable[status_num] = status_node;
1823 } else {
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001824 set_status(status_num, "install", 1);
1825 set_status(status_num, "reinstreq", 2);
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001826 }
1827 }
Denis Vlasenko7fd00cb2007-02-15 21:19:50 +00001828 } else if (opt & (OPT_configure | OPT_purge | OPT_remove)) {
1829 /* -C/-p/-r: require package name */
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001830 deb_file[deb_count]->package = search_package_hashtable(
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001831 search_name_hashtable(argv[0]),
1832 search_name_hashtable("ANY"), VER_ANY);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001833 if (package_hashtable[deb_file[deb_count]->package] == NULL) {
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001834 bb_error_msg_and_die("package %s is uninstalled or unknown", argv[0]);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001835 }
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001836 package_num = deb_file[deb_count]->package;
1837 status_num = search_status_hashtable(name_hashtable[package_hashtable[package_num]->name]);
1838 state_status = get_status(status_num, 3);
Glenn L McGrath0d2fb762001-10-25 14:26:05 +00001839
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001840 /* check package status is "installed" */
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001841 if (opt & OPT_remove) {
1842 if (strcmp(name_hashtable[state_status], "not-installed") == 0
1843 || strcmp(name_hashtable[state_status], "config-files") == 0
1844 ) {
Denis Vlasenko57308af2006-09-28 22:34:46 +00001845 bb_error_msg_and_die("%s is already removed", name_hashtable[package_hashtable[package_num]->name]);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001846 }
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001847 set_status(status_num, "deinstall", 1);
Denis Vlasenko7fd00cb2007-02-15 21:19:50 +00001848 } else if (opt & OPT_purge) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001849 /* if package status is "conf-files" then its ok */
1850 if (strcmp(name_hashtable[state_status], "not-installed") == 0) {
Denis Vlasenko57308af2006-09-28 22:34:46 +00001851 bb_error_msg_and_die("%s is already purged", name_hashtable[package_hashtable[package_num]->name]);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001852 }
Glenn L McGrathb8c3a542003-11-28 22:38:14 +00001853 set_status(status_num, "purge", 1);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001854 }
1855 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001856 deb_count++;
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001857 argv++;
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001858 }
Denis Vlasenko7fd00cb2007-02-15 21:19:50 +00001859 if (!deb_count)
1860 bb_error_msg_and_die("no package files specified");
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001861 deb_file[deb_count] = NULL;
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001862
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001863 /* Check that the deb file arguments are installable */
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001864 if (!(opt & OPT_force_ignore_depends)) {
Denis Vlasenko68404f12008-03-17 09:00:54 +00001865 if (!check_deps(deb_file, 0 /*, deb_count*/)) {
Denis Vlasenko57308af2006-09-28 22:34:46 +00001866 bb_error_msg_and_die("dependency check failed");
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001867 }
Glenn L McGrath0d2fb762001-10-25 14:26:05 +00001868 }
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001869
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001870 /* TODO: install or remove packages in the correct dependency order */
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001871 for (i = 0; i < deb_count; i++) {
1872 /* Remove or purge packages */
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001873 if (opt & OPT_remove) {
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001874 remove_package(deb_file[i]->package, 1);
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001875 }
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001876 else if (opt & OPT_purge) {
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001877 purge_package(deb_file[i]->package);
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001878 }
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001879 else if (opt & OPT_unpack) {
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001880 unpack_package(deb_file[i]);
1881 }
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001882 else if (opt & OPT_install) {
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001883 unpack_package(deb_file[i]);
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001884 /* package is configured in second pass below */
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001885 }
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001886 else if (opt & OPT_configure) {
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001887 configure_package(deb_file[i]);
1888 }
1889 }
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001890 /* configure installed packages */
Denis Vlasenkoa6df5902006-12-22 18:32:40 +00001891 if (opt & OPT_install) {
Glenn L McGrathfea4b442003-11-26 21:53:37 +00001892 for (i = 0; i < deb_count; i++)
1893 configure_package(deb_file[i]);
1894 }
Glenn L McGrathc3fbec72001-07-18 15:47:21 +00001895
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001896 write_status_file(deb_file);
1897
Denis Vlasenko57308af2006-09-28 22:34:46 +00001898 if (ENABLE_FEATURE_CLEAN_UP) {
1899 for (i = 0; i < deb_count; i++) {
1900 free(deb_file[i]->control_file);
1901 free(deb_file[i]->filename);
1902 free(deb_file[i]);
Glenn L McGratha94a06a2002-05-29 13:45:34 +00001903 }
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001904
Denis Vlasenko57308af2006-09-28 22:34:46 +00001905 free(deb_file);
1906
1907 for (i = 0; i < NAME_HASH_PRIME; i++) {
1908 free(name_hashtable[i]);
1909 }
1910
1911 for (i = 0; i < PACKAGE_HASH_PRIME; i++) {
Denis Vlasenko88a2aa92007-03-19 21:48:56 +00001912 free_package(package_hashtable[i]);
Denis Vlasenko57308af2006-09-28 22:34:46 +00001913 }
1914
1915 for (i = 0; i < STATUS_HASH_PRIME; i++) {
1916 free(status_hashtable[i]);
1917 }
1918
1919 free(status_hashtable);
1920 free(package_hashtable);
1921 free(name_hashtable);
Glenn L McGrathef0eab52001-10-25 14:49:48 +00001922 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001923
Denis Vlasenko54928842006-09-28 22:35:42 +00001924 return EXIT_SUCCESS;
Eric Andersen67991cf2001-02-14 21:23:06 +00001925}