remove argc, argv; arguments will be passed via environment variables
This commit is contained in:
parent
b1cf9e5dfb
commit
e6915fb6dd
12 changed files with 64 additions and 37 deletions
|
@ -38,7 +38,7 @@ std::string the_time() {
|
|||
|
||||
}
|
||||
|
||||
int main(int, char **) {
|
||||
int main() {
|
||||
|
||||
font = new daguerre::fixed_font<bool>(
|
||||
daguerre::try_load_psf("/assets/terminus/10x18-bold.psf").value());
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
renderer *r;
|
||||
|
||||
int main(int, char **) {
|
||||
int main() {
|
||||
|
||||
euler::syscall::listener_handle listener;
|
||||
euler::syscall::create_socket_listener("hilbert.compositor", listener);
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
daguerre::fixed_font<bool> *font;
|
||||
|
||||
int main(int, char **) {
|
||||
int main() {
|
||||
|
||||
font = new daguerre::fixed_font<bool>(
|
||||
daguerre::try_load_psf("/assets/terminus/10x18-bold.psf").value());
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
#include <euler/syscall.hpp>
|
||||
|
||||
//this does not keep track of the processes or whether they have started
|
||||
//successfully, nor does it set their argc, argv, stdin, stdout, or stderr.
|
||||
|
||||
int main(int, char **) {
|
||||
int main() {
|
||||
euler::syscall::process_handle dummy;
|
||||
euler::syscall::start_process("/bin/compositor", {}, {}, dummy);
|
||||
euler::syscall::start_process("/bin/clock", {}, {}, dummy);
|
||||
|
|
|
@ -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.
|
|
@ -157,7 +157,10 @@ start process:
|
|||
qword: stream handle here
|
||||
qword: new stream handle in child
|
||||
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:
|
||||
rax in: 17
|
||||
|
|
|
@ -2,28 +2,15 @@
|
|||
#include <cstdlib>
|
||||
#include <string>
|
||||
|
||||
int main(int argc, char **argv);
|
||||
int main();
|
||||
|
||||
extern "C" [[noreturn]] void _start() {
|
||||
|
||||
//TODO: call static initializers
|
||||
|
||||
auto argc_raw = euler::syscall::try_get_environment_variable("ARGC");
|
||||
int argc = argc_raw.has_value() ? std::stoi(argc_raw.value()) : 0;
|
||||
int exit_code = main();
|
||||
|
||||
std::vector<std::string> argv;
|
||||
|
||||
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());
|
||||
//TODO: call at_exit stuff
|
||||
|
||||
euler::syscall::end_this_process(exit_code);
|
||||
|
||||
|
|
|
@ -104,6 +104,7 @@ namespace hilbert::kernel::application {
|
|||
utility::id_allocator<generic_stream_ptr> open_streams;
|
||||
utility::id_allocator<socket_listener *> running_socket_listeners;
|
||||
|
||||
public:
|
||||
struct string_pair {
|
||||
utility::string a;
|
||||
utility::string b;
|
||||
|
@ -111,6 +112,9 @@ namespace hilbert::kernel::application {
|
|||
|
||||
utility::list<string_pair> environment_variables;
|
||||
|
||||
private:
|
||||
string_pair *find_environment_variable(const utility::string &name);
|
||||
|
||||
public:
|
||||
utility::string name;
|
||||
|
||||
|
@ -126,10 +130,12 @@ namespace hilbert::kernel::application {
|
|||
process(app_memory *memory, const utility::string &name);
|
||||
~process();
|
||||
|
||||
//arguments are utility::move'd
|
||||
void add_environment_variable(
|
||||
void set_environment_variable(
|
||||
utility::string &&name, utility::string &&value);
|
||||
|
||||
void set_environment_variable(
|
||||
const utility::string &name, const utility::string &value);
|
||||
|
||||
//null if unset
|
||||
utility::string *get_environment_variable(const utility::string &name);
|
||||
|
||||
|
|
|
@ -212,7 +212,12 @@ namespace hilbert::kernel::utility {
|
|||
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() {
|
||||
if (buffer)
|
||||
|
|
|
@ -90,9 +90,42 @@ namespace hilbert::kernel::application {
|
|||
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) {
|
||||
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(
|
||||
|
|
|
@ -218,10 +218,6 @@ extern "C" [[noreturn]] void entry() {
|
|||
|
||||
application::process *init_process =
|
||||
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::thread *init_thread =
|
||||
|
|
|
@ -625,8 +625,11 @@ namespace hilbert::kernel::syscall {
|
|||
application::process *p =
|
||||
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)
|
||||
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].value, psi->env_vars[i].value_len));
|
||||
|
||||
|
|
Reference in a new issue