mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
379 lines
10 KiB
C
379 lines
10 KiB
C
/*
|
|
* Copyright (c) 2013, 2015, 2016 Jonas 'Sortie' Termansen.
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* tix-install.c
|
|
* Install a tix into a tix collection.
|
|
*/
|
|
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <err.h>
|
|
#include <errno.h>
|
|
#include <dirent.h>
|
|
#include <fcntl.h>
|
|
#include <limits.h>
|
|
#include <signal.h>
|
|
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "util.h"
|
|
|
|
void TipTixCollection(const char* prefix)
|
|
{
|
|
warnx("error: `%s' isn't a tix collection, use \"tix-collection %s "
|
|
"create\" before " "installing packages.", prefix, prefix);
|
|
}
|
|
|
|
void VerifyTixCollection(const char* prefix)
|
|
{
|
|
if ( !IsDirectory(prefix) )
|
|
{
|
|
if ( errno == ENOENT )
|
|
TipTixCollection(prefix);
|
|
err(1, "error: tix collection unavailable: `%s'", prefix);
|
|
}
|
|
}
|
|
|
|
void VerifyTixDirectory(const char* prefix, const char* tix_dir)
|
|
{
|
|
if ( !IsDirectory(tix_dir) )
|
|
{
|
|
if ( errno == ENOENT )
|
|
TipTixCollection(prefix);
|
|
err(1, "error: tix database unavailable: `%s'", tix_dir);
|
|
}
|
|
}
|
|
|
|
void VerifyTixDatabase(const char* prefix,
|
|
const char* tixdb_path)
|
|
{
|
|
if ( !IsDirectory(tixdb_path) )
|
|
err(1, "error: tix database unavailable: `%s'", tixdb_path);
|
|
char* info_path = join_paths(tixdb_path, "collection.conf");
|
|
if ( !IsFile(info_path) )
|
|
{
|
|
if ( errno == ENOENT )
|
|
TipTixCollection(prefix);
|
|
err(1, "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 )
|
|
{
|
|
warn("error: unable to open `%s' for writing",
|
|
installed_list_path);
|
|
errx(1, "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 )
|
|
err(1, "`%s'", installed_list_path);
|
|
|
|
bool ret = false;
|
|
char* line = NULL;
|
|
size_t line_size = 0;
|
|
ssize_t line_len;
|
|
while ( 0 < (line_len = getline(&line, &line_size, installed_list_fp)) )
|
|
{
|
|
if ( line[line_len-1] == '\n' )
|
|
line[--line_len] = '\0';
|
|
if ( !strcmp(line, package) )
|
|
{
|
|
ret = true;
|
|
break;
|
|
}
|
|
}
|
|
free(line);
|
|
if ( ferror(installed_list_fp) )
|
|
err(1, "`%s'", installed_list_path);
|
|
|
|
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 )
|
|
err(1, "`%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 )
|
|
err(1, "`%s'", installed_list_path);
|
|
free(installed_list_path);
|
|
}
|
|
|
|
static void help(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");
|
|
}
|
|
|
|
static void version(FILE* fp, const char* argv0)
|
|
{
|
|
fprintf(fp, "%s (Sortix) %s\n", argv0, VERSIONSTR);
|
|
}
|
|
|
|
static char* collection = NULL;
|
|
static bool reinstall = false;
|
|
static bool quiet = false;
|
|
static char* tix_directory_path = NULL;
|
|
static int generation;
|
|
static const char* coll_prefix;
|
|
static const char* coll_platform;
|
|
|
|
void InstallPackage(const char* tix_path);
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
collection = strdup("/");
|
|
|
|
const char* argv0 = argv[0];
|
|
for ( int i = 0; i < argc; i++ )
|
|
{
|
|
const char* arg = argv[i];
|
|
if ( arg[0] != '-' || !arg[1] )
|
|
continue;
|
|
argv[i] = NULL;
|
|
if ( !strcmp(arg, "--") )
|
|
break;
|
|
if ( arg[1] != '-' )
|
|
{
|
|
char c;
|
|
while ( (c = *++arg) ) switch ( c )
|
|
{
|
|
case 'q': quiet = true; break;
|
|
default:
|
|
fprintf(stderr, "%s: unknown option -- '%c'\n", argv0, c);
|
|
help(stderr, argv0);
|
|
exit(1);
|
|
}
|
|
}
|
|
else if ( !strcmp(arg, "--help") )
|
|
help(stdout, argv0), exit(0);
|
|
else if ( !strcmp(arg, "--version") )
|
|
version(stdout, argv0), exit(0);
|
|
else if ( GET_OPTION_VARIABLE("--collection", &collection) ) { }
|
|
else if ( !strcmp(arg, "--reinstall") )
|
|
reinstall = true;
|
|
else if ( !strcmp(arg, "--quiet") )
|
|
quiet = true;
|
|
else
|
|
{
|
|
fprintf(stderr, "%s: unknown option: %s\n", argv0, arg);
|
|
help(stderr, argv0);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
if ( argc == 1 )
|
|
{
|
|
help(stdout, argv0);
|
|
exit(0);
|
|
}
|
|
|
|
compact_arguments(&argc, &argv);
|
|
|
|
if ( argc <= 1 )
|
|
{
|
|
fprintf(stderr, "%s: no package specified\n", argv0);
|
|
exit(1);
|
|
}
|
|
|
|
if ( !*collection )
|
|
{
|
|
free(collection);
|
|
collection = strdup("/");
|
|
}
|
|
|
|
VerifyTixCollection(collection);
|
|
|
|
tix_directory_path = join_paths(collection, "tix");
|
|
VerifyTixDirectory(collection, tix_directory_path);
|
|
VerifyTixDatabase(collection, tix_directory_path);
|
|
|
|
char* coll_conf_path = join_paths(tix_directory_path, "collection.conf");
|
|
string_array_t coll_conf = string_array_make();
|
|
if ( !dictionary_append_file_path(&coll_conf, coll_conf_path) )
|
|
err(1, "`%s'", coll_conf_path);
|
|
VerifyTixCollectionConfiguration(&coll_conf, coll_conf_path);
|
|
free(coll_conf_path);
|
|
|
|
const char* coll_generation = dictionary_get(&coll_conf, "collection.generation");
|
|
assert(coll_generation);
|
|
generation = atoi(coll_generation);
|
|
coll_prefix = dictionary_get(&coll_conf, "collection.prefix");
|
|
assert(coll_prefix);
|
|
coll_platform = dictionary_get(&coll_conf, "collection.platform");
|
|
assert(coll_platform);
|
|
|
|
for ( int i = 1; i < argc; i++ )
|
|
InstallPackage(argv[i]);
|
|
|
|
string_array_reset(&coll_conf);
|
|
|
|
free(tix_directory_path);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int strcmp_indirect(const void* a_ptr, const void* b_ptr)
|
|
{
|
|
const char* a = *(const char* const*) a_ptr;
|
|
const char* b = *(const char* const*) b_ptr;
|
|
return strcmp(a, b);
|
|
}
|
|
|
|
void InstallPackage(const char* tix_path)
|
|
{
|
|
if ( !IsFile(tix_path) )
|
|
err(1, "`%s'", tix_path);
|
|
|
|
const char* tixinfo_path = "tix/tixinfo";
|
|
if ( !TarContainsFile(tix_path, tixinfo_path) )
|
|
errx(1, "`%s' doesn't contain a `%s' file", tix_path, tixinfo_path);
|
|
|
|
string_array_t tixinfo = string_array_make();
|
|
FILE* tixinfo_fp = TarOpenFile(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");
|
|
assert(package_prefix || !package_prefix);
|
|
|
|
const char* package_platform = dictionary_get(&tixinfo, "tix.platform");
|
|
assert(package_platform || !package_platform);
|
|
|
|
bool already_installed = IsPackageInstalled(tix_directory_path, package_name);
|
|
if ( already_installed && !reinstall )
|
|
errx(1, "error: package `%s' is already installed. Use --reinstall "
|
|
"to force reinstallation.", package_name);
|
|
|
|
if ( package_prefix && strcmp(coll_prefix, package_prefix) != 0 )
|
|
{
|
|
warn("error: `%s' is compiled with the prefix `%s', but the "
|
|
"destination collection has the prefix `%s'.", tix_path,
|
|
package_prefix, coll_prefix);
|
|
err(1, "you need to recompile the package with "
|
|
"--prefix=\"%s\".", coll_prefix);
|
|
}
|
|
|
|
if ( package_platform && strcmp(coll_platform, package_platform) != 0 )
|
|
{
|
|
warn("error: `%s' is compiled with the platform `%s', but "
|
|
"the destination collection has the platform `%s'.",
|
|
tix_path, package_platform, coll_platform);
|
|
err(1, "you need to recompile the package with "
|
|
"--host=%s\".", coll_platform);
|
|
}
|
|
|
|
if ( !quiet )
|
|
{
|
|
printf("Installing %s", package_name);
|
|
if ( strcmp(collection, "/") != 0 )
|
|
printf(" into `%s'\n", collection);
|
|
printf("...\n");
|
|
}
|
|
|
|
char* data_and_prefix = package_prefix && package_prefix[0] ?
|
|
print_string("data%s", package_prefix) :
|
|
strdup("data");
|
|
|
|
char* tixinfo_out_path = print_string("%s/tixinfo/%s", tix_directory_path, package_name);
|
|
int tixinfo_fd = open(tixinfo_out_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
|
|
if ( tixinfo_fd < 0 )
|
|
err(1, "%s", tixinfo_out_path);
|
|
TarExtractFileToFD(tix_path, "tix/tixinfo", tixinfo_fd);
|
|
close(tixinfo_fd);
|
|
|
|
FILE* index_fp = TarOpenIndex(tix_path);
|
|
string_array_t files = string_array_make();
|
|
string_array_append_file(&files, index_fp);
|
|
qsort(files.strings, files.length, sizeof(char*), strcmp_indirect);
|
|
char* manifest_path = print_string("%s/manifest/%s", tix_directory_path, package_name);
|
|
FILE* manifest_fp = fopen(manifest_path, "w");
|
|
if ( !manifest_fp )
|
|
err(1, "%s", manifest_path);
|
|
for ( size_t i = 0; i < files.length; i++ )
|
|
{
|
|
char* str = files.strings[i];
|
|
if ( strncmp(str, "data", strlen("data")) != 0 )
|
|
continue;
|
|
str += strlen("data");
|
|
if ( str[0] && str[0] != '/' )
|
|
continue;
|
|
size_t len = strlen(str);
|
|
while ( 2 <= len && str[len-1] == '/' )
|
|
str[--len] = '\0';
|
|
if ( fprintf(manifest_fp, "%s\n", str) < 0 )
|
|
err(1, "%s", manifest_path);
|
|
}
|
|
if ( ferror(manifest_fp) || fflush(manifest_fp) == EOF )
|
|
err(1, "%s", manifest_path);
|
|
fclose(manifest_fp);
|
|
string_array_reset(&files);
|
|
fclose(index_fp);
|
|
|
|
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", collection,
|
|
"--extract",
|
|
"--file", tix_path,
|
|
"--keep-directory-symlink",
|
|
"--same-permissions",
|
|
"--no-same-owner",
|
|
data_and_prefix,
|
|
NULL
|
|
};
|
|
execvp(cmd_argv[0], (char* const*) cmd_argv);
|
|
err(127, "%s", cmd_argv[0]);
|
|
}
|
|
free(data_and_prefix);
|
|
|
|
if ( !already_installed )
|
|
MarkPackageAsInstalled(tix_directory_path, package_name);
|
|
|
|
string_array_reset(&tixinfo);
|
|
}
|