Ignore machine-check MSRs
[freebsd-src/fkvm-freebsd.git] / usr.sbin / pkg_install / add / perform.c
blob872c7a8ce8bc57c4d404cd68ffd800cddf61c50d
1 /*
2 * FreeBSD install - a package for the installation and maintainance
3 * of non-core utilities.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * Jordan K. Hubbard
15 * 18 July 1993
17 * This is the main body of the add module.
21 #include <sys/cdefs.h>
22 __FBSDID("$FreeBSD$");
24 #include <err.h>
25 #include <paths.h>
26 #include "lib.h"
27 #include "add.h"
29 #include <libgen.h>
30 #include <signal.h>
31 #include <sys/wait.h>
33 static int pkg_do(char *);
34 static int sanity_check(char *);
35 static char LogDir[FILENAME_MAX];
36 static int zapLogDir; /* Should we delete LogDir? */
38 int
39 pkg_perform(char **pkgs)
41 int i, err_cnt = 0;
43 signal(SIGINT, cleanup);
44 signal(SIGHUP, cleanup);
46 if (AddMode == SLAVE)
47 err_cnt = pkg_do(NULL);
48 else {
49 for (i = 0; pkgs[i]; i++)
50 err_cnt += pkg_do(pkgs[i]);
52 return err_cnt;
55 static Package Plist;
56 static char *Home;
59 * This is seriously ugly code following. Written very fast!
60 * [And subsequently made even worse.. Sigh! This code was just born
61 * to be hacked, I guess.. :) -jkh]
63 static int
64 pkg_do(char *pkg)
66 char pkg_fullname[FILENAME_MAX];
67 char playpen[FILENAME_MAX];
68 char extract_contents[FILENAME_MAX];
69 char *where_to, *extract;
70 FILE *cfile;
71 int code;
72 PackingList p;
73 struct stat sb;
74 int inPlace, conflictsfound, errcode;
75 /* support for separate pre/post install scripts */
76 int new_m = 0;
77 char pre_script[FILENAME_MAX] = INSTALL_FNAME;
78 char post_script[FILENAME_MAX];
79 char pre_arg[FILENAME_MAX], post_arg[FILENAME_MAX];
80 char *conflict[2];
81 char **matched;
83 conflictsfound = 0;
84 code = 0;
85 zapLogDir = 0;
86 LogDir[0] = '\0';
87 strcpy(playpen, FirstPen);
88 inPlace = 0;
90 /* Are we coming in for a second pass, everything already extracted? */
91 if (!pkg) {
92 fgets(playpen, FILENAME_MAX, stdin);
93 playpen[strlen(playpen) - 1] = '\0'; /* pesky newline! */
94 if (chdir(playpen) == FAIL) {
95 warnx("pkg_add in SLAVE mode can't chdir to %s", playpen);
96 return 1;
98 read_plist(&Plist, stdin);
99 where_to = playpen;
101 /* Nope - do it now */
102 else {
103 /* Is it an ftp://foo.bar.baz/file.t[bg]z specification? */
104 if (isURL(pkg)) {
105 if (!(Home = fileGetURL(NULL, pkg, KeepPackage))) {
106 warnx("unable to fetch '%s' by URL", pkg);
107 return 1;
109 where_to = Home;
110 strcpy(pkg_fullname, pkg);
111 cfile = fopen(CONTENTS_FNAME, "r");
112 if (!cfile) {
113 warnx(
114 "unable to open table of contents file '%s' - not a package?",
115 CONTENTS_FNAME);
116 goto bomb;
118 read_plist(&Plist, cfile);
119 fclose(cfile);
121 else {
122 strcpy(pkg_fullname, pkg); /*
123 * Copy for sanity's sake,
124 * could remove pkg_fullname
126 if (strcmp(pkg, "-")) {
127 if (stat(pkg_fullname, &sb) == FAIL) {
128 warnx("can't stat package file '%s'", pkg_fullname);
129 goto bomb;
131 sprintf(extract_contents, "--fast-read %s", CONTENTS_FNAME);
132 extract = extract_contents;
134 else {
135 extract = NULL;
136 sb.st_size = 100000; /* Make up a plausible average size */
138 Home = make_playpen(playpen, sb.st_size * 4);
139 if (!Home)
140 errx(1, "unable to make playpen for %lld bytes", (long long)sb.st_size * 4);
141 where_to = Home;
142 /* Since we can call ourselves recursively, keep notes on where we came from */
143 if (!getenv("_TOP"))
144 setenv("_TOP", Home, 1);
145 if (unpack(pkg_fullname, extract)) {
146 warnx(
147 "unable to extract table of contents file from '%s' - not a package?",
148 pkg_fullname);
149 goto bomb;
151 cfile = fopen(CONTENTS_FNAME, "r");
152 if (!cfile) {
153 warnx(
154 "unable to open table of contents file '%s' - not a package?",
155 CONTENTS_FNAME);
156 goto bomb;
158 read_plist(&Plist, cfile);
159 fclose(cfile);
161 /* Extract directly rather than moving? Oh goodie! */
162 if (find_plist_option(&Plist, "extract-in-place")) {
163 if (Verbose)
164 printf("Doing in-place extraction for %s\n", pkg_fullname);
165 p = find_plist(&Plist, PLIST_CWD);
166 if (p) {
167 if (!isdir(p->name) && !Fake) {
168 if (Verbose)
169 printf("Desired prefix of %s does not exist, creating..\n", p->name);
170 vsystem("/bin/mkdir -p %s", p->name);
171 if (chdir(p->name) == -1) {
172 warn("unable to change directory to '%s'", p->name);
173 goto bomb;
176 where_to = p->name;
177 inPlace = 1;
179 else {
180 warnx(
181 "no prefix specified in '%s' - this is a bad package!",
182 pkg_fullname);
183 goto bomb;
188 * Apply a crude heuristic to see how much space the package will
189 * take up once it's unpacked. I've noticed that most packages
190 * compress an average of 75%, so multiply by 4 for good measure.
193 if (!extract && !inPlace && min_free(playpen) < sb.st_size * 4) {
194 warnx("projected size of %lld exceeds available free space.\n"
195 "Please set your PKG_TMPDIR variable to point to a location with more\n"
196 "free space and try again", (long long)sb.st_size * 4);
197 warnx("not extracting %s\ninto %s, sorry!",
198 pkg_fullname, where_to);
199 goto bomb;
202 /* If this is a direct extract and we didn't want it, stop now */
203 if (inPlace && Fake)
204 goto success;
206 /* Finally unpack the whole mess. If extract is null we
207 already + did so so don't bother doing it again. */
208 if (extract && unpack(pkg_fullname, NULL)) {
209 warnx("unable to extract '%s'!", pkg_fullname);
210 goto bomb;
214 /* Check for sanity and dependencies */
215 if (sanity_check(pkg))
216 goto bomb;
218 /* If we're running in MASTER mode, just output the plist and return */
219 if (AddMode == MASTER) {
220 printf("%s\n", where_playpen());
221 write_plist(&Plist, stdout);
222 return 0;
227 * If we have a prefix, delete the first one we see and add this
228 * one in place of it.
230 if (Prefix) {
231 delete_plist(&Plist, FALSE, PLIST_CWD, NULL);
232 add_plist_top(&Plist, PLIST_CWD, Prefix);
235 setenv(PKG_PREFIX_VNAME, (p = find_plist(&Plist, PLIST_CWD)) ? p->name : ".", 1);
236 /* Protect against old packages with bogus @name and origin fields */
237 if (Plist.name == NULL)
238 Plist.name = "anonymous";
239 if (Plist.origin == NULL)
240 Plist.origin = "anonymous/anonymous";
243 * See if we're already registered either with the same name (the same
244 * version) or some other version with the same origin.
246 if ((isinstalledpkg(Plist.name) > 0 ||
247 matchbyorigin(Plist.origin, NULL) != NULL) && !Force) {
248 warnx("package '%s' or its older version already installed%s",
249 Plist.name, FailOnAlreadyInstalled ? "" : " (ignored)");
250 code = FailOnAlreadyInstalled != FALSE;
251 goto success; /* close enough for government work */
254 /* Now check the packing list for conflicts */
255 if (!IgnoreDeps){
256 for (p = Plist.head; p != NULL; p = p->next) {
257 if (p->type == PLIST_CONFLICTS) {
258 int i;
259 conflict[0] = strdup(p->name);
260 conflict[1] = NULL;
261 matched = matchinstalled(MATCH_GLOB, conflict, &errcode);
262 free(conflict[0]);
263 if (errcode == 0 && matched != NULL)
264 for (i = 0; matched[i] != NULL; i++)
265 if (isinstalledpkg(matched[i]) > 0) {
266 warnx("package '%s' conflicts with %s", Plist.name,
267 matched[i]);
268 conflictsfound = 1;
271 continue;
274 if(conflictsfound) {
275 if(!Force) {
276 warnx("please use pkg_delete first to remove conflicting package(s) or -f to force installation");
277 code = 1;
278 goto bomb;
279 } else
280 warnx("-f specified; proceeding anyway");
283 /* Now check the packing list for dependencies */
284 for (p = Plist.head; p ; p = p->next) {
285 char *deporigin;
287 if (p->type != PLIST_PKGDEP)
288 continue;
289 deporigin = (p->next->type == PLIST_DEPORIGIN) ? p->next->name : NULL;
290 if (Verbose) {
291 printf("Package '%s' depends on '%s'", Plist.name, p->name);
292 if (deporigin != NULL)
293 printf(" with '%s' origin", deporigin);
294 printf(".\n");
296 if (isinstalledpkg(p->name) <= 0 &&
297 !(deporigin != NULL && matchbyorigin(deporigin, NULL) != NULL)) {
298 char path[FILENAME_MAX], *cp = NULL;
300 if (!Fake) {
301 char prefixArg[2 + MAXPATHLEN]; /* "-P" + Prefix */
302 if (PrefixRecursive) {
303 strlcpy(prefixArg, "-P", sizeof(prefixArg));
304 strlcat(prefixArg, Prefix, sizeof(prefixArg));
306 if (!isURL(pkg) && !getenv("PKG_ADD_BASE")) {
307 const char *ext;
309 ext = strrchr(pkg_fullname, '.');
310 if (ext == NULL)
311 ext = ".tbz";
312 snprintf(path, FILENAME_MAX, "%s/%s%s", getenv("_TOP"), p->name, ext);
313 if (fexists(path))
314 cp = path;
315 else
316 cp = fileFindByPath(pkg, p->name);
317 if (cp) {
318 if (Verbose)
319 printf("Loading it from %s.\n", cp);
320 if (vsystem("%s %s %s '%s'", PkgAddCmd, Verbose ? "-v " : "", PrefixRecursive ? prefixArg : "", cp)) {
321 warnx("autoload of dependency '%s' failed%s",
322 cp, Force ? " (proceeding anyway)" : "!");
323 if (!Force)
324 ++code;
327 else {
328 warnx("could not find package %s %s",
329 p->name, Force ? " (proceeding anyway)" : "!");
330 if (!Force)
331 ++code;
334 else if ((cp = fileGetURL(pkg, p->name, KeepPackage)) != NULL) {
335 if (Verbose)
336 printf("Finished loading %s over FTP.\n", p->name);
337 if (!fexists("+CONTENTS")) {
338 warnx("autoloaded package %s has no +CONTENTS file?",
339 p->name);
340 if (!Force)
341 ++code;
343 else if (vsystem("(pwd; /bin/cat +CONTENTS) | %s %s %s %s -S", PkgAddCmd, Verbose ? "-v" : "", PrefixRecursive ? prefixArg : "", KeepPackage ? "-K" : "")) {
344 warnx("pkg_add of dependency '%s' failed%s",
345 p->name, Force ? " (proceeding anyway)" : "!");
346 if (!Force)
347 ++code;
349 else if (Verbose)
350 printf("\t'%s' loaded successfully.\n", p->name);
351 /* Nuke the temporary playpen */
352 leave_playpen();
355 else {
356 if (Verbose)
357 printf("and was not found%s.\n", Force ? " (proceeding anyway)" : "");
358 else
359 printf("Package dependency %s for %s not found%s\n", p->name, pkg,
360 Force ? " (proceeding anyway)" : "!");
361 if (!Force)
362 ++code;
365 else if (Verbose)
366 printf(" - already installed.\n");
368 } /* if (!IgnoreDeps) */
370 if (code != 0)
371 goto bomb;
373 /* Look for the requirements file */
374 if (fexists(REQUIRE_FNAME)) {
375 vsystem("/bin/chmod +x %s", REQUIRE_FNAME); /* be sure */
376 if (Verbose)
377 printf("Running requirements file first for %s..\n", Plist.name);
378 if (!Fake && vsystem("./%s %s INSTALL", REQUIRE_FNAME, Plist.name)) {
379 warnx("package %s fails requirements %s", pkg_fullname,
380 Force ? "installing anyway" : "- not installed");
381 if (!Force) {
382 code = 1;
383 goto success; /* close enough for government work */
389 * Test whether to use the old method of passing tokens to installation
390 * scripts, and set appropriate variables..
393 if (fexists(POST_INSTALL_FNAME)) {
394 new_m = 1;
395 sprintf(post_script, "%s", POST_INSTALL_FNAME);
396 pre_arg[0] = '\0';
397 post_arg[0] = '\0';
398 } else {
399 if (fexists(INSTALL_FNAME)) {
400 sprintf(post_script, "%s", INSTALL_FNAME);
401 sprintf(pre_arg, "PRE-INSTALL");
402 sprintf(post_arg, "POST-INSTALL");
406 /* If we're really installing, and have an installation file, run it */
407 if (!NoInstall && fexists(pre_script)) {
408 vsystem("/bin/chmod +x %s", pre_script); /* make sure */
409 if (Verbose)
410 printf("Running pre-install for %s..\n", Plist.name);
411 if (!Fake && vsystem("./%s %s %s", pre_script, Plist.name, pre_arg)) {
412 warnx("install script returned error status");
413 unlink(pre_script);
414 code = 1;
415 goto success; /* nothing to uninstall yet */
419 /* Now finally extract the entire show if we're not going direct */
420 if (!inPlace && !Fake)
421 extract_plist(".", &Plist);
423 if (!Fake && fexists(MTREE_FNAME)) {
424 if (Verbose)
425 printf("Running mtree for %s..\n", Plist.name);
426 p = find_plist(&Plist, PLIST_CWD);
427 if (Verbose)
428 printf("mtree -U -f %s -d -e -p %s >%s\n", MTREE_FNAME, p ? p->name : "/", _PATH_DEVNULL);
429 if (!Fake) {
430 if (vsystem("/usr/sbin/mtree -U -f %s -d -e -p %s >%s", MTREE_FNAME, p ? p->name : "/", _PATH_DEVNULL))
431 warnx("mtree returned a non-zero status - continuing");
435 /* Run the installation script one last time? */
436 if (!NoInstall && fexists(post_script)) {
437 vsystem("/bin/chmod +x %s", post_script); /* make sure */
438 if (Verbose)
439 printf("Running post-install for %s..\n", Plist.name);
440 if (!Fake && vsystem("./%s %s %s", post_script, Plist.name, post_arg)) {
441 warnx("install script returned error status");
442 unlink(post_script);
443 code = 1;
444 goto fail;
448 /* Time to record the deed? */
449 if (!NoRecord && !Fake) {
450 char contents[FILENAME_MAX];
451 char **depnames = NULL, **deporigins = NULL, ***depmatches;
452 int i, dep_count = 0;
453 FILE *contfile;
455 if (getuid() != 0)
456 warnx("not running as root - trying to record install anyway");
457 sprintf(LogDir, "%s/%s", LOG_DIR, Plist.name);
458 zapLogDir = 1;
459 if (Verbose)
460 printf("Attempting to record package into %s..\n", LogDir);
461 if (make_hierarchy(LogDir)) {
462 warnx("can't record package into '%s', you're on your own!",
463 LogDir);
464 bzero(LogDir, FILENAME_MAX);
465 code = 1;
466 goto success; /* close enough for government work */
468 /* Make sure pkg_info can read the entry */
469 vsystem("/bin/chmod a+rx %s", LogDir);
470 move_file(".", DESC_FNAME, LogDir);
471 move_file(".", COMMENT_FNAME, LogDir);
472 if (fexists(INSTALL_FNAME))
473 move_file(".", INSTALL_FNAME, LogDir);
474 if (fexists(POST_INSTALL_FNAME))
475 move_file(".", POST_INSTALL_FNAME, LogDir);
476 if (fexists(DEINSTALL_FNAME))
477 move_file(".", DEINSTALL_FNAME, LogDir);
478 if (fexists(POST_DEINSTALL_FNAME))
479 move_file(".", POST_DEINSTALL_FNAME, LogDir);
480 if (fexists(REQUIRE_FNAME))
481 move_file(".", REQUIRE_FNAME, LogDir);
482 if (fexists(DISPLAY_FNAME))
483 move_file(".", DISPLAY_FNAME, LogDir);
484 if (fexists(MTREE_FNAME))
485 move_file(".", MTREE_FNAME, LogDir);
486 sprintf(contents, "%s/%s", LogDir, CONTENTS_FNAME);
487 contfile = fopen(contents, "w");
488 if (!contfile) {
489 warnx("can't open new contents file '%s'! can't register pkg",
490 contents);
491 goto success; /* can't log, but still keep pkg */
493 write_plist(&Plist, contfile);
494 fclose(contfile);
495 for (p = Plist.head; p ; p = p->next) {
496 char *deporigin;
498 if (p->type != PLIST_PKGDEP)
499 continue;
500 deporigin = (p->next->type == PLIST_DEPORIGIN) ? p->next->name :
501 NULL;
502 if (Verbose) {
503 printf("Trying to record dependency on package '%s'", p->name);
504 if (deporigin != NULL)
505 printf(" with '%s' origin", deporigin);
506 printf(".\n");
509 if (deporigin) {
510 /* Defer to origin lookup */
511 depnames = realloc(depnames, (dep_count + 1) * sizeof(*depnames));
512 depnames[dep_count] = p->name;
513 deporigins = realloc(deporigins, (dep_count + 2) * sizeof(*deporigins));
514 deporigins[dep_count] = deporigin;
515 deporigins[dep_count + 1] = NULL;
516 dep_count++;
517 } else {
518 /* No origin recorded, try to register on literal package name */
519 sprintf(contents, "%s/%s/%s", LOG_DIR, p->name,
520 REQUIRED_BY_FNAME);
521 contfile = fopen(contents, "a");
522 if (!contfile) {
523 warnx("can't open dependency file '%s'!\n"
524 "dependency registration is incomplete", contents);
525 } else {
526 fprintf(contfile, "%s\n", Plist.name);
527 if (fclose(contfile) == EOF) {
528 warnx("cannot properly close file %s", contents);
533 if (dep_count > 0) {
534 depmatches = matchallbyorigin((const char **)deporigins, NULL);
535 free(deporigins);
536 if (!IgnoreDeps && depmatches) {
537 for (i = 0; i < dep_count; i++) {
538 if (depmatches[i]) {
539 int j;
540 char **tmp = depmatches[i];
541 for (j = 0; tmp[j] != NULL; j++) {
542 /* Origin looked up */
543 sprintf(contents, "%s/%s/%s", LOG_DIR, tmp[j],
544 REQUIRED_BY_FNAME);
545 if (depnames[i] && strcmp(depnames[i], tmp[j]) != 0)
546 warnx("warning: package '%s' requires '%s', but '%s' "
547 "is installed", Plist.name, depnames[i], tmp[j]);
548 contfile = fopen(contents, "a");
549 if (!contfile) {
550 warnx("can't open dependency file '%s'!\n"
551 "dependency registration is incomplete", contents);
552 } else {
553 fprintf(contfile, "%s\n", Plist.name);
554 if (fclose(contfile) == EOF)
555 warnx("cannot properly close file %s", contents);
558 } else if (depnames[i]) {
559 /* No package present with this origin, try literal package name */
560 sprintf(contents, "%s/%s/%s", LOG_DIR, depnames[i],
561 REQUIRED_BY_FNAME);
562 contfile = fopen(contents, "a");
563 if (!contfile) {
564 warnx("can't open dependency file '%s'!\n"
565 "dependency registration is incomplete", contents);
566 } else {
567 fprintf(contfile, "%s\n", Plist.name);
568 if (fclose(contfile) == EOF) {
569 warnx("cannot properly close file %s", contents);
576 if (Verbose)
577 printf("Package %s registered in %s\n", Plist.name, LogDir);
580 if ((p = find_plist(&Plist, PLIST_DISPLAY)) != NULL) {
581 FILE *fp;
582 char buf[BUFSIZ];
584 snprintf(buf, sizeof buf, "%s/%s", LogDir, p->name);
585 fp = fopen(buf, "r");
586 if (fp) {
587 putc('\n', stdout);
588 while (fgets(buf, sizeof(buf), fp))
589 fputs(buf, stdout);
590 putc('\n', stdout);
591 (void) fclose(fp);
592 } else {
593 if (!Fake) {
594 warnx("cannot open %s as display file", buf);
599 goto success;
601 bomb:
602 code = 1;
603 goto success;
605 fail:
606 /* Nuke the whole (installed) show, XXX but don't clean directories */
607 if (!Fake)
608 delete_package(FALSE, FALSE, &Plist);
610 success:
611 /* delete the packing list contents */
612 free_plist(&Plist);
613 leave_playpen();
614 return code;
617 static int
618 sanity_check(char *pkg)
620 int code = 0;
622 if (!fexists(CONTENTS_FNAME)) {
623 warnx("package %s has no CONTENTS file!", pkg);
624 code = 1;
626 else if (!fexists(COMMENT_FNAME)) {
627 warnx("package %s has no COMMENT file!", pkg);
628 code = 1;
630 else if (!fexists(DESC_FNAME)) {
631 warnx("package %s has no DESC file!", pkg);
632 code = 1;
634 return code;
637 void
638 cleanup(int sig)
640 static int in_cleanup = 0;
642 if (!in_cleanup) {
643 in_cleanup = 1;
644 if (sig)
645 printf("Signal %d received, cleaning up..\n", sig);
646 if (!Fake && zapLogDir && LogDir[0])
647 vsystem("%s -rf %s", REMOVE_CMD, LogDir);
648 leave_playpen();
650 if (sig)
651 exit(1);