2024-10-06 18:16:50 +03:00
|
|
|
#include <BAN/HashMap.h>
|
2023-06-19 01:39:24 +03:00
|
|
|
#include <BAN/Optional.h>
|
2023-06-05 01:42:57 +03:00
|
|
|
#include <BAN/String.h>
|
|
|
|
#include <BAN/Vector.h>
|
2023-06-19 01:39:24 +03:00
|
|
|
|
2023-06-05 14:36:17 +03:00
|
|
|
#include <ctype.h>
|
2024-10-04 17:23:31 +03:00
|
|
|
#include <limits.h>
|
2023-08-14 14:55:23 +03:00
|
|
|
#include <pwd.h>
|
2023-05-16 19:22:46 +03:00
|
|
|
#include <stdio.h>
|
2023-06-05 01:42:57 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/stat.h>
|
2024-10-04 17:23:31 +03:00
|
|
|
#include <sys/wait.h>
|
2023-05-16 19:22:46 +03:00
|
|
|
#include <termios.h>
|
2024-10-04 17:23:31 +03:00
|
|
|
#include <time.h>
|
2023-06-05 01:42:57 +03:00
|
|
|
#include <unistd.h>
|
2023-05-16 19:22:46 +03:00
|
|
|
|
2023-07-06 23:22:57 +03:00
|
|
|
#define ERROR_RETURN(__msg, __ret) do { perror(__msg); return __ret; } while (false)
|
2023-07-06 00:39:04 +03:00
|
|
|
|
2023-07-06 10:32:43 +03:00
|
|
|
extern char** environ;
|
|
|
|
|
2024-10-05 19:11:58 +03:00
|
|
|
static struct termios old_termios, new_termios;
|
|
|
|
|
2024-10-04 17:54:01 +03:00
|
|
|
static char s_shell_path[PATH_MAX];
|
2023-08-15 09:17:46 +03:00
|
|
|
static int last_return = 0;
|
2023-07-06 23:22:57 +03:00
|
|
|
|
2023-08-22 15:33:01 +03:00
|
|
|
static BAN::String hostname;
|
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
struct SingleCommand
|
|
|
|
{
|
|
|
|
BAN::Vector<BAN::String> arguments;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PipedCommand
|
|
|
|
{
|
|
|
|
BAN::Vector<SingleCommand> commands;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CommandList
|
|
|
|
{
|
|
|
|
enum class Condition
|
|
|
|
{
|
|
|
|
Always,
|
|
|
|
OnSuccess,
|
|
|
|
OnFailure,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Command
|
|
|
|
{
|
|
|
|
BAN::String expression;
|
|
|
|
Condition condition;
|
|
|
|
};
|
|
|
|
BAN::Vector<Command> commands;
|
|
|
|
};
|
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
struct BuiltinCommand
|
|
|
|
{
|
|
|
|
int (*function)(const SingleCommand&, FILE* fout, int fd_in, int fd_out);
|
|
|
|
};
|
|
|
|
static BAN::HashMap<BAN::String, BuiltinCommand> s_builtin_commands;
|
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
static BAN::StringView strip_whitespace(BAN::StringView sv)
|
|
|
|
{
|
|
|
|
size_t leading = 0;
|
|
|
|
while (leading < sv.size() && isspace(sv[leading]))
|
|
|
|
leading++;
|
|
|
|
sv = sv.substring(leading);
|
|
|
|
|
|
|
|
size_t trailing = 0;
|
|
|
|
while (trailing < sv.size() && isspace(sv[sv.size() - trailing - 1]))
|
|
|
|
trailing++;
|
|
|
|
sv = sv.substring(0, sv.size() - trailing);
|
|
|
|
|
|
|
|
return sv;
|
|
|
|
}
|
2023-07-06 23:22:57 +03:00
|
|
|
|
2024-10-05 19:11:58 +03:00
|
|
|
static BAN::Optional<BAN::String> parse_dollar(BAN::StringView command, size_t& i)
|
2023-06-19 01:39:24 +03:00
|
|
|
{
|
|
|
|
ASSERT(command[i] == '$');
|
|
|
|
|
|
|
|
if (++i >= command.size())
|
2024-07-13 16:51:53 +03:00
|
|
|
return BAN::String("$"_sv);
|
2023-08-15 09:17:46 +03:00
|
|
|
|
|
|
|
if (command[i] == '?')
|
|
|
|
{
|
|
|
|
i++;
|
2024-06-25 09:48:13 +03:00
|
|
|
return MUST(BAN::String::formatted("{}", last_return));
|
2024-01-24 14:43:46 +02:00
|
|
|
}
|
2023-06-19 01:39:24 +03:00
|
|
|
if (isalnum(command[i]))
|
|
|
|
{
|
|
|
|
size_t len = 1;
|
|
|
|
for (; i + len < command.size(); len++)
|
|
|
|
if (!isalnum(command[i + len]))
|
|
|
|
break;
|
|
|
|
BAN::String name = command.substring(i, len);
|
|
|
|
i += len - 1;
|
|
|
|
|
|
|
|
if (const char* value = getenv(name.data()))
|
2024-07-13 16:51:53 +03:00
|
|
|
return BAN::String(value);
|
|
|
|
return BAN::String();
|
2023-06-19 01:39:24 +03:00
|
|
|
}
|
|
|
|
else if (command[i] == '{')
|
|
|
|
{
|
|
|
|
size_t len = 1;
|
|
|
|
for (; i + len < command.size(); len++)
|
|
|
|
{
|
|
|
|
if (command[i + len] == '}')
|
|
|
|
break;
|
|
|
|
if (!isalnum(command[i + len]))
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i + len >= command.size())
|
|
|
|
return {};
|
|
|
|
|
|
|
|
BAN::String name = command.substring(i + 1, len - 1);
|
|
|
|
i += len;
|
|
|
|
|
|
|
|
if (const char* value = getenv(name.data()))
|
2024-07-13 16:51:53 +03:00
|
|
|
return BAN::String(value);
|
|
|
|
return BAN::String();
|
2023-06-19 01:39:24 +03:00
|
|
|
}
|
|
|
|
else if (command[i] == '[')
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
else if (command[i] == '(')
|
|
|
|
{
|
2023-07-06 23:22:57 +03:00
|
|
|
size_t len = 1;
|
|
|
|
int count = 1;
|
|
|
|
for (; i + len < command.size(); len++)
|
|
|
|
{
|
|
|
|
if (command[i + len] == '(')
|
|
|
|
count++;
|
|
|
|
if (command[i + len] == ')')
|
|
|
|
count--;
|
|
|
|
if (count == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count != 0)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
BAN::String subcommand = command.substring(i + 1, len - 1);
|
|
|
|
|
|
|
|
char temp[3] { '-', 'c', '\0' };
|
|
|
|
BAN::Vector<char*> argv;
|
2024-10-04 17:54:01 +03:00
|
|
|
MUST(argv.push_back(s_shell_path));
|
2023-07-06 23:22:57 +03:00
|
|
|
MUST(argv.push_back(temp));
|
|
|
|
MUST(argv.push_back((char*)subcommand.data()));
|
|
|
|
MUST(argv.push_back(nullptr));
|
|
|
|
|
|
|
|
int fds[2];
|
|
|
|
if (pipe(fds) == -1)
|
|
|
|
ERROR_RETURN("pipe", {});
|
|
|
|
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid == 0)
|
|
|
|
{
|
|
|
|
if (dup2(fds[1], STDOUT_FILENO) == -1)
|
|
|
|
{
|
|
|
|
perror("dup2");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
close(fds[0]);
|
|
|
|
close(fds[1]);
|
|
|
|
|
|
|
|
execv(argv.front(), argv.data());
|
|
|
|
perror("execv");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (pid == -1)
|
|
|
|
ERROR_RETURN("fork", {});
|
|
|
|
|
|
|
|
close(fds[1]);
|
|
|
|
|
|
|
|
char buffer[100];
|
|
|
|
BAN::String output;
|
|
|
|
while (ssize_t ret = read(fds[0], buffer, sizeof(buffer)))
|
|
|
|
{
|
|
|
|
if (ret == -1)
|
|
|
|
{
|
|
|
|
perror("read");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
MUST(output.append(BAN::StringView(buffer, ret)));
|
|
|
|
}
|
|
|
|
|
|
|
|
close(fds[0]);
|
|
|
|
|
|
|
|
int status;
|
2024-08-09 16:52:35 +03:00
|
|
|
if (waitpid(pid, &status, 0) == -1)
|
2023-07-06 23:22:57 +03:00
|
|
|
ERROR_RETURN("waitpid", {});
|
|
|
|
|
|
|
|
while (!output.empty() && output.back() == '\n')
|
|
|
|
output.pop_back();
|
|
|
|
|
|
|
|
i += len;
|
|
|
|
return output;
|
2023-06-19 01:39:24 +03:00
|
|
|
}
|
|
|
|
|
2024-06-18 20:32:43 +03:00
|
|
|
BAN::String temp = "$"_sv;
|
2023-10-12 22:24:27 +03:00
|
|
|
MUST(temp.push_back(command[i]));
|
|
|
|
return temp;
|
2023-06-19 01:39:24 +03:00
|
|
|
}
|
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
static PipedCommand parse_piped_command(BAN::StringView command_view)
|
2023-06-05 01:42:57 +03:00
|
|
|
{
|
2023-06-19 01:07:00 +03:00
|
|
|
enum class State
|
|
|
|
{
|
|
|
|
Normal,
|
|
|
|
SingleQuote,
|
|
|
|
DoubleQuote,
|
|
|
|
};
|
|
|
|
|
2023-09-28 10:28:49 +03:00
|
|
|
command_view = strip_whitespace(command_view);
|
|
|
|
|
2023-06-19 01:07:00 +03:00
|
|
|
State state = State::Normal;
|
2024-10-06 00:17:34 +03:00
|
|
|
SingleCommand current_command;
|
|
|
|
BAN::String current_argument;
|
|
|
|
PipedCommand result;
|
2023-08-17 12:05:38 +03:00
|
|
|
for (size_t i = 0; i < command_view.size(); i++)
|
2023-06-19 01:07:00 +03:00
|
|
|
{
|
2023-08-17 12:05:38 +03:00
|
|
|
char c = command_view[i];
|
2023-06-19 01:39:24 +03:00
|
|
|
|
2024-08-24 17:13:50 +03:00
|
|
|
if (i + 1 < command_view.size() && c == '\\')
|
|
|
|
{
|
|
|
|
char next = command_view[i + 1];
|
2024-10-06 18:18:22 +03:00
|
|
|
if (next == '\'' || next == '"' || next == ' ')
|
2024-08-24 17:13:50 +03:00
|
|
|
{
|
|
|
|
if (i + 1 < command_view.size())
|
2024-10-06 00:17:34 +03:00
|
|
|
MUST(current_argument.push_back(next));
|
2024-08-24 17:13:50 +03:00
|
|
|
i++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-19 01:07:00 +03:00
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case State::Normal:
|
|
|
|
if (c == '\'')
|
|
|
|
state = State::SingleQuote;
|
|
|
|
else if (c == '"')
|
|
|
|
state = State::DoubleQuote;
|
2023-06-19 01:39:24 +03:00
|
|
|
else if (c == '$')
|
|
|
|
{
|
2023-08-17 12:05:38 +03:00
|
|
|
auto expansion = parse_dollar(command_view, i);
|
2023-06-19 01:39:24 +03:00
|
|
|
if (!expansion.has_value())
|
|
|
|
{
|
|
|
|
fprintf(stderr, "bad substitution\n");
|
|
|
|
return {};
|
|
|
|
}
|
2024-10-06 00:17:34 +03:00
|
|
|
MUST(current_argument.append(expansion.value()));
|
2023-08-17 12:05:38 +03:00
|
|
|
}
|
|
|
|
else if (c == '|')
|
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
if (!current_argument.empty())
|
|
|
|
MUST(current_command.arguments.push_back(current_argument));
|
|
|
|
current_argument.clear();
|
2023-08-17 12:05:38 +03:00
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
MUST(result.commands.push_back(current_command));
|
|
|
|
current_command.arguments.clear();
|
2023-06-19 01:39:24 +03:00
|
|
|
}
|
2024-10-06 01:38:43 +03:00
|
|
|
else if (c == '~' && (i == 0 || isspace(command_view[i - 1])))
|
|
|
|
{
|
|
|
|
const char* home_env = getenv("HOME");
|
|
|
|
if (home_env)
|
|
|
|
MUST(current_argument.append(home_env));
|
|
|
|
}
|
2023-06-19 01:07:00 +03:00
|
|
|
else if (!isspace(c))
|
2024-10-06 00:17:34 +03:00
|
|
|
MUST(current_argument.push_back(c));
|
2023-06-19 01:07:00 +03:00
|
|
|
else
|
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
if (!current_argument.empty())
|
2023-06-19 01:07:00 +03:00
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
MUST(current_command.arguments.push_back(current_argument));
|
|
|
|
current_argument.clear();
|
2023-06-19 01:07:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case State::SingleQuote:
|
|
|
|
if (c == '\'')
|
|
|
|
state = State::Normal;
|
|
|
|
else
|
2024-10-06 00:17:34 +03:00
|
|
|
MUST(current_argument.push_back(c));
|
2023-06-19 01:07:00 +03:00
|
|
|
break;
|
|
|
|
case State::DoubleQuote:
|
|
|
|
if (c == '"')
|
|
|
|
state = State::Normal;
|
2023-06-19 01:39:24 +03:00
|
|
|
else if (c != '$')
|
2024-10-06 00:17:34 +03:00
|
|
|
MUST(current_argument.push_back(c));
|
2023-06-19 01:39:24 +03:00
|
|
|
else
|
|
|
|
{
|
2023-08-17 12:05:38 +03:00
|
|
|
auto expansion = parse_dollar(command_view, i);
|
2023-06-19 01:39:24 +03:00
|
|
|
if (!expansion.has_value())
|
|
|
|
{
|
|
|
|
fprintf(stderr, "bad substitution\n");
|
|
|
|
return {};
|
|
|
|
}
|
2024-10-06 00:17:34 +03:00
|
|
|
MUST(current_argument.append(expansion.value()));
|
2023-06-19 01:39:24 +03:00
|
|
|
}
|
2023-06-19 01:07:00 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: handle state != State::Normal
|
2024-10-06 00:17:34 +03:00
|
|
|
MUST(current_command.arguments.push_back(BAN::move(current_argument)));
|
|
|
|
MUST(result.commands.push_back(BAN::move(current_command)));
|
2023-06-19 01:07:00 +03:00
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
return BAN::move(result);
|
2023-06-05 01:42:57 +03:00
|
|
|
}
|
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
static CommandList parse_command_list(BAN::StringView command_view)
|
|
|
|
{
|
|
|
|
CommandList result;
|
|
|
|
CommandList::Condition next_condition = CommandList::Condition::Always;
|
|
|
|
for (size_t i = 0; i < command_view.size(); i++)
|
|
|
|
{
|
|
|
|
const char current = command_view[i];
|
|
|
|
switch (current)
|
|
|
|
{
|
|
|
|
case '\\':
|
|
|
|
i++;
|
|
|
|
break;
|
|
|
|
case '\'':
|
|
|
|
case '"':
|
|
|
|
while (++i < command_view.size())
|
|
|
|
{
|
|
|
|
if (command_view[i] == '\\')
|
|
|
|
i++;
|
|
|
|
else if (command_view[i] == current)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ';':
|
|
|
|
MUST(result.commands.emplace_back(
|
|
|
|
strip_whitespace(command_view.substring(0, i)),
|
|
|
|
next_condition
|
|
|
|
));
|
|
|
|
command_view = strip_whitespace(command_view.substring(i + 1));
|
|
|
|
next_condition = CommandList::Condition::Always;
|
|
|
|
i = -1;
|
|
|
|
break;
|
|
|
|
case '|':
|
|
|
|
case '&':
|
|
|
|
if (i + 1 >= command_view.size() || command_view[i + 1] != current)
|
|
|
|
break;
|
|
|
|
MUST(result.commands.emplace_back(
|
|
|
|
strip_whitespace(command_view.substring(0, i)),
|
|
|
|
next_condition
|
|
|
|
));
|
|
|
|
command_view = strip_whitespace(command_view.substring(i + 2));
|
|
|
|
next_condition = (current == '|') ? CommandList::Condition::OnFailure : CommandList::Condition::OnSuccess;
|
|
|
|
i = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MUST(result.commands.emplace_back(
|
|
|
|
strip_whitespace(command_view),
|
|
|
|
next_condition
|
|
|
|
));
|
|
|
|
|
|
|
|
for (const auto& [expression, _] : result.commands)
|
|
|
|
{
|
|
|
|
if (!expression.empty())
|
|
|
|
continue;
|
|
|
|
fprintf(stderr, "expected an expression\n");
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
return BAN::move(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int execute_command(const SingleCommand& command, int fd_in, int fd_out);
|
2023-08-17 12:05:38 +03:00
|
|
|
|
2024-10-05 19:11:58 +03:00
|
|
|
static int source_script(const BAN::String& path);
|
2023-10-03 10:24:10 +03:00
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
static BAN::Optional<int> execute_builtin(const SingleCommand& command, int fd_in, int fd_out)
|
2023-05-16 19:22:46 +03:00
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
if (command.arguments.empty())
|
2023-06-05 01:42:57 +03:00
|
|
|
return 0;
|
2023-08-17 12:05:38 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
auto it = s_builtin_commands.find(command.arguments.front());
|
|
|
|
if (it == s_builtin_commands.end())
|
|
|
|
return {};
|
|
|
|
|
2023-08-17 12:05:38 +03:00
|
|
|
FILE* fout = stdout;
|
|
|
|
bool should_close = false;
|
|
|
|
if (fd_out != STDOUT_FILENO)
|
|
|
|
{
|
|
|
|
int fd_dup = dup(fd_out);
|
|
|
|
if (fd_dup == -1)
|
|
|
|
ERROR_RETURN("dup", 1);
|
|
|
|
fout = fdopen(fd_dup, "w");
|
|
|
|
if (fout == nullptr)
|
|
|
|
ERROR_RETURN("fdopen", 1);
|
|
|
|
should_close = true;
|
|
|
|
}
|
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
int ret = it->value.function(command, fout, fd_in, fd_out);
|
|
|
|
|
|
|
|
if (should_close)
|
|
|
|
fclose(fout);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void install_builtin_commands()
|
|
|
|
{
|
|
|
|
MUST(s_builtin_commands.emplace("clear"_sv,
|
|
|
|
[](const SingleCommand&, FILE* fout, int, int) -> int
|
2024-10-06 01:24:34 +03:00
|
|
|
{
|
2024-10-06 18:16:50 +03:00
|
|
|
fprintf(fout, "\e[H\e[3J");
|
|
|
|
fflush(fout);
|
|
|
|
return 0;
|
2024-10-06 01:24:34 +03:00
|
|
|
}
|
2024-10-06 18:16:50 +03:00
|
|
|
));
|
|
|
|
|
|
|
|
MUST(s_builtin_commands.emplace("exit"_sv,
|
|
|
|
[](const SingleCommand& command, FILE*, int, int) -> int
|
2023-06-12 00:45:47 +03:00
|
|
|
{
|
2024-10-06 18:16:50 +03:00
|
|
|
int exit_code = 0;
|
|
|
|
if (command.arguments.size() > 1)
|
2023-06-12 00:45:47 +03:00
|
|
|
{
|
2024-10-06 18:16:50 +03:00
|
|
|
auto exit_string = command.arguments[1].sv();
|
|
|
|
for (size_t i = 0; i < exit_string.size() && isdigit(exit_string[i]); i++)
|
|
|
|
exit_code = (exit_code * 10) + (exit_string[i] - '0');
|
2023-06-12 00:45:47 +03:00
|
|
|
}
|
2024-10-06 18:16:50 +03:00
|
|
|
exit(exit_code);
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
|
|
|
));
|
2023-06-12 00:45:47 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
MUST(s_builtin_commands.emplace("export"_sv,
|
|
|
|
[](const SingleCommand& command, FILE*, int, int) -> int
|
|
|
|
{
|
|
|
|
bool first = false;
|
|
|
|
for (const auto& argument : command.arguments)
|
|
|
|
{
|
|
|
|
if (first)
|
|
|
|
{
|
|
|
|
first = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto split = MUST(argument.sv().split('=', true));
|
|
|
|
if (split.size() != 2)
|
|
|
|
continue;
|
2023-06-12 00:45:47 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
if (setenv(BAN::String(split[0]).data(), BAN::String(split[1]).data(), true) == -1)
|
|
|
|
ERROR_RETURN("setenv", 1);
|
|
|
|
}
|
|
|
|
return 0;
|
2023-06-12 00:45:47 +03:00
|
|
|
}
|
2024-10-06 18:16:50 +03:00
|
|
|
));
|
|
|
|
|
|
|
|
MUST(s_builtin_commands.emplace("source"_sv,
|
|
|
|
[](const SingleCommand& command, FILE* fout, int, int) -> int
|
2023-10-03 10:24:10 +03:00
|
|
|
{
|
2024-10-06 18:16:50 +03:00
|
|
|
if (command.arguments.size() != 2)
|
|
|
|
{
|
|
|
|
fprintf(fout, "usage: source FILE\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return source_script(command.arguments[1]);
|
2023-10-03 10:24:10 +03:00
|
|
|
}
|
2024-10-06 18:16:50 +03:00
|
|
|
));
|
|
|
|
|
|
|
|
MUST(s_builtin_commands.emplace("env"_sv,
|
|
|
|
[](const SingleCommand&, FILE* fout, int, int) -> int
|
2024-09-17 16:38:45 +03:00
|
|
|
{
|
2024-10-06 18:16:50 +03:00
|
|
|
char** current = environ;
|
|
|
|
while (current && *current)
|
|
|
|
fprintf(fout, "%s\n", *current++);
|
|
|
|
return 0;
|
2024-09-17 16:38:45 +03:00
|
|
|
}
|
2024-10-06 18:16:50 +03:00
|
|
|
));
|
2024-09-17 16:38:45 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
MUST(s_builtin_commands.emplace("cd"_sv,
|
|
|
|
[](const SingleCommand& command, FILE* fout, int, int) -> int
|
2024-09-17 16:38:45 +03:00
|
|
|
{
|
2024-10-06 18:16:50 +03:00
|
|
|
if (command.arguments.size() > 2)
|
|
|
|
{
|
|
|
|
fprintf(fout, "cd: too many arguments\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
BAN::StringView path;
|
|
|
|
|
|
|
|
if (command.arguments.size() == 1)
|
|
|
|
{
|
|
|
|
if (const char* path_env = getenv("HOME"))
|
|
|
|
path = path_env;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
2024-09-17 16:38:45 +03:00
|
|
|
else
|
2024-10-06 18:16:50 +03:00
|
|
|
path = command.arguments[1];
|
|
|
|
|
|
|
|
if (chdir(path.data()) == -1)
|
|
|
|
ERROR_RETURN("chdir", 1);
|
|
|
|
|
|
|
|
return 0;
|
2024-09-17 16:38:45 +03:00
|
|
|
}
|
2024-10-06 18:16:50 +03:00
|
|
|
));
|
2024-09-17 16:38:45 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
MUST(s_builtin_commands.emplace("time"_sv,
|
|
|
|
[](const SingleCommand& command, FILE* fout, int fd_in, int fd_out) -> int
|
|
|
|
{
|
|
|
|
SingleCommand timed_command;
|
|
|
|
MUST(timed_command.arguments.reserve(command.arguments.size() - 1));
|
|
|
|
for (size_t i = 1; i < command.arguments.size(); i++)
|
|
|
|
MUST(timed_command.arguments.emplace_back(command.arguments[i]));
|
2024-09-17 16:38:45 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
timespec start, end;
|
2024-09-17 16:38:45 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
if (clock_gettime(CLOCK_MONOTONIC, &start) == -1)
|
|
|
|
ERROR_RETURN("clock_gettime", 1);
|
2024-09-17 16:38:45 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
int ret = execute_command(timed_command, fd_in, fd_out);
|
2024-09-17 16:38:45 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
if (clock_gettime(CLOCK_MONOTONIC, &end) == -1)
|
|
|
|
ERROR_RETURN("clock_gettime", 1);
|
2024-09-17 16:38:45 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
uint64_t total_ns = 0;
|
|
|
|
total_ns += (end.tv_sec - start.tv_sec) * 1'000'000'000;
|
|
|
|
total_ns += end.tv_nsec - start.tv_nsec;
|
2024-09-17 16:38:45 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
int secs = total_ns / 1'000'000'000;
|
|
|
|
int msecs = (total_ns % 1'000'000'000) / 1'000'000;
|
2024-09-17 16:38:45 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
fprintf(fout, "took %d.%03d s\n", secs, msecs);
|
2024-09-17 16:38:45 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
));
|
2023-07-06 00:39:04 +03:00
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
MUST(s_builtin_commands.emplace("start-gui"_sv,
|
|
|
|
[](const SingleCommand&, FILE*, int, int) -> int
|
|
|
|
{
|
|
|
|
const pid_t pid = fork();
|
|
|
|
if (pid == -1)
|
|
|
|
return 1;
|
|
|
|
if (pid == 0)
|
|
|
|
execl("/bin/WindowServer", "WindowServer", NULL);
|
|
|
|
if (fork() == 0)
|
|
|
|
execl("/bin/Terminal", "Terminal", NULL);
|
|
|
|
waitpid(pid, nullptr, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
));
|
2023-08-17 12:05:38 +03:00
|
|
|
}
|
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
static pid_t execute_command_no_wait(const SingleCommand& command, int fd_in, int fd_out, pid_t pgrp)
|
2023-08-17 12:05:38 +03:00
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
ASSERT(!command.arguments.empty());
|
2023-08-17 12:05:38 +03:00
|
|
|
|
|
|
|
BAN::Vector<char*> cmd_args;
|
2024-10-06 00:17:34 +03:00
|
|
|
MUST(cmd_args.reserve(command.arguments.size() + 1));
|
|
|
|
for (const auto& arg : command.arguments)
|
2023-08-17 12:05:38 +03:00
|
|
|
MUST(cmd_args.push_back((char*)arg.data()));
|
|
|
|
MUST(cmd_args.push_back(nullptr));
|
|
|
|
|
2023-09-23 02:43:02 +03:00
|
|
|
// do PATH resolution
|
|
|
|
BAN::String executable_file;
|
2024-10-06 00:17:34 +03:00
|
|
|
if (!command.arguments.front().sv().contains('/'))
|
2023-09-23 02:43:02 +03:00
|
|
|
{
|
2023-12-07 13:34:46 +02:00
|
|
|
const char* path_env_cstr = getenv("PATH");
|
|
|
|
if (path_env_cstr == nullptr)
|
|
|
|
path_env_cstr = "";
|
2023-09-23 02:43:02 +03:00
|
|
|
|
2023-12-07 13:34:46 +02:00
|
|
|
auto path_env_list = MUST(BAN::StringView(path_env_cstr).split(':'));
|
|
|
|
for (auto path_env : path_env_list)
|
|
|
|
{
|
|
|
|
BAN::String test_file = path_env;
|
|
|
|
MUST(test_file.push_back('/'));
|
2024-10-06 00:17:34 +03:00
|
|
|
MUST(test_file.append(command.arguments.front()));
|
2023-09-23 02:43:02 +03:00
|
|
|
|
2023-12-07 13:34:46 +02:00
|
|
|
struct stat st;
|
|
|
|
if (stat(test_file.data(), &st) == 0)
|
2023-09-23 02:43:02 +03:00
|
|
|
{
|
2023-12-07 13:34:46 +02:00
|
|
|
executable_file = BAN::move(test_file);
|
|
|
|
break;
|
2023-09-23 02:43:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
executable_file = command.arguments.front();
|
2023-09-23 02:43:02 +03:00
|
|
|
}
|
|
|
|
|
2023-12-04 22:57:27 +02:00
|
|
|
// Verify that the file exists is executable
|
|
|
|
{
|
|
|
|
struct stat st;
|
2023-12-07 13:34:46 +02:00
|
|
|
if (executable_file.empty() || stat(executable_file.data(), &st) == -1)
|
2023-12-04 22:57:27 +02:00
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
fprintf(stderr, "command not found: %s\n", command.arguments.front().data());
|
2023-12-04 22:57:27 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if ((st.st_mode & 0111) == 0)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "permission denied: %s\n", executable_file.data());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
const pid_t pid = fork();
|
2023-08-17 12:05:38 +03:00
|
|
|
if (pid == 0)
|
|
|
|
{
|
|
|
|
if (fd_in != STDIN_FILENO)
|
2023-06-05 01:42:57 +03:00
|
|
|
{
|
2023-08-17 12:05:38 +03:00
|
|
|
if (dup2(fd_in, STDIN_FILENO) == -1)
|
|
|
|
{
|
|
|
|
perror("dup2");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
close(fd_in);
|
2023-06-05 01:42:57 +03:00
|
|
|
}
|
2023-08-17 12:05:38 +03:00
|
|
|
if (fd_out != STDOUT_FILENO)
|
|
|
|
{
|
|
|
|
if (dup2(fd_out, STDOUT_FILENO) == -1)
|
|
|
|
{
|
|
|
|
perror("dup2");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
close(fd_out);
|
|
|
|
}
|
|
|
|
|
2023-09-23 02:43:02 +03:00
|
|
|
execv(executable_file.data(), cmd_args.data());
|
2023-08-17 12:05:38 +03:00
|
|
|
perror("execv");
|
|
|
|
exit(1);
|
|
|
|
}
|
2023-07-06 09:14:14 +03:00
|
|
|
|
2023-09-23 02:43:02 +03:00
|
|
|
if (pid == -1)
|
|
|
|
ERROR_RETURN("fork", -1);
|
|
|
|
|
2024-10-04 17:23:31 +03:00
|
|
|
if (pgrp == 0 && isatty(0))
|
|
|
|
{
|
|
|
|
if(setpgid(pid, pid) == -1)
|
|
|
|
perror("setpgid");
|
|
|
|
if (tcsetpgrp(0, pid) == -1)
|
|
|
|
perror("tcsetpgrp");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
setpgid(pid, pgrp);
|
|
|
|
}
|
|
|
|
|
2023-08-17 12:05:38 +03:00
|
|
|
return pid;
|
|
|
|
}
|
2023-07-28 18:10:36 +03:00
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
static int execute_command(const SingleCommand& command, int fd_in, int fd_out)
|
2023-08-17 12:05:38 +03:00
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
const pid_t pid = execute_command_no_wait(command, fd_in, fd_out, 0);
|
2023-08-17 12:05:38 +03:00
|
|
|
if (pid == -1)
|
2023-09-23 02:43:02 +03:00
|
|
|
return 1;
|
2023-08-17 12:05:38 +03:00
|
|
|
|
|
|
|
int status;
|
|
|
|
if (waitpid(pid, &status, 0) == -1)
|
|
|
|
ERROR_RETURN("waitpid", 1);
|
|
|
|
|
2024-06-03 18:02:49 +03:00
|
|
|
if (isatty(0) && tcsetpgrp(0, getpgrp()) == -1)
|
2023-08-17 12:05:38 +03:00
|
|
|
ERROR_RETURN("tcsetpgrp", 1);
|
|
|
|
|
|
|
|
if (WIFSIGNALED(status))
|
|
|
|
fprintf(stderr, "Terminated by signal %d\n", WTERMSIG(status));
|
|
|
|
|
|
|
|
return WEXITSTATUS(status);
|
|
|
|
}
|
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
static int execute_piped_commands(const PipedCommand& piped_command)
|
2023-08-17 12:05:38 +03:00
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
if (piped_command.commands.empty())
|
2023-08-17 12:05:38 +03:00
|
|
|
return 0;
|
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
if (piped_command.commands.size() == 1)
|
2023-08-17 12:05:38 +03:00
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
auto& command = piped_command.commands.front();
|
2023-08-17 12:05:38 +03:00
|
|
|
if (auto ret = execute_builtin(command, STDIN_FILENO, STDOUT_FILENO); ret.has_value())
|
|
|
|
return ret.value();
|
|
|
|
return execute_command(command, STDIN_FILENO, STDOUT_FILENO);
|
|
|
|
}
|
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
BAN::Vector<int> exit_codes(piped_command.commands.size(), 0);
|
|
|
|
BAN::Vector<pid_t> processes(piped_command.commands.size(), -1);
|
2023-08-22 14:54:50 +03:00
|
|
|
pid_t pgrp = 0;
|
2023-08-17 12:05:38 +03:00
|
|
|
|
|
|
|
int next_stdin = STDIN_FILENO;
|
2024-10-06 00:17:34 +03:00
|
|
|
for (size_t i = 0; i < piped_command.commands.size(); i++)
|
2023-08-17 12:05:38 +03:00
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
const bool last = (i == piped_command.commands.size() - 1);
|
2023-07-06 00:39:04 +03:00
|
|
|
|
2023-08-17 12:05:38 +03:00
|
|
|
int pipefd[2] { -1, STDOUT_FILENO };
|
|
|
|
if (!last && pipe(pipefd) == -1)
|
|
|
|
{
|
|
|
|
if (i > 0)
|
|
|
|
close(next_stdin);
|
|
|
|
perror("pipe");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
auto builtin_ret = execute_builtin(piped_command.commands[i], next_stdin, pipefd[1]);
|
2023-08-17 12:05:38 +03:00
|
|
|
if (builtin_ret.has_value())
|
|
|
|
exit_codes[i] = builtin_ret.value();
|
|
|
|
else
|
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
pid_t pid = execute_command_no_wait(piped_command.commands[i], next_stdin, pipefd[1], pgrp);
|
2023-08-17 12:05:38 +03:00
|
|
|
processes[i] = pid;
|
2023-08-22 14:54:50 +03:00
|
|
|
if (pgrp == 0)
|
|
|
|
pgrp = pid;
|
2023-08-17 12:05:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (next_stdin != STDIN_FILENO)
|
|
|
|
close(next_stdin);
|
|
|
|
if (pipefd[1] != STDOUT_FILENO)
|
|
|
|
close(pipefd[1]);
|
|
|
|
next_stdin = pipefd[0];
|
|
|
|
}
|
|
|
|
|
2024-10-06 00:17:34 +03:00
|
|
|
for (size_t i = 0; i < piped_command.commands.size(); i++)
|
2023-08-17 12:05:38 +03:00
|
|
|
{
|
|
|
|
if (processes[i] == -1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int status;
|
|
|
|
if (waitpid(processes[i], &status, 0) == -1)
|
|
|
|
{
|
|
|
|
perror("waitpid");
|
|
|
|
exit_codes[i] = 69420;
|
|
|
|
continue;
|
|
|
|
}
|
2023-07-28 18:10:36 +03:00
|
|
|
|
2023-08-01 14:24:36 +03:00
|
|
|
if (WIFSIGNALED(status))
|
|
|
|
fprintf(stderr, "Terminated by signal %d\n", WTERMSIG(status));
|
|
|
|
|
2023-08-17 12:05:38 +03:00
|
|
|
if (WEXITSTATUS(status))
|
|
|
|
exit_codes[i] = WEXITSTATUS(status);
|
2023-06-05 01:42:57 +03:00
|
|
|
}
|
2023-05-16 19:22:46 +03:00
|
|
|
|
2024-06-03 18:02:49 +03:00
|
|
|
if (isatty(0) && tcsetpgrp(0, getpgrp()) == -1)
|
2023-08-17 12:05:38 +03:00
|
|
|
ERROR_RETURN("tcsetpgrp", 1);
|
|
|
|
|
|
|
|
return exit_codes.back();
|
2023-06-05 01:42:57 +03:00
|
|
|
}
|
|
|
|
|
2024-10-05 19:11:58 +03:00
|
|
|
static int parse_and_execute_command(BAN::StringView command)
|
2023-10-03 10:24:10 +03:00
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
command = strip_whitespace(command);
|
2023-10-03 10:24:10 +03:00
|
|
|
if (command.empty())
|
|
|
|
return 0;
|
2024-10-06 00:17:34 +03:00
|
|
|
|
|
|
|
auto command_list = parse_command_list(command);
|
|
|
|
if (command_list.commands.empty())
|
2023-10-03 10:24:10 +03:00
|
|
|
return 0;
|
2024-10-06 00:17:34 +03:00
|
|
|
|
2023-10-03 10:24:10 +03:00
|
|
|
tcsetattr(0, TCSANOW, &old_termios);
|
2024-10-06 00:17:34 +03:00
|
|
|
|
|
|
|
last_return = 0;
|
|
|
|
for (const auto& [expression, condition] : command_list.commands)
|
|
|
|
{
|
|
|
|
bool should_run = false;
|
|
|
|
switch (condition)
|
|
|
|
{
|
|
|
|
case CommandList::Condition::Always:
|
|
|
|
should_run = true;
|
|
|
|
break;
|
|
|
|
case CommandList::Condition::OnSuccess:
|
|
|
|
should_run = (last_return == 0);
|
|
|
|
break;
|
|
|
|
case CommandList::Condition::OnFailure:
|
|
|
|
should_run = (last_return != 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!should_run)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
last_return = execute_piped_commands(parse_piped_command(expression));
|
|
|
|
}
|
|
|
|
|
2023-10-03 10:24:10 +03:00
|
|
|
tcsetattr(0, TCSANOW, &new_termios);
|
2024-10-06 00:17:34 +03:00
|
|
|
|
|
|
|
return last_return;
|
2023-10-03 10:24:10 +03:00
|
|
|
}
|
|
|
|
|
2024-10-05 19:11:58 +03:00
|
|
|
static int source_script(const BAN::String& path)
|
2023-10-03 10:24:10 +03:00
|
|
|
{
|
|
|
|
FILE* fp = fopen(path.data(), "r");
|
|
|
|
if (fp == nullptr)
|
|
|
|
ERROR_RETURN("fopen", 1);
|
|
|
|
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
BAN::String command;
|
|
|
|
char temp_buffer[128];
|
|
|
|
while (fgets(temp_buffer, sizeof(temp_buffer), fp))
|
|
|
|
{
|
|
|
|
MUST(command.append(temp_buffer));
|
|
|
|
if (command.back() != '\n')
|
|
|
|
continue;
|
2024-01-24 14:43:46 +02:00
|
|
|
|
2023-10-03 10:24:10 +03:00
|
|
|
command.pop_back();
|
2024-01-24 14:43:46 +02:00
|
|
|
|
2023-10-03 10:24:10 +03:00
|
|
|
if (!command.empty())
|
|
|
|
if (int temp = parse_and_execute_command(command))
|
|
|
|
ret = temp;
|
|
|
|
command.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!command.empty())
|
|
|
|
if (int temp = parse_and_execute_command(command))
|
|
|
|
ret = temp;
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-10-05 19:11:58 +03:00
|
|
|
static bool exists(const BAN::String& path)
|
2023-10-03 10:24:36 +03:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
return stat(path.data(), &st) == 0;
|
|
|
|
}
|
|
|
|
|
2024-10-05 19:11:58 +03:00
|
|
|
static int source_shellrc()
|
2023-10-03 10:24:36 +03:00
|
|
|
{
|
|
|
|
if (char* home = getenv("HOME"))
|
|
|
|
{
|
|
|
|
BAN::String path(home);
|
2024-06-18 20:32:43 +03:00
|
|
|
MUST(path.append("/.shellrc"_sv));
|
2023-10-03 10:24:36 +03:00
|
|
|
if (exists(path))
|
|
|
|
return source_script(path);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-10-05 19:11:58 +03:00
|
|
|
static int character_length(BAN::StringView prompt)
|
2023-06-05 14:36:17 +03:00
|
|
|
{
|
|
|
|
int length { 0 };
|
|
|
|
bool in_escape { false };
|
|
|
|
for (char c : prompt)
|
|
|
|
{
|
|
|
|
if (in_escape)
|
|
|
|
{
|
|
|
|
if (isalpha(c))
|
|
|
|
in_escape = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (c == '\e')
|
|
|
|
in_escape = true;
|
2023-06-09 01:24:08 +03:00
|
|
|
else if (((uint8_t)c & 0xC0) != 0x80)
|
2023-06-05 14:36:17 +03:00
|
|
|
length++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2024-10-05 19:11:58 +03:00
|
|
|
static BAN::String get_prompt()
|
2023-06-12 00:45:47 +03:00
|
|
|
{
|
|
|
|
const char* raw_prompt = getenv("PS1");
|
|
|
|
if (raw_prompt == nullptr)
|
2024-06-18 20:32:43 +03:00
|
|
|
return "$ "_sv;
|
2023-06-12 00:45:47 +03:00
|
|
|
|
|
|
|
BAN::String prompt;
|
|
|
|
for (int i = 0; raw_prompt[i]; i++)
|
|
|
|
{
|
|
|
|
char ch = raw_prompt[i];
|
|
|
|
if (ch == '\\')
|
|
|
|
{
|
|
|
|
switch (raw_prompt[++i])
|
|
|
|
{
|
|
|
|
case 'e':
|
|
|
|
MUST(prompt.push_back('\e'));
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
MUST(prompt.push_back('\n'));
|
|
|
|
break;
|
|
|
|
case '\\':
|
|
|
|
MUST(prompt.push_back('\\'));
|
|
|
|
break;
|
2023-06-12 01:31:33 +03:00
|
|
|
case '~':
|
|
|
|
{
|
|
|
|
char buffer[256];
|
|
|
|
if (getcwd(buffer, sizeof(buffer)) == nullptr)
|
|
|
|
strcpy(buffer, strerrorname_np(errno));
|
2024-01-24 14:43:46 +02:00
|
|
|
|
2023-06-12 01:31:33 +03:00
|
|
|
const char* home = getenv("HOME");
|
|
|
|
size_t home_len = home ? strlen(home) : 0;
|
|
|
|
if (home && strncmp(buffer, home, home_len) == 0)
|
|
|
|
{
|
|
|
|
MUST(prompt.push_back('~'));
|
|
|
|
MUST(prompt.append(buffer + home_len));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MUST(prompt.append(buffer));
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2023-08-14 14:55:23 +03:00
|
|
|
case 'u':
|
|
|
|
{
|
2023-09-29 19:20:48 +03:00
|
|
|
static char* username = nullptr;
|
|
|
|
if (username == nullptr)
|
|
|
|
{
|
|
|
|
auto* passwd = getpwuid(geteuid());
|
|
|
|
if (passwd == nullptr)
|
|
|
|
break;
|
|
|
|
username = new char[strlen(passwd->pw_name) + 1];
|
|
|
|
strcpy(username, passwd->pw_name);
|
|
|
|
endpwent();
|
|
|
|
}
|
|
|
|
MUST(prompt.append(username));
|
2023-08-14 14:55:23 +03:00
|
|
|
break;
|
|
|
|
}
|
2023-08-22 15:33:01 +03:00
|
|
|
case 'h':
|
|
|
|
{
|
|
|
|
MUST(prompt.append(hostname));
|
|
|
|
break;
|
|
|
|
}
|
2023-06-12 00:45:47 +03:00
|
|
|
case '\0':
|
|
|
|
MUST(prompt.push_back('\\'));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
MUST(prompt.push_back('\\'));
|
|
|
|
MUST(prompt.push_back(*raw_prompt));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MUST(prompt.push_back(ch));
|
|
|
|
}
|
2024-01-24 14:43:46 +02:00
|
|
|
}
|
2023-06-12 01:31:33 +03:00
|
|
|
|
2023-06-12 00:45:47 +03:00
|
|
|
return prompt;
|
|
|
|
}
|
|
|
|
|
2024-10-05 19:11:58 +03:00
|
|
|
static int prompt_length()
|
2023-06-12 00:45:47 +03:00
|
|
|
{
|
|
|
|
return character_length(get_prompt());
|
|
|
|
}
|
|
|
|
|
2024-10-05 19:11:58 +03:00
|
|
|
static void print_prompt()
|
2023-06-12 00:45:47 +03:00
|
|
|
{
|
|
|
|
auto prompt = get_prompt();
|
2024-09-14 22:37:09 +03:00
|
|
|
printf("%.*s", (int)prompt.size(), prompt.data());
|
2023-06-12 00:45:47 +03:00
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
2023-06-05 01:42:57 +03:00
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2024-10-04 17:54:01 +03:00
|
|
|
realpath(argv[0], s_shell_path);
|
2023-07-06 23:22:57 +03:00
|
|
|
|
2024-10-05 19:05:04 +03:00
|
|
|
struct sigaction sa;
|
|
|
|
sa.sa_flags = 0;
|
|
|
|
|
|
|
|
sa.sa_handler = [](int) {};
|
|
|
|
sigaction(SIGINT, &sa, nullptr);
|
|
|
|
|
|
|
|
sa.sa_handler = SIG_IGN;
|
|
|
|
sigaction(SIGTTOU, &sa, nullptr);
|
2023-07-28 18:10:36 +03:00
|
|
|
|
2023-10-24 19:10:53 +03:00
|
|
|
tcgetattr(0, &old_termios);
|
|
|
|
|
2024-07-31 23:53:55 +03:00
|
|
|
char hostname_buffer[HOST_NAME_MAX];
|
|
|
|
if (gethostname(hostname_buffer, sizeof(hostname_buffer)) == 0) {
|
|
|
|
MUST(hostname.append(hostname_buffer));
|
2023-08-22 15:33:01 +03:00
|
|
|
}
|
|
|
|
|
2024-10-04 17:54:01 +03:00
|
|
|
new_termios = old_termios;
|
|
|
|
new_termios.c_lflag &= ~(ECHO | ICANON);
|
|
|
|
tcsetattr(0, TCSANOW, &new_termios);
|
|
|
|
|
|
|
|
atexit([]() { tcsetattr(0, TCSANOW, &old_termios); });
|
|
|
|
|
2024-10-06 18:16:50 +03:00
|
|
|
install_builtin_commands();
|
|
|
|
|
2024-10-04 17:54:01 +03:00
|
|
|
for (int i = 1; i < argc; i++)
|
2023-07-06 23:18:37 +03:00
|
|
|
{
|
2024-10-04 17:54:01 +03:00
|
|
|
if (argv[i][0] != '-')
|
|
|
|
return source_script(BAN::String(argv[i]));
|
|
|
|
|
|
|
|
if (strcmp(argv[i], "-c") == 0)
|
2023-07-06 23:18:37 +03:00
|
|
|
{
|
2024-10-04 17:54:01 +03:00
|
|
|
if (i + 1 >= argc)
|
2023-07-06 23:18:37 +03:00
|
|
|
{
|
|
|
|
printf("-c requires an argument\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2024-10-06 00:17:34 +03:00
|
|
|
return parse_and_execute_command(BAN::String(argv[i + 1]));
|
2023-07-06 23:18:37 +03:00
|
|
|
}
|
2024-10-04 17:54:01 +03:00
|
|
|
else if (strcmp(argv[i], "-v") == 0 || strcmp(argv[i], "--version") == 0)
|
|
|
|
{
|
|
|
|
printf("banan-sh 1.0\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0)
|
|
|
|
{
|
|
|
|
printf("usage: %s [options...]\n", argv[0]);
|
|
|
|
printf(" -c run following argument as an argument\n");
|
|
|
|
printf(" -v, --version print version information and exit\n");
|
|
|
|
printf(" -h, --help print this message and exit\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("unknown argument '%s'\n", argv[i]);
|
|
|
|
return 1;
|
|
|
|
}
|
2023-07-06 23:18:37 +03:00
|
|
|
}
|
|
|
|
|
2023-10-03 10:24:36 +03:00
|
|
|
source_shellrc();
|
2023-06-18 23:35:51 +03:00
|
|
|
|
2023-06-05 01:42:57 +03:00
|
|
|
BAN::Vector<BAN::String> buffers, history;
|
2024-06-18 20:32:43 +03:00
|
|
|
MUST(buffers.emplace_back(""_sv));
|
2023-06-05 01:42:57 +03:00
|
|
|
size_t index = 0;
|
|
|
|
size_t col = 0;
|
|
|
|
|
2023-06-05 18:53:52 +03:00
|
|
|
int waiting_utf8 = 0;
|
2023-06-05 01:42:57 +03:00
|
|
|
|
2023-06-12 00:45:47 +03:00
|
|
|
print_prompt();
|
2023-06-05 01:42:57 +03:00
|
|
|
|
2023-05-16 19:22:46 +03:00
|
|
|
while (true)
|
|
|
|
{
|
2023-12-06 13:04:33 +02:00
|
|
|
int chi = getchar();
|
|
|
|
if (chi == EOF)
|
|
|
|
{
|
2024-09-14 22:27:32 +03:00
|
|
|
if (errno != EINTR)
|
2023-12-06 13:04:33 +02:00
|
|
|
{
|
2024-09-14 22:27:32 +03:00
|
|
|
perror("getchar");
|
2024-10-04 17:54:01 +03:00
|
|
|
return 1;
|
2023-12-06 13:04:33 +02:00
|
|
|
}
|
2024-09-14 22:27:32 +03:00
|
|
|
|
|
|
|
clearerr(stdin);
|
|
|
|
buffers = history;
|
|
|
|
MUST(buffers.emplace_back(""_sv));
|
|
|
|
col = 0;
|
2024-09-14 22:37:09 +03:00
|
|
|
putchar('\n');
|
2024-09-14 22:27:32 +03:00
|
|
|
print_prompt();
|
|
|
|
continue;
|
2023-12-06 13:04:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t ch = chi;
|
2023-06-05 01:42:57 +03:00
|
|
|
|
2023-06-05 18:53:52 +03:00
|
|
|
if (waiting_utf8 > 0)
|
|
|
|
{
|
|
|
|
waiting_utf8--;
|
|
|
|
|
|
|
|
ASSERT((ch & 0xC0) == 0x80);
|
|
|
|
|
2024-09-14 22:37:09 +03:00
|
|
|
putchar(ch);
|
2023-06-05 18:53:52 +03:00
|
|
|
MUST(buffers[index].insert(ch, col++));
|
|
|
|
if (waiting_utf8 == 0)
|
|
|
|
{
|
2024-09-14 22:37:09 +03:00
|
|
|
printf("\e[s%s\e[u", buffers[index].data() + col);
|
2023-06-05 18:53:52 +03:00
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (ch & 0x80)
|
|
|
|
{
|
|
|
|
if ((ch & 0xE0) == 0xC0)
|
|
|
|
waiting_utf8 = 1;
|
|
|
|
else if ((ch & 0xF0) == 0xE0)
|
|
|
|
waiting_utf8 = 2;
|
|
|
|
else if ((ch & 0xF8) == 0xF0)
|
|
|
|
waiting_utf8 = 3;
|
|
|
|
else
|
|
|
|
ASSERT_NOT_REACHED();
|
2024-01-24 14:43:46 +02:00
|
|
|
|
2024-09-14 22:37:09 +03:00
|
|
|
putchar(ch);
|
2023-06-05 18:53:52 +03:00
|
|
|
MUST(buffers[index].insert(ch, col++));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ch)
|
2023-06-05 01:42:57 +03:00
|
|
|
{
|
|
|
|
case '\e':
|
2024-10-04 04:14:47 +03:00
|
|
|
{
|
2023-09-07 15:51:05 +03:00
|
|
|
ch = getchar();
|
2023-06-05 18:53:52 +03:00
|
|
|
if (ch != '[')
|
2023-06-05 01:42:57 +03:00
|
|
|
break;
|
2023-09-07 15:51:05 +03:00
|
|
|
ch = getchar();
|
2024-10-04 04:14:47 +03:00
|
|
|
|
|
|
|
int value = 0;
|
|
|
|
while (isdigit(ch))
|
|
|
|
{
|
|
|
|
value = (value * 10) + (ch - '0');
|
|
|
|
ch = getchar();
|
|
|
|
}
|
|
|
|
|
2023-06-05 18:53:52 +03:00
|
|
|
switch (ch)
|
2023-06-05 01:42:57 +03:00
|
|
|
{
|
2024-09-14 22:37:09 +03:00
|
|
|
case 'A': if (index > 0) { index--; col = buffers[index].size(); printf("\e[%dG%s\e[K", prompt_length() + 1, buffers[index].data()); fflush(stdout); } break;
|
|
|
|
case 'B': if (index < buffers.size() - 1) { index++; col = buffers[index].size(); printf("\e[%dG%s\e[K", prompt_length() + 1, buffers[index].data()); fflush(stdout); } break;
|
|
|
|
case 'C': if (col < buffers[index].size()) { col++; while ((buffers[index][col - 1] & 0xC0) == 0x80) col++; printf("\e[C"); fflush(stdout); } break;
|
|
|
|
case 'D': if (col > 0) { while ((buffers[index][col - 1] & 0xC0) == 0x80) col--; col--; printf("\e[D"); fflush(stdout); } break;
|
2024-10-04 04:14:47 +03:00
|
|
|
case '~':
|
|
|
|
switch (value)
|
|
|
|
{
|
|
|
|
case 3: // delete
|
|
|
|
if (col >= buffers[index].size())
|
|
|
|
break;
|
|
|
|
buffers[index].remove(col);
|
|
|
|
while (col < buffers[index].size() && (buffers[index][col] & 0xC0) == 0x80)
|
|
|
|
buffers[index].remove(col);
|
|
|
|
printf("\e[s%s \e[u", buffers[index].data() + col);
|
|
|
|
fflush(stdout);
|
|
|
|
break;
|
|
|
|
}
|
2023-06-05 01:42:57 +03:00
|
|
|
}
|
|
|
|
break;
|
2024-10-04 04:14:47 +03:00
|
|
|
}
|
2023-06-09 01:24:08 +03:00
|
|
|
case '\x0C': // ^L
|
|
|
|
{
|
2023-06-12 00:45:47 +03:00
|
|
|
int x = prompt_length() + character_length(buffers[index].sv().substring(col)) + 1;
|
2024-09-14 22:37:09 +03:00
|
|
|
printf("\e[H\e[J");
|
2023-06-12 00:45:47 +03:00
|
|
|
print_prompt();
|
2024-09-14 22:37:09 +03:00
|
|
|
printf("%s\e[u\e[1;%dH", buffers[index].data(), x);
|
2023-06-09 01:24:08 +03:00
|
|
|
fflush(stdout);
|
|
|
|
break;
|
|
|
|
}
|
2023-06-05 01:42:57 +03:00
|
|
|
case '\b':
|
2024-10-04 04:14:47 +03:00
|
|
|
if (col <= 0)
|
|
|
|
break;
|
|
|
|
while ((buffers[index][col - 1] & 0xC0) == 0x80)
|
|
|
|
col--;
|
|
|
|
col--;
|
|
|
|
printf("\e[D");
|
|
|
|
fflush(stdout);
|
2023-06-05 01:42:57 +03:00
|
|
|
break;
|
2023-08-14 12:26:22 +03:00
|
|
|
case '\x01': // ^A
|
|
|
|
col = 0;
|
2024-09-14 22:37:09 +03:00
|
|
|
printf("\e[%dG", prompt_length() + 1);
|
2023-08-14 12:26:22 +03:00
|
|
|
fflush(stdout);
|
|
|
|
break;
|
2023-07-28 18:10:36 +03:00
|
|
|
case '\x03': // ^C
|
2024-09-14 22:37:09 +03:00
|
|
|
putchar('\n');
|
2023-07-28 18:10:36 +03:00
|
|
|
print_prompt();
|
|
|
|
buffers[index].clear();
|
|
|
|
col = 0;
|
|
|
|
break;
|
2024-06-03 18:03:19 +03:00
|
|
|
case '\x04': // ^D
|
2024-09-14 22:37:09 +03:00
|
|
|
putchar('\n');
|
2024-10-04 17:54:01 +03:00
|
|
|
return 0;
|
2024-10-04 04:14:47 +03:00
|
|
|
case '\x7F': // backspace
|
|
|
|
if (col <= 0)
|
|
|
|
break;
|
|
|
|
while ((buffers[index][col - 1] & 0xC0) == 0x80)
|
|
|
|
buffers[index].remove(--col);
|
|
|
|
buffers[index].remove(--col);
|
|
|
|
printf("\b\e[s%s \e[u", buffers[index].data() + col);
|
|
|
|
fflush(stdout);
|
2024-09-14 22:45:48 +03:00
|
|
|
break;
|
2023-06-05 01:42:57 +03:00
|
|
|
case '\n':
|
2024-09-14 22:37:09 +03:00
|
|
|
putchar('\n');
|
2023-06-05 01:42:57 +03:00
|
|
|
if (!buffers[index].empty())
|
|
|
|
{
|
2024-10-06 00:17:34 +03:00
|
|
|
parse_and_execute_command(buffers[index]);
|
2023-06-05 01:42:57 +03:00
|
|
|
MUST(history.push_back(buffers[index]));
|
|
|
|
buffers = history;
|
2024-06-18 20:32:43 +03:00
|
|
|
MUST(buffers.emplace_back(""_sv));
|
2023-06-05 01:42:57 +03:00
|
|
|
}
|
2023-06-12 00:45:47 +03:00
|
|
|
print_prompt();
|
2023-06-05 01:42:57 +03:00
|
|
|
index = buffers.size() - 1;
|
|
|
|
col = 0;
|
|
|
|
break;
|
2024-05-07 14:16:17 +03:00
|
|
|
case '\t':
|
|
|
|
// FIXME: Implement tab completion or something
|
|
|
|
break;
|
2023-06-05 01:42:57 +03:00
|
|
|
default:
|
2023-06-05 18:53:52 +03:00
|
|
|
MUST(buffers[index].insert(ch, col++));
|
2024-06-03 18:03:19 +03:00
|
|
|
if (col == buffers[index].size())
|
2024-09-14 22:37:09 +03:00
|
|
|
putchar(ch);
|
2024-06-03 18:03:19 +03:00
|
|
|
else
|
2024-09-14 22:37:09 +03:00
|
|
|
printf("%c\e[s%s\e[u", ch, buffers[index].data() + col);
|
2023-06-05 01:42:57 +03:00
|
|
|
fflush(stdout);
|
|
|
|
break;
|
|
|
|
}
|
2023-05-16 19:22:46 +03:00
|
|
|
}
|
|
|
|
}
|