mirror of
https://github.com/matrix-construct/construct
synced 2024-11-27 01:02:46 +01:00
272 lines
3.9 KiB
C++
272 lines
3.9 KiB
C++
// The Construct
|
|
//
|
|
// Copyright (C) The Construct Developers, Authors & Contributors
|
|
// Copyright (C) 2016-2020 Jason Volk <jason@zemos.net>
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
// full license for this software is available in the LICENSE file.
|
|
|
|
decltype(ircd::m::app::log)
|
|
ircd::m::app::log
|
|
{
|
|
"m.app"
|
|
};
|
|
|
|
decltype(ircd::m::app::path)
|
|
ircd::m::app::path
|
|
{
|
|
{ "name", "ircd.m.app.path" },
|
|
{ "default", string_view{} },
|
|
{ "persist", false },
|
|
};
|
|
|
|
decltype(ircd::m::app::bin)
|
|
ircd::m::app::bin;
|
|
|
|
template<>
|
|
decltype(ircd::util::instance_list<ircd::m::app>::allocator)
|
|
ircd::util::instance_list<ircd::m::app>::allocator{};
|
|
|
|
template<>
|
|
decltype(ircd::util::instance_list<ircd::m::app>::list)
|
|
ircd::util::instance_list<ircd::m::app>::list
|
|
{
|
|
allocator
|
|
};
|
|
|
|
//
|
|
// init
|
|
//
|
|
|
|
void
|
|
ircd::m::app::init()
|
|
{
|
|
static const auto not_executable{[]
|
|
(const std::string &file)
|
|
{
|
|
return !fs::is_exec(file);
|
|
}};
|
|
|
|
std::vector<std::string> files
|
|
{
|
|
bool(path)?
|
|
fs::ls(string_view(path)):
|
|
std::vector<std::string>{}
|
|
};
|
|
|
|
bin = std::set<std::string>
|
|
{
|
|
begin(files), std::remove_if(begin(files), end(files), not_executable)
|
|
};
|
|
}
|
|
|
|
void
|
|
ircd::m::app::fini()
|
|
{
|
|
std::vector<app *> apps
|
|
{
|
|
std::begin(list), std::end(list)
|
|
};
|
|
|
|
for(auto *const &app : apps)
|
|
{
|
|
app->child.join(15);
|
|
delete app;
|
|
}
|
|
}
|
|
|
|
//
|
|
// app::app
|
|
//
|
|
|
|
ircd::m::app::app(const m::event::idx &event_idx)
|
|
:event_idx
|
|
{
|
|
event_idx
|
|
}
|
|
,feature
|
|
{
|
|
m::get(event_idx, "content")
|
|
}
|
|
,config
|
|
{
|
|
feature
|
|
}
|
|
,arg
|
|
{
|
|
config.at("arg")
|
|
}
|
|
,binpath{[&]
|
|
{
|
|
if(!path)
|
|
throw m::FORBIDDEN
|
|
{
|
|
"Configure the 'ircd.m.app.path' to permit."
|
|
};
|
|
|
|
const json::string file
|
|
{
|
|
arg.at(0)
|
|
};
|
|
|
|
string_view part[2];
|
|
part[0] = path;
|
|
part[1] = file;
|
|
const auto ret
|
|
{
|
|
fs::path_string(part)
|
|
};
|
|
|
|
if(!bin.count(ret))
|
|
throw m::NOT_FOUND
|
|
{
|
|
"Executable '%s' not found in bin directory at `%s'",
|
|
file,
|
|
string_view{path},
|
|
};
|
|
|
|
return ret;
|
|
}()}
|
|
,argv{[&]
|
|
{
|
|
std::vector<json::string> ret
|
|
{
|
|
std::begin(arg), std::end(arg)
|
|
};
|
|
|
|
ret.at(0) = binpath;
|
|
return ret;
|
|
}()}
|
|
,child
|
|
{
|
|
argv
|
|
}
|
|
,worker_context
|
|
{
|
|
"m.app",
|
|
512_KiB,
|
|
std::bind(&app::worker, this)
|
|
}
|
|
{
|
|
}
|
|
|
|
ircd::m::app::~app()
|
|
noexcept
|
|
{
|
|
worker_context.interrupt();
|
|
}
|
|
|
|
void
|
|
ircd::m::app::worker()
|
|
try
|
|
{
|
|
const auto event_id
|
|
{
|
|
m::event_id(event_idx)
|
|
};
|
|
|
|
const auto room_id
|
|
{
|
|
m::room_id(event_idx)
|
|
};
|
|
|
|
const auto user_id
|
|
{
|
|
m::get(event_idx, "sender")
|
|
};
|
|
|
|
child.dock.wait([this]
|
|
{
|
|
return child.pid >= 0;
|
|
});
|
|
|
|
log::info
|
|
{
|
|
log, "app:%lu starting %s in %s for %s @ `%s' id:%lu pid:%ld",
|
|
event_idx,
|
|
string_view{event_id},
|
|
string_view{room_id},
|
|
string_view{user_id},
|
|
argv.at(0),
|
|
child.id,
|
|
child.pid,
|
|
};
|
|
|
|
char buf alignas(4096) [16_KiB];
|
|
for(run::barrier<ctx::interrupted>{};;)
|
|
{
|
|
window_buffer wb(buf);
|
|
wb([](const mutable_buffer &buf)
|
|
{
|
|
return copy(buf, "<pre>"_sv);
|
|
});
|
|
|
|
bool eof {false};
|
|
wb([this, &eof](const mutable_buffer &buf)
|
|
{
|
|
const auto ret(read(this->child, buf));
|
|
eof = empty(ret);
|
|
return ret;
|
|
});
|
|
|
|
wb([](const mutable_buffer &buf)
|
|
{
|
|
return copy(buf, "</pre>"_sv);
|
|
});
|
|
|
|
const string_view &output
|
|
{
|
|
wb.completed()
|
|
};
|
|
|
|
if(eof)
|
|
{
|
|
log::debug
|
|
{
|
|
log, "app:%lu :end of file",
|
|
event_idx,
|
|
};
|
|
|
|
return;
|
|
}
|
|
|
|
const string_view alt
|
|
{
|
|
"no alt text"
|
|
};
|
|
|
|
const auto message_id
|
|
{
|
|
!ircd::write_avoid?
|
|
m::msghtml(room_id, user_id, output, alt, "m.notice"):
|
|
m::event::id::buf{}
|
|
};
|
|
|
|
log::debug
|
|
{
|
|
log, "app:%lu output %zu bytes in %s to %s :%s%s",
|
|
event_idx,
|
|
size(output),
|
|
string_view{message_id},
|
|
string_view{room_id},
|
|
trunc(output, 64),
|
|
size(output) > 64? "...": "",
|
|
};
|
|
}
|
|
}
|
|
catch(const std::exception &e)
|
|
{
|
|
log::error
|
|
{
|
|
log, "app:%lu (%p) worker fatal :%s",
|
|
event_idx,
|
|
this,
|
|
e.what(),
|
|
};
|
|
|
|
const ctx::exception_handler eh;
|
|
child.join();
|
|
return;
|
|
}
|