1995-10-15 12:41:09 +00:00
|
|
|
/*
|
|
|
|
* The new sysinstall program.
|
|
|
|
*
|
|
|
|
* This is probably the last program in the `sysinstall' line - the next
|
|
|
|
* generation being essentially a complete rewrite.
|
|
|
|
*
|
1996-08-03 10:11:56 +00:00
|
|
|
* $Id: package.c,v 1.44 1996/08/01 12:35:51 jkh Exp $
|
1995-10-15 12:41:09 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 1995
|
|
|
|
* Jordan Hubbard. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer,
|
|
|
|
* verbatim and that no modifications are made prior to this
|
|
|
|
* point in the file.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY JORDAN HUBBARD ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL JORDAN HUBBARD OR HIS PETS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, LIFE OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/errno.h>
|
1996-05-23 16:34:30 +00:00
|
|
|
#include <sys/time.h>
|
1995-10-15 12:41:09 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include "sysinstall.h"
|
|
|
|
|
1995-10-22 11:32:58 +00:00
|
|
|
/* Like package_extract, but assumes current media device */
|
|
|
|
int
|
|
|
|
package_add(char *name)
|
|
|
|
{
|
|
|
|
if (!mediaVerify())
|
1996-04-13 13:32:15 +00:00
|
|
|
return DITEM_FAILURE;
|
1996-03-21 09:30:18 +00:00
|
|
|
return package_extract(mediaDevice, name, FALSE);
|
1995-10-22 11:32:58 +00:00
|
|
|
}
|
|
|
|
|
1996-05-16 11:47:46 +00:00
|
|
|
Boolean
|
|
|
|
package_exists(char *name)
|
|
|
|
{
|
1996-06-25 04:28:23 +00:00
|
|
|
char fname[FILENAME_MAX];
|
|
|
|
int status /* = vsystem("pkg_info -e %s", name) */;
|
1996-05-16 11:47:46 +00:00
|
|
|
|
1996-06-25 04:28:23 +00:00
|
|
|
/* XXX KLUDGE ALERT! This makes evil assumptions about how XXX
|
|
|
|
* packages register themselves and should *really be done with
|
|
|
|
* `pkg_info -e <name>' except that this it's too slow for an
|
|
|
|
* item check routine.. :-(
|
|
|
|
*/
|
|
|
|
snprintf(fname, FILENAME_MAX, "/var/db/pkg/%s", name);
|
|
|
|
status = access(fname, R_OK);
|
1996-05-16 11:47:46 +00:00
|
|
|
msgDebug("package check for %s returns %s.\n", name,
|
|
|
|
status ? "failure" : "success");
|
|
|
|
return !status;
|
|
|
|
}
|
|
|
|
|
1996-05-27 22:12:05 +00:00
|
|
|
/* SIGPIPE handler */
|
|
|
|
static Boolean sigpipe_caught = FALSE;
|
|
|
|
|
|
|
|
static void
|
|
|
|
catch_pipe(int sig)
|
|
|
|
{
|
|
|
|
sigpipe_caught = TRUE;
|
|
|
|
}
|
|
|
|
|
1995-10-15 12:41:09 +00:00
|
|
|
/* Extract a package based on a namespec and a media device */
|
|
|
|
int
|
1996-03-21 09:30:18 +00:00
|
|
|
package_extract(Device *dev, char *name, Boolean depended)
|
1995-10-15 12:41:09 +00:00
|
|
|
{
|
|
|
|
char path[511];
|
1995-10-23 13:19:51 +00:00
|
|
|
int fd, ret;
|
1995-10-15 12:41:09 +00:00
|
|
|
|
1995-11-12 11:02:43 +00:00
|
|
|
/* If necessary, initialize the ldconfig hints */
|
|
|
|
if (!file_readable("/var/run/ld.so.hints"))
|
|
|
|
vsystem("ldconfig /usr/lib /usr/local/lib /usr/X11R6/lib");
|
|
|
|
|
1995-10-16 15:14:28 +00:00
|
|
|
/* Check to make sure it's not already there */
|
1996-05-16 11:47:46 +00:00
|
|
|
if (package_exists(name))
|
1996-04-13 13:32:15 +00:00
|
|
|
return DITEM_SUCCESS;
|
1995-10-16 15:14:28 +00:00
|
|
|
|
1995-10-18 00:12:55 +00:00
|
|
|
if (!dev->init(dev)) {
|
1995-10-22 17:18:36 +00:00
|
|
|
msgConfirm("Unable to initialize media type for package extract.");
|
1996-04-13 13:32:15 +00:00
|
|
|
return DITEM_FAILURE;
|
1995-10-18 00:12:55 +00:00
|
|
|
}
|
1995-10-15 12:41:09 +00:00
|
|
|
|
1996-03-21 09:30:18 +00:00
|
|
|
/* Be initially optimistic */
|
1996-04-30 05:40:15 +00:00
|
|
|
ret = DITEM_SUCCESS | DITEM_RESTORE;
|
1995-11-06 12:49:27 +00:00
|
|
|
/* Make a couple of paranoid locations for temp files to live if user specified none */
|
|
|
|
if (!variable_get("PKG_TMPDIR")) {
|
1996-07-08 08:54:36 +00:00
|
|
|
Mkdir("/usr/tmp");
|
|
|
|
Mkdir("/var/tmp");
|
1996-03-18 15:28:10 +00:00
|
|
|
/* Set it to a location with as much space as possible */
|
|
|
|
variable_set2("PKG_TMPDIR", "/usr/tmp");
|
1995-11-06 12:49:27 +00:00
|
|
|
}
|
|
|
|
|
1996-06-29 02:22:48 +00:00
|
|
|
if (!index(name, '/'))
|
|
|
|
sprintf(path, "packages/All/%s%s", name, strstr(name, ".tgz") ? "" : ".tgz");
|
|
|
|
else
|
|
|
|
sprintf(path, "%s%s", name, strstr(name, ".tgz") ? "" : ".tgz");
|
1995-10-18 00:12:55 +00:00
|
|
|
fd = dev->get(dev, path, TRUE);
|
1995-10-15 12:41:09 +00:00
|
|
|
if (fd >= 0) {
|
1996-03-18 15:28:10 +00:00
|
|
|
int i, tot, pfd[2];
|
|
|
|
pid_t pid;
|
|
|
|
|
1996-08-01 12:35:51 +00:00
|
|
|
signal(SIGPIPE, catch_pipe);
|
1996-03-21 09:30:18 +00:00
|
|
|
msgNotify("Adding %s%s\nfrom %s", path, depended ? " (as a dependency)" : "", dev->name);
|
1996-03-18 15:28:10 +00:00
|
|
|
pipe(pfd);
|
|
|
|
pid = fork();
|
|
|
|
if (!pid) {
|
|
|
|
dup2(pfd[0], 0); close(pfd[0]);
|
|
|
|
dup2(DebugFD, 1);
|
1996-04-28 03:27:26 +00:00
|
|
|
close(2);
|
1996-03-18 15:28:10 +00:00
|
|
|
close(pfd[1]);
|
1996-07-09 14:28:22 +00:00
|
|
|
chroot(variable_get(VAR_INSTALL_ROOT));
|
1996-03-18 15:28:10 +00:00
|
|
|
i = execl("/usr/sbin/pkg_add", "/usr/sbin/pkg_add", "-", 0);
|
1995-10-15 12:41:09 +00:00
|
|
|
if (isDebug())
|
1996-03-18 15:28:10 +00:00
|
|
|
msgDebug("pkg_add returns %d status\n", i);
|
1995-10-15 12:41:09 +00:00
|
|
|
}
|
1995-10-22 17:18:36 +00:00
|
|
|
else {
|
1996-03-18 15:28:10 +00:00
|
|
|
char buf[BUFSIZ];
|
1996-04-28 03:27:26 +00:00
|
|
|
WINDOW *w = savescr();
|
1996-05-23 16:34:30 +00:00
|
|
|
struct timeval start, stop;
|
1996-03-18 15:28:10 +00:00
|
|
|
|
1996-04-30 06:13:50 +00:00
|
|
|
close(pfd[0]);
|
1996-03-18 15:28:10 +00:00
|
|
|
tot = 0;
|
1996-05-23 16:34:30 +00:00
|
|
|
(void)gettimeofday(&start, (struct timezone *)0);
|
|
|
|
|
1996-05-27 22:12:05 +00:00
|
|
|
while (!sigpipe_caught && (i = read(fd, buf, BUFSIZ)) > 0) {
|
1996-05-23 16:34:30 +00:00
|
|
|
int seconds;
|
1996-04-13 13:32:15 +00:00
|
|
|
|
1996-03-18 15:28:10 +00:00
|
|
|
tot += i;
|
1996-05-23 16:34:30 +00:00
|
|
|
/* Print statistics about how we're doing */
|
|
|
|
(void) gettimeofday(&stop, (struct timezone *)0);
|
|
|
|
stop.tv_sec = stop.tv_sec - start.tv_sec;
|
|
|
|
stop.tv_usec = stop.tv_usec - start.tv_usec;
|
|
|
|
if (stop.tv_usec < 0)
|
|
|
|
stop.tv_sec--, stop.tv_usec += 1000000;
|
|
|
|
seconds = stop.tv_sec + (stop.tv_usec / 1000000.0);
|
|
|
|
if (!seconds)
|
|
|
|
seconds = 1;
|
1996-07-10 11:38:29 +00:00
|
|
|
msgInfo("%10d bytes read from package %s @ %4.1f KBytes/second", tot, name, (tot / seconds) / 1024.0);
|
1996-05-23 16:34:30 +00:00
|
|
|
/* Write it out */
|
|
|
|
if (write(pfd[1], buf, i) != i) {
|
|
|
|
msgInfo("Write failure to pkg_add! Package may be corrupt.");
|
|
|
|
break;
|
|
|
|
}
|
1996-03-18 15:28:10 +00:00
|
|
|
}
|
|
|
|
close(pfd[1]);
|
1996-04-30 06:13:50 +00:00
|
|
|
dev->close(dev, fd);
|
1996-05-27 22:12:05 +00:00
|
|
|
if (sigpipe_caught)
|
|
|
|
msgDebug("Caught SIGPIPE while trying to install the %s package.\n", name);
|
|
|
|
else
|
|
|
|
msgInfo("Package %s read successfully - waiting for pkg_add", name);
|
1996-03-21 09:30:18 +00:00
|
|
|
refresh();
|
1996-03-18 15:28:10 +00:00
|
|
|
i = waitpid(pid, &tot, 0);
|
1996-05-27 22:12:05 +00:00
|
|
|
if (sigpipe_caught || i < 0 || WEXITSTATUS(tot)) {
|
|
|
|
if (variable_get(VAR_NO_CONFIRM))
|
|
|
|
msgNotify("Add of package %s aborted due to some error -\n"
|
|
|
|
"Please check the debug screen for more info.", name);
|
|
|
|
else
|
|
|
|
msgConfirm("Add of package %s aborted due to some error -\n"
|
|
|
|
"Please check the debug screen for more info.", name);
|
1996-03-18 15:28:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
msgNotify("Package %s was added successfully", name);
|
1996-04-28 03:27:26 +00:00
|
|
|
sleep(1);
|
|
|
|
restorescr(w);
|
1996-05-27 22:12:05 +00:00
|
|
|
sigpipe_caught = FALSE;
|
1995-10-22 17:18:36 +00:00
|
|
|
}
|
1995-10-15 12:41:09 +00:00
|
|
|
}
|
1995-10-22 17:18:36 +00:00
|
|
|
else {
|
1995-10-18 00:12:55 +00:00
|
|
|
msgDebug("pkg_extract: get operation returned %d\n", fd);
|
1996-08-03 10:11:56 +00:00
|
|
|
dialog_clear_norefresh();
|
1995-10-22 17:18:36 +00:00
|
|
|
if (variable_get(VAR_NO_CONFIRM))
|
|
|
|
msgNotify("Unable to fetch package %s from selected media.\n"
|
1995-10-26 08:11:24 +00:00
|
|
|
"No package add will be done.", name);
|
1995-10-22 17:18:36 +00:00
|
|
|
else {
|
|
|
|
msgConfirm("Unable to fetch package %s from selected media.\n"
|
1995-10-26 08:11:24 +00:00
|
|
|
"No package add will be done.", name);
|
1995-10-22 17:18:36 +00:00
|
|
|
}
|
1996-04-30 05:40:15 +00:00
|
|
|
ret = DITEM_FAILURE | DITEM_RESTORE;
|
1995-10-22 17:18:36 +00:00
|
|
|
}
|
1996-04-28 03:27:26 +00:00
|
|
|
return ret;
|
1995-10-15 12:41:09 +00:00
|
|
|
}
|