libglacier/libglacier.c

395 lines
7.6 KiB
C
Raw Normal View History

2024-02-08 09:01:44 -05:00
/*
* libglacier.c - Backend C library for Glacier
*
* This file is part of Glacier.
*
* Glacier 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.
*
* Glacier 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 Glacier. If
* not, see <https://www.gnu.org/licenses/>.
*/
#include <color.h>
2024-10-02 17:30:43 -04:00
#include <dirent.h>
2024-07-21 22:35:38 -04:00
#include <errno.h>
2024-02-08 09:01:44 -05:00
#include <libconfig.h>
2024-07-21 22:35:38 -04:00
#include <locale.h>
2024-02-08 09:01:44 -05:00
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
2024-10-02 17:30:43 -04:00
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
2024-02-08 09:01:44 -05:00
#include <unistd.h>
2024-07-21 22:35:38 -04:00
#include <wchar.h>
2024-02-08 09:01:44 -05:00
/* Global variables */
config_t cfg;
config_setting_t *setting;
const char str;
2024-10-02 17:30:43 -04:00
2024-02-08 09:01:44 -05:00
int GLACIER_ALLOW_SERVICES;
char GLACIER_ALLOWED_LICENSES;
2024-07-21 22:35:38 -04:00
int GLACIER_DO_INT_CHECK;
2024-10-02 17:30:43 -04:00
int GLACIER_VERBOSE;
2024-02-08 09:01:44 -05:00
2024-10-02 17:30:43 -04:00
const char *runtime_files[] = {
"/etc/glacier.cfg",
"/etc/glacier/call-hooks",
"/etc/make.conf"
};
2024-02-08 09:01:44 -05:00
/*
* infolog
*
* DESCRIPTION: Output a stylized info message.
* PARAMETERS: char MSG[]
2024-10-08 13:36:28 -04:00
* DEFINED IN: glacier_log.h
2024-02-08 09:01:44 -05:00
*
*/
void
infolog(char MSG[])
{
if (MSG == NULL) {
return;
}
printf(COL_BLUE "[i]" COL_RESET " %s\n", MSG);
return;
}
/*
* warnlog
*
* DESCRIPTION: Output a stylized warning message.
* Parameters: char MSG[]
2024-10-08 13:36:28 -04:00
* DEFINED IN: glacier_log.h
2024-02-08 09:01:44 -05:00
*
*/
void
warnlog(char MSG[])
{
if (MSG == NULL) {
return;
}
printf(COL_YELLOW "[!]" COL_RESET " %s\n", MSG);
return;
}
/*
* errlog
*
* DESCRIPTION: Output a stylized error message.
* PARAMETERS: char MSG[]
2024-10-08 13:36:28 -04:00
* DEFINED IN: glacier_log.h
2024-02-08 09:01:44 -05:00
*
*/
void
errlog(char MSG[])
{
if (MSG == NULL) {
return;
}
fprintf(stderr, COL_RED "[x]" COL_RESET " %s\n", MSG);
return;
}
2024-10-03 11:37:10 -04:00
/*
* successlog
*
* DESCRIPTION: Output a stylized success message.
* PARAMETERS: char MSG[]
2024-10-08 13:36:28 -04:00
* DEFINED IN: glacier_log.h
2024-10-03 11:37:10 -04:00
*
*/
void
successlog(char MSG[])
{
const wchar_t w_check = 0x2713;
2024-10-03 11:39:28 -04:00
setlocale(LC_CTYPE, "");
2024-10-03 11:37:10 -04:00
if (MSG == NULL) {
return;
}
printf(COL_GREEN "[%lc]" COL_RESET " %s\n", w_check, MSG);
return;
}
2024-02-08 09:01:44 -05:00
/*
* runtime_exists
*
* DESCRIPTION: Check if necesary runtime files exist.
* PARAMETERS: None.
2024-10-08 13:36:28 -04:00
* DEFINED IN: glacier_runtime.h
2024-02-08 09:01:44 -05:00
*
*/
2024-10-02 17:30:43 -04:00
int
2024-02-08 09:01:44 -05:00
runtime_exists()
{
int f;
for (f = 0; f < 3; f++) {
if (access(runtime_files[f], F_OK) == 0) {
printf("%s exists\n", runtime_files[f]);
} else {
printf("%s does not exist\n", runtime_files[f]);
}
}
2024-10-02 17:30:43 -04:00
return 1;
2024-02-08 09:01:44 -05:00
}
2024-10-08 13:36:28 -04:00
/*
* is_process_root
*
* DESCRIPTION: Check if process is running as root.
* PARAMETERS: None.
* DEFINED IN: glacier_runtime.h
*
*/
int
is_process_root()
{
if (getuid() != 0) {
errlog("Failed to open package index: permission denied. Are you root?");
exit(1);
}
}
2024-02-08 09:01:44 -05:00
/*
* init_config
*
* DESCRIPTION: Initialize libconfig.
* PARAMETERS: None.
2024-10-08 13:36:28 -04:00
* DEFINED IN: glacier_config.h
2024-02-08 09:01:44 -05:00
*
*/
int
init_config()
{
config_init(&cfg);
if (! config_read_file(&cfg, "glacier.cfg")) {
fprintf(stderr, "%s:%d - %s\n", config_error_file(&cfg),
config_error_line(&cfg), config_error_text(&cfg));
config_destroy(&cfg);
return(EXIT_FAILURE);
}
infolog("Initialized libconfig");
2024-10-02 17:30:43 -04:00
return 0;
2024-02-08 09:01:44 -05:00
}
2024-10-02 17:30:43 -04:00
/*
* die_config
*
* DESCRIPTION: Kill libconfig.
* PARAMETERS: None.
2024-10-08 13:36:28 -04:00
* DEFINED IN: glacier_config.h
2024-10-02 17:30:43 -04:00
*
*/
2024-02-08 09:01:44 -05:00
int
die_config()
{
config_destroy(&cfg);
infolog("Destroyed libconfig");
return(EXIT_SUCCESS);
}
2024-10-02 17:30:43 -04:00
/*
* load_all_from_config
*
* DESCRIPTION: Loads all settings from the Glacier config file.
* PARAMETERS: None.
2024-10-08 13:36:28 -04:00
* DEFINED IN: glacier_config.h
2024-10-02 17:30:43 -04:00
*
*/
/* issues with this idk
int
load_all_from_config()
2024-02-08 09:01:44 -05:00
{
if(config_lookup_bool(&cfg, "GLACIER_ALLOW_SERVICES", &GLACIER_ALLOW_SERVICES))
printf("Services allowed: %s\n", GLACIER_ALLOW_SERVICES ? "true" : "false");
else
warnlog("GLACIER_SERVICES_ALLOWED is not defined in glacier.cfg.");
2024-07-21 22:35:38 -04:00
if(config_lookup_bool(&cfg, "GLACIER_DO_INT_CHECK", &GLACIER_DO_INT_CHECK))
printf("Integrity checking enabled: %s\n", GLACIER_DO_INT_CHECK ? "true" : "false");
else
warnlog("GLACIER_DO_INT_CHECK is not defined in glacier.cfg.");
2024-10-02 17:30:43 -04:00
if(config_lookup_bool(&cfg, "GLACIER_VERBOSE", &GLACIER_VERBOSE))
printf("Verbose logging: %s\n", GLACIER_VERBOSE ? "true" : "false");
else
warnlog("GLACIER_VERBOSE is not defined in glacier.cfg.");
2024-07-21 22:35:38 -04:00
}
2024-10-02 17:30:43 -04:00
*/
2024-07-21 22:35:38 -04:00
2024-10-02 17:30:43 -04:00
/*
* load_setting_from_config
*
* DESCRIPTION: Load a specified setting from the Glacier config file.
* PARAMETERS: char SETTING[]
2024-10-08 13:36:28 -04:00
* DEFINED IN: glacier_config.h
2024-10-02 17:30:43 -04:00
*
*/
2024-07-21 22:35:38 -04:00
int
2024-10-02 17:30:43 -04:00
load_setting_from_config(char SETTING[])
{}
2024-07-21 22:35:38 -04:00
2024-10-02 17:30:43 -04:00
/*
* mkworkspace
*
* DESCRIPTION: Creates a new Glacier workspace in /tmp.
* PARAMETERS: None.
2024-10-08 13:36:28 -04:00
* DEFINED IN: glacier_pkgops.h
2024-10-02 17:30:43 -04:00
*
*/
2024-07-21 22:35:38 -04:00
int
2024-10-02 17:30:43 -04:00
mkworkspace()
2024-07-21 22:35:38 -04:00
{
2024-10-02 17:30:43 -04:00
DIR* workspace = opendir("/tmp/glacier-workspace");
if (workspace) {
infolog("Not creating new workspace, valid workspace already exists.");
} else if (ENOENT == errno) {
infolog("Creating new Glacier workspace...");
mkdir("/tmp/glacier-workspace", 0777);
} else {
printf("LIBRARY ERROR: opendir() failed\n");
return 2;
}
2024-07-21 22:35:38 -04:00
}
2024-10-02 17:30:43 -04:00
/*
* prepare_pkg
*
* DESCRIPTION: Copies a package archive from the localdb to the workspace, and unpacks it.
* PARAMETERS: char PACKAGE[]
2024-10-08 13:36:28 -04:00
* DEFINED IN: glacier_pkgops.h
2024-10-02 17:30:43 -04:00
*
*/
2024-07-21 22:35:38 -04:00
int
2024-10-02 17:30:43 -04:00
prepare_pkg(char PACKAGE[])
2024-07-21 22:35:38 -04:00
{
2024-10-02 17:30:43 -04:00
if (PACKAGE == NULL) {
printf(COL_RED "[x] " COL_RESET "Package '%s' does not exist in the local database.\n", PACKAGE);
errlog("Ensure your local database is up to date and try again.");
errlog("This can be done by running 'glacier-update-pkgdb' as root.");
return 1;
} else {
char PKG_NEW[512];
strcat(PKG_NEW, "/tmp/glacier-workspace/");
strcat(PKG_NEW, PACKAGE);
strcat(PKG_NEW, ".tar");
FILE *pkg_old, *pkg_new;
char filename[100], contents;
2024-07-21 22:35:38 -04:00
2024-10-02 17:30:43 -04:00
pkg_old = fopen(PACKAGE, "r");
pkg_new = fopen(PKG_NEW, "a+");
2024-02-08 09:01:44 -05:00
2024-10-02 17:30:43 -04:00
contents = fgetc(pkg_old);
2024-07-21 22:35:38 -04:00
2024-10-02 17:30:43 -04:00
while (contents != EOF) {
fputc(contents, pkg_new);
contents = fgetc(pkg_old);
}
fclose(pkg_old);
fclose(pkg_new);
char *tar_args[] = {
"/bin/tar", /* This should be changed to /glacier/bin/tar later on */
"-xvf",
PKG_NEW,
NULL,
};
execvp(
"/bin/tar", /* Above comment applies here */
tar_args
);
if (errno != 0) {
printf(COL_RED "[x] " COL_RESET "Error while unpacking archive for package %s.\n", PACKAGE);
return errno;
}
remove(PKG_NEW);
char pkg_dir[512];
strcat(pkg_dir, "/tmp/glacier-workspace/");
strcat(pkg_dir, PACKAGE);
chdir(pkg_dir);
2024-07-21 22:35:38 -04:00
}
}
2024-10-02 17:30:43 -04:00
/* download_package_sources() is deprecated and will be removed in a later release. */
/* int
download_package_sources(char PACKAGE[])
2024-07-21 22:35:38 -04:00
{
2024-10-02 17:30:43 -04:00
printf(COL_BLUE "[i] " COL_RESET "Downloading package archive for %s...\n", PACKAGE);
if (GLACIER_SYSTEM_PROFILE == "x86-musl") {
execl("/glacier/tools/wget", "https://git.everestlinux.org/EverestLinux/epkgs-x86-musl/", NULL);
} else {
printf(COL_RED "[x] " COL_RESET "System profile '%s' is not supported.\n", GLACIER_SYSTEM_PROFILE);
2024-07-21 22:35:38 -04:00
}
2024-10-02 17:30:43 -04:00
} */
2024-07-21 22:35:38 -04:00
void
2024-10-02 17:30:43 -04:00
TEST_chdir(char dir[])
2024-07-21 22:35:38 -04:00
{
2024-10-02 17:30:43 -04:00
char *buf;
chdir(dir);
buf = (char *) malloc(100*sizeof(char));
getcwd(buf, 100);
printf("%s\n", buf);
2024-07-21 22:35:38 -04:00
}
2024-10-02 17:30:43 -04:00
/*
* run_make_task
*
* DESCRIPTION: Runs a make task in current working directory
* PARAMETERS: char TASK[]
2024-10-08 13:36:28 -04:00
* DEFINED IN: glacier_pkgops.h
2024-10-02 17:30:43 -04:00
*
*/
2024-07-21 22:35:38 -04:00
int
2024-10-02 17:30:43 -04:00
run_make_task(char TASK[])
2024-07-21 22:35:38 -04:00
{
2024-10-02 17:30:43 -04:00
char *build_args[] = {
"/bin/make", /* This should be changed to /glacier/bin/make later on */
TASK,
NULL
};
execvp(
"/bin/make", /* Above comment applies here */
build_args
);
if (errno != 0) {
errlog("An error occurred while running the make task.");
return errno;
2024-07-21 22:35:38 -04:00
}
}