1993-08-26 01:19:55 +00:00
|
|
|
#ifndef lint
|
1997-10-08 07:48:21 +00:00
|
|
|
static const char rcsid[] =
|
1999-08-28 01:35:59 +00:00
|
|
|
"$FreeBSD$";
|
1993-08-26 01:19:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* FreeBSD install - a package for the installation and maintainance
|
|
|
|
* of non-core utilities.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Jordan K. Hubbard
|
|
|
|
* 18 July 1993
|
|
|
|
*
|
|
|
|
* This is the add module.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1997-10-08 07:48:21 +00:00
|
|
|
#include <err.h>
|
1995-11-12 04:55:40 +00:00
|
|
|
#include <sys/param.h>
|
1999-06-14 21:58:59 +00:00
|
|
|
#include <sys/utsname.h>
|
1993-08-26 01:19:55 +00:00
|
|
|
#include "lib.h"
|
|
|
|
#include "add.h"
|
|
|
|
|
1999-06-24 06:33:24 +00:00
|
|
|
static char Options[] = "hvIRfnrp:SMt:";
|
1993-08-26 01:19:55 +00:00
|
|
|
|
|
|
|
char *Prefix = NULL;
|
|
|
|
Boolean NoInstall = FALSE;
|
|
|
|
Boolean NoRecord = FALSE;
|
1999-01-17 01:22:55 +00:00
|
|
|
Boolean Remote = FALSE;
|
1993-08-26 01:19:55 +00:00
|
|
|
|
|
|
|
char *Mode = NULL;
|
|
|
|
char *Owner = NULL;
|
|
|
|
char *Group = NULL;
|
|
|
|
char *PkgName = NULL;
|
|
|
|
char *Directory = NULL;
|
1995-10-25 15:38:37 +00:00
|
|
|
char FirstPen[FILENAME_MAX];
|
1993-09-05 04:53:51 +00:00
|
|
|
add_mode_t AddMode = NORMAL;
|
1993-08-26 01:19:55 +00:00
|
|
|
|
1995-11-12 04:55:40 +00:00
|
|
|
#define MAX_PKGS 20
|
|
|
|
char pkgnames[MAX_PKGS][MAXPATHLEN];
|
|
|
|
char *pkgs[MAX_PKGS];
|
|
|
|
|
1999-09-25 03:02:08 +00:00
|
|
|
static char *getpackagesite(void);
|
1999-01-17 01:22:55 +00:00
|
|
|
int getosreldate(void);
|
|
|
|
|
1997-10-08 07:48:21 +00:00
|
|
|
static void usage __P((void));
|
|
|
|
|
1993-08-26 01:19:55 +00:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int ch, err;
|
1995-11-12 04:55:40 +00:00
|
|
|
char **start;
|
1997-10-08 07:48:21 +00:00
|
|
|
char *cp;
|
1993-08-26 01:19:55 +00:00
|
|
|
|
1999-01-17 01:22:55 +00:00
|
|
|
char *remotepkg = NULL, *ptr;
|
1999-11-18 23:32:43 +00:00
|
|
|
static char temppackageroot[MAXPATHLEN];
|
1999-01-17 01:22:55 +00:00
|
|
|
|
1995-11-12 04:55:40 +00:00
|
|
|
start = argv;
|
1997-03-31 05:11:47 +00:00
|
|
|
while ((ch = getopt(argc, argv, Options)) != -1) {
|
1993-08-26 01:19:55 +00:00
|
|
|
switch(ch) {
|
|
|
|
case 'v':
|
|
|
|
Verbose = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
Prefix = optarg;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'I':
|
|
|
|
NoInstall = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'R':
|
|
|
|
NoRecord = TRUE;
|
|
|
|
break;
|
|
|
|
|
1994-12-06 00:51:50 +00:00
|
|
|
case 'f':
|
|
|
|
Force = TRUE;
|
|
|
|
break;
|
|
|
|
|
1993-08-26 01:19:55 +00:00
|
|
|
case 'n':
|
|
|
|
Fake = TRUE;
|
|
|
|
Verbose = TRUE;
|
|
|
|
break;
|
|
|
|
|
1999-01-17 01:22:55 +00:00
|
|
|
case 'r':
|
|
|
|
Remote = TRUE;
|
|
|
|
break;
|
|
|
|
|
1993-09-05 04:53:51 +00:00
|
|
|
case 't':
|
1995-10-25 15:38:37 +00:00
|
|
|
strcpy(FirstPen, optarg);
|
1993-09-05 04:53:51 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'S':
|
|
|
|
AddMode = SLAVE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'M':
|
|
|
|
AddMode = MASTER;
|
|
|
|
break;
|
|
|
|
|
1993-08-26 01:19:55 +00:00
|
|
|
case 'h':
|
|
|
|
case '?':
|
|
|
|
default:
|
1997-10-08 07:48:21 +00:00
|
|
|
usage();
|
1993-08-26 01:19:55 +00:00
|
|
|
break;
|
|
|
|
}
|
1995-11-12 04:55:40 +00:00
|
|
|
}
|
1995-05-30 03:57:47 +00:00
|
|
|
argc -= optind;
|
1993-08-26 01:19:55 +00:00
|
|
|
argv += optind;
|
|
|
|
|
1995-11-12 04:55:40 +00:00
|
|
|
if (argc > MAX_PKGS) {
|
1997-10-08 07:48:21 +00:00
|
|
|
warnx("too many packages (max %d)", MAX_PKGS);
|
1995-11-12 04:55:40 +00:00
|
|
|
return(1);
|
|
|
|
}
|
1993-08-26 01:19:55 +00:00
|
|
|
|
1995-11-12 04:55:40 +00:00
|
|
|
if (AddMode != SLAVE) {
|
|
|
|
for (ch = 0; ch < MAX_PKGS; pkgs[ch++] = NULL) ;
|
|
|
|
|
|
|
|
/* Get all the remaining package names, if any */
|
|
|
|
for (ch = 0; *argv; ch++, argv++) {
|
1999-01-17 01:22:55 +00:00
|
|
|
if (Remote) {
|
2001-02-13 09:49:14 +00:00
|
|
|
strcpy(temppackageroot, getpackagesite());
|
1999-11-18 23:32:43 +00:00
|
|
|
remotepkg = strcat(temppackageroot, *argv);
|
1999-01-18 03:54:17 +00:00
|
|
|
if (!((ptr = strrchr(remotepkg, '.')) && ptr[1] == 't' &&
|
|
|
|
ptr[2] == 'g' && ptr[3] == 'z' && !ptr[4]))
|
1999-01-17 01:22:55 +00:00
|
|
|
strcat(remotepkg, ".tgz");
|
|
|
|
}
|
1996-03-12 06:12:43 +00:00
|
|
|
if (!strcmp(*argv, "-")) /* stdin? */
|
|
|
|
pkgs[ch] = "-";
|
|
|
|
else if (isURL(*argv)) /* preserve URLs */
|
1995-11-12 04:55:40 +00:00
|
|
|
pkgs[ch] = strcpy(pkgnames[ch], *argv);
|
1999-01-17 01:22:55 +00:00
|
|
|
else if ((Remote) && isURL(remotepkg))
|
|
|
|
pkgs[ch] = strcpy(pkgnames[ch], remotepkg);
|
1995-11-12 04:55:40 +00:00
|
|
|
else { /* expand all pathnames to fullnames */
|
|
|
|
if (fexists(*argv)) /* refers to a file directly */
|
|
|
|
pkgs[ch] = realpath(*argv, pkgnames[ch]);
|
|
|
|
else { /* look for the file in the expected places */
|
|
|
|
if (!(cp = fileFindByPath(NULL, *argv)))
|
1997-10-08 07:48:21 +00:00
|
|
|
warnx("can't find package '%s'", *argv);
|
1995-11-12 04:55:40 +00:00
|
|
|
else
|
|
|
|
pkgs[ch] = strcpy(pkgnames[ch], cp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1993-08-26 01:19:55 +00:00
|
|
|
/* If no packages, yelp */
|
1998-09-08 10:42:26 +00:00
|
|
|
else if (!ch) {
|
|
|
|
warnx("missing package name(s)");
|
1997-10-08 07:48:21 +00:00
|
|
|
usage();
|
1998-09-08 10:42:26 +00:00
|
|
|
}
|
|
|
|
else if (ch > 1 && AddMode == MASTER) {
|
|
|
|
warnx("only one package name may be specified with master mode");
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
/* Make sure the sub-execs we invoke get found */
|
2001-04-26 06:48:59 +00:00
|
|
|
setenv("PATH",
|
|
|
|
"/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin",
|
|
|
|
1);
|
1998-09-14 19:22:59 +00:00
|
|
|
|
|
|
|
/* Set a reasonable umask */
|
|
|
|
umask(022);
|
|
|
|
|
1997-09-18 14:08:40 +00:00
|
|
|
if ((err = pkg_perform(pkgs)) != 0) {
|
1993-08-26 01:19:55 +00:00
|
|
|
if (Verbose)
|
1997-10-08 07:48:21 +00:00
|
|
|
warnx("%d package addition(s) failed", err);
|
1993-08-26 01:19:55 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-01-18 03:54:17 +00:00
|
|
|
static char *
|
1999-09-25 03:02:08 +00:00
|
|
|
getpackagesite(void)
|
1999-01-17 01:22:55 +00:00
|
|
|
{
|
|
|
|
int reldate;
|
1999-06-14 21:58:59 +00:00
|
|
|
static char sitepath[MAXPATHLEN];
|
|
|
|
struct utsname u;
|
1999-01-17 01:22:55 +00:00
|
|
|
|
2001-02-13 09:49:14 +00:00
|
|
|
if (getenv("PACKAGESITE")) {
|
|
|
|
strcpy(sitepath, getenv("PACKAGESITE"));
|
|
|
|
return sitepath;
|
|
|
|
}
|
|
|
|
|
2001-04-25 19:11:09 +00:00
|
|
|
if (getenv("PACKAGEROOT"))
|
2001-05-09 01:37:49 +00:00
|
|
|
strcpy(sitepath, getenv("PACKAGEROOT"));
|
2001-04-25 19:11:09 +00:00
|
|
|
else
|
2001-05-09 01:37:49 +00:00
|
|
|
strcpy(sitepath, "ftp://ftp.FreeBSD.org");
|
2001-04-25 19:11:09 +00:00
|
|
|
|
2001-05-09 01:37:49 +00:00
|
|
|
strcat(sitepath, "/pub/FreeBSD/ports/");
|
1999-01-17 01:22:55 +00:00
|
|
|
|
1999-06-14 21:58:59 +00:00
|
|
|
uname(&u);
|
2001-02-13 09:49:14 +00:00
|
|
|
strcat(sitepath, u.machine);
|
1999-06-14 21:58:59 +00:00
|
|
|
|
2001-02-13 09:49:14 +00:00
|
|
|
reldate = getosreldate();
|
2001-02-17 20:04:41 +00:00
|
|
|
if (reldate == 410000)
|
|
|
|
strcat(sitepath, "/packages-4.1-release");
|
|
|
|
else if (reldate == 420000)
|
|
|
|
strcat(sitepath, "/packages-4.2-release");
|
|
|
|
else if (reldate == 430000)
|
|
|
|
strcat(sitepath, "/packages-4.3-release");
|
|
|
|
else if (reldate == 440000)
|
|
|
|
strcat(sitepath, "/packages-4.4-release");
|
|
|
|
else if (reldate == 450000)
|
|
|
|
strcat(sitepath, "/packages-4.5-release");
|
|
|
|
else if (300000 <= reldate && reldate <= 399000)
|
|
|
|
strcat(sitepath, "/packages-3-stable");
|
|
|
|
else if (400000 <= reldate && reldate <= 499000)
|
|
|
|
strcat(sitepath, "/packages-4-stable");
|
|
|
|
else if (510000 <= reldate && reldate <= 599000) /* get real values!! */
|
2001-02-13 09:49:14 +00:00
|
|
|
strcat(sitepath, "/packages-5-stable");
|
2001-02-17 20:04:41 +00:00
|
|
|
else
|
2001-02-13 09:49:14 +00:00
|
|
|
strcat(sitepath, "/packages-current");
|
|
|
|
|
|
|
|
strcat(sitepath, "/Latest/");
|
1999-06-14 21:58:59 +00:00
|
|
|
|
|
|
|
return sitepath;
|
1999-01-17 01:22:55 +00:00
|
|
|
|
|
|
|
}
|
1999-01-18 03:54:17 +00:00
|
|
|
|
1997-10-08 07:48:21 +00:00
|
|
|
static void
|
|
|
|
usage()
|
1993-08-26 01:19:55 +00:00
|
|
|
{
|
1997-10-08 07:48:21 +00:00
|
|
|
fprintf(stderr, "%s\n%s\n",
|
1999-01-17 01:22:55 +00:00
|
|
|
"usage: pkg_add [-vInrfRMS] [-t template] [-p prefix]",
|
1997-10-08 07:48:21 +00:00
|
|
|
" pkg-name [pkg-name ...]");
|
1993-08-26 01:19:55 +00:00
|
|
|
exit(1);
|
|
|
|
}
|