Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 1 | #include <dirent.h> |
| 2 | #include <getopt.h> |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 3 | #include <stdio.h> |
| 4 | #include <string.h> |
| 5 | #include <stdlib.h> |
| 6 | #include <search.h> |
| 7 | #include <errno.h> |
| 8 | #include <fcntl.h> |
| 9 | #include <unistd.h> |
| 10 | #include <utime.h> |
| 11 | #include <sys/types.h> |
| 12 | #include <sys/stat.h> |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 13 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 14 | #include "busybox.h" |
| 15 | |
Eric Andersen | 3c0b425 | 2001-03-14 01:31:11 +0000 | [diff] [blame] | 16 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 17 | #define DEPENDSMAX 64 /* maximum number of depends we can handle */ |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 18 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 19 | /* Should we do full dependency checking? */ |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 20 | #define DODEPENDS 1 |
| 21 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 22 | /* Should we do debugging? */ |
| 23 | #define DODEBUG 1 |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 24 | |
| 25 | #ifdef DODEBUG |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 26 | #define SYSTEM(x) do_system(x) |
| 27 | #define DPRINTF(fmt,args...) fprintf(stderr, fmt, ##args) |
| 28 | #else |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 29 | #define SYSTEM(x) system(x) |
| 30 | #define DPRINTF(fmt,args...) /* nothing */ |
| 31 | #endif |
| 32 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 33 | /* from dpkg-deb.c */ |
| 34 | extern int deb_extract(int optflags, const char *dir_name, const char *deb_filename); |
| 35 | static const int dpkg_deb_contents = 1; |
| 36 | static const int dpkg_deb_control = 2; |
| 37 | // const int dpkg_deb_info = 4; |
| 38 | static const int dpkg_deb_extract = 8; |
| 39 | static const int dpkg_deb_verbose_extract = 16; |
| 40 | static const int dpkg_deb_list = 32; |
Glenn L McGrath | 510f0dd | 2001-02-10 14:53:08 +0000 | [diff] [blame] | 41 | |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 42 | static const char statusfile[] = "/var/lib/dpkg/status.udeb"; |
| 43 | static const char new_statusfile[] = "/var/lib/dpkg/status.udeb.new"; |
| 44 | static const char bak_statusfile[] = "/var/lib/dpkg/status.udeb.bak"; |
| 45 | |
| 46 | static const char dpkgcidir[] = "/var/lib/dpkg/tmp.ci/"; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 47 | |
Glenn L McGrath | 510f0dd | 2001-02-10 14:53:08 +0000 | [diff] [blame] | 48 | static const char infodir[] = "/var/lib/dpkg/info/"; |
| 49 | static const char udpkg_quiet[] = "UDPKG_QUIET"; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 50 | |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 51 | //static const int status_wantstart = 0; |
| 52 | //static const int status_wantunknown = (1 << 0); |
| 53 | static const int status_wantinstall = (1 << 1); |
| 54 | //static const int status_wanthold = (1 << 2); |
| 55 | //static const int status_wantdeinstall = (1 << 3); |
| 56 | //static const int status_wantpurge = (1 << 4); |
| 57 | static const int status_wantmask = 31; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 58 | |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 59 | //static const int status_flagstart = 5; |
| 60 | static const int status_flagok = (1 << 5); /* 32 */ |
| 61 | //static const int status_flagreinstreq = (1 << 6); |
| 62 | //static const int status_flaghold = (1 << 7); |
| 63 | //static const int status_flagholdreinstreq = (1 << 8); |
| 64 | static const int status_flagmask = 480; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 65 | |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 66 | //static const int status_statusstart = 9; |
| 67 | //static const int status_statusnoninstalled = (1 << 9); /* 512 */ |
| 68 | static const int status_statusunpacked = (1 << 10); |
| 69 | static const int status_statushalfconfigured = (1 << 11); |
| 70 | static const int status_statusinstalled = (1 << 12); |
| 71 | static const int status_statushalfinstalled = (1 << 13); |
| 72 | //static const int status_statusconfigfiles = (1 << 14); |
| 73 | //static const int status_statuspostinstfailed = (1 << 15); |
| 74 | //static const int status_statusremovalfailed = (1 << 16); |
| 75 | static const int status_statusmask = 130560; /* i assume status_statusinstalled is supposed to be included */ |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 76 | |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 77 | static const char *statuswords[][10] = { |
| 78 | { (char *) 0, "unknown", "install", "hold", "deinstall", "purge", 0 }, |
| 79 | { (char *) 5, "ok", "reinstreq", "hold", "hold-reinstreq", 0 }, |
| 80 | { (char *) 9, "not-installed", "unpacked", "half-configured", |
| 81 | "installed", "half-installed", "config-files", |
| 82 | "post-inst-failed", "removal-failed", 0 } |
| 83 | }; |
| 84 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 85 | static const int color_white = 0; |
| 86 | static const int color_grey = 1; |
| 87 | static const int color_black = 2; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 88 | |
| 89 | /* data structures */ |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 90 | typedef struct package_s { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 91 | char *file; |
| 92 | char *package; |
| 93 | char *version; |
| 94 | char *depends; |
| 95 | char *provides; |
| 96 | char *description; |
| 97 | int installer_menu_item; |
| 98 | unsigned long status; |
| 99 | char color; /* for topo-sort */ |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 100 | struct package_s *requiredfor[DEPENDSMAX]; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 101 | unsigned short requiredcount; |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 102 | struct package_s *next; |
| 103 | } package_t; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 104 | |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 105 | #ifdef DODEBUG |
| 106 | static int do_system(const char *cmd) |
| 107 | { |
| 108 | DPRINTF("cmd is %s\n", cmd); |
| 109 | return system(cmd); |
| 110 | } |
| 111 | #else |
| 112 | #define do_system(cmd) system(cmd) |
| 113 | #endif |
| 114 | |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 115 | static int package_compare(const void *p1, const void *p2) |
| 116 | { |
| 117 | return strcmp(((package_t *)p1)->package, |
| 118 | ((package_t *)p2)->package); |
| 119 | } |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 120 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 121 | /* |
| 122 | * NOTE: this was handled by a "rm -rf" shell command |
| 123 | * Maybe theis behaviour should be integrated into the rm applet |
| 124 | * (i dont appreciate the rm applets recursive action fn)-bug1 |
| 125 | */ |
| 126 | static int remove_dir(const char *dirname) |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 127 | { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 128 | struct dirent *fp; |
| 129 | DIR *dp = opendir(dirname); |
| 130 | while ((fp = readdir(dp)) != NULL) { |
| 131 | struct stat statbuf; |
| 132 | char *filename; |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 133 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 134 | filename = (char *) xcalloc(1, strlen(dirname) + strlen(fp->d_name) + 2); |
| 135 | strcpy(filename, dirname); |
| 136 | strcat(filename, fp->d_name); |
| 137 | lstat(filename, &statbuf); |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 138 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 139 | if ((strcmp(fp->d_name, ".") != 0) && (strcmp(fp->d_name, "..") != 0)) { |
| 140 | if (S_ISDIR(statbuf.st_mode)) { |
| 141 | remove_dir(strcat(filename, "/")); |
| 142 | } |
| 143 | else if (remove(filename) == -1) { |
| 144 | perror_msg(filename); |
| 145 | } |
| 146 | } |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 147 | } |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 148 | remove(dirname); |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 149 | return EXIT_SUCCESS; |
| 150 | } |
| 151 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 152 | #ifdef DODEPENDS |
| 153 | #include <ctype.h> |
| 154 | |
| 155 | static char **depends_split(const char *dependsstr) |
| 156 | { |
| 157 | static char *dependsvec[DEPENDSMAX]; |
| 158 | char *p; |
| 159 | int i = 0; |
| 160 | |
| 161 | dependsvec[0] = 0; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 162 | if (dependsstr == 0) { |
| 163 | goto end; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 164 | } |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 165 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 166 | p = xstrdup(dependsstr); |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 167 | while (*p != 0 && *p != '\n') { |
| 168 | if (*p != ' ') { |
| 169 | if (*p == ',') { |
| 170 | *p = 0; |
| 171 | dependsvec[++i] = 0; |
| 172 | } else { |
| 173 | if (dependsvec[i] == 0) { |
| 174 | dependsvec[i] = p; |
| 175 | } |
| 176 | } |
| 177 | } else { |
| 178 | *p = 0; /* eat the space... */ |
| 179 | } |
| 180 | p++; |
| 181 | } |
| 182 | *p = 0; |
| 183 | |
| 184 | end: |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 185 | dependsvec[i+1] = 0; |
| 186 | return dependsvec; |
| 187 | } |
| 188 | |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 189 | /* Topological sort algorithm: |
| 190 | * ordered is the output list, pkgs is the dependency graph, pkg is |
| 191 | * the current node |
| 192 | * |
| 193 | * recursively add all the adjacent nodes to the ordered list, marking |
| 194 | * each one as visited along the way |
| 195 | * |
| 196 | * yes, this algorithm looks a bit odd when all the params have the |
| 197 | * same type :-) |
| 198 | */ |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 199 | static void depends_sort_visit(package_t **ordered, package_t *pkgs, |
| 200 | package_t *pkg) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 201 | { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 202 | unsigned short i; |
| 203 | |
| 204 | /* mark node as processing */ |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 205 | pkg->color = color_grey; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 206 | |
| 207 | /* visit each not-yet-visited node */ |
| 208 | for (i = 0; i < pkg->requiredcount; i++) |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 209 | if (pkg->requiredfor[i]->color == color_white) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 210 | depends_sort_visit(ordered, pkgs, pkg->requiredfor[i]); |
| 211 | |
| 212 | #if 0 |
| 213 | /* add it to the list */ |
Eric Andersen | b50d707 | 2001-02-15 19:50:11 +0000 | [diff] [blame] | 214 | newnode = (struct package_t *)xmalloc(sizeof(struct package_t)); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 215 | /* make a shallow copy */ |
| 216 | *newnode = *pkg; |
| 217 | newnode->next = *ordered; |
| 218 | *ordered = newnode; |
| 219 | #endif |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 220 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 221 | pkg->next = *ordered; |
| 222 | *ordered = pkg; |
| 223 | |
| 224 | /* mark node as done */ |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 225 | pkg->color = color_black; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 226 | } |
| 227 | |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 228 | static package_t *depends_sort(package_t *pkgs) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 229 | { |
| 230 | /* TODO: it needs to break cycles in the to-be-installed package |
| 231 | * graph... */ |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 232 | package_t *ordered = NULL; |
| 233 | package_t *pkg; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 234 | |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 235 | for (pkg = pkgs; pkg != 0; pkg = pkg->next) { |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 236 | pkg->color = color_white; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 237 | } |
| 238 | for (pkg = pkgs; pkg != 0; pkg = pkg->next) { |
| 239 | if (pkg->color == color_white) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 240 | depends_sort_visit(&ordered, pkgs, pkg); |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 241 | } |
| 242 | } |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 243 | |
| 244 | /* Leaks the old list... return the new one... */ |
| 245 | return ordered; |
| 246 | } |
| 247 | |
| 248 | |
| 249 | /* resolve package dependencies -- |
| 250 | * for each package in the list of packages to be installed, we parse its |
| 251 | * dependency info to determine if the dependent packages are either |
| 252 | * already installed, or are scheduled to be installed. If both tests fail |
| 253 | * than bail. |
| 254 | * |
| 255 | * The algorithm here is O(n^2*m) where n = number of packages to be |
| 256 | * installed and m is the # of dependencies per package. Not a terribly |
| 257 | * efficient algorithm, but given that at any one time you are unlikely |
| 258 | * to install a very large number of packages it doesn't really matter |
| 259 | */ |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 260 | static package_t *depends_resolve(package_t *pkgs, void *status) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 261 | { |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 262 | package_t *pkg, *chk; |
| 263 | package_t dependpkg; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 264 | char **dependsvec; |
| 265 | int i; |
| 266 | void *found; |
| 267 | |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 268 | for (pkg = pkgs; pkg != 0; pkg = pkg->next) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 269 | dependsvec = depends_split(pkg->depends); |
| 270 | i = 0; |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 271 | while (dependsvec[i] != 0) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 272 | /* Check for dependencies; first look for installed packages */ |
| 273 | dependpkg.package = dependsvec[i]; |
| 274 | if ((found = tfind(&dependpkg, &status, package_compare)) == 0 || |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 275 | ((chk = *(package_t **)found) && |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 276 | (chk->status & (status_flagok | status_statusinstalled)) != |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 277 | (status_flagok | status_statusinstalled))) { |
| 278 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 279 | /* if it fails, we look through the list of packages we are going to |
| 280 | * install */ |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 281 | for (chk = pkgs; chk != 0; chk = chk->next) { |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 282 | if (strcmp(chk->package, dependsvec[i]) == 0 || (chk->provides && |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 283 | strncmp(chk->provides, dependsvec[i], strlen(dependsvec[i])) == 0)) { |
| 284 | if (chk->requiredcount >= DEPENDSMAX) { |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 285 | fprintf(stderr, "Too many dependencies for %s\n", chk->package); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 286 | return 0; |
| 287 | } |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 288 | if (chk != pkg) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 289 | chk->requiredfor[chk->requiredcount++] = pkg; |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 290 | } |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 291 | break; |
| 292 | } |
| 293 | } |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 294 | if (chk == 0) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 295 | fprintf(stderr, "%s depends on %s, but it is not going to be installed\n", pkg->package, dependsvec[i]); |
| 296 | return 0; |
| 297 | } |
| 298 | } |
| 299 | i++; |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | return depends_sort(pkgs); |
| 304 | } |
| 305 | #endif |
| 306 | |
| 307 | /* Status file handling routines |
| 308 | * |
| 309 | * This is a fairly minimalistic implementation. there are two main functions |
| 310 | * that are supported: |
| 311 | * |
| 312 | * 1) reading the entire status file: |
| 313 | * the status file is read into memory as a binary-tree, with just the |
| 314 | * package and status info preserved |
| 315 | * |
| 316 | * 2) merging the status file |
| 317 | * control info from (new) packages is merged into the status file, |
| 318 | * replacing any pre-existing entries. when a merge happens, status info |
| 319 | * read using the status_read function is written back to the status file |
| 320 | */ |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 321 | static unsigned long status_parse(const char *line) |
| 322 | { |
| 323 | char *p; |
| 324 | int i, j; |
| 325 | unsigned long l = 0; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 326 | |
| 327 | for (i = 0; i < 3; i++) { |
| 328 | if ((p = strchr(line, ' ')) != NULL) { |
| 329 | *p = 0; |
| 330 | } |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 331 | j = 1; |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 332 | while (statuswords[i][j] != 0) { |
| 333 | if (strcmp(line, statuswords[i][j]) == 0) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 334 | l |= (1 << ((int)statuswords[i][0] + j - 1)); |
| 335 | break; |
| 336 | } |
| 337 | j++; |
| 338 | } |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 339 | /* parse error */ |
| 340 | if (statuswords[i][j] == 0) { |
| 341 | return 0; |
| 342 | } |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 343 | line = p+1; |
| 344 | } |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 345 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 346 | return l; |
| 347 | } |
| 348 | |
| 349 | static const char *status_print(unsigned long flags) |
| 350 | { |
| 351 | /* this function returns a static buffer... */ |
| 352 | static char buf[256]; |
| 353 | int i, j; |
| 354 | |
| 355 | buf[0] = 0; |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 356 | for (i = 0; i < 3; i++) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 357 | j = 1; |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 358 | while (statuswords[i][j] != 0) { |
| 359 | if ((flags & (1 << ((int)statuswords[i][0] + j - 1))) != 0) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 360 | strcat(buf, statuswords[i][j]); |
| 361 | if (i < 2) strcat(buf, " "); |
| 362 | break; |
| 363 | } |
| 364 | j++; |
| 365 | } |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 366 | if (statuswords[i][j] == 0) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 367 | fprintf(stderr, "corrupted status flag!!\n"); |
| 368 | return NULL; |
| 369 | } |
| 370 | } |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 371 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 372 | return buf; |
| 373 | } |
| 374 | |
| 375 | /* |
| 376 | * Read a control file (or a stanza of a status file) and parse it, |
| 377 | * filling parsed fields into the package structure |
| 378 | */ |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 379 | static int control_read(FILE *file, package_t *p) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 380 | { |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 381 | char *line; |
| 382 | |
| 383 | while ((line = get_line_from_file(file)) != NULL) { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 384 | line[strlen(line) - 1] = '\0'; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 385 | |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 386 | if (strlen(line) == 0) { |
| 387 | break; |
| 388 | } else |
| 389 | if (strstr(line, "Package: ") == line) { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 390 | p->package = xstrdup(line + 9); |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 391 | } else |
| 392 | if (strstr(line, "Status: ") == line) { |
| 393 | p->status = status_parse(line + 8); |
| 394 | } else |
| 395 | if (strstr(line, "Depends: ") == line) { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 396 | p->depends = xstrdup(line + 9); |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 397 | } else |
| 398 | if (strstr(line, "Provides: ") == line) { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 399 | p->provides = xstrdup(line + 10); |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 400 | } else |
| 401 | if (strstr(line, "Description: ") == line) { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 402 | p->description = xstrdup(line + 13); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 403 | /* This is specific to the Debian Installer. Ifdef? */ |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 404 | } else |
| 405 | if (strstr(line, "installer-menu-item: ") == line) { |
| 406 | p->installer_menu_item = atoi(line + 21); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 407 | } |
| 408 | /* TODO: localized descriptions */ |
| 409 | } |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 410 | free(line); |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 411 | return EXIT_SUCCESS; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 412 | } |
| 413 | |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 414 | static void *status_read(void) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 415 | { |
| 416 | FILE *f; |
| 417 | void *status = 0; |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 418 | package_t *m = 0, *p = 0, *t = 0; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 419 | |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 420 | if ((f = fopen(statusfile, "r")) == NULL) { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 421 | perror_msg(statusfile); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 422 | return 0; |
| 423 | } |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 424 | |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 425 | if (getenv(udpkg_quiet) == NULL) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 426 | printf("(Reading database...)\n"); |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 427 | } |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 428 | |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 429 | while (!feof(f)) { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 430 | m = (package_t *)xcalloc(1, sizeof(package_t)); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 431 | control_read(f, m); |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 432 | if (m->package) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 433 | /* |
| 434 | * If there is an item in the tree by this name, |
| 435 | * it must be a virtual package; insert real |
| 436 | * package in preference. |
| 437 | */ |
| 438 | tdelete(m, &status, package_compare); |
| 439 | tsearch(m, &status, package_compare); |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 440 | if (m->provides) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 441 | /* |
| 442 | * A "Provides" triggers the insertion |
| 443 | * of a pseudo package into the status |
| 444 | * binary-tree. |
| 445 | */ |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 446 | p = (package_t *)xcalloc(1, sizeof(package_t)); |
| 447 | p->package = xstrdup(m->provides); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 448 | |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 449 | t = *(package_t **)tsearch(p, &status, package_compare); |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 450 | if (t != p) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 451 | free(p->package); |
| 452 | free(p); |
| 453 | } |
| 454 | else { |
| 455 | /* |
| 456 | * Pseudo package status is the |
| 457 | * same as the status of the |
| 458 | * package providing it |
| 459 | * FIXME: (not quite right, if 2 |
| 460 | * packages of different statuses |
| 461 | * provide it). |
| 462 | */ |
| 463 | t->status = m->status; |
| 464 | } |
| 465 | } |
| 466 | } |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 467 | else { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 468 | free(m); |
| 469 | } |
| 470 | } |
| 471 | fclose(f); |
| 472 | return status; |
| 473 | } |
| 474 | |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 475 | static int status_merge(void *status, package_t *pkgs) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 476 | { |
| 477 | FILE *fin, *fout; |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 478 | char *line = NULL; |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 479 | package_t *pkg = 0, *statpkg = 0; |
| 480 | package_t locpkg; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 481 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 482 | if ((fout = wfopen(new_statusfile, "w")) == NULL) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 483 | return 0; |
| 484 | } |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 485 | if (getenv(udpkg_quiet) == NULL) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 486 | printf("(Updating database...)\n"); |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 487 | } |
Glenn L McGrath | 13e9c7a | 2001-04-08 07:18:08 +0000 | [diff] [blame^] | 488 | /* |
| 489 | * Dont use wfopen here, handle errors ourself |
| 490 | */ |
| 491 | if ((fin = fopen(statusfile, "r")) != NULL) { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 492 | while (((line = get_line_from_file(fin)) != NULL) && !feof(fin)) { |
| 493 | line[strlen(line) - 1] = '\0'; /* trim newline */ |
| 494 | /* If we see a package header, find out if it's a package |
| 495 | * that we have processed. if so, we skip that block for |
| 496 | * now (write it at the end). |
| 497 | * |
| 498 | * we also look at packages in the status cache and update |
| 499 | * their status fields |
Glenn L McGrath | 13e9c7a | 2001-04-08 07:18:08 +0000 | [diff] [blame^] | 500 | */ |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 501 | if (strstr(line, "Package: ") == line) { |
| 502 | for (pkg = pkgs; pkg != 0 && strcmp(line + 9, |
| 503 | pkg->package) != 0; pkg = pkg->next) ; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 504 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 505 | locpkg.package = line + 9; |
| 506 | statpkg = tfind(&locpkg, &status, package_compare); |
Glenn L McGrath | 13e9c7a | 2001-04-08 07:18:08 +0000 | [diff] [blame^] | 507 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 508 | /* note: statpkg should be non-zero, unless the status |
| 509 | * file was changed while we are processing (no locking |
| 510 | * is currently done... |
| 511 | */ |
| 512 | if (statpkg != 0) { |
| 513 | statpkg = *(package_t **)statpkg; |
| 514 | } |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 515 | } |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 516 | if (pkg != 0) { |
| 517 | continue; |
| 518 | } |
| 519 | if (strstr(line, "Status: ") == line && statpkg != 0) { |
| 520 | snprintf(line, sizeof(line), "Status: %s", |
| 521 | status_print(statpkg->status)); |
| 522 | } |
| 523 | fputs(line, fout); |
| 524 | fputc('\n', fout); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 525 | } |
Glenn L McGrath | 13e9c7a | 2001-04-08 07:18:08 +0000 | [diff] [blame^] | 526 | fclose(fin); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 527 | } |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 528 | free(line); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 529 | |
| 530 | // Print out packages we processed. |
| 531 | for (pkg = pkgs; pkg != 0; pkg = pkg->next) { |
| 532 | fprintf(fout, "Package: %s\nStatus: %s\n", |
| 533 | pkg->package, status_print(pkg->status)); |
| 534 | if (pkg->depends) |
| 535 | fprintf(fout, "Depends: %s\n", pkg->depends); |
| 536 | if (pkg->provides) |
| 537 | fprintf(fout, "Provides: %s\n", pkg->provides); |
| 538 | if (pkg->installer_menu_item) |
| 539 | fprintf(fout, "installer-menu-item: %i\n", pkg->installer_menu_item); |
| 540 | if (pkg->description) |
| 541 | fprintf(fout, "Description: %s\n", pkg->description); |
| 542 | fputc('\n', fout); |
| 543 | } |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 544 | fclose(fout); |
| 545 | |
Glenn L McGrath | 13e9c7a | 2001-04-08 07:18:08 +0000 | [diff] [blame^] | 546 | /* |
| 547 | * Its ok if renaming statusfile fails becasue it doesnt exist |
| 548 | */ |
| 549 | if (rename(statusfile, bak_statusfile) == -1) { |
| 550 | struct stat stat_buf; |
| 551 | error_msg("Couldnt create backup status file"); |
| 552 | if (stat(statusfile, &stat_buf) == 0) { |
| 553 | return(EXIT_FAILURE); |
| 554 | } |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 555 | } |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 556 | |
Glenn L McGrath | 13e9c7a | 2001-04-08 07:18:08 +0000 | [diff] [blame^] | 557 | if (rename(new_statusfile, statusfile) == -1) { |
| 558 | error_msg("Couldnt create status file"); |
| 559 | return(EXIT_FAILURE); |
| 560 | } |
| 561 | return(EXIT_SUCCESS); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 562 | } |
| 563 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 564 | static int is_file(const char *fn) |
| 565 | { |
| 566 | struct stat statbuf; |
| 567 | |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 568 | if (stat(fn, &statbuf) < 0) { |
| 569 | return 0; |
| 570 | } |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 571 | return S_ISREG(statbuf.st_mode); |
| 572 | } |
| 573 | |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 574 | static int dpkg_doconfigure(package_t *pkg) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 575 | { |
| 576 | int r; |
| 577 | char postinst[1024]; |
| 578 | char buf[1024]; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 579 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 580 | DPRINTF("Configuring %s\n", pkg->package); |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 581 | pkg->status &= status_statusmask; |
Glenn L McGrath | 510f0dd | 2001-02-10 14:53:08 +0000 | [diff] [blame] | 582 | snprintf(postinst, sizeof(postinst), "%s%s.postinst", infodir, pkg->package); |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 583 | |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 584 | if (is_file(postinst)) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 585 | snprintf(buf, sizeof(buf), "%s configure", postinst); |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 586 | if ((r = do_system(buf)) != 0) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 587 | fprintf(stderr, "postinst exited with status %d\n", r); |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 588 | pkg->status |= status_statushalfconfigured; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 589 | return 1; |
| 590 | } |
| 591 | } |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 592 | pkg->status |= status_statusinstalled; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 593 | |
| 594 | return 0; |
| 595 | } |
| 596 | |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 597 | static int dpkg_dounpack(package_t *pkg) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 598 | { |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 599 | int r = 0, i; |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 600 | char *cwd; |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 601 | char *src_file = NULL; |
| 602 | char *dst_file = NULL; |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 603 | // char *lst_file = NULL; |
| 604 | char *adminscripts[] = { "prerm", "postrm", "preinst", "postinst", |
| 605 | "conffiles", "md5sums", "shlibs", "templates" }; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 606 | |
| 607 | DPRINTF("Unpacking %s\n", pkg->package); |
| 608 | |
| 609 | cwd = getcwd(0, 0); |
| 610 | chdir("/"); |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 611 | deb_extract(dpkg_deb_extract, "/", pkg->file); |
| 612 | |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 613 | /* Installs the package scripts into the info directory */ |
| 614 | for (i = 0; i < sizeof(adminscripts) / sizeof(adminscripts[0]); i++) { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 615 | struct stat src_stat_buf; |
| 616 | int src_fd = 0, dst_fd = 0; |
| 617 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 618 | /* The full path of the current location of the admin file */ |
| 619 | src_file = xrealloc(src_file, strlen(dpkgcidir) + strlen(pkg->package) + strlen(adminscripts[i]) + 1); |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 620 | sprintf(src_file, "%s%s/%s", dpkgcidir, pkg->package, adminscripts[i]); |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 621 | |
| 622 | /* the full path of where we want the file to be copied to */ |
| 623 | dst_file = xrealloc(dst_file, strlen(infodir) + strlen(pkg->package) + strlen(adminscripts[i]) + 1); |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 624 | sprintf(dst_file, "%s%s.%s", infodir, pkg->package, adminscripts[i]); |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 625 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 626 | /* |
| 627 | * copy admin file to permanent home |
| 628 | * NOTE: Maybe merge this behaviour into libb/copy_file.c |
| 629 | */ |
| 630 | if (lstat(src_file, &src_stat_buf) == 0) { |
| 631 | if ((src_fd = open(src_file, O_RDONLY)) != -1) { |
| 632 | if ((dst_fd = open(dst_file, O_WRONLY | O_CREAT, 0644)) == -1) { |
| 633 | perror_msg("Opening %s", dst_file); |
| 634 | } |
| 635 | copy_file_chunk(src_fd, dst_fd, src_stat_buf.st_size); |
| 636 | close(src_fd); |
| 637 | close(dst_fd); |
| 638 | } else { |
| 639 | error_msg("couldnt open [%s]\n", src_file); |
| 640 | } |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 641 | } |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 642 | } |
| 643 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 644 | /* |
| 645 | * create the list file |
| 646 | * FIXME: currently this dumps the lst to stdout instead of a file |
| 647 | */ |
| 648 | /* lst_file = (char *) xmalloc(strlen(infodir) + strlen(pkg->package) + 6); |
| 649 | strcpy(lst_file, infodir); |
| 650 | strcat(lst_file, pkg->package); |
| 651 | strcat(lst_file, ".list"); |
| 652 | deb_extract(dpkg_deb_list, NULL, pkg->file); |
| 653 | */ |
| 654 | |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 655 | pkg->status &= status_wantmask; |
| 656 | pkg->status |= status_wantinstall; |
| 657 | pkg->status &= status_flagmask; |
| 658 | pkg->status |= status_flagok; |
| 659 | pkg->status &= status_statusmask; |
| 660 | |
| 661 | if (r == 0) { |
| 662 | pkg->status |= status_statusunpacked; |
| 663 | } else { |
| 664 | pkg->status |= status_statushalfinstalled; |
| 665 | } |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 666 | chdir(cwd); |
| 667 | return r; |
| 668 | } |
| 669 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 670 | /* |
| 671 | * Extract and parse the control.tar.gz from the specified package |
| 672 | */ |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 673 | static int dpkg_unpackcontrol(package_t *pkg) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 674 | { |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 675 | char *tmp_name; |
| 676 | FILE *file; |
| 677 | int length; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 678 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 679 | /* clean the temp directory (dpkgcidir) be recreating it */ |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 680 | remove_dir(dpkgcidir); |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 681 | if (mkdir(dpkgcidir, S_IRWXU) != 0) { |
| 682 | perror("mkdir"); |
| 683 | return EXIT_FAILURE; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 684 | } |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 685 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 686 | /* |
| 687 | * Get the package name from the file name, |
| 688 | * first remove the directories |
| 689 | */ |
| 690 | if ((tmp_name = strrchr(pkg->file, '/')) == NULL) { |
| 691 | tmp_name = pkg->file; |
| 692 | } else { |
| 693 | tmp_name++; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 694 | } |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 695 | /* now remove trailing version numbers etc */ |
| 696 | length = strcspn(tmp_name, "_."); |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 697 | pkg->package = (char *) xcalloc(1, length + 1); |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 698 | /* store the package name */ |
| 699 | strncpy(pkg->package, tmp_name, length); |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 700 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 701 | /* work out the full extraction path */ |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 702 | tmp_name = (char *) xcalloc(1, strlen(dpkgcidir) + strlen(pkg->package) + 9); |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 703 | strcpy(tmp_name, dpkgcidir); |
| 704 | strcat(tmp_name, pkg->package); |
| 705 | |
| 706 | /* extract control.tar.gz to the full extraction path */ |
| 707 | deb_extract(dpkg_deb_control, tmp_name, pkg->file); |
| 708 | |
| 709 | /* parse the extracted control file */ |
| 710 | strcat(tmp_name, "/control"); |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 711 | if ((file = wfopen(tmp_name, "r")) == NULL) { |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 712 | return EXIT_FAILURE; |
| 713 | } |
| 714 | if (control_read(file, pkg) == EXIT_FAILURE) { |
| 715 | return EXIT_FAILURE; |
| 716 | } |
| 717 | |
| 718 | return EXIT_SUCCESS; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 719 | } |
| 720 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 721 | static int dpkg_unpack(package_t *pkgs, void *status) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 722 | { |
| 723 | int r = 0; |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 724 | package_t *pkg; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 725 | |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 726 | for (pkg = pkgs; pkg != 0; pkg = pkg->next) { |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 727 | if (dpkg_unpackcontrol(pkg) == EXIT_FAILURE) { |
| 728 | return EXIT_FAILURE; |
| 729 | } |
| 730 | if ((r = dpkg_dounpack(pkg)) != 0 ) { |
| 731 | break; |
| 732 | } |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 733 | } |
| 734 | status_merge(status, pkgs); |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 735 | remove_dir(dpkgcidir); |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 736 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 737 | return r; |
| 738 | } |
| 739 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 740 | static int dpkg_configure(package_t *pkgs, void *status) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 741 | { |
| 742 | int r = 0; |
| 743 | void *found; |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 744 | package_t *pkg; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 745 | |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 746 | for (pkg = pkgs; pkg != 0 && r == 0; pkg = pkg->next) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 747 | found = tfind(pkg, &status, package_compare); |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 748 | |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 749 | if (found == 0) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 750 | fprintf(stderr, "Trying to configure %s, but it is not installed\n", pkg->package); |
| 751 | r = 1; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 752 | } |
| 753 | /* configure the package listed in the status file; |
| 754 | * not pkg, as we have info only for the latter |
| 755 | */ |
| 756 | else { |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 757 | r = dpkg_doconfigure(*(package_t **)found); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 758 | } |
| 759 | } |
| 760 | status_merge(status, 0); |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 761 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 762 | return r; |
| 763 | } |
| 764 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 765 | static int dpkg_install(package_t *pkgs, void *status) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 766 | { |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 767 | package_t *p, *ordered = 0; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 768 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 769 | /* Stage 1: parse all the control information */ |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 770 | for (p = pkgs; p != 0; p = p->next) { |
| 771 | if (dpkg_unpackcontrol(p) == EXIT_FAILURE) { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 772 | return(EXIT_FAILURE); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 773 | } |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 774 | } |
| 775 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 776 | /* Stage 2: resolve dependencies */ |
| 777 | #ifdef DODEPENDS |
| 778 | ordered = depends_resolve(pkgs, status); |
| 779 | #else |
| 780 | ordered = pkgs; |
| 781 | #endif |
| 782 | |
| 783 | /* Stage 3: install */ |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 784 | for (p = ordered; p != 0; p = p->next) { |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 785 | p->status &= status_wantmask; |
| 786 | p->status |= status_wantinstall; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 787 | |
| 788 | /* for now the flag is always set to ok... this is probably |
| 789 | * not what we want |
| 790 | */ |
Glenn L McGrath | af8c65d | 2001-02-10 03:19:51 +0000 | [diff] [blame] | 791 | p->status &= status_flagmask; |
| 792 | p->status |= status_flagok; |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 793 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 794 | DPRINTF("Installing %s\n", p->package); |
| 795 | if (dpkg_dounpack(p) != 0) { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 796 | perror_msg(p->file); |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 797 | } |
| 798 | if (dpkg_doconfigure(p) != 0) { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 799 | perror_msg(p->file); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 800 | } |
| 801 | } |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 802 | |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 803 | if (ordered != 0) { |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 804 | status_merge(status, pkgs); |
Glenn L McGrath | 0c9d77c | 2001-02-11 00:17:22 +0000 | [diff] [blame] | 805 | } |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 806 | remove_dir(dpkgcidir); |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 807 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 808 | return 0; |
| 809 | } |
| 810 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 811 | /* |
| 812 | * Not implemented yet |
| 813 | * |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 814 | static int dpkg_remove(package_t *pkgs, void *status) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 815 | { |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 816 | package_t *p; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 817 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 818 | for (p = pkgs; p != 0; p = p->next) |
| 819 | { |
| 820 | } |
| 821 | status_merge(status, 0); |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 822 | |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 823 | return 0; |
| 824 | } |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 825 | */ |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 826 | |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 827 | extern int dpkg_main(int argc, char **argv) |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 828 | { |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 829 | const int arg_install = 1; |
| 830 | const int arg_unpack = 2; |
| 831 | const int arg_configure = 4; |
| 832 | |
Glenn L McGrath | 649968c | 2001-02-10 14:26:48 +0000 | [diff] [blame] | 833 | package_t *p, *packages = NULL; |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 834 | void *status = NULL; |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 835 | char opt = 0; |
| 836 | int optflag = 0; |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 837 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 838 | while ((opt = getopt(argc, argv, "iruc")) != -1) { |
| 839 | switch (opt) { |
| 840 | case 'i': |
| 841 | optflag |= arg_install; |
| 842 | break; |
| 843 | case 'u': |
| 844 | optflag |= arg_unpack; |
| 845 | break; |
| 846 | case 'c': |
| 847 | optflag |= arg_configure; |
| 848 | break; |
| 849 | default: |
| 850 | show_usage(); |
| 851 | } |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 852 | } |
Glenn L McGrath | 6310646 | 2001-02-11 01:40:23 +0000 | [diff] [blame] | 853 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 854 | while (optind < argc) { |
| 855 | p = (package_t *) xcalloc(1, sizeof(package_t)); |
| 856 | if (optflag & arg_configure) { |
| 857 | p->package = xstrdup(argv[optind]); |
| 858 | } else { |
| 859 | p->file = xstrdup(argv[optind]); |
| 860 | } |
| 861 | p->next = packages; |
| 862 | packages = p; |
| 863 | |
| 864 | optind++; |
| 865 | } |
| 866 | |
| 867 | create_path(dpkgcidir, 0755); |
| 868 | create_path(infodir, 0755); |
| 869 | |
Glenn L McGrath | 3af1f88 | 2001-02-12 11:33:09 +0000 | [diff] [blame] | 870 | status = status_read(); |
| 871 | |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 872 | if (optflag & arg_install) { |
| 873 | return dpkg_install(packages, status); |
Glenn L McGrath | c900575 | 2001-02-10 02:05:24 +0000 | [diff] [blame] | 874 | } |
Glenn L McGrath | 0e757a2 | 2001-04-08 05:27:18 +0000 | [diff] [blame] | 875 | else if (optflag & arg_unpack) { |
| 876 | return dpkg_unpack(packages, status); |
| 877 | } |
| 878 | else if (optflag & arg_configure) { |
| 879 | return dpkg_configure(packages, status); |
| 880 | } |
| 881 | return(EXIT_FAILURE); |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 882 | } |