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