remove argc, argv; arguments will be passed via environment variables

This commit is contained in:
Benji Dial 2024-07-31 17:16:21 -04:00
parent b1cf9e5dfb
commit e6915fb6dd
12 changed files with 64 additions and 37 deletions

View file

@ -38,7 +38,7 @@ std::string the_time() {
} }
int main(int, char **) { int main() {
font = new daguerre::fixed_font<bool>( font = new daguerre::fixed_font<bool>(
daguerre::try_load_psf("/assets/terminus/10x18-bold.psf").value()); daguerre::try_load_psf("/assets/terminus/10x18-bold.psf").value());

View file

@ -9,7 +9,7 @@
renderer *r; renderer *r;
int main(int, char **) { int main() {
euler::syscall::listener_handle listener; euler::syscall::listener_handle listener;
euler::syscall::create_socket_listener("hilbert.compositor", listener); euler::syscall::create_socket_listener("hilbert.compositor", listener);

View file

@ -4,7 +4,7 @@
daguerre::fixed_font<bool> *font; daguerre::fixed_font<bool> *font;
int main(int, char **) { int main() {
font = new daguerre::fixed_font<bool>( font = new daguerre::fixed_font<bool>(
daguerre::try_load_psf("/assets/terminus/10x18-bold.psf").value()); daguerre::try_load_psf("/assets/terminus/10x18-bold.psf").value());

View file

@ -1,9 +1,6 @@
#include <euler/syscall.hpp> #include <euler/syscall.hpp>
//this does not keep track of the processes or whether they have started int main() {
//successfully, nor does it set their argc, argv, stdin, stdout, or stderr.
int main(int, char **) {
euler::syscall::process_handle dummy; euler::syscall::process_handle dummy;
euler::syscall::start_process("/bin/compositor", {}, {}, dummy); euler::syscall::start_process("/bin/compositor", {}, {}, dummy);
euler::syscall::start_process("/bin/clock", {}, {}, dummy); euler::syscall::start_process("/bin/clock", {}, {}, dummy);

View file

@ -1,3 +0,0 @@
on entry, the stack is set up, and all registers other than rsp are set to 0.
the ARGC environment variable holds the number of arguments to main.
the ARGV0, ARGV1, ARGV2, etc environment variables hold those arguments.

View file

@ -157,7 +157,10 @@ start process:
qword: stream handle here qword: stream handle here
qword: new stream handle in child qword: new stream handle in child
new handle must be < 65536 new handle must be < 65536
any gifted streams must not have threads waiting to read from our end any gifted streams must not have threads waiting to read from our end.
any environment variables in the current process whose names do not begin
with an underscore are also set in the child process. the environment
variables in the process start info override any with the same name.
end this process: end this process:
rax in: 17 rax in: 17

View file

@ -2,28 +2,15 @@
#include <cstdlib> #include <cstdlib>
#include <string> #include <string>
int main(int argc, char **argv); int main();
extern "C" [[noreturn]] void _start() { extern "C" [[noreturn]] void _start() {
//TODO: call static initializers //TODO: call static initializers
auto argc_raw = euler::syscall::try_get_environment_variable("ARGC"); int exit_code = main();
int argc = argc_raw.has_value() ? std::stoi(argc_raw.value()) : 0;
std::vector<std::string> argv; //TODO: call at_exit stuff
for (int i = 0; i < argc; ++i) {
std::string arg_name = std::string("ARGV") + std::to_string(i);
auto arg_raw = euler::syscall::try_get_environment_variable(arg_name);
argv.push_back(arg_raw.has_value() ? arg_raw.value() : "");
}
std::vector<char *> c_argv(argc);
for (int i = 0; i < argc; ++i)
c_argv[i] = argv[i].data();
int exit_code = main(argc, c_argv.data());
euler::syscall::end_this_process(exit_code); euler::syscall::end_this_process(exit_code);

View file

@ -104,6 +104,7 @@ namespace hilbert::kernel::application {
utility::id_allocator<generic_stream_ptr> open_streams; utility::id_allocator<generic_stream_ptr> open_streams;
utility::id_allocator<socket_listener *> running_socket_listeners; utility::id_allocator<socket_listener *> running_socket_listeners;
public:
struct string_pair { struct string_pair {
utility::string a; utility::string a;
utility::string b; utility::string b;
@ -111,6 +112,9 @@ namespace hilbert::kernel::application {
utility::list<string_pair> environment_variables; utility::list<string_pair> environment_variables;
private:
string_pair *find_environment_variable(const utility::string &name);
public: public:
utility::string name; utility::string name;
@ -126,10 +130,12 @@ namespace hilbert::kernel::application {
process(app_memory *memory, const utility::string &name); process(app_memory *memory, const utility::string &name);
~process(); ~process();
//arguments are utility::move'd void set_environment_variable(
void add_environment_variable(
utility::string &&name, utility::string &&value); utility::string &&name, utility::string &&value);
void set_environment_variable(
const utility::string &name, const utility::string &value);
//null if unset //null if unset
utility::string *get_environment_variable(const utility::string &name); utility::string *get_environment_variable(const utility::string &name);

View file

@ -212,7 +212,12 @@ namespace hilbert::kernel::utility {
buffer[i] = other.buffer[i]; buffer[i] = other.buffer[i];
} }
vector(vector &&other) = delete; vector(vector &&other)
: buffer(other.buffer),
buffer_len(other.buffer_len),
count(other.count) {
other.buffer = 0;
}
~vector() { ~vector() {
if (buffer) if (buffer)

View file

@ -90,9 +90,42 @@ namespace hilbert::kernel::application {
delete memory; //:p delete memory; //:p
} }
void process::add_environment_variable( process::string_pair *process::find_environment_variable(
const utility::string &name) {
for (auto *n = environment_variables.first; n; n = n->next)
if (n->value.a == name)
return &n->value;
return 0;
}
void process::set_environment_variable(
utility::string &&name, utility::string &&value) { utility::string &&name, utility::string &&value) {
environment_variables.insert_end({.a = name, .b = value});
auto *sp = find_environment_variable(name);
if (sp)
sp->b = utility::move(value);
else
environment_variables.insert_end({
.a = utility::move(name),
.b = utility::move(value)
});
}
void process::set_environment_variable(
const utility::string &name, const utility::string &value) {
auto *sp = find_environment_variable(name);
if (sp)
sp->b = value;
else
environment_variables.insert_end({
.a = name, .b = value
});
} }
utility::string *process::get_environment_variable( utility::string *process::get_environment_variable(

View file

@ -218,10 +218,6 @@ extern "C" [[noreturn]] void entry() {
application::process *init_process = application::process *init_process =
new application::process(init_memory, utility::string("init", 4)); new application::process(init_memory, utility::string("init", 4));
init_process->add_environment_variable(
utility::string("ARGC", 4), utility::string("1", 1));
init_process->add_environment_variable(
utility::string("ARGV0", 5), utility::string("/bin/init", 9));
application::add_process(init_process); application::add_process(init_process);
application::thread *init_thread = application::thread *init_thread =

View file

@ -625,8 +625,11 @@ namespace hilbert::kernel::syscall {
application::process *p = application::process *p =
new application::process(memory, file.dir_entry.name); new application::process(memory, file.dir_entry.name);
for (auto *n = owner->environment_variables.first; n; n = n->next)
p->set_environment_variable(n->value.a, n->value.b);
for (uint64_t i = 0; i < psi->env_var_count; ++i) for (uint64_t i = 0; i < psi->env_var_count; ++i)
p->add_environment_variable( p->set_environment_variable(
utility::string(psi->env_vars[i].name, psi->env_vars[i].name_len), utility::string(psi->env_vars[i].name, psi->env_vars[i].name_len),
utility::string(psi->env_vars[i].value, psi->env_vars[i].value_len)); utility::string(psi->env_vars[i].value, psi->env_vars[i].value_len));