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
405
406
407
408
409
410
411
412
413
414
415
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include <errno.h>
#include "include/types.h"
#include "cls/rgw/cls_rgw_ops.h"
#include "cls/rgw/cls_rgw_client.h"
#include "include/rados/librados.hpp"
#include "common/debug.h"
using namespace librados;
const string BucketIndexShardsManager::KEY_VALUE_SEPARATOR = "#";
const string BucketIndexShardsManager::SHARDS_SEPARATOR = ",";
/**
* This class represents the bucket index object operation callback context.
*/
template <typename T>
class ClsBucketIndexOpCtx : public ObjectOperationCompletion {
private:
T *data;
int *ret_code;
public:
ClsBucketIndexOpCtx(T* _data, int *_ret_code) : data(_data), ret_code(_ret_code) { assert(data); }
~ClsBucketIndexOpCtx() {}
void handle_completion(int r, bufferlist& outbl) {
if (r >= 0) {
try {
bufferlist::iterator iter = outbl.begin();
::decode((*data), iter);
} catch (buffer::error& err) {
r = -EIO;
}
}
if (ret_code) {
*ret_code = r;
}
}
};
void BucketIndexAioManager::do_completion(int id) {
Mutex::Locker l(lock);
map<int, librados::AioCompletion*>::iterator iter = pendings.find(id);
assert(iter != pendings.end());
completions.push_back(iter->second);
pendings.erase(iter);
cond.Signal();
}
bool BucketIndexAioManager::wait_for_completions(int valid_ret_code,
int *num_completions, int *ret_code) {
lock.Lock();
if (pendings.empty() && completions.empty()) {
lock.Unlock();
return false;
}
// Wait for AIO completion
cond.Wait(lock);
// Clear the completed AIOs
list<librados::AioCompletion*>::iterator iter = completions.begin();
for (; iter != completions.end(); ++iter) {
int r = (*iter)->get_return_value();
if (ret_code && (r < 0 && r != valid_ret_code))
(*ret_code) = r;
(*iter)->release();
}
if (num_completions)
(*num_completions) = completions.size();
completions.clear();
lock.Unlock();
return true;
}
void cls_rgw_bucket_init(ObjectWriteOperation& o)
{
bufferlist in;
o.exec("rgw", "bucket_init_index", in);
}
static bool issue_bucket_index_init_op(librados::IoCtx& io_ctx,
const string& oid, BucketIndexAioManager *manager) {
bufferlist in;
librados::ObjectWriteOperation op;
op.create(true);
op.exec("rgw", "bucket_init_index", in);
return manager->aio_operate(io_ctx, oid, &op);
}
static bool issue_bucket_set_tag_timeout_op(librados::IoCtx& io_ctx,
const string& oid, uint64_t timeout, BucketIndexAioManager *manager) {
bufferlist in;
struct rgw_cls_tag_timeout_op call;
call.tag_timeout = timeout;
::encode(call, in);
ObjectWriteOperation op;
op.exec("rgw", "bucket_set_tag_timeout", in);
return manager->aio_operate(io_ctx, oid, &op);
}
int CLSRGWIssueBucketIndexInit::issue_op()
{
return issue_bucket_index_init_op(io_ctx, *iter, &manager);
}
void CLSRGWIssueBucketIndexInit::cleanup()
{
// Do best effort removal
for (vector<string>::iterator citer = objs_container.begin(); citer != iter; ++citer) {
io_ctx.remove(*citer);
}
}
int CLSRGWIssueSetTagTimeout::issue_op()
{
return issue_bucket_set_tag_timeout_op(io_ctx, *iter, tag_timeout, &manager);
}
void cls_rgw_bucket_prepare_op(ObjectWriteOperation& o, RGWModifyOp op, string& tag,
string& name, string& locator, bool log_op)
{
struct rgw_cls_obj_prepare_op call;
call.op = op;
call.tag = tag;
call.name = name;
call.locator = locator;
call.log_op = log_op;
bufferlist in;
::encode(call, in);
o.exec("rgw", "bucket_prepare_op", in);
}
void cls_rgw_bucket_complete_op(ObjectWriteOperation& o, RGWModifyOp op, string& tag,
rgw_bucket_entry_ver& ver, string& name, rgw_bucket_dir_entry_meta& dir_meta,
list<string> *remove_objs, bool log_op)
{
bufferlist in;
struct rgw_cls_obj_complete_op call;
call.op = op;
call.tag = tag;
call.name = name;
call.ver = ver;
call.meta = dir_meta;
call.log_op = log_op;
if (remove_objs)
call.remove_objs = *remove_objs;
::encode(call, in);
o.exec("rgw", "bucket_complete_op", in);
}
static bool issue_bucket_list_op(librados::IoCtx& io_ctx,
const string& oid, const string& start_obj, const string& filter_prefix,
uint32_t num_entries, BucketIndexAioManager *manager,
struct rgw_cls_list_ret *pdata) {
bufferlist in;
struct rgw_cls_list_op call;
call.start_obj = start_obj;
call.filter_prefix = filter_prefix;
call.num_entries = num_entries;
::encode(call, in);
librados::ObjectReadOperation op;
op.exec("rgw", "bucket_list", in, new ClsBucketIndexOpCtx<struct rgw_cls_list_ret>(pdata, NULL));
return manager->aio_operate(io_ctx, oid, &op);
}
int CLSRGWIssueBucketList::issue_op()
{
return issue_bucket_list_op(io_ctx, iter->first, start_obj, filter_prefix, num_entries, &manager, &iter->second);
}
static bool issue_bi_log_list_op(librados::IoCtx& io_ctx,
const string& oid, BucketIndexShardsManager& marker_mgr, uint32_t max, BucketIndexAioManager *manager,
struct cls_rgw_bi_log_list_ret *pdata) {
bufferlist in;
cls_rgw_bi_log_list_op call;
call.marker = marker_mgr.get(oid, "");
call.max = max;
::encode(call, in);
librados::ObjectReadOperation op;
op.exec("rgw", "bi_log_list", in, new ClsBucketIndexOpCtx<struct cls_rgw_bi_log_list_ret>(pdata, NULL));
return manager->aio_operate(io_ctx, oid, &op);
}
int CLSRGWIssueBILogList::issue_op()
{
return issue_bi_log_list_op(io_ctx, iter->first, marker_mgr, max, &manager, &iter->second);
}
static bool issue_bucket_check_index_op(IoCtx& io_ctx, const string& oid, BucketIndexAioManager *manager,
struct rgw_cls_check_index_ret *pdata) {
bufferlist in;
librados::ObjectReadOperation op;
op.exec("rgw", "bucket_check_index", in, new ClsBucketIndexOpCtx<struct rgw_cls_check_index_ret>(
pdata, NULL));
return manager->aio_operate(io_ctx, oid, &op);
}
int CLSRGWIssueBucketCheck::issue_op()
{
return issue_bucket_check_index_op(io_ctx, iter->first, &manager, &iter->second);
}
static bool issue_bucket_rebuild_index_op(IoCtx& io_ctx, const string& oid,
BucketIndexAioManager *manager) {
bufferlist in;
librados::ObjectWriteOperation op;
op.exec("rgw", "bucket_rebuild_index", in);
return manager->aio_operate(io_ctx, oid, &op);
}
int CLSRGWIssueBucketRebuild::issue_op()
{
return issue_bucket_rebuild_index_op(io_ctx, *iter, &manager);
}
void cls_rgw_encode_suggestion(char op, rgw_bucket_dir_entry& dirent, bufferlist& updates)
{
updates.append(op);
::encode(dirent, updates);
}
void cls_rgw_suggest_changes(ObjectWriteOperation& o, bufferlist& updates)
{
o.exec("rgw", "dir_suggest_changes", updates);
}
int CLSRGWIssueGetDirHeader::issue_op()
{
return issue_bucket_list_op(io_ctx, iter->first, "", "", 0, &manager, &iter->second);
}
class GetDirHeaderCompletion : public ObjectOperationCompletion {
RGWGetDirHeader_CB *ret_ctx;
public:
GetDirHeaderCompletion(RGWGetDirHeader_CB *_ctx) : ret_ctx(_ctx) {}
~GetDirHeaderCompletion() {
ret_ctx->put();
}
void handle_completion(int r, bufferlist& outbl) {
struct rgw_cls_list_ret ret;
try {
bufferlist::iterator iter = outbl.begin();
::decode(ret, iter);
} catch (buffer::error& err) {
r = -EIO;
}
ret_ctx->handle_response(r, ret.dir.header);
}
};
int cls_rgw_get_dir_header_async(IoCtx& io_ctx, string& oid, RGWGetDirHeader_CB *ctx)
{
bufferlist in, out;
struct rgw_cls_list_op call;
call.num_entries = 0;
::encode(call, in);
ObjectReadOperation op;
GetDirHeaderCompletion *cb = new GetDirHeaderCompletion(ctx);
op.exec("rgw", "bucket_list", in, cb);
AioCompletion *c = librados::Rados::aio_create_completion(NULL, NULL, NULL);
int r = io_ctx.aio_operate(oid, c, &op, NULL);
c->release();
if (r < 0)
return r;
return 0;
}
int cls_rgw_bi_log_trim(IoCtx& io_ctx, string& oid, string& start_marker, string& end_marker)
{
do {
int r;
bufferlist in, out;
cls_rgw_bi_log_trim_op call;
call.start_marker = start_marker;
call.end_marker = end_marker;
::encode(call, in);
r = io_ctx.exec(oid, "rgw", "bi_log_trim", in, out);
if (r == -ENODATA)
break;
if (r < 0)
return r;
} while (1);
return 0;
}
int cls_rgw_usage_log_read(IoCtx& io_ctx, string& oid, string& user,
uint64_t start_epoch, uint64_t end_epoch, uint32_t max_entries,
string& read_iter, map<rgw_user_bucket, rgw_usage_log_entry>& usage,
bool *is_truncated)
{
if (is_truncated)
*is_truncated = false;
bufferlist in, out;
rgw_cls_usage_log_read_op call;
call.start_epoch = start_epoch;
call.end_epoch = end_epoch;
call.owner = user;
call.max_entries = max_entries;
call.iter = read_iter;
::encode(call, in);
int r = io_ctx.exec(oid, "rgw", "user_usage_log_read", in, out);
if (r < 0)
return r;
try {
rgw_cls_usage_log_read_ret result;
bufferlist::iterator iter = out.begin();
::decode(result, iter);
read_iter = result.next_iter;
if (is_truncated)
*is_truncated = result.truncated;
usage = result.usage;
} catch (buffer::error& e) {
return -EINVAL;
}
return 0;
}
void cls_rgw_usage_log_trim(ObjectWriteOperation& op, string& user,
uint64_t start_epoch, uint64_t end_epoch)
{
bufferlist in;
rgw_cls_usage_log_trim_op call;
call.start_epoch = start_epoch;
call.end_epoch = end_epoch;
call.user = user;
::encode(call, in);
op.exec("rgw", "user_usage_log_trim", in);
}
void cls_rgw_usage_log_add(ObjectWriteOperation& op, rgw_usage_log_info& info)
{
bufferlist in;
rgw_cls_usage_log_add_op call;
call.info = info;
::encode(call, in);
op.exec("rgw", "user_usage_log_add", in);
}
/* garbage collection */
void cls_rgw_gc_set_entry(ObjectWriteOperation& op, uint32_t expiration_secs, cls_rgw_gc_obj_info& info)
{
bufferlist in;
cls_rgw_gc_set_entry_op call;
call.expiration_secs = expiration_secs;
call.info = info;
::encode(call, in);
op.exec("rgw", "gc_set_entry", in);
}
void cls_rgw_gc_defer_entry(ObjectWriteOperation& op, uint32_t expiration_secs, const string& tag)
{
bufferlist in;
cls_rgw_gc_defer_entry_op call;
call.expiration_secs = expiration_secs;
call.tag = tag;
::encode(call, in);
op.exec("rgw", "gc_defer_entry", in);
}
int cls_rgw_gc_list(IoCtx& io_ctx, string& oid, string& marker, uint32_t max, bool expired_only,
list<cls_rgw_gc_obj_info>& entries, bool *truncated)
{
bufferlist in, out;
cls_rgw_gc_list_op call;
call.marker = marker;
call.max = max;
call.expired_only = expired_only;
::encode(call, in);
int r = io_ctx.exec(oid, "rgw", "gc_list", in, out);
if (r < 0)
return r;
cls_rgw_gc_list_ret ret;
try {
bufferlist::iterator iter = out.begin();
::decode(ret, iter);
} catch (buffer::error& err) {
return -EIO;
}
entries = ret.entries;
if (truncated)
*truncated = ret.truncated;
return r;
}
void cls_rgw_gc_remove(librados::ObjectWriteOperation& op, const list<string>& tags)
{
bufferlist in;
cls_rgw_gc_remove_op call;
call.tags = tags;
::encode(call, in);
op.exec("rgw", "gc_remove", in);
}
|