2024-02-24 07:47:12 +01:00
|
|
|
#include "pty.h"
|
|
|
|
|
|
|
|
#include<godot_cpp/classes/project_settings.hpp>
|
|
|
|
#include <uv.h>
|
|
|
|
|
|
|
|
#if (defined(__linux__) || defined(__APPLE__)) && !defined(_PTY_DISABLED)
|
|
|
|
#include "pty_unix.h"
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
#define UV_ERR_MSG(uv_err) \
|
|
|
|
String(uv_err_name(uv_err)) + String(": ") + String(uv_strerror(uv_err))
|
|
|
|
|
|
|
|
#define ERR_FAIL_UV_ERR(uv_err) \
|
|
|
|
ERR_FAIL_COND_V_MSG(uv_err < 0, PTY::uv_err_to_godot_err(uv_err), \
|
|
|
|
UV_ERR_MSG(uv_err))
|
|
|
|
|
2024-02-24 07:47:12 +01:00
|
|
|
using namespace godot;
|
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
void _alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf);
|
|
|
|
void _read_cb(uv_stream_t *pipe, ssize_t nread, const uv_buf_t *buf);
|
2024-02-25 09:24:53 +01:00
|
|
|
void _write_cb(uv_write_t *req, int status) { std::free(req); }
|
2024-02-25 04:30:39 +01:00
|
|
|
void _close_cb(uv_handle_t *handle);
|
|
|
|
|
|
|
|
void PTY::_bind_methods() {
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGHUP);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGINT);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGQUIT);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGILL);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGTRAP);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGABRT);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGBUS);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGFPE);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGKILL);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGUSR1);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGSEGV);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGUSR2);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGPIPE);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGALRM);
|
|
|
|
BIND_ENUM_CONSTANT(SIGNAL_SIGTERM);
|
|
|
|
|
|
|
|
ADD_SIGNAL(MethodInfo("data_received", PropertyInfo(Variant::PACKED_BYTE_ARRAY, "data")));
|
|
|
|
ADD_SIGNAL(MethodInfo("exited", PropertyInfo(Variant::INT, "exit_code"), PropertyInfo(Variant::INT, "signal_code")));
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_env"), &PTY::get_env);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_env", "env"), &PTY::set_env);
|
|
|
|
ClassDB::add_property("PTY", PropertyInfo(Variant::DICTIONARY, "env"), "set_env", "get_env");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_use_os_env"), &PTY::get_use_os_env);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_use_os_env", "use_os_env"), &PTY::set_use_os_env);
|
|
|
|
ClassDB::add_property("PTY", PropertyInfo(Variant::BOOL, "use_os_env"), "set_use_os_env", "get_use_os_env");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_pts"), &PTY::get_pts);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("fork", "file", "args", "cwd", "cols", "rows"), &PTY::fork, DEFVAL(""), DEFVAL(PackedStringArray()), DEFVAL("."), DEFVAL(80), DEFVAL(24));
|
|
|
|
ClassDB::bind_method(D_METHOD("open", "cols", "rows"), &PTY::open, DEFVAL(80), DEFVAL(24));
|
|
|
|
ClassDB::bind_method(D_METHOD("write", "data"), &PTY::write);
|
2024-02-25 11:17:45 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("resize", "cols", "rows"), &PTY::resize);
|
|
|
|
ClassDB::bind_method(D_METHOD("resizev", "size"), &PTY::resizev);
|
2024-02-25 04:30:39 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("kill", "signal"), &PTY::kill);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("_on_exit", "exit_code", "signal_code"), &PTY::_on_exit);
|
|
|
|
}
|
|
|
|
|
2024-02-24 07:47:12 +01:00
|
|
|
PTY::PTY() {
|
2024-02-25 04:30:39 +01:00
|
|
|
status = STATUS_NONE;
|
2024-02-24 07:47:12 +01:00
|
|
|
|
|
|
|
env["TERM"] = "xterm-256color";
|
|
|
|
env["COLORTERM"] = "truecolor";
|
2024-02-25 04:30:39 +01:00
|
|
|
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
|
|
uv_pipe_init(uv_default_loop(), &pipe, false);
|
|
|
|
pipe.data = this;
|
|
|
|
#endif
|
2024-02-24 07:47:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
PTY::~PTY() {
|
2024-02-25 04:30:39 +01:00
|
|
|
_close();
|
2024-02-24 07:47:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int PTY::get_cols() const {
|
|
|
|
return cols;
|
|
|
|
}
|
|
|
|
|
|
|
|
int PTY::get_rows() const {
|
|
|
|
return rows;
|
|
|
|
}
|
|
|
|
|
|
|
|
Dictionary PTY::get_env() const {
|
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PTY::set_env(const Dictionary &value) {
|
|
|
|
env = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PTY::get_use_os_env() const {
|
|
|
|
return use_os_env;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PTY::set_use_os_env(const bool value) {
|
|
|
|
use_os_env = value;
|
|
|
|
}
|
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
String PTY::get_pts() const {
|
|
|
|
return pts;
|
|
|
|
}
|
|
|
|
|
2024-02-24 07:47:12 +01:00
|
|
|
Error PTY::fork(const String &file, const PackedStringArray &args, const String &cwd, const int cols, const int rows) {
|
|
|
|
String fork_file = _get_fork_file(file);
|
|
|
|
Dictionary fork_env = _get_fork_env();
|
|
|
|
Dictionary result;
|
|
|
|
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
2024-02-25 04:30:39 +01:00
|
|
|
String helper_path = ProjectSettings::get_singleton()->globalize_path("res://addons/godot_xterm/native/bin/spawn-helper");
|
2024-02-25 10:09:04 +01:00
|
|
|
result = PTYUnix::fork(fork_file, args, _parse_env(fork_env), cwd, cols, rows, -1, -1, true, helper_path, Callable(this, "_on_exit"));
|
2024-02-24 07:47:12 +01:00
|
|
|
#endif
|
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
Error err = static_cast<Error>((int)result["error"]);
|
|
|
|
ERR_FAIL_COND_V_MSG(err != OK, err, "Failed to fork.");
|
|
|
|
|
|
|
|
fd = result["fd"];
|
|
|
|
pid = result["pid"];
|
|
|
|
pts = result["pty"];
|
|
|
|
|
|
|
|
# if defined(__linux__) || defined(__APPLE__)
|
|
|
|
err = _pipe_open(fd);
|
|
|
|
if (err != OK) {
|
|
|
|
status = STATUS_ERROR;
|
|
|
|
ERR_FAIL_V_MSG(err, "Failed to open pipe.");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return OK;
|
2024-02-24 07:47:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PTY::kill(const int signal) {
|
|
|
|
#if (defined(__linux__) || defined(__APPLE__)) && !defined(_PTY_DISABLED)
|
|
|
|
if (pid > 0) {
|
|
|
|
uv_kill(pid, signal);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
Error PTY::open(const int cols, const int rows) {
|
2024-02-24 07:47:12 +01:00
|
|
|
Dictionary result;
|
|
|
|
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
|
|
result = PTYUnix::open(cols, rows);
|
|
|
|
#endif
|
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
Error err = static_cast<Error>((int)result["error"]);
|
|
|
|
ERR_FAIL_COND_V(err != OK, err);
|
|
|
|
|
|
|
|
pts = result["pty"];
|
|
|
|
|
|
|
|
return OK;
|
2024-02-24 07:47:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PTY::resize(const int cols, const int rows) const {
|
2024-02-25 11:17:45 +01:00
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
|
|
PTYUnix::resize(fd, cols, rows);
|
|
|
|
#endif
|
2024-02-24 07:47:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void PTY::write(const Variant &data) const {
|
2024-02-25 09:24:53 +01:00
|
|
|
PackedByteArray bytes;
|
|
|
|
|
|
|
|
switch (data.get_type())
|
|
|
|
{
|
|
|
|
case Variant::STRING:
|
|
|
|
bytes = ((String)data).to_utf8_buffer();
|
|
|
|
break;
|
|
|
|
case Variant::PACKED_BYTE_ARRAY:
|
|
|
|
bytes = data;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ERR_FAIL_MSG("Data must be a String or PackedByteArray.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status == STATUS_CONNECTED) {
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
|
|
uv_buf_t buf;
|
|
|
|
buf.base = (char *)bytes.ptr();
|
|
|
|
buf.len = bytes.size();
|
|
|
|
uv_write_t *req = (uv_write_t *)malloc(sizeof(uv_write_t));
|
|
|
|
req->data = (void *)buf.base;
|
|
|
|
uv_write(req, (uv_stream_t *)&pipe, &buf, 1, _write_cb);
|
|
|
|
uv_run(uv_default_loop(), UV_RUN_NOWAIT);
|
|
|
|
#endif
|
|
|
|
}
|
2024-02-24 07:47:12 +01:00
|
|
|
}
|
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
void PTY::_process(double delta) {
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
|
|
if (status == STATUS_CONNECTED) {
|
|
|
|
if (!uv_is_active((uv_handle_t *)&pipe)) {
|
|
|
|
uv_read_start((uv_stream_t *)&pipe, _alloc_buffer, _read_cb);
|
|
|
|
}
|
2024-02-24 07:47:12 +01:00
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
uv_run(uv_default_loop(), UV_RUN_NOWAIT);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2024-02-24 07:47:12 +01:00
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
void PTY::_close() {
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
|
|
if (!uv_is_closing((uv_handle_t *)&pipe)) {
|
|
|
|
uv_close((uv_handle_t *)&pipe, _close_cb);
|
|
|
|
}
|
2024-02-24 07:47:12 +01:00
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
uv_run(uv_default_loop(), UV_RUN_NOWAIT);
|
2024-02-24 07:47:12 +01:00
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
if (fd > 0) close(fd);
|
|
|
|
if (pid > 0) kill(SIGNAL_SIGHUP);
|
2024-02-24 07:47:12 +01:00
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
fd = -1;
|
|
|
|
pid = -1;
|
|
|
|
status = STATUS_NONE;
|
|
|
|
#endif
|
|
|
|
}
|
2024-02-24 07:47:12 +01:00
|
|
|
|
|
|
|
String PTY::_get_fork_file(const String &file) const {
|
|
|
|
if (!file.is_empty()) return file;
|
|
|
|
|
2024-02-25 04:30:39 +01:00
|
|
|
String shell_env = OS::get_singleton()->get_environment("SHELL");
|
2024-02-24 07:47:12 +01:00
|
|
|
if (!shell_env.is_empty()) {
|
|
|
|
return shell_env;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(__linux__)
|
|
|
|
return "sh";
|
|
|
|
#endif
|
|
|
|
#if defined(__APPLE__)
|
|
|
|
return "zsh";
|
|
|
|
#endif
|
|
|
|
#if defined(_WIN32)
|
|
|
|
return "cmd.exe";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
Dictionary PTY::_get_fork_env() const {
|
|
|
|
if (!use_os_env) return env;
|
|
|
|
|
|
|
|
#if defined(_PTY_DISABLED)
|
|
|
|
return env;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Dictionary os_env;
|
|
|
|
uv_env_item_t *uv_env;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
uv_os_environ(&uv_env, &count);
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
os_env[uv_env[i].name] = uv_env[i].value;
|
|
|
|
}
|
|
|
|
uv_os_free_environ(uv_env, count);
|
|
|
|
|
|
|
|
// Make sure we didn't start our server from inside tmux.
|
|
|
|
os_env.erase("TMUX");
|
|
|
|
os_env.erase("TMUX_PANE");
|
|
|
|
|
|
|
|
// Make sure we didn't start our server from inside screen.
|
|
|
|
// http://web.mit.edu/gnu/doc/html/screen_20.html
|
|
|
|
os_env.erase("STY");
|
|
|
|
os_env.erase("WINDOW");
|
|
|
|
|
|
|
|
// Delete some variables that might confuse our terminal.
|
|
|
|
os_env.erase("WINDOWID");
|
|
|
|
os_env.erase("TERMCAP");
|
|
|
|
os_env.erase("COLUMNS");
|
|
|
|
os_env.erase("LINES");
|
|
|
|
|
|
|
|
// Merge in our custom environment.
|
|
|
|
PackedStringArray keys = PackedStringArray(env.keys());
|
|
|
|
for (int i = 0; i < keys.size(); i++) {
|
|
|
|
String key = keys[i];
|
|
|
|
os_env[key] = env[key];
|
|
|
|
}
|
|
|
|
|
|
|
|
return os_env;
|
|
|
|
}
|
|
|
|
|
2024-02-25 10:09:04 +01:00
|
|
|
PackedStringArray PTY::_parse_env(const Dictionary &env) const {
|
|
|
|
PackedStringArray parsed_env;
|
|
|
|
PackedStringArray keys = PackedStringArray(env.keys());
|
|
|
|
|
|
|
|
for (int i = 0; i < keys.size(); i++) {
|
|
|
|
String key = keys[i];
|
|
|
|
parsed_env.push_back(key + "=" + String(env[key]));
|
|
|
|
}
|
|
|
|
|
|
|
|
return parsed_env;
|
|
|
|
}
|
|
|
|
|
2024-02-24 07:47:12 +01:00
|
|
|
void PTY::_on_exit(int exit_code, int exit_signal) {
|
|
|
|
emit_signal(StringName("exited"), exit_code, exit_signal);
|
|
|
|
}
|
2024-02-25 04:30:39 +01:00
|
|
|
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
|
|
|
|
|
|
void _alloc_buffer(uv_handle_t *handle, size_t suggested_size, uv_buf_t *buf) {
|
|
|
|
buf->base = (char *)malloc(suggested_size);
|
|
|
|
buf->len = suggested_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _read_cb(uv_stream_t *pipe, ssize_t nread, const uv_buf_t *buf) {
|
|
|
|
PTY *pty = static_cast<PTY *>(pipe->data);
|
|
|
|
|
|
|
|
if (nread < 0) {
|
|
|
|
switch (nread) {
|
|
|
|
case UV_EOF:
|
|
|
|
// Normal after shell exits.
|
|
|
|
case UV_EIO:
|
|
|
|
// Can happen when the process exits.
|
|
|
|
// As long as PTY has caught it, we should be fine.
|
|
|
|
uv_read_stop(pipe);
|
|
|
|
pty->status = PTY::Status::STATUS_NONE;
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
pty->status = PTY::Status::STATUS_ERROR;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PackedByteArray data;
|
|
|
|
data.resize(nread);
|
|
|
|
memcpy(data.ptrw(), buf->base, nread);
|
|
|
|
std::free((char *)buf->base);
|
|
|
|
pty->call_deferred("emit_signal", "data_received", data);
|
|
|
|
|
|
|
|
// Stop reading until the next poll, otherwise _read_cb could be called
|
|
|
|
// repeatedly, blocking Godot, and eventually resulting in a memory pool
|
|
|
|
// allocation error. This can be triggered with the command `cat /dev/urandom`
|
|
|
|
// if reading is not stopped.
|
|
|
|
uv_read_stop(pipe);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _close_cb(uv_handle_t *pipe) {
|
|
|
|
PTY *pty = static_cast<PTY *>(pipe->data);
|
|
|
|
pty->status = PTY::Status::STATUS_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Error PTY::_pipe_open(const int fd) {
|
|
|
|
ERR_FAIL_COND_V_MSG(fd < 0, FAILED, "File descriptor must be a non-negative integer value.");
|
|
|
|
|
|
|
|
ERR_FAIL_UV_ERR(uv_pipe_open(&pipe, fd));
|
|
|
|
ERR_FAIL_UV_ERR(uv_stream_set_blocking((uv_stream_t *)&pipe, false));
|
|
|
|
ERR_FAIL_UV_ERR(uv_read_start((uv_stream_t *)&pipe, _alloc_buffer, _read_cb));
|
|
|
|
|
|
|
|
status = STATUS_CONNECTED;
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|