blob: d566bfe5bac48b3159f51108ad846bb368b6b687 [file] [log] [blame]
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001/*
2 * Mini dpkg implementation for busybox.
3 * This is not meant as a replacemnt for dpkg
4 *
Glenn L McGrath35636542001-10-03 03:10:35 +00005 * Written By Glenn McGrath with the help of others
Glenn L McGrathccd65c92001-07-13 18:35:24 +00006 * Copyright (C) 2001 by Glenn McGrath
7 *
8 * Started life as a busybox implementation of udpkg
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Library General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 */
Glenn L McGrath649968c2001-02-10 14:26:48 +000024
Glenn L McGrathccd65c92001-07-13 18:35:24 +000025/*
26 * Known difference between busybox dpkg and the official dpkg that i dont
27 * consider important, its worth keeping a note of differences anyway, just to
28 * make it easier to maintain.
29 * - The first value for the Confflile: field isnt placed on a new line.
30 * - The <package>.control file is extracted and kept in the info dir.
31 * - When installing a package the Status: field is placed at the end of the
32 * section, rather than just after the Package: field.
33 * - Packages with previously unknown status are inserted at the begining of
34 * the status file
35 *
36 * Bugs that need to be fixed
37 * - (unknown, please let me know when you find any)
38 *
39 */
40
41#include <getopt.h>
42#include <stdlib.h>
43#include <string.h>
44#include <unistd.h>
Glenn L McGrathc9005752001-02-10 02:05:24 +000045#include "busybox.h"
46
Glenn L McGrathccd65c92001-07-13 18:35:24 +000047/* NOTE: If you vary HASH_PRIME sizes be aware,
48 * 1) Tweaking these will have a big effect on how much memory this program uses.
49 * 2) For computational efficiency these hash tables should be at least 20%
50 * larger than the maximum number of elements stored in it.
51 * 3) All _HASH_PRIME's must be a prime number or chaos is assured, if your looking
52 * for a prime, try http://www.utm.edu/research/primes/lists/small/10000.txt
53 * 4) If you go bigger than 15 bits you may get into trouble (untested) as its
54 * sometimes cast to an unsigned int, if you go to 16 bit you will overlap
55 * int's and chaos is assured, 16381 is the max prime for 14 bit field
56 */
Glenn L McGrathc9005752001-02-10 02:05:24 +000057
Glenn L McGrathccd65c92001-07-13 18:35:24 +000058/* NAME_HASH_PRIME, Stores package names and versions,
59 * I estimate it should be at least 50% bigger than PACKAGE_HASH_PRIME,
60 * as there a lot of duplicate version numbers */
61#define NAME_HASH_PRIME 16381
62char *name_hashtable[NAME_HASH_PRIME + 1];
Glenn L McGrathc9005752001-02-10 02:05:24 +000063
Glenn L McGrathccd65c92001-07-13 18:35:24 +000064/* PACKAGE_HASH_PRIME, Maximum number of unique packages,
65 * It must not be smaller than STATUS_HASH_PRIME,
66 * Currently only packages from status_hashtable are stored in here, but in
67 * future this may be used to store packages not only from a status file,
68 * but an available_hashtable, and even multiple packages files.
69 * Package can be stored more than once if they have different versions.
70 * e.g. The same package may have different versions in the status file
71 * and available file */
72#define PACKAGE_HASH_PRIME 10007
73typedef struct edge_s {
74 unsigned int operator:3;
75 unsigned int type:4;
76 unsigned int name:14;
77 unsigned int version:14;
78} edge_t;
Glenn L McGrathc9005752001-02-10 02:05:24 +000079
Glenn L McGrathccd65c92001-07-13 18:35:24 +000080typedef struct common_node_s {
81 unsigned int name:14;
82 unsigned int version:14;
83 unsigned int num_of_edges:14;
84 edge_t **edge;
85} common_node_t;
86common_node_t *package_hashtable[PACKAGE_HASH_PRIME + 1];
Glenn L McGrathc9005752001-02-10 02:05:24 +000087
Glenn L McGrathccd65c92001-07-13 18:35:24 +000088/* Currently it doesnt store packages that have state-status of not-installed
89 * So it only really has to be the size of the maximum number of packages
90 * likely to be installed at any one time, so there is a bit of leaway here */
91#define STATUS_HASH_PRIME 8191
92typedef struct status_node_s {
93 unsigned int package:14; /* has to fit PACKAGE_HASH_PRIME */
94 unsigned int status:14; /* has to fit STATUS_HASH_PRIME */
95} status_node_t;
96status_node_t *status_hashtable[STATUS_HASH_PRIME + 1];
Glenn L McGrathd22e5602001-04-11 02:12:08 +000097
Glenn L McGrathccd65c92001-07-13 18:35:24 +000098/* Even numbers are for 'extras', like ored dependecies or null */
99enum edge_type_e {
100 EDGE_NULL = 0,
101 EDGE_PRE_DEPENDS = 1,
102 EDGE_OR_PRE_DEPENDS = 2,
103 EDGE_DEPENDS = 3,
104 EDGE_OR_DEPENDS = 4,
105 EDGE_REPLACES = 5,
106 EDGE_PROVIDES = 7,
107 EDGE_CONFLICTS = 9,
108 EDGE_SUGGESTS = 11,
109 EDGE_RECOMMENDS = 13,
110 EDGE_ENHANCES = 15
111};
112enum operator_e {
113 VER_NULL = 0,
114 VER_EQUAL = 1,
115 VER_LESS = 2,
116 VER_LESS_EQUAL = 3,
117 VER_MORE = 4,
118 VER_MORE_EQUAL = 5,
119 VER_ANY = 6
120};
Glenn L McGrath63106462001-02-11 01:40:23 +0000121
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000122enum dpkg_opt_e {
123 dpkg_opt_purge = 1,
124 dpkg_opt_remove = 2,
125 dpkg_opt_unpack = 4,
126 dpkg_opt_configure = 8,
127 dpkg_opt_install = 16,
128 dpkg_opt_package_name = 32,
129 dpkg_opt_filename = 64,
130 dpkg_opt_list_installed = 128,
131 dpkg_opt_force_ignore_depends = 256
132};
Glenn L McGrathc9005752001-02-10 02:05:24 +0000133
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000134typedef struct deb_file_s {
135 char *control_file;
Glenn L McGrath33431eb2001-04-16 04:52:19 +0000136 char *filename;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000137 unsigned int package:14;
138} deb_file_t;
Glenn L McGrathc9005752001-02-10 02:05:24 +0000139
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000140
141void make_hash(const char *key, unsigned int *start, unsigned int *decrement, const int hash_prime)
Glenn L McGrath63106462001-02-11 01:40:23 +0000142{
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000143 unsigned long int hash_num = key[0];
144 int len = strlen(key);
Glenn L McGrathc9005752001-02-10 02:05:24 +0000145 int i;
Glenn L McGrathc9005752001-02-10 02:05:24 +0000146
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000147 /* Maybe i should have uses a "proper" hashing algorithm here instead
148 * of making one up myself, seems to be working ok though. */
149 for(i = 1; i < len; i++) {
150 /* shifts the ascii based value and adds it to previous value
151 * shift amount is mod 24 because long int is 32 bit and data
152 * to be shifted is 8, dont want to shift data to where it has
153 * no effect*/
154 hash_num += ((key[i] + key[i-1]) << ((key[i] * i) % 24));
Glenn L McGrathc9005752001-02-10 02:05:24 +0000155 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000156 *start = (unsigned int) hash_num % hash_prime;
157 *decrement = (unsigned int) 1 + (hash_num % (hash_prime - 1));
Glenn L McGrathc9005752001-02-10 02:05:24 +0000158}
Glenn L McGrathc9005752001-02-10 02:05:24 +0000159
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000160/* this adds the key to the hash table */
161int search_name_hashtable(const char *key)
Glenn L McGrathc9005752001-02-10 02:05:24 +0000162{
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000163 unsigned int probe_address = 0;
164 unsigned int probe_decrement = 0;
Glenn L McGrath81108e72001-07-19 12:15:13 +0000165// char *temp;
Glenn L McGrath63106462001-02-11 01:40:23 +0000166
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000167 make_hash(key, &probe_address, &probe_decrement, NAME_HASH_PRIME);
168 while(name_hashtable[probe_address] != NULL) {
169 if (strcmp(name_hashtable[probe_address], key) == 0) {
170 return(probe_address);
171 } else {
172 probe_address -= probe_decrement;
173 if ((int)probe_address < 0) {
174 probe_address += NAME_HASH_PRIME;
175 }
Glenn L McGrath63106462001-02-11 01:40:23 +0000176 }
Glenn L McGrathc9005752001-02-10 02:05:24 +0000177 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000178 name_hashtable[probe_address] = xstrdup(key);
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000179 return(probe_address);
180}
181
182/* this DOESNT add the key to the hashtable
183 * TODO make it consistent with search_name_hashtable
184 */
185unsigned int search_status_hashtable(const char *key)
186{
187 unsigned int probe_address = 0;
188 unsigned int probe_decrement = 0;
189
190 make_hash(key, &probe_address, &probe_decrement, STATUS_HASH_PRIME);
191 while(status_hashtable[probe_address] != NULL) {
192 if (strcmp(key, name_hashtable[package_hashtable[status_hashtable[probe_address]->package]->name]) == 0) {
193 break;
194 } else {
195 probe_address -= probe_decrement;
196 if ((int)probe_address < 0) {
197 probe_address += STATUS_HASH_PRIME;
198 }
199 }
200 }
201 return(probe_address);
202}
203
204/* Need to rethink version comparison, maybe the official dpkg has something i can use ? */
205int version_compare_part(const char *version1, const char *version2)
206{
207 int upstream_len1 = 0;
208 int upstream_len2 = 0;
209 char *name1_char;
210 char *name2_char;
211 int len1 = 0;
212 int len2 = 0;
213 int tmp_int;
214 int ver_num1;
215 int ver_num2;
Glenn L McGrath81108e72001-07-19 12:15:13 +0000216 int ret;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000217
218 if (version1 == NULL) {
219 version1 = xstrdup("");
220 }
Glenn L McGrathbac490f2001-08-15 11:25:01 +0000221 if (version2 == NULL) {
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000222 version2 = xstrdup("");
223 }
224 upstream_len1 = strlen(version1);
225 upstream_len2 = strlen(version2);
226
227 while ((len1 < upstream_len1) || (len2 < upstream_len2)) {
228 /* Compare non-digit section */
229 tmp_int = strcspn(&version1[len1], "0123456789");
230 name1_char = xstrndup(&version1[len1], tmp_int);
231 len1 += tmp_int;
232 tmp_int = strcspn(&version2[len2], "0123456789");
233 name2_char = xstrndup(&version2[len2], tmp_int);
234 len2 += tmp_int;
235 tmp_int = strcmp(name1_char, name2_char);
236 free(name1_char);
237 free(name2_char);
238 if (tmp_int != 0) {
Glenn L McGrath81108e72001-07-19 12:15:13 +0000239 ret = tmp_int;
240 goto cleanup_version_compare_part;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000241 }
242
243 /* Compare digits */
244 tmp_int = strspn(&version1[len1], "0123456789");
245 name1_char = xstrndup(&version1[len1], tmp_int);
246 len1 += tmp_int;
247 tmp_int = strspn(&version2[len2], "0123456789");
248 name2_char = xstrndup(&version2[len2], tmp_int);
249 len2 += tmp_int;
250 ver_num1 = atoi(name1_char);
251 ver_num2 = atoi(name2_char);
252 free(name1_char);
253 free(name2_char);
254 if (ver_num1 < ver_num2) {
Glenn L McGrath81108e72001-07-19 12:15:13 +0000255 ret = -1;
256 goto cleanup_version_compare_part;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000257 }
258 else if (ver_num1 > ver_num2) {
Glenn L McGrath81108e72001-07-19 12:15:13 +0000259 ret = 1;
260 goto cleanup_version_compare_part;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000261 }
262 }
Glenn L McGrath81108e72001-07-19 12:15:13 +0000263 ret = 0;
264cleanup_version_compare_part:
265 return(ret);
Glenn L McGrathc9005752001-02-10 02:05:24 +0000266}
267
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000268/* if ver1 < ver2 return -1,
269 * if ver1 = ver2 return 0,
270 * if ver1 > ver2 return 1,
Glenn L McGrathc9005752001-02-10 02:05:24 +0000271 */
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000272int version_compare(const unsigned int ver1, const unsigned int ver2)
Glenn L McGrathc9005752001-02-10 02:05:24 +0000273{
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000274 char *ch_ver1 = name_hashtable[ver1];
275 char *ch_ver2 = name_hashtable[ver2];
Glenn L McGrathae1c7042001-04-16 10:26:46 +0000276
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000277 char epoch1, epoch2;
278 char *deb_ver1, *deb_ver2;
279 char *ver1_ptr, *ver2_ptr;
280 char *upstream_ver1;
281 char *upstream_ver2;
282 int result;
283
284 /* Compare epoch */
285 if (ch_ver1[1] == ':') {
286 epoch1 = ch_ver1[0];
287 ver1_ptr = strchr(ch_ver1, ':') + 1;
288 } else {
289 epoch1 = '0';
290 ver1_ptr = ch_ver1;
291 }
292 if (ch_ver2[1] == ':') {
293 epoch2 = ch_ver2[0];
294 ver2_ptr = strchr(ch_ver2, ':') + 1;
295 } else {
296 epoch2 = '0';
297 ver2_ptr = ch_ver2;
298 }
299 if (epoch1 < epoch2) {
300 return(-1);
301 }
302 else if (epoch1 > epoch2) {
303 return(1);
304 }
305
306 /* Compare upstream version */
307 upstream_ver1 = xstrdup(ver1_ptr);
308 upstream_ver2 = xstrdup(ver2_ptr);
309
310 /* Chop off debian version, and store for later use */
311 deb_ver1 = strrchr(upstream_ver1, '-');
312 deb_ver2 = strrchr(upstream_ver2, '-');
313 if (deb_ver1) {
314 deb_ver1[0] = '\0';
315 deb_ver1++;
316 }
317 if (deb_ver2) {
318 deb_ver2[0] = '\0';
319 deb_ver2++;
320 }
321 result = version_compare_part(upstream_ver1, upstream_ver2);
322
323 free(upstream_ver1);
324 free(upstream_ver2);
325
326 if (result != 0) {
327 return(result);
328 }
329
330 /* Compare debian versions */
331 return(version_compare_part(deb_ver1, deb_ver2));
332}
333
334int test_version(const unsigned int version1, const unsigned int version2, const unsigned int operator)
335{
336 const int version_result = version_compare(version1, version2);
337 switch(operator) {
338 case (VER_ANY):
339 return(TRUE);
340 case (VER_EQUAL):
341 if (version_result == 0) {
342 return(TRUE);
343 }
344 break;
345 case (VER_LESS):
346 if (version_result < 0) {
347 return(TRUE);
348 }
349 break;
350 case (VER_LESS_EQUAL):
351 if (version_result <= 0) {
352 return(TRUE);
353 }
354 break;
355 case (VER_MORE):
356 if (version_result > 0) {
357 return(TRUE);
358 }
359 break;
360 case (VER_MORE_EQUAL):
361 if (version_result >= 0) {
362 return(TRUE);
363 }
364 break;
365 }
366 return(FALSE);
367}
368
369
370int search_package_hashtable(const unsigned int name, const unsigned int version, const unsigned int operator)
371{
372 unsigned int probe_address = 0;
373 unsigned int probe_decrement = 0;
374
375 make_hash(name_hashtable[name], &probe_address, &probe_decrement, PACKAGE_HASH_PRIME);
376 while(package_hashtable[probe_address] != NULL) {
377 if (package_hashtable[probe_address]->name == name) {
378 if (operator == VER_ANY) {
379 return(probe_address);
380 }
381 if (test_version(package_hashtable[probe_address]->version, version, operator)) {
382 return(probe_address);
383 }
384 }
385 probe_address -= probe_decrement;
386 if ((int)probe_address < 0) {
387 probe_address += PACKAGE_HASH_PRIME;
388 }
389 }
390 return(probe_address);
391}
392
393/*
394 * Create one new node and one new edge for every dependency.
395 */
396void add_split_dependencies(common_node_t *parent_node, const char *whole_line, unsigned int edge_type)
397{
398 char *line = xstrdup(whole_line);
399 char *line2;
400 char *line_ptr1 = NULL;
401 char *line_ptr2 = NULL;
402 char *field;
403 char *field2;
404 char *version;
405 edge_t *edge;
406 int offset_ch;
407 int type;
408
409 field = strtok_r(line, ",", &line_ptr1);
410 do {
411 line2 = xstrdup(field);
412 field2 = strtok_r(line2, "|", &line_ptr2);
413 if ((edge_type == EDGE_DEPENDS) && (strcmp(field, field2) != 0)) {
414 type = EDGE_OR_DEPENDS;
415 }
416 else if ((edge_type == EDGE_PRE_DEPENDS) && (strcmp(field, field2) != 0)) {
417 type = EDGE_OR_PRE_DEPENDS;
418 } else {
419 type = edge_type;
420 }
421
422 do {
423 edge = (edge_t *) xmalloc(sizeof(edge_t));
424 edge->type = type;
425
426 /* Skip any extra leading spaces */
427 field2 += strspn(field2, " ");
428
429 /* Get dependency version info */
430 version = strchr(field2, '(');
431 if (version == NULL) {
432 edge->operator = VER_ANY;
433 /* Get the versions hash number, adding it if the number isnt already in there */
434 edge->version = search_name_hashtable("ANY");
435 } else {
436 /* Skip leading ' ' or '(' */
437 version += strspn(field2, " ");
438 version += strspn(version, "(");
439 /* Calculate length of any operator charactors */
440 offset_ch = strspn(version, "<=>");
441 /* Determine operator */
442 if (offset_ch > 0) {
443 if (strncmp(version, "=", offset_ch) == 0) {
444 edge->operator = VER_EQUAL;
445 }
446 else if (strncmp(version, "<<", offset_ch) == 0) {
447 edge->operator = VER_LESS;
448 }
449 else if (strncmp(version, "<=", offset_ch) == 0) {
450 edge->operator = VER_LESS_EQUAL;
451 }
452 else if (strncmp(version, ">>", offset_ch) == 0) {
453 edge->operator = VER_MORE;
454 }
455 else if (strncmp(version, ">=", offset_ch) == 0) {
456 edge->operator = VER_MORE_EQUAL;
457 } else {
458 error_msg_and_die("Illegal operator\n");
459 }
460 }
461 /* skip to start of version numbers */
462 version += offset_ch;
463 version += strspn(version, " ");
464
465 /* Truncate version at trailing ' ' or ')' */
466 version[strcspn(version, " )")] = '\0';
467 /* Get the versions hash number, adding it if the number isnt already in there */
468 edge->version = search_name_hashtable(version);
469 }
470
471 /* Get the dependency name */
472 field2[strcspn(field2, " (")] = '\0';
473 edge->name = search_name_hashtable(field2);
474
475 /* link the new edge to the current node */
476 parent_node->num_of_edges++;
477 parent_node->edge = xrealloc(parent_node->edge, sizeof(edge_t) * (parent_node->num_of_edges + 1));
478 parent_node->edge[parent_node->num_of_edges - 1] = edge;
479 } while ((field2 = strtok_r(NULL, "|", &line_ptr2)) != NULL);
480 free(line2);
481 } while ((field = strtok_r(NULL, ",", &line_ptr1)) != NULL);
482 free(line);
483
484 return;
485}
486
487void free_package(common_node_t *node)
488{
489 int i;
490 if (node != NULL) {
491 for (i = 0; i < node->num_of_edges; i++) {
492 if (node->edge[i] != NULL) {
493 free(node->edge[i]);
494 }
495 }
496 if (node->edge != NULL) {
497 free(node->edge);
498 }
499 if (node != NULL) {
500 free(node);
501 }
502 }
503}
504
505unsigned int fill_package_struct(char *control_buffer)
506{
507 common_node_t *new_node = (common_node_t *) xcalloc(1, sizeof(common_node_t));
508
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000509 char *field_name;
510 char *field_value;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000511 int field_start = 0;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000512 int num = -1;
513 int buffer_length = strlen(control_buffer);
514
515 new_node->version = search_name_hashtable("unknown");
516 while (field_start < buffer_length) {
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000517 field_start += read_package_field(&control_buffer[field_start],
518 &field_name, &field_value);
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000519
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000520 if (field_name == NULL) {
Glenn L McGrath58a5bd12001-07-14 06:25:54 +0000521 goto fill_package_struct_cleanup; // Oh no, the dreaded goto statement !!
522 }
523
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000524 if (strcmp(field_name, "Package") == 0) {
525 new_node->name = search_name_hashtable(field_value);
Glenn L McGrath305fdfa2001-04-08 13:27:39 +0000526 }
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000527 else if (strcmp(field_name, "Version") == 0) {
528 new_node->version = search_name_hashtable(field_value);
Glenn L McGrath305fdfa2001-04-08 13:27:39 +0000529 }
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000530 else if (strcmp(field_name, "Pre-Depends") == 0) {
531 add_split_dependencies(new_node, field_value, EDGE_PRE_DEPENDS);
Glenn L McGrath305fdfa2001-04-08 13:27:39 +0000532 }
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000533 else if (strcmp(field_name, "Depends") == 0) {
534 add_split_dependencies(new_node, field_value, EDGE_DEPENDS);
Glenn L McGrath305fdfa2001-04-08 13:27:39 +0000535 }
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000536 else if (strcmp(field_name, "Replaces") == 0) {
537 add_split_dependencies(new_node, field_value, EDGE_REPLACES);
Glenn L McGrathc9005752001-02-10 02:05:24 +0000538 }
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000539 else if (strcmp(field_name, "Provides") == 0) {
540 add_split_dependencies(new_node, field_value, EDGE_PROVIDES);
Glenn L McGrath33431eb2001-04-16 04:52:19 +0000541 }
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000542 else if (strcmp(field_name, "Conflicts") == 0) {
543 add_split_dependencies(new_node, field_value, EDGE_CONFLICTS);
Glenn L McGrath33431eb2001-04-16 04:52:19 +0000544 }
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000545 else if (strcmp(field_name, "Suggests") == 0) {
546 add_split_dependencies(new_node, field_value, EDGE_SUGGESTS);
Glenn L McGrath33431eb2001-04-16 04:52:19 +0000547 }
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000548 else if (strcmp(field_name, "Recommends") == 0) {
549 add_split_dependencies(new_node, field_value, EDGE_RECOMMENDS);
Glenn L McGrath33431eb2001-04-16 04:52:19 +0000550 }
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000551 else if (strcmp(field_name, "Enhances") == 0) {
552 add_split_dependencies(new_node, field_value, EDGE_ENHANCES);
Glenn L McGrath33431eb2001-04-16 04:52:19 +0000553 }
Glenn L McGrath58a5bd12001-07-14 06:25:54 +0000554fill_package_struct_cleanup:
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000555 if (field_name) {
556 free(field_name);
Glenn L McGrath81108e72001-07-19 12:15:13 +0000557 }
Matt Kraai3dd4f5e2001-10-18 15:08:30 +0000558 if (field_value) {
559 free(field_value);
Glenn L McGrath81108e72001-07-19 12:15:13 +0000560 }
Glenn L McGrathc9005752001-02-10 02:05:24 +0000561 }
Glenn L McGrath81108e72001-07-19 12:15:13 +0000562
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000563 if (new_node->version == search_name_hashtable("unknown")) {
564 free_package(new_node);
565 return(-1);
566 }
567 num = search_package_hashtable(new_node->name, new_node->version, VER_EQUAL);
568 if (package_hashtable[num] == NULL) {
569 package_hashtable[num] = new_node;
570 } else {
571 free_package(new_node);
572 }
573 return(num);
Glenn L McGrathc9005752001-02-10 02:05:24 +0000574}
575
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000576/* if num = 1, it returns the want status, 2 returns flag, 3 returns status */
577unsigned int get_status(const unsigned int status_node, const int num)
Glenn L McGrathae1c7042001-04-16 10:26:46 +0000578{
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000579 char *status_string = name_hashtable[status_hashtable[status_node]->status];
580 char *state_sub_string;
581 unsigned int state_sub_num;
582 int len;
583 int i;
584
585 /* set tmp_string to point to the start of the word number */
586 for (i = 1; i < num; i++) {
587 /* skip past a word */
588 status_string += strcspn(status_string, " ");
589 /* skip past the seperating spaces */
590 status_string += strspn(status_string, " ");
Glenn L McGrathae1c7042001-04-16 10:26:46 +0000591 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000592 len = strcspn(status_string, " \n\0");
593 state_sub_string = xstrndup(status_string, len);
594 state_sub_num = search_name_hashtable(state_sub_string);
595 free(state_sub_string);
596 return(state_sub_num);
Glenn L McGrathae1c7042001-04-16 10:26:46 +0000597}
598
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000599void set_status(const unsigned int status_node_num, const char *new_value, const int position)
Glenn L McGrathc9005752001-02-10 02:05:24 +0000600{
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000601 const unsigned int new_value_len = strlen(new_value);
602 const unsigned int new_value_num = search_name_hashtable(new_value);
603 unsigned int want = get_status(status_node_num, 1);
604 unsigned int flag = get_status(status_node_num, 2);
605 unsigned int status = get_status(status_node_num, 3);
606 int want_len = strlen(name_hashtable[want]);
607 int flag_len = strlen(name_hashtable[flag]);
608 int status_len = strlen(name_hashtable[status]);
609 char *new_status;
Glenn L McGrathc9005752001-02-10 02:05:24 +0000610
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000611 switch (position) {
612 case (1):
613 want = new_value_num;
614 want_len = new_value_len;
615 break;
616 case (2):
617 flag = new_value_num;
618 flag_len = new_value_len;
619 break;
620 case (3):
621 status = new_value_num;
622 status_len = new_value_len;
623 break;
624 default:
625 error_msg_and_die("DEBUG ONLY: this shouldnt happen");
Glenn L McGrath0c9d77c2001-02-11 00:17:22 +0000626 }
Glenn L McGrath63106462001-02-11 01:40:23 +0000627
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000628 new_status = (char *) xmalloc(want_len + flag_len + status_len + 3);
629 sprintf(new_status, "%s %s %s", name_hashtable[want], name_hashtable[flag], name_hashtable[status]);
630 status_hashtable[status_node_num]->status = search_name_hashtable(new_status);
Glenn L McGrath81108e72001-07-19 12:15:13 +0000631 free(new_status);
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000632 return;
633}
Glenn L McGrath305fdfa2001-04-08 13:27:39 +0000634
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000635void index_status_file(const char *filename)
636{
637 FILE *status_file;
638 char *control_buffer;
639 char *status_line;
640 status_node_t *status_node = NULL;
641 unsigned int status_num;
642
Glenn L McGrath4cdc6072001-07-18 03:13:49 +0000643 status_file = xfopen(filename, "r");
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000644 while ((control_buffer = fgets_str(status_file, "\n\n")) != NULL) {
645 const unsigned int package_num = fill_package_struct(control_buffer);
646 if (package_num != -1) {
647 status_node = xmalloc(sizeof(status_node_t));
648 /* fill_package_struct doesnt handle the status field */
649 status_line = strstr(control_buffer, "Status:");
650 if (status_line != NULL) {
651 status_line += 7;
652 status_line += strspn(status_line, " \n\t");
653 status_line = xstrndup(status_line, strcspn(status_line, "\n\0"));
654 status_node->status = search_name_hashtable(status_line);
655 free(status_line);
656 }
657 status_node->package = package_num;
658 status_num = search_status_hashtable(name_hashtable[package_hashtable[status_node->package]->name]);
659 status_hashtable[status_num] = status_node;
660 }
661 free(control_buffer);
662 }
663 fclose(status_file);
664 return;
665}
666
667
668char *get_depends_field(common_node_t *package, const int depends_type)
669{
670 char *depends = NULL;
671 char *old_sep = (char *)xcalloc(1, 3);
672 char *new_sep = (char *)xcalloc(1, 3);
673 int line_size = 0;
674 int depends_size;
675
676 int i;
677
678 for (i = 0; i < package->num_of_edges; i++) {
679 if ((package->edge[i]->type == EDGE_OR_PRE_DEPENDS) ||
680 (package->edge[i]->type == EDGE_OR_DEPENDS)) {
681 }
682
683 if ((package->edge[i]->type == depends_type) ||
684 (package->edge[i]->type == depends_type + 1)) {
685 /* Check if its the first time through */
686
687 depends_size = 8 + strlen(name_hashtable[package->edge[i]->name])
688 + strlen(name_hashtable[package->edge[i]->version]);
689 line_size += depends_size;
690 depends = (char *) xrealloc(depends, line_size + 1);
691
692 /* Check to see if this dependency is the type we are looking for
693 * +1 to check for 'extra' types, e.g. ored dependecies */
694 strcpy(old_sep, new_sep);
695 if (package->edge[i]->type == depends_type) {
696 strcpy(new_sep, ", ");
697 }
698 else if (package->edge[i]->type == depends_type + 1) {
699 strcpy(new_sep, "| ");
700 }
701
702 if (depends_size == line_size) {
703 strcpy(depends, "");
704 } else {
705 if ((strcmp(old_sep, "| ") == 0) && (strcmp(new_sep, "| ") == 0)) {
706 strcat(depends, " | ");
Glenn L McGrath305fdfa2001-04-08 13:27:39 +0000707 } else {
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000708 strcat(depends, ", ");
Glenn L McGrathc9005752001-02-10 02:05:24 +0000709 }
710 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000711
712 strcat(depends, name_hashtable[package->edge[i]->name]);
713 if (strcmp(name_hashtable[package->edge[i]->version], "NULL") != 0) {
714 if (package->edge[i]->operator == VER_EQUAL) {
715 strcat(depends, " (= ");
716 }
717 else if (package->edge[i]->operator == VER_LESS) {
718 strcat(depends, " (<< ");
719 }
720 else if (package->edge[i]->operator == VER_LESS_EQUAL) {
721 strcat(depends, " (<= ");
722 }
723 else if (package->edge[i]->operator == VER_MORE) {
724 strcat(depends, " (>> ");
725 }
726 else if (package->edge[i]->operator == VER_MORE_EQUAL) {
727 strcat(depends, " (>= ");
728 } else {
729 strcat(depends, " (");
730 }
731 strcat(depends, name_hashtable[package->edge[i]->version]);
732 strcat(depends, ")");
733 }
Glenn L McGrathc9005752001-02-10 02:05:24 +0000734 }
735 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000736 return(depends);
Glenn L McGrathc9005752001-02-10 02:05:24 +0000737}
738
Glenn L McGrathc3fbec72001-07-18 15:47:21 +0000739void write_buffer_no_status(FILE *new_status_file, const char *control_buffer)
740{
741 char *name;
742 char *value;
743 int start = 0;
744 while (1) {
745 start += read_package_field(&control_buffer[start], &name, &value);
746 if (name == NULL) {
747 break;
748 }
749 if (strcmp(name, "Status") != 0) {
750 fprintf(new_status_file, "%s: %s\n", name, value);
751 }
752 }
753 return;
754}
755
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000756/* This could do with a cleanup */
757void write_status_file(deb_file_t **deb_file)
Glenn L McGrathc9005752001-02-10 02:05:24 +0000758{
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000759 FILE *old_status_file = xfopen("/var/lib/dpkg/status", "r");
760 FILE *new_status_file = xfopen("/var/lib/dpkg/status.udeb", "w");
761 char *package_name;
762 char *status_from_file;
763 char *control_buffer = NULL;
764 char *tmp_string;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000765 int status_num;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000766 int field_start = 0;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000767 int write_flag;
768 int i = 0;
Glenn L McGrathc9005752001-02-10 02:05:24 +0000769
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000770 /* Update previously known packages */
771 while ((control_buffer = fgets_str(old_status_file, "\n\n")) != NULL) {
Matt Kraaia7512d72001-10-18 17:03:59 +0000772 if ((tmp_string = strstr(control_buffer, "Package:")) == NULL) {
773 continue;
774 }
775
776 tmp_string += 8;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000777 tmp_string += strspn(tmp_string, " \n\t");
778 package_name = xstrndup(tmp_string, strcspn(tmp_string, "\n\0"));
779 write_flag = FALSE;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000780 tmp_string = strstr(control_buffer, "Status:");
781 if (tmp_string != NULL) {
782 /* Seperate the status value from the control buffer */
783 tmp_string += 7;
784 tmp_string += strspn(tmp_string, " \n\t");
785 status_from_file = xstrndup(tmp_string, strcspn(tmp_string, "\n"));
786 } else {
787 status_from_file = NULL;
788 }
Glenn L McGrath63106462001-02-11 01:40:23 +0000789
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000790 /* Find this package in the status hashtable */
791 status_num = search_status_hashtable(package_name);
792 if (status_hashtable[status_num] != NULL) {
793 const char *status_from_hashtable = name_hashtable[status_hashtable[status_num]->status];
794 if (strcmp(status_from_file, status_from_hashtable) != 0) {
795 /* New status isnt exactly the same as old status */
796 const int state_status = get_status(status_num, 3);
797 if ((strcmp("installed", name_hashtable[state_status]) == 0) ||
798 (strcmp("unpacked", name_hashtable[state_status]) == 0)) {
799 /* We need to add the control file from the package */
800 i = 0;
801 while(deb_file[i] != NULL) {
802 if (strcmp(package_name, name_hashtable[package_hashtable[deb_file[i]->package]->name]) == 0) {
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000803 /* Write a status file entry with a modified status */
804 /* remove trailing \n's */
Glenn L McGrathc3fbec72001-07-18 15:47:21 +0000805 write_buffer_no_status(new_status_file, deb_file[i]->control_file);
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000806 set_status(status_num, "ok", 2);
Glenn L McGrathc3fbec72001-07-18 15:47:21 +0000807 fprintf(new_status_file, "Status: %s\n\n", name_hashtable[status_hashtable[status_num]->status]);
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000808 write_flag = TRUE;
809 break;
810 }
811 i++;
812 }
813 /* This is temperary, debugging only */
814 if (deb_file[i] == NULL) {
815 error_msg_and_die("ALERT: Couldnt find a control file, your status file may be broken, status may be incorrect for %s", package_name);
816 }
817 }
818 else if (strcmp("not-installed", name_hashtable[state_status]) == 0) {
819 /* Only write the Package, Status, Priority and Section lines */
820 fprintf(new_status_file, "Package: %s\n", package_name);
821 fprintf(new_status_file, "Status: %s\n", status_from_hashtable);
Glenn L McGrathc3fbec72001-07-18 15:47:21 +0000822
823 while (1) {
824 char *field_name;
825 char *field_value;
826 field_start += read_package_field(&control_buffer[field_start], &field_name, &field_value);
827 if (field_name == NULL) {
828 break;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000829 }
Glenn L McGrathc3fbec72001-07-18 15:47:21 +0000830 if ((strcmp(field_name, "Priority") == 0) ||
831 (strcmp(field_name, "Section") == 0)) {
832 fprintf(new_status_file, "%s: %s\n", field_name, field_value);
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000833 }
834 }
835 write_flag = TRUE;
836 fputs("\n", new_status_file);
837 }
838 else if (strcmp("config-files", name_hashtable[state_status]) == 0) {
839 /* only change the status line */
Glenn L McGrathc3fbec72001-07-18 15:47:21 +0000840 while (1) {
841 char *field_name;
842 char *field_value;
843 field_start += read_package_field(&control_buffer[field_start], &field_name, &field_value);
844 if (field_name == NULL) {
845 break;
846 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000847 /* Setup start point for next field */
Glenn L McGrathc3fbec72001-07-18 15:47:21 +0000848 if (strcmp(field_name, "Status") == 0) {
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000849 fprintf(new_status_file, "Status: %s\n", status_from_hashtable);
850 } else {
Glenn L McGrathc3fbec72001-07-18 15:47:21 +0000851 fprintf(new_status_file, "%s: %s\n", field_name, field_value);
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000852 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000853 }
854 write_flag = TRUE;
855 fputs("\n", new_status_file);
Glenn L McGrath0e757a22001-04-08 05:27:18 +0000856 }
Glenn L McGrath0c9d77c2001-02-11 00:17:22 +0000857 }
Glenn L McGrathc9005752001-02-10 02:05:24 +0000858 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000859 /* If the package from the status file wasnt handle above, do it now*/
860 if (write_flag == FALSE) {
861 fprintf(new_status_file, "%s\n\n", control_buffer);
862 }
Glenn L McGrathc9005752001-02-10 02:05:24 +0000863
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000864 if (status_from_file != NULL) {
865 free(status_from_file);
866 }
867 free(package_name);
868 free(control_buffer);
869 }
Glenn L McGrath7b024152001-07-18 04:33:31 +0000870
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000871 /* Write any new packages */
872 for(i = 0; deb_file[i] != NULL; i++) {
873 status_num = search_status_hashtable(name_hashtable[package_hashtable[deb_file[i]->package]->name]);
874 if (strcmp("reinstreq", name_hashtable[get_status(status_num, 2)]) == 0) {
Glenn L McGrathc3fbec72001-07-18 15:47:21 +0000875 write_buffer_no_status(new_status_file, deb_file[i]->control_file);
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000876 set_status(status_num, "ok", 2);
Glenn L McGrathc3fbec72001-07-18 15:47:21 +0000877 fprintf(new_status_file, "Status: %s\n\n", name_hashtable[status_hashtable[status_num]->status]);
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000878 }
879 }
880 fclose(old_status_file);
881 fclose(new_status_file);
882
883
884 /* Create a seperate backfile to dpkg */
885 if (rename("/var/lib/dpkg/status", "/var/lib/dpkg/status.udeb.bak") == -1) {
Glenn L McGrath13e9c7a2001-04-08 07:18:08 +0000886 struct stat stat_buf;
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000887 if (stat("/var/lib/dpkg/status", &stat_buf) == 0) {
888 error_msg_and_die("Couldnt create backup status file");
Glenn L McGrath13e9c7a2001-04-08 07:18:08 +0000889 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000890 /* Its ok if renaming the status file fails becasue status
891 * file doesnt exist, maybe we are starting from scratch */
Glenn L McGrath305fdfa2001-04-08 13:27:39 +0000892 error_msg("No status file found, creating new one");
Glenn L McGrath0c9d77c2001-02-11 00:17:22 +0000893 }
Glenn L McGrath63106462001-02-11 01:40:23 +0000894
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000895 if (rename("/var/lib/dpkg/status.udeb", "/var/lib/dpkg/status") == -1) {
896 error_msg_and_die("DANGER: Couldnt create status file, you need to manually repair your status file");
Glenn L McGrath13e9c7a2001-04-08 07:18:08 +0000897 }
Glenn L McGrathc9005752001-02-10 02:05:24 +0000898}
899
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000900int check_deps(deb_file_t **deb_file, int deb_start, int dep_max_count)
Glenn L McGrathc9005752001-02-10 02:05:24 +0000901{
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000902 int *conflicts = NULL;
903 int conflicts_num = 0;
904 int state_status;
905 int state_flag;
906 int state_want;
907 unsigned int status_package_num;
908 int i = deb_start;
909 int j, k;
Glenn L McGrathc9005752001-02-10 02:05:24 +0000910
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000911 /* Check for conflicts
912 * TODO: TEST if conflicts with other packages to be installed
913 *
914 * Add install packages and the packages they provide
915 * to the list of files to check conflicts for
916 */
917
918 /* Create array of package numbers to check against
919 * installed package for conflicts*/
920 while (deb_file[i] != NULL) {
921 const unsigned int package_num = deb_file[i]->package;
922 conflicts = xrealloc(conflicts, sizeof(int) * (conflicts_num + 1));
923 conflicts[conflicts_num] = package_num;
924 conflicts_num++;
925 /* add provides to conflicts list */
926 for (j = 0; j < package_hashtable[package_num]->num_of_edges; j++) {
927 if (package_hashtable[package_num]->edge[j]->type == EDGE_PROVIDES) {
928 const int conflicts_package_num = search_package_hashtable(
929 package_hashtable[package_num]->edge[j]->name,
930 package_hashtable[package_num]->edge[j]->version,
931 package_hashtable[package_num]->edge[j]->operator);
932 if (package_hashtable[conflicts_package_num] == NULL) {
933 /* create a new package */
934 common_node_t *new_node = (common_node_t *) xmalloc(sizeof(common_node_t));
935 new_node->name = package_hashtable[package_num]->edge[j]->name;
936 new_node->version = package_hashtable[package_num]->edge[j]->version;
937 new_node->num_of_edges = 0;
938 new_node->edge = NULL;
939 package_hashtable[conflicts_package_num] = new_node;
940 }
941 conflicts = xrealloc(conflicts, sizeof(int) * (conflicts_num + 1));
942 conflicts[conflicts_num] = conflicts_package_num;
943 conflicts_num++;
944 }
945 }
946 i++;
Glenn L McGrath0c9d77c2001-02-11 00:17:22 +0000947 }
Glenn L McGrathc9005752001-02-10 02:05:24 +0000948
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000949 /* Check conflicts */
950 for (i = 0; i < conflicts_num; i++) {
951 /* Check for conflicts */
952 for (j = 0; j < STATUS_HASH_PRIME; j++) {
953 if (status_hashtable[j] == NULL) {
954 continue;
955 }
956 state_flag = get_status(j, 2);
957 state_status = get_status(j, 3);
958 if ((state_status != search_name_hashtable("installed"))
959 && (state_flag != search_name_hashtable("want-install"))) {
960 continue;
961 }
962 status_package_num = status_hashtable[j]->package;
963 for (k = 0; k < package_hashtable[status_package_num]->num_of_edges; k++) {
964 const edge_t *package_edge = package_hashtable[status_package_num]->edge[k];
965 if (package_edge->type != EDGE_CONFLICTS) {
966 continue;
967 }
968 if (package_edge->name != package_hashtable[conflicts[i]]->name) {
969 continue;
970 }
971 /* There is a conflict against the package name
972 * check if version conflict as well */
973 if (test_version(package_hashtable[deb_file[i]->package]->version,
974 package_edge->version, package_edge->operator)) {
975 error_msg_and_die("Package %s conflict with %s",
976 name_hashtable[package_hashtable[deb_file[i]->package]->name],
977 name_hashtable[package_hashtable[status_package_num]->name]);
978 }
979 }
Glenn L McGrathc9005752001-02-10 02:05:24 +0000980 }
981 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +0000982
983 /* Check dependendcies */
984 i = 0;
985 while (deb_file[i] != NULL) {
986 const common_node_t *package_node = package_hashtable[deb_file[i]->package];
987 int status_num = 0;
988
989 for (j = 0; j < package_hashtable[deb_file[i]->package]->num_of_edges; j++) {
990 const edge_t *package_edge = package_node->edge[j];
991 const unsigned int package_num = search_package_hashtable(package_edge->name,
992 package_edge->version, package_edge->operator);
993
994 status_num = search_status_hashtable(name_hashtable[package_hashtable[package_num]->name]);
995 state_status = get_status(status_num, 3);
996 state_want = get_status(status_num, 1);
997 switch (package_edge->type) {
998 case(EDGE_PRE_DEPENDS):
999 case(EDGE_OR_PRE_DEPENDS):
1000 /* It must be already installed */
1001 /* NOTE: This is untested, nothing apropriate in my status file */
1002 if ((package_hashtable[package_num] == NULL) || (state_status != search_name_hashtable("installed"))) {
1003 error_msg_and_die("Package %s pre-depends on %s, but it is not installed",
1004 name_hashtable[package_node->name],
1005 name_hashtable[package_edge->name]);
1006 }
1007 break;
1008 case(EDGE_DEPENDS):
1009 case(EDGE_OR_DEPENDS):
1010 /* It must be already installed, or to be installed */
1011 if ((package_hashtable[package_num] == NULL) ||
1012 ((state_status != search_name_hashtable("installed")) &&
1013 (state_want != search_name_hashtable("want_install")))) {
1014 error_msg_and_die("Package %s depends on %s, but it is not installed, or flaged to be installed",
1015 name_hashtable[package_node->name],
1016 name_hashtable[package_edge->name]);
1017 }
1018 break;
1019 }
1020 }
1021 i++;
1022 }
Glenn L McGrath81108e72001-07-19 12:15:13 +00001023 free(conflicts);
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001024 return(TRUE);
Glenn L McGrathc9005752001-02-10 02:05:24 +00001025}
1026
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001027char **create_list(const char *filename)
Glenn L McGrathc9005752001-02-10 02:05:24 +00001028{
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001029 FILE *list_stream;
1030 char **file_list = xmalloc(sizeof(char *));
1031 char *line = NULL;
1032 char *last_char;
1033 int length = 0;
1034 int count = 0;
1035
Glenn L McGrathc3fbec72001-07-18 15:47:21 +00001036 /* dont use [xw]fopen here, handle error ourself */
1037 list_stream = fopen(filename, "r");
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001038 if (list_stream == NULL) {
Glenn L McGrathc3fbec72001-07-18 15:47:21 +00001039 *file_list = NULL;
1040 return(file_list);
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001041 }
1042 while (getline(&line, &length, list_stream) != -1) {
1043 file_list = xrealloc(file_list, sizeof(char *) * (length + 1));
1044 last_char = last_char_is(line, '\n');
1045 if (last_char) {
1046 *last_char = '\0';
1047 }
1048 file_list[count] = xstrdup(line);
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001049 count++;
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001050 }
1051 fclose(list_stream);
Glenn L McGrathb8f5adb2001-09-22 03:24:07 +00001052 free(line);
Glenn L McGrathc3fbec72001-07-18 15:47:21 +00001053
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001054 if (count == 0) {
1055 return(NULL);
1056 } else {
1057 file_list[count] = NULL;
1058 return(file_list);
1059 }
1060}
1061
1062/* maybe i should try and hook this into remove_file.c somehow */
1063int remove_file_array(char **remove_names, char **exclude_names)
1064{
1065 struct stat path_stat;
1066 int match_flag;
1067 int remove_flag = FALSE;
1068 int i,j;
1069
1070 if (remove_names == NULL) {
1071 return(FALSE);
1072 }
1073 for (i = 0; remove_names[i] != NULL; i++) {
1074 match_flag = FALSE;
1075 if (exclude_names != NULL) {
1076 for (j = 0; exclude_names[j] != 0; j++) {
1077 if (strcmp(remove_names[i], exclude_names[j]) == 0) {
1078 match_flag = TRUE;
1079 break;
1080 }
1081 }
1082 }
1083 if (!match_flag) {
1084 if (lstat(remove_names[i], &path_stat) < 0) {
1085 continue;
1086 }
1087 if (S_ISDIR(path_stat.st_mode)) {
1088 if (rmdir(remove_names[i]) != -1) {
1089 remove_flag = TRUE;
1090 }
1091 } else {
1092 if (unlink(remove_names[i]) != -1) {
1093 remove_flag = TRUE;
1094 }
1095 }
1096 }
1097 }
1098 return(remove_flag);
1099}
1100
1101int run_package_script(const char *package_name, const char *script_type)
1102{
1103 struct stat path_stat;
1104 char *script_path;
Glenn L McGrathdece3c52001-09-22 04:16:55 +00001105 int result;
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001106
1107 script_path = xmalloc(strlen(package_name) + strlen(script_type) + 21);
1108 sprintf(script_path, "/var/lib/dpkg/info/%s.%s", package_name, script_type);
1109
1110 /* If the file doesnt exist is isnt a fatal */
1111 if (lstat(script_path, &path_stat) < 0) {
Glenn L McGrathdece3c52001-09-22 04:16:55 +00001112 result = EXIT_SUCCESS;
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001113 } else {
Glenn L McGrathdece3c52001-09-22 04:16:55 +00001114 result = system(script_path);
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001115 }
Glenn L McGrathdece3c52001-09-22 04:16:55 +00001116 free(script_path);
1117 return(result);
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001118}
1119
1120void all_control_list(char **remove_files, const char *package_name)
1121{
1122 const char *all_extensions[11] = {"preinst", "postinst", "prerm", "postrm",
1123 "list", "md5sums", "shlibs", "conffiles", "config", "templates", NULL };
1124 int i;
1125
1126 /* Create a list of all /var/lib/dpkg/info/<package> files */
1127 for(i = 0; i < 10; i++) {
1128 remove_files[i] = xmalloc(strlen(package_name) + strlen(all_extensions[i]) + 21);
1129 sprintf(remove_files[i], "/var/lib/dpkg/info/%s.%s", package_name, all_extensions[i]);
1130 }
1131 remove_files[10] = NULL;
1132}
1133
Glenn L McGrathe7386612001-09-21 04:30:51 +00001134
1135/* This function lists information on the installed packages. It loops through
1136 * the status_hashtable to retrieve the info. This results in smaller code than
1137 * scanning the status file. The resulting list, however, is unsorted.
1138 */
1139void list_packages(void)
1140{
1141 int i;
1142
1143 printf(" Name Version\n");
1144 printf("+++-==============-==============\n");
1145
1146 /* go through status hash, dereference package hash and finally strings */
1147 for (i=0; i<STATUS_HASH_PRIME+1; i++) {
1148
1149 if (status_hashtable[i]) {
1150 const char *stat_str; /* status string */
1151 const char *name_str; /* package name */
1152 const char *vers_str; /* version */
1153 char s1, s2; /* status abbreviations */
1154 int spccnt; /* space count */
1155 int j;
1156
1157 stat_str = name_hashtable[status_hashtable[i]->status];
1158 name_str = name_hashtable[package_hashtable[status_hashtable[i]->package]->name];
1159 vers_str = name_hashtable[package_hashtable[status_hashtable[i]->package]->version];
1160
1161 /* get abbreviation for status field 1 */
1162 s1 = stat_str[0] == 'i' ? 'i' : 'r';
1163
1164 /* get abbreviation for status field 2 */
1165 for (j=0, spccnt=0; stat_str[j] && spccnt<2; j++) {
1166 if (stat_str[j] == ' ') spccnt++;
1167 }
1168 s2 = stat_str[j];
1169
1170 /* print out the line formatted like Debian dpkg */
1171 printf("%c%c %-14s %s\n", s1, s2, name_str, vers_str);
1172 }
1173 }
1174}
1175
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001176void remove_package(const unsigned int package_num)
1177{
1178 const char *package_name = name_hashtable[package_hashtable[package_num]->name];
1179 const unsigned int status_num = search_status_hashtable(package_name);
1180 const int package_name_length = strlen(package_name);
1181 char **remove_files;
1182 char **exclude_files;
1183 char list_name[package_name_length + 25];
1184 char conffile_name[package_name_length + 30];
1185 int return_value;
1186
Glenn L McGrathed4492a2001-07-18 05:03:49 +00001187 printf("Removing %s ...\n", package_name);
1188
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001189 /* run prerm script */
Glenn L McGratha8412db2001-10-04 05:22:42 +00001190 return_value = run_package_script(package_name, "prerm");
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001191 if (return_value == -1) {
1192 error_msg_and_die("script failed, prerm failure");
1193 }
1194
1195 /* Create a list of files to remove, and a seperate list of those to keep */
1196 sprintf(list_name, "/var/lib/dpkg/info/%s.list", package_name);
1197 remove_files = create_list(list_name);
1198
1199 sprintf(conffile_name, "/var/lib/dpkg/info/%s.conffiles", package_name);
1200 exclude_files = create_list(conffile_name);
1201
1202 /* Some directories cant be removed straight away, so do multiple passes */
1203 while (remove_file_array(remove_files, exclude_files) == TRUE);
1204
1205 /* Create a list of all /var/lib/dpkg/info/<package> files */
1206 remove_files = xmalloc(11);
1207 all_control_list(remove_files, package_name);
1208
1209 /* Create a list of files in /var/lib/dpkg/info/<package>.* to keep */
1210 exclude_files = xmalloc(sizeof(char*) * 3);
1211 exclude_files[0] = xstrdup(conffile_name);
1212 exclude_files[1] = xmalloc(package_name_length + 27);
1213 sprintf(exclude_files[1], "/var/lib/dpkg/info/%s.postrm", package_name);
1214 exclude_files[2] = NULL;
1215
1216 remove_file_array(remove_files, exclude_files);
1217
1218 /* rename <package>.conffile to <package>.list */
1219 rename(conffile_name, list_name);
1220
1221 /* Change package status */
1222 set_status(status_num, "deinstall", 1);
1223 set_status(status_num, "config-files", 3);
1224}
1225
1226void purge_package(const unsigned int package_num)
1227{
1228 const char *package_name = name_hashtable[package_hashtable[package_num]->name];
1229 const unsigned int status_num = search_status_hashtable(package_name);
1230 char **remove_files;
1231 char **exclude_files;
1232 char list_name[strlen(package_name) + 25];
1233
1234 /* run prerm script */
1235 if (run_package_script(package_name, "prerm") == -1) {
1236 error_msg_and_die("script failed, prerm failure");
1237 }
1238
1239 /* Create a list of files to remove */
1240 sprintf(list_name, "/var/lib/dpkg/info/%s.list", package_name);
1241 remove_files = create_list(list_name);
1242
1243 exclude_files = xmalloc(1);
1244 exclude_files[0] = NULL;
1245
1246 /* Some directories cant be removed straight away, so do multiple passes */
1247 while (remove_file_array(remove_files, exclude_files) == TRUE);
1248
1249 /* Create a list of all /var/lib/dpkg/info/<package> files */
1250 remove_files = xmalloc(11);
1251 all_control_list(remove_files, package_name);
1252 remove_file_array(remove_files, exclude_files);
1253
1254 /* run postrm script */
1255 if (run_package_script(package_name, "postrm") == -1) {
1256 error_msg_and_die("postrm fialure.. set status to what?");
1257 }
Glenn L McGrathc3fbec72001-07-18 15:47:21 +00001258
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001259 /* Change package status */
1260 set_status(status_num, "purge", 1);
1261 set_status(status_num, "not-installed", 3);
1262}
1263
1264void unpack_package(deb_file_t *deb_file)
1265{
Glenn L McGrath7b024152001-07-18 04:33:31 +00001266 const char *package_name = name_hashtable[package_hashtable[deb_file->package]->name];
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001267 const unsigned int status_num = search_status_hashtable(package_name);
Glenn L McGrathf28d8192001-10-06 02:27:36 +00001268 const unsigned int status_package_num = status_hashtable[status_num]->package;
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001269
Glenn L McGrath9aff9032001-06-13 07:26:39 +00001270 FILE *out_stream;
1271 char *info_prefix;
Glenn L McGrath48cc89b2001-09-21 05:07:47 +00001272 int return_value;
Glenn L McGrathc9005752001-02-10 02:05:24 +00001273
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001274 /* If existing version, remove it first */
1275 if (strcmp(name_hashtable[get_status(status_num, 3)], "installed") == 0) {
1276 /* Package is already installed, remove old version first */
1277 printf("Preparing to replace %s %s (using %s) ...\n", package_name,
1278 name_hashtable[package_hashtable[status_package_num]->version],
1279 deb_file->filename);
1280 remove_package(status_package_num);
1281 } else {
1282 printf("Unpacking %s (from %s) ...\n", package_name, deb_file->filename);
1283 }
Glenn L McGrathc9005752001-02-10 02:05:24 +00001284
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001285 /* Extract control.tar.gz to /var/lib/dpkg/info/<package>.filename */
1286 info_prefix = (char *) xmalloc(sizeof(package_name) + 20 + 4 + 1);
1287 sprintf(info_prefix, "/var/lib/dpkg/info/%s.", package_name);
Glenn L McGrath35636542001-10-03 03:10:35 +00001288 deb_extract(deb_file->filename, stdout, (extract_quiet | extract_control_tar_gz | extract_all_to_fs | extract_unconditional), info_prefix, NULL);
Glenn L McGrath3af1f882001-02-12 11:33:09 +00001289
Glenn L McGrath48cc89b2001-09-21 05:07:47 +00001290 /* Run the preinst prior to extracting */
1291 return_value = run_package_script(package_name, "preinst");
1292 if (return_value == -1) {
1293 error_msg_and_die("could not execute pre-installation script.");
1294 }
1295 if (return_value != 0) {
1296 /* when preinst returns exit code != 0 then quit installation process */
1297 error_msg_and_die("subprocess pre-installation script returned error.");
1298 }
1299
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001300 /* Extract data.tar.gz to the root directory */
Glenn L McGrath35636542001-10-03 03:10:35 +00001301 deb_extract(deb_file->filename, stdout, (extract_quiet | extract_data_tar_gz | extract_all_to_fs | extract_unconditional), "/", NULL);
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001302
Glenn L McGrath33431eb2001-04-16 04:52:19 +00001303 /* Create the list file */
Glenn L McGrath9aff9032001-06-13 07:26:39 +00001304 strcat(info_prefix, "list");
Glenn L McGrath4cdc6072001-07-18 03:13:49 +00001305 out_stream = xfopen(info_prefix, "w");
Glenn L McGrathdece3c52001-09-22 04:16:55 +00001306 deb_extract(deb_file->filename, out_stream, (extract_quiet | extract_data_tar_gz | extract_list), "/", NULL);
Glenn L McGrath9aff9032001-06-13 07:26:39 +00001307 fclose(out_stream);
Glenn L McGrath3af1f882001-02-12 11:33:09 +00001308
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001309 /* change status */
1310 set_status(status_num, "install", 1);
1311 set_status(status_num, "unpacked", 3);
Glenn L McGrath81108e72001-07-19 12:15:13 +00001312
1313 free(info_prefix);
Glenn L McGrathc9005752001-02-10 02:05:24 +00001314}
1315
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001316void configure_package(deb_file_t *deb_file)
Glenn L McGrathc9005752001-02-10 02:05:24 +00001317{
Glenn L McGrath7b024152001-07-18 04:33:31 +00001318 const char *package_name = name_hashtable[package_hashtable[deb_file->package]->name];
1319 const char *package_version = name_hashtable[package_hashtable[deb_file->package]->version];
1320 const int status_num = search_status_hashtable(package_name);
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001321 int return_value;
Glenn L McGrath7b024152001-07-18 04:33:31 +00001322
1323 printf("Setting up %s (%s)\n", package_name, package_version);
Glenn L McGrathc9005752001-02-10 02:05:24 +00001324
Glenn L McGrath48cc89b2001-09-21 05:07:47 +00001325 /* Run the postinst script */
Glenn L McGrath7b024152001-07-18 04:33:31 +00001326 return_value = run_package_script(package_name, "postinst");
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001327 if (return_value == -1) {
1328 /* TODO: handle failure gracefully */
Glenn L McGrath7b024152001-07-18 04:33:31 +00001329 error_msg_and_die("postrm failure.. set status to what?");
Glenn L McGrath63106462001-02-11 01:40:23 +00001330 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001331 /* Change status to reflect success */
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001332 set_status(status_num, "install", 1);
1333 set_status(status_num, "installed", 3);
Glenn L McGrathc9005752001-02-10 02:05:24 +00001334}
1335
Glenn L McGrath649968c2001-02-10 14:26:48 +00001336extern int dpkg_main(int argc, char **argv)
Glenn L McGrathc9005752001-02-10 02:05:24 +00001337{
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001338 deb_file_t **deb_file = NULL;
1339 status_node_t *status_node;
1340 char opt = 0;
1341 int package_num;
1342 int dpkg_opt = 0;
1343 int deb_count = 0;
1344 int state_status;
1345 int status_num;
1346 int i;
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001347
Glenn L McGrath778041f2001-07-18 05:17:39 +00001348 while ((opt = getopt(argc, argv, "CF:ilPru")) != -1) {
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001349 switch (opt) {
Glenn L McGrath778041f2001-07-18 05:17:39 +00001350 case 'C': // equivalent to --configure in official dpkg
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001351 dpkg_opt |= dpkg_opt_configure;
1352 dpkg_opt |= dpkg_opt_package_name;
1353 break;
1354 case 'F': // equivalent to --force in official dpkg
1355 if (strcmp(optarg, "depends") == 0) {
1356 dpkg_opt |= dpkg_opt_force_ignore_depends;
1357 }
1358 case 'i':
1359 dpkg_opt |= dpkg_opt_install;
1360 dpkg_opt |= dpkg_opt_filename;
1361 break;
1362 case 'l':
1363 dpkg_opt |= dpkg_opt_list_installed;
Glenn L McGrathe7386612001-09-21 04:30:51 +00001364 break;
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001365 case 'P':
1366 dpkg_opt |= dpkg_opt_purge;
1367 dpkg_opt |= dpkg_opt_package_name;
1368 break;
1369 case 'r':
1370 dpkg_opt |= dpkg_opt_remove;
1371 dpkg_opt |= dpkg_opt_package_name;
1372 break;
1373 case 'u': /* Equivalent to --unpack in official dpkg */
1374 dpkg_opt |= dpkg_opt_unpack;
1375 dpkg_opt |= dpkg_opt_filename;
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001376 break;
1377 default:
1378 show_usage();
1379 }
Glenn L McGrathc9005752001-02-10 02:05:24 +00001380 }
Glenn L McGrathe7386612001-09-21 04:30:51 +00001381 /* check for non-otion argument if expected */
1382 if ((dpkg_opt == 0) || ((argc == optind) && !(dpkg_opt && dpkg_opt_list_installed))) {
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001383 show_usage();
Glenn L McGrathe7386612001-09-21 04:30:51 +00001384 }
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001385
Glenn L McGrathe7386612001-09-21 04:30:51 +00001386/* puts("(Reading database ... xxxxx files and directories installed.)"); */
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001387 index_status_file("/var/lib/dpkg/status");
1388
Glenn L McGrathe7386612001-09-21 04:30:51 +00001389 /* if the list action was given print the installed packages and exit */
1390 if (dpkg_opt & dpkg_opt_list_installed) {
1391 list_packages();
1392 return(EXIT_SUCCESS);
1393 }
1394
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001395 /* Read arguments and store relevant info in structs */
1396 deb_file = xmalloc(sizeof(deb_file_t));
1397 while (optind < argc) {
1398 deb_file[deb_count] = (deb_file_t *) xmalloc(sizeof(deb_file_t));
1399 if (dpkg_opt & dpkg_opt_filename) {
1400 deb_file[deb_count]->filename = xstrdup(argv[optind]);
1401 deb_file[deb_count]->control_file = deb_extract(argv[optind], stdout, (extract_control_tar_gz | extract_one_to_buffer), NULL, "./control");
1402 if (deb_file[deb_count]->control_file == NULL) {
1403 error_msg_and_die("Couldnt extract control file");
1404 }
1405 package_num = fill_package_struct(deb_file[deb_count]->control_file);
1406
1407 if (package_num == -1) {
1408 error_msg("Invalid control file in %s", argv[optind]);
1409 continue;
1410 }
1411 deb_file[deb_count]->package = (unsigned int) package_num;
1412 /* Add the package to the status hashtable */
1413 if ((dpkg_opt & dpkg_opt_unpack) || (dpkg_opt & dpkg_opt_install)) {
1414 status_node = (status_node_t *) xmalloc(sizeof(status_node_t));
1415 status_node->package = deb_file[deb_count]->package;
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001416
Glenn L McGratha8412db2001-10-04 05:22:42 +00001417 /* Try and find a currently installed version of this package */
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001418 status_num = search_status_hashtable(name_hashtable[package_hashtable[deb_file[deb_count]->package]->name]);
Glenn L McGrathf28d8192001-10-06 02:27:36 +00001419 /* If no previous entry was found initialise a new entry */
Glenn L McGratha8412db2001-10-04 05:22:42 +00001420 if ((status_hashtable[status_num] == NULL) ||
1421 (status_hashtable[status_num]->status == 0)) {
1422 /* reinstreq isnt changed to "ok" until the package control info
1423 * is written to the status file*/
1424 status_node->status = search_name_hashtable("install reinstreq not-installed");
Glenn L McGrathf28d8192001-10-06 02:27:36 +00001425 status_hashtable[status_num] = status_node;
Glenn L McGrath30f68902001-10-06 02:40:20 +00001426 } else {
1427 status_hashtable[status_num]->status = search_name_hashtable("install reinstreq installed");
Glenn L McGratha8412db2001-10-04 05:22:42 +00001428 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001429 }
1430 }
1431 else if (dpkg_opt & dpkg_opt_package_name) {
1432 deb_file[deb_count]->filename = NULL;
1433 deb_file[deb_count]->control_file = NULL;
1434 deb_file[deb_count]->package = search_package_hashtable(
1435 search_name_hashtable(argv[optind]),
1436 search_name_hashtable("ANY"), VER_ANY);
1437 if (package_hashtable[deb_file[deb_count]->package] == NULL) {
Glenn L McGrathed4492a2001-07-18 05:03:49 +00001438 error_msg_and_die("Package %s is uninstalled or unknown\n", argv[optind]);
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001439 }
1440 state_status = get_status(search_status_hashtable(name_hashtable[package_hashtable[deb_file[deb_count]->package]->name]), 3);
1441
1442 /* check package status is "installed" */
1443 if (dpkg_opt & dpkg_opt_remove) {
1444 if ((strcmp(name_hashtable[state_status], "not-installed") == 0) ||
1445 (strcmp(name_hashtable[state_status], "config-files") == 0)) {
1446 error_msg_and_die("%s is already removed.", name_hashtable[package_hashtable[deb_file[deb_count]->package]->name]);
1447 }
1448 }
1449 else if (dpkg_opt & dpkg_opt_purge) {
1450 /* if package status is "conf-files" then its ok */
1451 if (strcmp(name_hashtable[state_status], "not-installed") == 0) {
1452 error_msg_and_die("%s is already purged.", name_hashtable[package_hashtable[deb_file[deb_count]->package]->name]);
1453 }
1454 }
1455 }
1456 deb_count++;
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001457 optind++;
1458 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001459 deb_file[deb_count] = NULL;
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001460
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001461 /* Check that the deb file arguments are installable */
1462 /* TODO: check dependencies before removing */
1463 if ((dpkg_opt & dpkg_opt_force_ignore_depends) != dpkg_opt_force_ignore_depends) {
1464 if (!check_deps(deb_file, 0, deb_count)) {
Glenn L McGrathc3fbec72001-07-18 15:47:21 +00001465 error_msg_and_die("Dependency check failed");
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001466 }
1467 }
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001468
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001469 for (i = 0; i < deb_count; i++) {
1470 /* Remove or purge packages */
1471 if (dpkg_opt & dpkg_opt_remove) {
1472 remove_package(deb_file[i]->package);
1473 }
1474 else if (dpkg_opt & dpkg_opt_purge) {
1475 purge_package(deb_file[i]->package);
1476 }
1477 else if (dpkg_opt & dpkg_opt_unpack) {
1478 unpack_package(deb_file[i]);
1479 }
1480 else if (dpkg_opt & dpkg_opt_install) {
1481 unpack_package(deb_file[i]);
1482 configure_package(deb_file[i]);
1483 }
1484 else if (dpkg_opt & dpkg_opt_configure) {
1485 configure_package(deb_file[i]);
1486 }
1487 }
Glenn L McGrathc3fbec72001-07-18 15:47:21 +00001488
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001489 write_status_file(deb_file);
1490
Glenn L McGrath81108e72001-07-19 12:15:13 +00001491 for (i = 0; i < deb_count; i++) {
1492 free(deb_file[i]->control_file);
1493 free(deb_file[i]->filename);
1494 free(deb_file[i]);
1495 }
1496 free(deb_file);
1497
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001498 for (i = 0; i < NAME_HASH_PRIME; i++) {
1499 if (name_hashtable[i] != NULL) {
1500 free(name_hashtable[i]);
1501 }
Glenn L McGrathc9005752001-02-10 02:05:24 +00001502 }
Glenn L McGrath7b024152001-07-18 04:33:31 +00001503
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001504 for (i = 0; i < PACKAGE_HASH_PRIME; i++) {
1505 free_package(package_hashtable[i]);
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001506 }
Glenn L McGrath7b024152001-07-18 04:33:31 +00001507
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001508 for (i = 0; i < STATUS_HASH_PRIME; i++) {
1509 if (status_hashtable[i] != NULL) {
1510 free(status_hashtable[i]);
1511 }
Glenn L McGrath0e757a22001-04-08 05:27:18 +00001512 }
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001513
Glenn L McGrath95bfe632001-09-29 03:34:38 +00001514 return(EXIT_SUCCESS);
Eric Andersen67991cf2001-02-14 21:23:06 +00001515}
Glenn L McGrathccd65c92001-07-13 18:35:24 +00001516