mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
343 lines
9.8 KiB
C++
343 lines
9.8 KiB
C++
/*******************************************************************************
|
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2013.
|
|
|
|
This file is part of Tix.
|
|
|
|
Tix is free software: you can redistribute it and/or modify it under the
|
|
terms of the GNU General Public License as published by the Free Software
|
|
Foundation, either version 3 of the License, or (at your option) any later
|
|
version.
|
|
|
|
Tix is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
details.
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
Tix. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
tix-install.cpp
|
|
Install a tix into a tix collection.
|
|
|
|
*******************************************************************************/
|
|
|
|
#define __STDC_CONSTANT_MACROS
|
|
#define __STDC_LIMIT_MACROS
|
|
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <error.h>
|
|
#include <errno.h>
|
|
#include <dirent.h>
|
|
#include <fcntl.h>
|
|
#include <limits.h>
|
|
#include <signal.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "util.h"
|
|
|
|
void TipTixCollection(const char* prefix)
|
|
{
|
|
error(0, 0, "error: `%s' isn't a tix collection, use tix-collection before "
|
|
"installing packages.", prefix);
|
|
}
|
|
|
|
void TipTixWrongPlatform(const char* prefix, const char* platform)
|
|
{
|
|
error(0, 0, "error: `%s' isn't a tix collection for platform `%s', use "
|
|
"tix-collection to add this platform before installing "
|
|
"packages.", prefix, platform);
|
|
}
|
|
|
|
void VerifyTixCollection(const char* prefix)
|
|
{
|
|
if ( !IsDirectory(prefix) )
|
|
{
|
|
if ( errno == ENOENT )
|
|
TipTixCollection(prefix);
|
|
error(1, errno, "error: tix collection unavailable: `%s'", prefix);
|
|
}
|
|
}
|
|
|
|
void VerifyTixDirectory(const char* prefix, const char* tix_dir)
|
|
{
|
|
if ( !IsDirectory(tix_dir) )
|
|
{
|
|
if ( errno == ENOENT )
|
|
TipTixCollection(prefix);
|
|
error(1, errno, "error: tix database unavailable: `%s'", tix_dir);
|
|
}
|
|
}
|
|
|
|
void VerifyTixDatabase(const char* prefix,
|
|
const char* tixdb_path,
|
|
const char* platform)
|
|
{
|
|
if ( !IsDirectory(tixdb_path) )
|
|
{
|
|
if ( errno == ENOENT )
|
|
TipTixWrongPlatform(prefix, platform);
|
|
error(1, errno, "error: tix database for platform `%s' unavailable: "
|
|
"`%s'", platform, tixdb_path);
|
|
}
|
|
char* info_path = join_paths(tixdb_path, "collection.conf");
|
|
if ( !IsFile(info_path) )
|
|
{
|
|
if ( errno == ENOENT )
|
|
TipTixCollection(prefix);
|
|
error(1, errno, "error: tix collection information unavailable: `%s'",
|
|
info_path);
|
|
}
|
|
char* installed_list_path = join_paths(tixdb_path, "installed.list");
|
|
FILE* installed_list_fp = fopen(installed_list_path, "a");
|
|
if ( !installed_list_fp )
|
|
{
|
|
error(0, errno, "error: unable to open `%s' for writing",
|
|
installed_list_path);
|
|
error(1, 0, "error: `%s': do you have sufficient permissions to "
|
|
"administer this tix collection?", prefix);
|
|
}
|
|
fclose(installed_list_fp);
|
|
free(installed_list_path);
|
|
free(info_path);
|
|
}
|
|
|
|
bool IsPackageInstalled(const char* tixdb_path, const char* package)
|
|
{
|
|
char* installed_list_path = join_paths(tixdb_path, "installed.list");
|
|
FILE* installed_list_fp = fopen(installed_list_path, "r");
|
|
if ( !installed_list_fp )
|
|
error(1, errno, "`%s'", installed_list_path);
|
|
|
|
bool ret = false;
|
|
char* line = NULL;
|
|
size_t line_size;
|
|
ssize_t line_len;
|
|
while ( 0 < (line_len = getline(&line, &line_size, installed_list_fp)) )
|
|
{
|
|
if ( line_len && line[line_len-1] == '\n' )
|
|
line[--line_len] = '\0';
|
|
if ( !strcmp(line, package) )
|
|
{
|
|
ret = true;
|
|
break;
|
|
}
|
|
}
|
|
free(line);
|
|
|
|
fclose(installed_list_fp);
|
|
free(installed_list_path);
|
|
return ret;
|
|
}
|
|
|
|
void MarkPackageAsInstalled(const char* tixdb_path, const char* package)
|
|
{
|
|
char* installed_list_path = join_paths(tixdb_path, "installed.list");
|
|
FILE* installed_list_fp = fopen(installed_list_path, "a");
|
|
if ( !installed_list_fp )
|
|
error(1, errno, "`%s'", installed_list_path);
|
|
|
|
fprintf(installed_list_fp, "%s\n", package);
|
|
fflush(installed_list_fp);
|
|
|
|
if ( ferror(installed_list_fp) || fclose(installed_list_fp) == EOF )
|
|
error(1, errno, "`%s'", installed_list_path);
|
|
free(installed_list_path);
|
|
}
|
|
|
|
void Usage(FILE* fp, const char* argv0)
|
|
{
|
|
fprintf(fp, "Usage: %s [OPTION]... --collection=PREFIX PACKAGE\n", argv0);
|
|
fprintf(fp, "Install a tix into a tix collection.\n");
|
|
}
|
|
|
|
void Help(FILE* fp, const char* argv0)
|
|
{
|
|
Usage(fp, argv0);
|
|
}
|
|
|
|
void Version(FILE* fp, const char* argv0)
|
|
{
|
|
Usage(fp, argv0);
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
char* collection = strdup_null(getenv_def("TIX_COLLECTION", NULL));
|
|
char* prefix = strdup_null(getenv_def("TIX_COLLECTION_PREFIX", NULL));
|
|
char* tar = strdup(getenv_def("TAR", "tar"));
|
|
bool reinstall = false;
|
|
|
|
const char* argv0 = argv[0];
|
|
for ( int i = 0; i < argc; i++ )
|
|
{
|
|
const char* arg = argv[i];
|
|
if ( arg[0] != '-' )
|
|
continue;
|
|
argv[i] = NULL;
|
|
if ( !strcmp(arg, "--") )
|
|
break;
|
|
if ( arg[1] != '-' )
|
|
{
|
|
while ( char c = *++arg ) switch ( c )
|
|
{
|
|
default:
|
|
fprintf(stderr, "%s: unknown option -- `%c'\n", argv0, c);
|
|
Usage(stderr, argv0);
|
|
exit(1);
|
|
}
|
|
}
|
|
else if ( !strcmp(arg, "--help") ) { Help(stdout, argv0); exit(0); }
|
|
else if ( !strcmp(arg, "--usage") ) { Usage(stdout, argv0); exit(0); }
|
|
else if ( !strcmp(arg, "--version") ) { Version(stdout, argv0); exit(0); }
|
|
else if ( GET_OPTION_VARIABLE("--collection", &collection) ) { }
|
|
else if ( GET_OPTION_VARIABLE("--prefix", &prefix) ) { }
|
|
else if ( GET_OPTION_VARIABLE("--tar", &tar) ) { }
|
|
else if ( !strcmp(arg, "--reinstall") ) { reinstall = true; }
|
|
else
|
|
{
|
|
fprintf(stderr, "%s: unknown option: `%s'\n", argv0, arg);
|
|
Usage(stderr, argv0);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
if ( argc == 1 )
|
|
{
|
|
Usage(stdout, argv0);
|
|
exit(0);
|
|
}
|
|
|
|
CompactArguments(&argc, &argv);
|
|
|
|
if ( argc <= 1 )
|
|
{
|
|
fprintf(stderr, "%s: no package specified\n", argv0);
|
|
Usage(stderr, argv0);
|
|
exit(1);
|
|
}
|
|
|
|
if ( !collection && prefix )
|
|
collection = strdup(prefix);
|
|
|
|
if ( !collection )
|
|
{
|
|
fprintf(stderr, "%s: no collection prefix specified, use --collection "
|
|
"or TIX_COLLECTION to specify where the package will "
|
|
"installed.\n", argv0);
|
|
Usage(stderr, argv0);
|
|
exit(1);
|
|
}
|
|
|
|
if ( !prefix )
|
|
prefix = strdup(collection);
|
|
|
|
if ( strcmp(collection, prefix) != 0 )
|
|
error(1, 0, "error: desired collection `%s' isn't equal to desired "
|
|
"prefix `%s', which isn't supported (and dangerous).\n",
|
|
collection, prefix);
|
|
|
|
if ( !*collection )
|
|
collection = strdup("/");
|
|
|
|
VerifyTixCollection(collection);
|
|
|
|
char* tix_directory_path = join_paths(collection, "tix");
|
|
|
|
VerifyTixDirectory(collection, tix_directory_path);
|
|
|
|
char* tix_path = strdup(argv[1]);
|
|
if ( !IsFile(tix_path) )
|
|
error(1, errno, "`%s'", tix_path);
|
|
|
|
const char* tixinfo_path = "tix/tixinfo";
|
|
if ( !TarContainsFile(tar, tix_path, tixinfo_path) )
|
|
error(1, 0, "`%s' doesn't contain a `%s' file", tix_path, tixinfo_path);
|
|
|
|
string_array_t tixinfo = string_array_make();
|
|
FILE* tixinfo_fp = TarOpenFile(tar, tix_path, tixinfo_path);
|
|
dictionary_append_file(&tixinfo, tixinfo_fp);
|
|
fclose(tixinfo_fp);
|
|
|
|
const char* package_name = dictionary_get(&tixinfo, "pkg.name");
|
|
assert(package_name);
|
|
|
|
const char* package_prefix = dictionary_get(&tixinfo, "pkg.prefix");
|
|
|
|
const char* package_platform = dictionary_get(&tixinfo, "tix.platform");
|
|
assert(package_platform);
|
|
|
|
char* tixdb_path = join_paths(tix_directory_path, package_platform);
|
|
free(tix_directory_path);
|
|
|
|
VerifyTixDatabase(collection, tixdb_path, package_platform);
|
|
|
|
char* coll_conf_path = join_paths(tixdb_path, "collection.conf");
|
|
string_array_t coll_conf = string_array_make();
|
|
if ( !dictionary_append_file_path(&coll_conf, coll_conf_path) )
|
|
error(1, errno, "`%s'", coll_conf_path);
|
|
VerifyTixCollectionConfiguration(&coll_conf, coll_conf_path);
|
|
free(coll_conf_path);
|
|
|
|
const char* coll_prefix = dictionary_get(&coll_conf, "collection.prefix");
|
|
assert(coll_prefix);
|
|
const char* coll_platform = dictionary_get(&coll_conf, "collection.platform");
|
|
assert(coll_platform);
|
|
|
|
bool already_installed = IsPackageInstalled(tixdb_path, package_name);
|
|
if ( already_installed && !reinstall )
|
|
error(1, 0, "error: package `%s' is already installed.", package_name);
|
|
|
|
if ( package_prefix && strcmp(coll_prefix, package_prefix) != 0 )
|
|
{
|
|
error(0, errno, "error: `%s' is compiled with the prefix `%s', but the "
|
|
"destination collection has the prefix `%s'.", tix_path,
|
|
package_prefix, coll_prefix);
|
|
error(1, errno, "you need to recompile the package with "
|
|
"--prefix=\"%s\".", coll_prefix);
|
|
}
|
|
|
|
if ( strcmp(coll_platform, package_platform) != 0 )
|
|
{
|
|
error(0, errno, "error: `%s' is compiled with the platform `%s', but "
|
|
"the destination collection has the platform `%s'.",
|
|
tix_path, package_platform, coll_platform);
|
|
error(1, errno, "you need to recompile the package with "
|
|
"--host=%s\".", coll_platform);
|
|
}
|
|
|
|
printf("Installing `%s' into `%s'...\n", package_name, prefix);
|
|
char* data_and_prefix = package_prefix && prefix[0] ?
|
|
print_string("data%s", package_prefix) :
|
|
strdup("data");
|
|
if ( fork_and_wait_or_death() )
|
|
{
|
|
size_t num_strips = count_tar_components(data_and_prefix);
|
|
const char* cmd_argv[] =
|
|
{
|
|
tar,
|
|
print_string("--strip-components=%zu", num_strips),
|
|
"-C", prefix,
|
|
"--extract",
|
|
"--file", tix_path,
|
|
data_and_prefix,
|
|
NULL
|
|
};
|
|
execvp(cmd_argv[0], (char* const*) cmd_argv);
|
|
error(127, errno, "%s", cmd_argv[0]);
|
|
}
|
|
free(data_and_prefix);
|
|
|
|
if ( !already_installed )
|
|
MarkPackageAsInstalled(tixdb_path, package_name);
|
|
}
|