199 lines
6.1 KiB
C++
199 lines
6.1 KiB
C++
// This file Copyright © 2015-2022 Mnemosyne LLC.
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
// License text can be found in the licenses/ folder.
|
|
|
|
#include <cerrno>
|
|
#include <climits> /* NAME_MAX */
|
|
#include <memory>
|
|
#include <utility>
|
|
|
|
#include <unistd.h> /* close() */
|
|
|
|
#include <sys/inotify.h>
|
|
|
|
#include <event2/bufferevent.h>
|
|
#include <event2/event.h>
|
|
|
|
#include <fmt/core.h>
|
|
|
|
#define LIBTRANSMISSION_WATCHDIR_MODULE
|
|
|
|
#include "transmission.h"
|
|
|
|
#include "log.h"
|
|
#include "tr-assert.h"
|
|
#include "tr-strbuf.h"
|
|
#include "utils.h"
|
|
#include "watchdir-base.h"
|
|
|
|
namespace libtransmission
|
|
{
|
|
namespace
|
|
{
|
|
class INotifyWatchdir final : public impl::BaseWatchdir
|
|
{
|
|
private:
|
|
static auto constexpr InotifyWatchMask = uint32_t{ IN_CLOSE_WRITE | IN_MOVED_TO | IN_CREATE };
|
|
|
|
public:
|
|
INotifyWatchdir(std::string_view dirname, Callback callback, TimerMaker& timer_maker, event_base* evbase)
|
|
: BaseWatchdir{ dirname, std::move(callback), timer_maker }
|
|
{
|
|
init(evbase);
|
|
scan();
|
|
}
|
|
|
|
INotifyWatchdir(INotifyWatchdir&&) = delete;
|
|
INotifyWatchdir(INotifyWatchdir const&) = delete;
|
|
INotifyWatchdir& operator=(INotifyWatchdir&&) = delete;
|
|
INotifyWatchdir& operator=(INotifyWatchdir const&) = delete;
|
|
|
|
~INotifyWatchdir() override
|
|
{
|
|
if (event_ != nullptr)
|
|
{
|
|
bufferevent_disable(event_, EV_READ);
|
|
bufferevent_free(event_);
|
|
}
|
|
|
|
if (infd_ != -1)
|
|
{
|
|
if (inwd_ != -1)
|
|
{
|
|
inotify_rm_watch(infd_, inwd_);
|
|
}
|
|
|
|
close(infd_);
|
|
}
|
|
}
|
|
|
|
private:
|
|
void init(struct event_base* evbase)
|
|
{
|
|
infd_ = inotify_init();
|
|
if (infd_ == -1)
|
|
{
|
|
auto const error_code = errno;
|
|
tr_logAddError(fmt::format(
|
|
_("Couldn't watch '{path}': {error} ({error_code})"),
|
|
fmt::arg("path", dirname()),
|
|
fmt::arg("error", tr_strerror(error_code)),
|
|
fmt::arg("error_code", error_code)));
|
|
return;
|
|
}
|
|
|
|
inwd_ = inotify_add_watch(infd_, tr_pathbuf{ dirname() }, InotifyWatchMask | IN_ONLYDIR);
|
|
if (inwd_ == -1)
|
|
{
|
|
auto const error_code = errno;
|
|
tr_logAddError(fmt::format(
|
|
_("Couldn't watch '{path}': {error} ({error_code})"),
|
|
fmt::arg("path", dirname()),
|
|
fmt::arg("error", tr_strerror(error_code)),
|
|
fmt::arg("error_code", error_code)));
|
|
return;
|
|
}
|
|
|
|
event_ = bufferevent_socket_new(evbase, infd_, 0);
|
|
if (event_ == nullptr)
|
|
{
|
|
auto const error_code = errno;
|
|
tr_logAddError(fmt::format(
|
|
_("Couldn't watch '{path}': {error} ({error_code})"),
|
|
fmt::arg("path", dirname()),
|
|
fmt::arg("error", tr_strerror(error_code)),
|
|
fmt::arg("error_code", error_code)));
|
|
return;
|
|
}
|
|
|
|
// guarantees at least the sizeof an inotify event will be available in the event buffer
|
|
bufferevent_setwatermark(event_, EV_READ, sizeof(struct inotify_event), 0);
|
|
bufferevent_setcb(event_, onInotifyEvent, nullptr, nullptr, this);
|
|
bufferevent_enable(event_, EV_READ);
|
|
}
|
|
|
|
static void onInotifyEvent(struct bufferevent* event, void* vself)
|
|
{
|
|
static_cast<INotifyWatchdir*>(vself)->handleInotifyEvent(event);
|
|
}
|
|
|
|
void handleInotifyEvent(struct bufferevent* event)
|
|
{
|
|
auto ev = inotify_event{};
|
|
auto name = std::string{};
|
|
|
|
// Read the size of the struct excluding name into buf.
|
|
// Guaranteed to have at least sizeof(ev) available.
|
|
auto nread = size_t{};
|
|
while ((nread = bufferevent_read(event, &ev, sizeof(ev))) != 0)
|
|
{
|
|
if (nread == (size_t)-1)
|
|
{
|
|
auto const error_code = errno;
|
|
tr_logAddError(fmt::format(
|
|
_("Couldn't read event: {error} ({error_code})"),
|
|
fmt::arg("error", tr_strerror(error_code)),
|
|
fmt::arg("error_code", error_code)));
|
|
break;
|
|
}
|
|
|
|
if (nread != sizeof(ev))
|
|
{
|
|
tr_logAddError(fmt::format(
|
|
_("Couldn't read event: expected {expected_size}, got {actual_size}"),
|
|
fmt::arg("expected_size", sizeof(ev)),
|
|
fmt::arg("actual_size", nread)));
|
|
break;
|
|
}
|
|
|
|
TR_ASSERT(ev.wd == inwd_);
|
|
TR_ASSERT((ev.mask & InotifyWatchMask) != 0);
|
|
TR_ASSERT(ev.len > 0);
|
|
|
|
// consume entire name into buffer
|
|
name.resize(ev.len);
|
|
nread = bufferevent_read(event, std::data(name), ev.len);
|
|
if (nread == static_cast<size_t>(-1))
|
|
{
|
|
auto const error_code = errno;
|
|
tr_logAddError(fmt::format(
|
|
_("Couldn't read filename: {error} ({error_code})"),
|
|
fmt::arg("error", tr_strerror(error_code)),
|
|
fmt::arg("error_code", error_code)));
|
|
break;
|
|
}
|
|
|
|
if (nread != ev.len)
|
|
{
|
|
tr_logAddError(fmt::format(
|
|
_("Couldn't read filename: expected {expected_size}, got {actual_size}"),
|
|
fmt::arg("expected_size", sizeof(ev)),
|
|
fmt::arg("actual_size", nread)));
|
|
break;
|
|
}
|
|
|
|
// NB: `name` may have extra trailing zeroes from inotify;
|
|
// pass the c_str() so that processFile gets the right strlen
|
|
processFile(name.c_str());
|
|
}
|
|
}
|
|
|
|
int infd_ = -1;
|
|
int inwd_ = -1;
|
|
struct bufferevent* event_ = nullptr;
|
|
};
|
|
|
|
} // namespace
|
|
|
|
std::unique_ptr<Watchdir> Watchdir::create(
|
|
std::string_view dirname,
|
|
Callback callback,
|
|
libtransmission::TimerMaker& timer_maker,
|
|
event_base* evbase)
|
|
{
|
|
return std::make_unique<INotifyWatchdir>(dirname, std::move(callback), timer_maker, evbase);
|
|
}
|
|
|
|
} // namespace libtransmission
|