mirror of
https://github.com/javalsai/lidm.git
synced 2026-02-27 03:50:44 +01:00
* chore(organization): allow nested header and c files * feat: add shell login "middleware" & etc: * lidm now calls `bash` (or other shells, depends on PACKAGE cfg) in login mode as a session wrapper to source most env (can be disabled) * this fixes a lot of env problems with all `/etc/profile` and more Extra: * implemented a musl compatible version of `execvpe` and now lidm should search for PATH everywhere it needs to * `search_path` now also checks if the found binary is properly executable * lidm now uses `confstr` for a decent PATH default if none is found * logs are unbuffered for cases where debug logs appear empty (exit without handlers moment) * chore: one-time evaluate certain makefile vars --------- Co-authored-by: grialion <48643945+grialion@users.noreply.github.com>
65 lines
1.5 KiB
C
65 lines
1.5 KiB
C
#include <errno.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "util/path.h"
|
|
|
|
// returns NULL on any error
|
|
// otherwise it returns the absolute path of the program that MUST BE FREED
|
|
//
|
|
// Should be almost completely posix compliant, except it won't resolve empty
|
|
// PATH entries relative to the cwd
|
|
char* NULLABLE search_path(const char* NNULLABLE for_binary) {
|
|
if (strchr(for_binary, '/') != NULL) {
|
|
// skip absolute paths
|
|
return strdup(for_binary);
|
|
}
|
|
char* path_env = getenv("PATH");
|
|
if (!path_env) return NULL;
|
|
char* path = strdup(path_env);
|
|
if (!path) return NULL;
|
|
|
|
char* tok = strtok(path, ":");
|
|
while (tok) {
|
|
char* bin_path;
|
|
asprintf(&bin_path, "%s/%s", tok, for_binary);
|
|
if (!bin_path) {
|
|
free(path);
|
|
return NULL;
|
|
}
|
|
|
|
struct stat stat_buf;
|
|
if (stat(bin_path, &stat_buf) == 0 && access(bin_path, X_OK) == 0) {
|
|
free(path);
|
|
return bin_path;
|
|
}
|
|
|
|
free(bin_path);
|
|
tok = strtok(NULL, ":");
|
|
}
|
|
|
|
free(path);
|
|
return NULL;
|
|
}
|
|
|
|
// This is present in glibc ONLY with GNU extensions, this aims to provide a
|
|
// musl compatible variant.
|
|
//
|
|
// Respects errno of exec functions family.
|
|
int execvpe(const char* NNULLABLE file, char* NULLABLE const argv[NNULLABLE],
|
|
char* NULLABLE const envp[NNULLABLE]) {
|
|
char* path = search_path(file);
|
|
if (!path) {
|
|
errno = ENOENT;
|
|
return -1;
|
|
}
|
|
int ret = execve(path, argv, envp);
|
|
free(path);
|
|
return ret;
|
|
}
|