1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
|
/*
* Copyright 2003-2018 The Music Player Daemon Project
* http://www.musicpd.org
*
* 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 2 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, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
#include "UdisksNeighborPlugin.hxx"
#include "lib/dbus/Connection.hxx"
#include "lib/dbus/Error.hxx"
#include "lib/dbus/Glue.hxx"
#include "lib/dbus/Message.hxx"
#include "lib/dbus/PendingCall.hxx"
#include "lib/dbus/ReadIter.hxx"
#include "lib/dbus/ObjectManager.hxx"
#include "lib/dbus/UDisks2.hxx"
#include "neighbor/NeighborPlugin.hxx"
#include "neighbor/Explorer.hxx"
#include "neighbor/Listener.hxx"
#include "neighbor/Info.hxx"
#include "thread/Mutex.hxx"
#include "thread/SafeSingleton.hxx"
#include "util/Domain.hxx"
#include "util/StringAPI.hxx"
#include "util/Manual.hxx"
#include "Log.hxx"
#include <stdexcept>
#include <string>
#include <list>
#include <map>
static constexpr Domain udisks_domain("udisks");
struct UdisksObject {
std::string path;
std::string drive_id, block_id;
bool is_filesystem = false;
bool IsValid() const noexcept {
return !drive_id.empty() || !block_id.empty();
}
std::string GetUri() const noexcept {
if (!drive_id.empty())
return "udisks://" + drive_id;
else if (!block_id.empty())
return "udisks://" + block_id;
else
return {};
}
NeighborInfo ToNeighborInfo() const noexcept {
return {GetUri(), path};
}
};
class UdisksNeighborExplorer final
: public NeighborExplorer {
EventLoop &event_loop;
Manual<SafeSingleton<ODBus::Glue>> dbus_glue;
ODBus::PendingCall pending_list_call;
/**
* Protects #by_uri, #by_path.
*/
mutable Mutex mutex;
using ByUri = std::map<std::string, NeighborInfo>;
ByUri by_uri;
std::map<std::string, ByUri::iterator> by_path;
public:
UdisksNeighborExplorer(EventLoop &_event_loop,
NeighborListener &_listener) noexcept
:NeighborExplorer(_listener), event_loop(_event_loop) {}
auto &GetEventLoop() noexcept {
return event_loop;
}
auto &&GetConnection() noexcept {
return dbus_glue.Get()->GetConnection();
}
/* virtual methods from class NeighborExplorer */
void Open() override;
void Close() noexcept override;
List GetList() const noexcept override;
private:
void Insert(UdisksObject &&o) noexcept;
void Remove(const std::string &path) noexcept;
void OnListNotify(DBusPendingCall *pending) noexcept;
static void OnListNotify(DBusPendingCall *pending,
void *user_data) noexcept {
auto &e = *(UdisksNeighborExplorer *)user_data;
e.OnListNotify(pending);
}
DBusHandlerResult HandleMessage(DBusConnection *dbus_connection,
DBusMessage *message) noexcept;
static DBusHandlerResult HandleMessage(DBusConnection *dbus_connection,
DBusMessage *message,
void *user_data) noexcept;
};
void
UdisksNeighborExplorer::Open()
{
using namespace ODBus;
dbus_glue.Construct(event_loop);
auto &connection = GetConnection();
try {
Error error;
dbus_bus_add_match(connection,
"type='signal',sender='" UDISKS2_INTERFACE "',"
"interface='" DBUS_OM_INTERFACE "',"
"path='" UDISKS2_PATH "'",
error);
error.CheckThrow("DBus AddMatch error");
dbus_connection_add_filter(connection,
HandleMessage, this,
nullptr);
auto msg = Message::NewMethodCall(UDISKS2_INTERFACE,
UDISKS2_PATH,
DBUS_OM_INTERFACE,
"GetManagedObjects");
pending_list_call = PendingCall::SendWithReply(connection, msg.Get());
pending_list_call.SetNotify(OnListNotify, this);
} catch (...) {
dbus_glue.Destruct();
throw;
}
}
void
UdisksNeighborExplorer::Close() noexcept
{
using namespace ODBus;
if (pending_list_call) {
pending_list_call.Cancel();
}
// TODO: remove_match
// TODO: remove_filter
dbus_glue.Destruct();
}
template<typename I>
gcc_pure
static const char *
CheckString(I &&i) noexcept
{
if (i.GetArgType() != DBUS_TYPE_STRING)
return nullptr;
return i.GetString();
}
template<typename I>
gcc_pure
static const char *
CheckVariantString(I &&i) noexcept
{
if (i.GetArgType() != DBUS_TYPE_VARIANT)
return nullptr;
return CheckString(i.Recurse());
}
static void
ParseDriveDictEntry(UdisksObject &o, ODBus::ReadMessageIter &&i) noexcept
{
if (i.GetArgType() != DBUS_TYPE_STRING)
return;
const char *name = i.GetString();
i.Next();
if (StringIsEqual(name, "Id")) {
const char *value = CheckVariantString(i);
if (value != nullptr && o.drive_id.empty())
o.drive_id = value;
}
}
static void
ParseBlockDictEntry(UdisksObject &o, ODBus::ReadMessageIter &&i) noexcept
{
if (i.GetArgType() != DBUS_TYPE_STRING)
return;
const char *name = i.GetString();
i.Next();
if (StringIsEqual(name, "Id")) {
const char *value = CheckVariantString(i);
if (value != nullptr && o.block_id.empty())
o.block_id = value;
}
}
static void
ParseInterface(UdisksObject &o, const char *interface,
ODBus::ReadMessageIter &&i) noexcept
{
if (StringIsEqual(interface, "org.freedesktop.UDisks2.Drive")) {
for (; i.GetArgType() == DBUS_TYPE_DICT_ENTRY; i.Next())
ParseDriveDictEntry(o, i.Recurse());
} else if (StringIsEqual(interface, "org.freedesktop.UDisks2.Block")) {
for (; i.GetArgType() == DBUS_TYPE_DICT_ENTRY; i.Next())
ParseBlockDictEntry(o, i.Recurse());
} else if (StringIsEqual(interface, "org.freedesktop.UDisks2.Filesystem")) {
o.is_filesystem = true;
}
}
static void
ParseInterfaceDictEntry(UdisksObject &o, ODBus::ReadMessageIter &&i) noexcept
{
if (i.GetArgType() != DBUS_TYPE_STRING)
return;
const char *interface = i.GetString();
i.Next();
if (i.GetArgType() != DBUS_TYPE_ARRAY)
return;
ParseInterface(o, interface, i.Recurse());
}
static bool
ParseObject(UdisksObject &o, ODBus::ReadMessageIter &&i) noexcept
{
if (i.GetArgType() != DBUS_TYPE_OBJECT_PATH)
return false;
o.path = i.GetString();
i.Next();
if (i.GetArgType() != DBUS_TYPE_ARRAY)
return false;
i.Recurse().ForEach(DBUS_TYPE_DICT_ENTRY, [&o](auto &&j){
ParseInterfaceDictEntry(o, j.Recurse());
});
return true;
}
NeighborExplorer::List
UdisksNeighborExplorer::GetList() const noexcept
{
const std::lock_guard<Mutex> lock(mutex);
NeighborExplorer::List result;
for (const auto &i : by_uri)
result.emplace_front(i.second);
return result;
}
void
UdisksNeighborExplorer::Insert(UdisksObject &&o) noexcept
{
assert(o.IsValid());
const NeighborInfo info = o.ToNeighborInfo();
{
const std::lock_guard<Mutex> protect(mutex);
auto i = by_uri.emplace(std::make_pair(o.GetUri(), info));
if (!i.second)
i.first->second = info;
by_path.emplace(std::make_pair(o.path, i.first));
// TODO: do we need to remove a conflicting path?
}
listener.FoundNeighbor(info);
}
void
UdisksNeighborExplorer::Remove(const std::string &path) noexcept
{
std::unique_lock<Mutex> lock(mutex);
auto i = by_path.find(path);
if (i == by_path.end())
return;
const auto info = std::move(i->second->second);
by_uri.erase(i->second);
by_path.erase(i);
lock.unlock();
listener.LostNeighbor(info);
}
inline void
UdisksNeighborExplorer::OnListNotify(DBusPendingCall *pending) noexcept
{
assert(pending == pending_list_call.Get());
pending_list_call = {};
using namespace ODBus;
Message reply = Message::StealReply(*pending);
try {
reply.CheckThrowError();
} catch (...) {
LogError(std::current_exception());
return;
}
ReadMessageIter i(*reply.Get());
if (i.GetArgType() != DBUS_TYPE_ARRAY) {
LogError(udisks_domain, "Malformed response");
return;
}
i.Recurse().ForEach(DBUS_TYPE_DICT_ENTRY, [this](auto &&j){
UdisksObject o;
if (ParseObject(o, j.Recurse()) && o.IsValid())
Insert(std::move(o));
});
}
inline DBusHandlerResult
UdisksNeighborExplorer::HandleMessage(DBusConnection *, DBusMessage *message) noexcept
{
using namespace ODBus;
if (dbus_message_is_signal(message, DBUS_OM_INTERFACE,
"InterfacesAdded") &&
dbus_message_has_signature(message, DBUS_OM_INTERFACES_ADDED_SIGNATURE)) {
UdisksObject o;
if (ParseObject(o, ReadMessageIter(*message)) && o.IsValid())
Insert(std::move(o));
return DBUS_HANDLER_RESULT_HANDLED;
} else if (dbus_message_is_signal(message, DBUS_OM_INTERFACE,
"InterfacesRemoved") &&
dbus_message_has_signature(message, DBUS_OM_INTERFACES_REMOVED_SIGNATURE)) {
Remove(ReadMessageIter(*message).GetString());
return DBUS_HANDLER_RESULT_HANDLED;
} else
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
}
DBusHandlerResult
UdisksNeighborExplorer::HandleMessage(DBusConnection *connection,
DBusMessage *message,
void *user_data) noexcept
{
auto &agent = *(UdisksNeighborExplorer *)user_data;
return agent.HandleMessage(connection, message);
}
static std::unique_ptr<NeighborExplorer>
udisks_neighbor_create(EventLoop &event_loop,
NeighborListener &listener,
gcc_unused const ConfigBlock &block)
{
return std::make_unique<UdisksNeighborExplorer>(event_loop, listener);
}
const NeighborPlugin udisks_neighbor_plugin = {
"udisks",
udisks_neighbor_create,
};
|