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