-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathudisks2.c
382 lines (325 loc) · 9.07 KB
/
udisks2.c
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
#include "udisks2.h"
#include "utils.h"
#include "blk_dev_info.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <dbus/dbus.h>
typedef void (*assign_callback)(void* dst, const void* src);
struct id_off_map
{
const char* id;
size_t dbus_off;
size_t bdi_off;
assign_callback assign;
};
static void
assign_string(
void* dst
, const void* src
)
{
char** sdst = dst;
const char* const * ssrc = src;
*sdst = strdup(*ssrc);
}
static void
assign_u64(
void* dst
, const void* src
)
{
uint64_t* dst64 = dst;
const uint64_t* src64 = src;
*dst64 = *src64;
}
static void
assign_i64(
void* dst
, const void* src
)
{
int64_t* dst64 = dst;
const int64_t* src64 = src;
*dst64 = *src64;
}
static void
assign_dbl(
void* dst
, const void* src
)
{
double* ddst = dst;
const double* dsrc = src;
*ddst = *dsrc;
}
static const struct id_off_map offsets[] =
{
{ "Model"
, offsetof(DBusBasicValue, str)
, offsetof(struct blk_dev_info, model)
, assign_string
},
{ "Serial"
, offsetof(DBusBasicValue, str)
, offsetof(struct blk_dev_info, serial)
, assign_string
},
{ "Size"
, offsetof(DBusBasicValue, u64)
, offsetof(struct blk_dev_info, size_byt)
, assign_u64
},
{ "SmartPowerOnSeconds"
, offsetof(DBusBasicValue, i64)
, offsetof(struct blk_dev_info, smt_pwr_on_sec)
, assign_i64
},
{ "SmartTemperature"
, offsetof(DBusBasicValue, dbl)
, offsetof(struct blk_dev_info, smt_temp_kel)
, assign_dbl
},
{
"SmartNumBadSectors"
, offsetof(DBusBasicValue, i64)
, offsetof(struct blk_dev_info, smt_bad_sect)
, assign_i64
}
};
static const struct id_off_map*
get_map_by_id(
const char* id
)
{
int i;
for (i = 0; i < ARRAY_SIZE(offsets); i++)
{
if (0 == strcmp(offsets[i].id, id))
return &offsets[i];
}
return NULL;
}
static void
udisks2_blk_dev_info_fill_field(
const struct id_off_map* iom
, const DBusBasicValue* src
, struct blk_dev_info* dst
)
{
const void* psrc = src;
void* pdst = dst;
psrc += iom->dbus_off;
pdst += iom->bdi_off;
iom->assign(pdst, psrc);
}
#define UDISKS_SERVICE "org.freedesktop.UDisks2"
#define UDISKS_BASE_PATH "/org/freedesktop/UDisks2"
DBusConnection* udisks2_dbc = NULL;
bool
udisks2_init(
)
{
bool rc = false;
DBusError err;
assert(!udisks2_dbc);
dbus_error_init(&err);
udisks2_dbc = dbus_bus_get(DBUS_BUS_SYSTEM, &err);
if (!dbus_error_is_set(&err))
rc = (TRUE == dbus_connection_get_is_connected(udisks2_dbc));
else
dbus_error_free(&err);
return rc;
}
void
udisks2_deinit(
)
{
assert(udisks2_dbc);
dbus_connection_unref(udisks2_dbc);
udisks2_dbc = NULL;
}
static struct blk_dev_info*
udisks2_get_drive_smart(
const char* drive_dbus_path
)
{
DBusMessage* req;
const char* prop_intr[] =
{
UDISKS_SERVICE ".Drive.Ata"
, UDISKS_SERVICE ".Drive"
};
int i;
struct blk_dev_info* bdi = NULL;
struct blk_dev_info* ret = NULL;
if (NULL != (bdi = blk_dev_info_create()))
{
for (i = 0; i < ARRAY_SIZE(prop_intr); i++)
{
if (NULL != (req = dbus_message_new_method_call( UDISKS_SERVICE
, drive_dbus_path
, DBUS_INTERFACE_PROPERTIES
, "GetAll"
)))
{
DBusError err;
DBusMessage* reply;
dbus_message_append_args( req
, DBUS_TYPE_STRING, &prop_intr[i]
, DBUS_TYPE_INVALID);
dbus_error_init(&err);
reply = dbus_connection_send_with_reply_and_block( udisks2_dbc
, req
, -1
, &err
);
if (!dbus_error_is_set(&err))
{
int type = dbus_message_get_type(reply);
DBusMessageIter iter;
if (dbus_message_iter_init(reply, &iter))
{
type = dbus_message_iter_get_arg_type(&iter);
if (DBUS_TYPE_ARRAY == type)
{
DBusMessageIter sub;
ret = bdi;
dbus_message_iter_recurse(&iter, &sub);
do
{
type = dbus_message_iter_get_arg_type(&sub);
if (DBUS_TYPE_DICT_ENTRY == type)
{
DBusMessageIter sub2;
const struct id_off_map* iom = NULL;
dbus_message_iter_recurse(&sub, &sub2);
do
{
DBusBasicValue key = {};
type = dbus_message_iter_get_arg_type(&sub2);
if (dbus_type_is_basic(type))
{
dbus_message_iter_get_basic(&sub2, &key);
iom = get_map_by_id(key.str);
}
else if (dbus_type_is_container(type))
{
if (DBUS_TYPE_VARIANT == type)
{
DBusMessageIter sub3;
dbus_message_iter_recurse(&sub2, &sub3);
type = dbus_message_iter_get_arg_type(&sub3);
if (dbus_type_is_basic(type))
{
DBusBasicValue val;
dbus_message_iter_get_basic(&sub3, &val);
if (iom)
udisks2_blk_dev_info_fill_field(iom, &val, bdi);
}
}
}
} while (dbus_message_iter_next(&sub2));
}
} while (dbus_message_iter_next(&sub));
}
}
dbus_message_unref(reply);
}
else
dbus_error_free(&err);
dbus_message_unref(req);
}
else
{
printf("msg alloc\n");
break;
}
}
}
if (bdi && !ret)
blk_dev_info_destroy(bdi);
return ret;
}
struct blk_dev_info*
udisks2_get_blk_dev_smart(
const char* blk_dev
)
{
char* udisks2_blk_dev_path;
struct blk_dev_info* bdi = NULL;
if (-1 != asprintf(&udisks2_blk_dev_path, "%s/block_devices/%s", UDISKS_BASE_PATH, blk_dev))
{
DBusMessage* req;
if (NULL != (req = dbus_message_new_method_call( UDISKS_SERVICE
, udisks2_blk_dev_path
, DBUS_INTERFACE_PROPERTIES
, "Get"
)))
{
const char* prop_intr = UDISKS_SERVICE ".Block";
const char* prop_name = "Drive";
DBusError err;
DBusMessage* reply;
dbus_message_append_args( req
, DBUS_TYPE_STRING, &prop_intr
, DBUS_TYPE_STRING, &prop_name
, DBUS_TYPE_INVALID);
dbus_error_init(&err);
reply = dbus_connection_send_with_reply_and_block( udisks2_dbc
, req
, -1
, &err
);
if (!dbus_error_is_set(&err))
{
int type = dbus_message_get_type(reply);
DBusMessageIter iter;
if (dbus_message_iter_init(reply, &iter))
{
type = dbus_message_iter_get_arg_type(&iter);
if (DBUS_TYPE_VARIANT == type)
{
DBusMessageIter sub;
dbus_message_iter_recurse(&iter, &sub);
type = dbus_message_iter_get_arg_type(&sub);
if (dbus_type_is_basic(type))
{
DBusBasicValue val;
dbus_message_iter_get_basic(&sub, &val);
bdi = udisks2_get_drive_smart(val.str);
}
}
}
dbus_message_unref(reply);
}
else
dbus_error_free(&err);
dbus_message_unref(req);
}
free(udisks2_blk_dev_path);
}
return bdi;
}
#if 0
int main(int argc, char* argv[])
{
if (udisks2_init())
{
int i;
for (i = 1; i < argc; i++)
{
struct blk_dev_info* bdi;
printf("%s:\n", argv[i]);
if (NULL != (bdi = udisks2_get_blk_dev_smart(argv[i])))
{
blk_dev_info_dump(bdi);
blk_dev_info_destroy(bdi);
}
}
udisks2_deinit();
}
return 0;
}
#endif