// yabridge: a Wine VST bridge
// Copyright (C) 2020-2022 Robbert van der Helm
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
#include "utils.h"
#include
#include
#include
namespace bp = boost::process;
namespace fs = boost::filesystem;
using namespace std::literals::string_view_literals;
/**
* If this environment variable is set to `1`, then we won't enable the watchdog
* timer. This is only necessary when running the Wine process under a different
* namespace than the host.
*/
constexpr char disable_watchdog_timer_env_var[] = "YABRIDGE_NO_WATCHDOG";
/**
* If this environment variable is set, yabridge will store its sockets and
* other temporary files here instead of in `$XDG_RUNTIME_DIR` or `/tmp`. This
* is only relevant when using some namespacing setup for sandboxing.
*/
constexpr char temp_dir_override_env_var[] = "YABRIDGE_TEMP_DIR";
fs::path get_temporary_directory() {
const bp::environment env = boost::this_process::environment();
if (const auto directory = env.find(temp_dir_override_env_var);
directory != env.end()) {
return directory->to_string();
} else if (const auto directory = env.find("XDG_RUNTIME_DIR");
directory != env.end()) {
return directory->to_string();
} else {
return fs::temp_directory_path();
}
}
std::optional get_realtime_priority() noexcept {
sched_param current_params{};
if (sched_getparam(0, ¤t_params) == 0 &&
current_params.sched_priority > 0) {
return current_params.sched_priority;
} else {
return std::nullopt;
}
}
bool set_realtime_priority(bool sched_fifo, int priority) noexcept {
sched_param params{.sched_priority = (sched_fifo ? priority : 0)};
return sched_setscheduler(0, sched_fifo ? SCHED_FIFO : SCHED_OTHER,
¶ms) == 0;
}
std::optional get_memlock_limit() noexcept {
rlimit limits{};
if (getrlimit(RLIMIT_MEMLOCK, &limits) == 0) {
return limits.rlim_cur;
} else {
return std::nullopt;
}
}
std::optional get_rttime_limit() noexcept {
rlimit limits{};
if (getrlimit(RLIMIT_RTTIME, &limits) == 0) {
return limits.rlim_cur;
} else {
return std::nullopt;
}
}
bool is_watchdog_timer_disabled() {
// This is safe because we're not storing the pointer anywhere and the
// environment doesn't get modified anywhere
// NOLINTNEXTLINE(concurrency-mt-unsafe)
const char* disable_watchdog_env = getenv(disable_watchdog_timer_env_var);
return disable_watchdog_env && disable_watchdog_env == "1"sv;
}
bool pid_running(pid_t pid) {
// With regular individually hosted plugins we can simply check whether the
// process is still running, however Boost.Process does not allow you to do
// the same thing for a process that's not a direct child if this process.
// When using plugin groups we'll have to manually check whether the PID
// returned by the group host process is still active. We sadly can't use
// `kill()` for this as that provides no way to distinguish between active
// processes and zombies, and a terminated group host process will always be
// left as a zombie process. If the process is active, then
// `/proc//{cwd,exe,root}` will be valid symlinks.
boost::system::error_code err;
fs::canonical("/proc/" + std::to_string(pid) + "/exe", err);
// NOTE: We can get a `EACCES` here if we don't have permissions to read
// this process's memory. This does mean that the process is still
// running.
return !err.failed() || err.value() == EACCES;
}
std::string url_encode_path(std::string path) {
// We only need to escape a couple of special characters here. This is used
// in the notifications as well as in the XDND proxy. We encode the reserved
// characters mentioned here, with the exception of the forward slash:
// https://en.wikipedia.org/wiki/Percent-encoding#Reserved_characters
std::string escaped;
escaped.reserve(
static_cast(static_cast(path.size()) * 1.1));
for (const char& character : path) {
switch (character) {
// Spaces are somehow in the above list, but Bitwig Studio requires
// spaces to be escaped in the `text/uri-list` format
case ' ':
escaped.append("%20");
break;
case '!':
escaped.append("%21");
break;
case '#':
escaped.append("%23");
break;
case '$':
escaped.append("%24");
break;
case '%':
escaped.append("%25");
break;
case '&':
escaped.append("%26");
break;
case '\'':
escaped.append("%27");
break;
case '(':
escaped.append("%28");
break;
case ')':
escaped.append("%29");
break;
case '*':
escaped.append("%2A");
break;
case '+':
escaped.append("%2B");
break;
case ',':
escaped.append("%2C");
break;
case ':':
escaped.append("%3A");
break;
case ';':
escaped.append("%3B");
break;
case '=':
escaped.append("%3D");
break;
case '?':
escaped.append("%3F");
break;
case '@':
escaped.append("%40");
break;
case '[':
escaped.append("%5B");
break;
case ']':
escaped.append("%5D");
break;
default:
escaped.push_back(character);
break;
}
}
return escaped;
}
std::string xml_escape(std::string string) {
// Implementation idea stolen from https://stackoverflow.com/a/5665377
std::string escaped;
escaped.reserve(
static_cast(static_cast(string.size()) * 1.1));
for (const char& character : string) {
switch (character) {
case '&':
escaped.append("&");
break;
case '\"':
escaped.append(""");
break;
case '\'':
escaped.append("'");
break;
case '<':
escaped.append("<");
break;
case '>':
escaped.append(">");
break;
default:
escaped.push_back(character);
break;
}
}
return escaped;
}
ScopedFlushToZero::ScopedFlushToZero() noexcept {
old_ftz_mode_ = _MM_GET_FLUSH_ZERO_MODE();
_MM_SET_FLUSH_ZERO_MODE(_MM_FLUSH_ZERO_ON);
}
ScopedFlushToZero::~ScopedFlushToZero() noexcept {
if (old_ftz_mode_) {
_MM_SET_FLUSH_ZERO_MODE(*old_ftz_mode_);
}
}
ScopedFlushToZero::ScopedFlushToZero(ScopedFlushToZero&& o) noexcept
: old_ftz_mode_(std::move(o.old_ftz_mode_)) {
o.old_ftz_mode_.reset();
}
ScopedFlushToZero& ScopedFlushToZero::operator=(
ScopedFlushToZero&& o) noexcept {
old_ftz_mode_ = std::move(o.old_ftz_mode_);
o.old_ftz_mode_.reset();
return *this;
}