]> git.proxmox.com Git - ceph.git/blame - ceph/src/cls/rgw/cls_rgw.cc
update sources to v12.1.1
[ceph.git] / ceph / src / cls / rgw / cls_rgw.cc
CommitLineData
7c673cae
FG
1// -*- mode:C; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2// vim: ts=8 sw=2 smarttab
3
7c673cae
FG
4#include "include/types.h"
5
7c673cae
FG
6#include <errno.h>
7
7c673cae
FG
8#include "objclass/objclass.h"
9#include "cls/rgw/cls_rgw_ops.h"
10#include "cls/rgw/cls_rgw_const.h"
11#include "common/Clock.h"
12#include "common/strtol.h"
13#include "common/escape.h"
14
7c673cae
FG
15#include "include/compat.h"
16
17CLS_VER(1,0)
18CLS_NAME(rgw)
19
20
21#define BI_PREFIX_CHAR 0x80
22
23#define BI_BUCKET_OBJS_INDEX 0
24#define BI_BUCKET_LOG_INDEX 1
25#define BI_BUCKET_OBJ_INSTANCE_INDEX 2
26#define BI_BUCKET_OLH_DATA_INDEX 3
27
28#define BI_BUCKET_LAST_INDEX 4
29
30static string bucket_index_prefixes[] = { "", /* special handling for the objs list index */
31 "0_", /* bucket log index */
32 "1000_", /* obj instance index */
33 "1001_", /* olh data index */
34
35 /* this must be the last index */
36 "9999_",};
37
38static bool bi_is_objs_index(const string& s) {
39 return ((unsigned char)s[0] != BI_PREFIX_CHAR);
40}
41
42int bi_entry_type(const string& s)
43{
44 if (bi_is_objs_index(s)) {
45 return BI_BUCKET_OBJS_INDEX;
46 }
47
48 for (size_t i = 1;
49 i < sizeof(bucket_index_prefixes) / sizeof(bucket_index_prefixes[0]);
50 ++i) {
51 const string& t = bucket_index_prefixes[i];
52
53 if (s.compare(1, t.size(), t) == 0) {
54 return i;
55 }
56 }
57
58 return -EINVAL;
59}
60
61static bool bi_entry_gt(const string& first, const string& second)
62{
63 int fi = bi_entry_type(first);
64 int si = bi_entry_type(second);
65
66 if (fi > si) {
67 return true;
68 } else if (fi < si) {
69 return false;
70 }
71
72 return first > second;
73}
74
75static void get_time_key(real_time& ut, string *key)
76{
77 char buf[32];
78 ceph_timespec ts = ceph::real_clock::to_ceph_timespec(ut);
79 snprintf(buf, 32, "%011llu.%09u", (unsigned long long)ts.tv_sec, (unsigned int)ts.tv_nsec);
80 *key = buf;
81}
82
83static void get_index_ver_key(cls_method_context_t hctx, uint64_t index_ver, string *key)
84{
85 char buf[48];
86 snprintf(buf, sizeof(buf), "%011llu.%llu.%d", (unsigned long long)index_ver,
87 (unsigned long long)cls_current_version(hctx),
88 cls_current_subop_num(hctx));
89 *key = buf;
90}
91
92static void bi_log_prefix(string& key)
93{
94 key = BI_PREFIX_CHAR;
95 key.append(bucket_index_prefixes[BI_BUCKET_LOG_INDEX]);
96}
97
98static void bi_log_index_key(cls_method_context_t hctx, string& key, string& id, uint64_t index_ver)
99{
100 bi_log_prefix(key);
101 get_index_ver_key(hctx, index_ver, &id);
102 key.append(id);
103}
104
105static int log_index_operation(cls_method_context_t hctx, cls_rgw_obj_key& obj_key, RGWModifyOp op,
106 string& tag, real_time& timestamp,
107 rgw_bucket_entry_ver& ver, RGWPendingState state, uint64_t index_ver,
31f18b77 108 string& max_marker, uint16_t bilog_flags, string *owner, string *owner_display_name, rgw_zone_set *zones_trace)
7c673cae
FG
109{
110 bufferlist bl;
111
112 struct rgw_bi_log_entry entry;
113
114 entry.object = obj_key.name;
115 entry.instance = obj_key.instance;
116 entry.timestamp = timestamp;
117 entry.op = op;
118 entry.ver = ver;
119 entry.state = state;
120 entry.index_ver = index_ver;
121 entry.tag = tag;
122 entry.bilog_flags = bilog_flags;
123 if (owner) {
124 entry.owner = *owner;
125 }
126 if (owner_display_name) {
127 entry.owner_display_name = *owner_display_name;
128 }
31f18b77
FG
129 if (zones_trace) {
130 entry.zones_trace = std::move(*zones_trace);
131 }
7c673cae
FG
132
133 string key;
134 bi_log_index_key(hctx, key, entry.id, index_ver);
135
136 ::encode(entry, bl);
137
138 if (entry.id > max_marker)
139 max_marker = entry.id;
140
141 return cls_cxx_map_set_val(hctx, key, &bl);
142}
143
144/*
145 * read list of objects, skips objects in the ugly namespace
146 */
147static int get_obj_vals(cls_method_context_t hctx, const string& start, const string& filter_prefix,
148 int num_entries, map<string, bufferlist> *pkeys)
149{
150 int ret = cls_cxx_map_get_vals(hctx, start, filter_prefix, num_entries, pkeys);
151 if (ret < 0)
152 return ret;
153
154 if (pkeys->empty())
155 return 0;
156
157 map<string, bufferlist>::reverse_iterator last_element = pkeys->rbegin();
158 if ((unsigned char)last_element->first[0] < BI_PREFIX_CHAR) {
159 /* nothing to see here, move along */
160 return 0;
161 }
162
163 map<string, bufferlist>::iterator first_element = pkeys->begin();
164 if ((unsigned char)first_element->first[0] > BI_PREFIX_CHAR) {
165 return 0;
166 }
167
168 /* let's rebuild the list, only keep entries we're interested in */
169 map<string, bufferlist> old_keys;
170 old_keys.swap(*pkeys);
171
172 for (map<string, bufferlist>::iterator iter = old_keys.begin(); iter != old_keys.end(); ++iter) {
173 if ((unsigned char)iter->first[0] != BI_PREFIX_CHAR) {
174 (*pkeys)[iter->first] = iter->second;
175 }
176 }
177
178 if (num_entries == (int)pkeys->size())
179 return 0;
180
181 map<string, bufferlist> new_keys;
182 char c[] = { (char)(BI_PREFIX_CHAR + 1), 0 };
183 string new_start = c;
184
185 /* now get some more keys */
186 ret = cls_cxx_map_get_vals(hctx, new_start, filter_prefix, num_entries - pkeys->size(), &new_keys);
187 if (ret < 0)
188 return ret;
189
190 for (map<string, bufferlist>::iterator iter = new_keys.begin(); iter != new_keys.end(); ++iter) {
191 (*pkeys)[iter->first] = iter->second;
192 }
193
194 return 0;
195}
196
197/*
198 * get a monotonically decreasing string representation.
199 * For num = x, num = y, where x > y, str(x) < str(y)
200 * Another property is that string size starts short and grows as num increases
201 */
202static void decreasing_str(uint64_t num, string *str)
203{
204 char buf[32];
205 if (num < 0x10) { /* 16 */
206 snprintf(buf, sizeof(buf), "9%02lld", 15 - (long long)num);
207 } else if (num < 0x100) { /* 256 */
208 snprintf(buf, sizeof(buf), "8%03lld", 255 - (long long)num);
209 } else if (num < 0x1000) /* 4096 */ {
210 snprintf(buf, sizeof(buf), "7%04lld", 4095 - (long long)num);
211 } else if (num < 0x10000) /* 65536 */ {
212 snprintf(buf, sizeof(buf), "6%05lld", 65535 - (long long)num);
213 } else if (num < 0x100000000) /* 4G */ {
214 snprintf(buf, sizeof(buf), "5%010lld", 0xFFFFFFFF - (long long)num);
215 } else {
216 snprintf(buf, sizeof(buf), "4%020lld", (long long)-num);
217 }
218
219 *str = buf;
220}
221
222/*
223 * we now hold two different indexes for objects. The first one holds the list of objects in the
224 * order that we want them to be listed. The second one only holds the objects instances (for
225 * versioned objects), and they're not arranged in any particular order.
226 * When listing objects we'll use the first index, when doing operations on the objects themselves
227 * we'll use the second index. Note that regular objects only map to the first index anyway
228 */
229
230static void get_list_index_key(struct rgw_bucket_dir_entry& entry, string *index_key)
231{
232 *index_key = entry.key.name;
233
234 string ver_str;
235 decreasing_str(entry.versioned_epoch, &ver_str);
236 string instance_delim("\0i", 2);
237 string ver_delim("\0v", 2);
238
239 index_key->append(ver_delim);
240 index_key->append(ver_str);
241 index_key->append(instance_delim);
242 index_key->append(entry.key.instance);
243}
244
245static void encode_obj_versioned_data_key(const cls_rgw_obj_key& key, string *index_key, bool append_delete_marker_suffix = false)
246{
247 *index_key = BI_PREFIX_CHAR;
248 index_key->append(bucket_index_prefixes[BI_BUCKET_OBJ_INSTANCE_INDEX]);
249 index_key->append(key.name);
250 string delim("\0i", 2);
251 index_key->append(delim);
252 index_key->append(key.instance);
253 if (append_delete_marker_suffix) {
254 string dm("\0d", 2);
255 index_key->append(dm);
256 }
257}
258
259static void encode_obj_index_key(const cls_rgw_obj_key& key, string *index_key)
260{
261 if (key.instance.empty()) {
262 *index_key = key.name;
263 } else {
264 encode_obj_versioned_data_key(key, index_key);
265 }
266}
267
268static void encode_olh_data_key(const cls_rgw_obj_key& key, string *index_key)
269{
270 *index_key = BI_PREFIX_CHAR;
271 index_key->append(bucket_index_prefixes[BI_BUCKET_OLH_DATA_INDEX]);
272 index_key->append(key.name);
273}
274
275template <class T>
276static int read_index_entry(cls_method_context_t hctx, string& name, T *entry);
277
278static int encode_list_index_key(cls_method_context_t hctx, const cls_rgw_obj_key& key, string *index_key)
279{
280 if (key.instance.empty()) {
281 *index_key = key.name;
282 return 0;
283 }
284
285 string obj_index_key;
286 encode_obj_index_key(key, &obj_index_key);
287
288 rgw_bucket_dir_entry entry;
289
290 int ret = read_index_entry(hctx, obj_index_key, &entry);
291 if (ret == -ENOENT) {
292 /* couldn't find the entry, set key value after the current object */
293 char buf[2] = { 0x1, 0 };
294 string s(buf);
295 *index_key = key.name + s;
296 return 0;
297 }
298 if (ret < 0) {
299 CLS_LOG(1, "ERROR: encode_list_index_key(): cls_cxx_map_get_val returned %d\n", ret);
300 return ret;
301 }
302
303 get_list_index_key(entry, index_key);
304
305 return 0;
306}
307
308static void split_key(const string& key, list<string>& vals)
309{
310 size_t pos = 0;
311 const char *p = key.c_str();
312 while (pos < key.size()) {
313 size_t len = strlen(p);
314 vals.push_back(p);
315 pos += len + 1;
316 p += len + 1;
317 }
318}
319
320/*
321 * list index key structure:
322 *
323 * <obj name>\0[v<ver>\0i<instance id>]
324 */
325static void decode_list_index_key(const string& index_key, cls_rgw_obj_key *key, uint64_t *ver)
326{
327 size_t len = strlen(index_key.c_str());
328
329 key->instance.clear();
330 *ver = 0;
331
332 if (len == index_key.size()) {
333 key->name = index_key;
334 return;
335 }
336
337 list<string> vals;
338 split_key(index_key, vals);
339
340 assert(!vals.empty());
341
342 list<string>::iterator iter = vals.begin();
343 key->name = *iter;
344 ++iter;
345
346 assert(iter != vals.end());
347
348 for (; iter != vals.end(); ++iter) {
349 string& val = *iter;
350 if (val[0] == 'i') {
351 key->instance = val.substr(1);
352 } else if (val[0] == 'v') {
353 string err;
354 const char *s = val.c_str() + 1;
355 *ver = strict_strtoll(s, 10, &err);
356 assert(err.empty());
357 }
358 }
359}
360
361static int read_bucket_header(cls_method_context_t hctx, struct rgw_bucket_dir_header *header)
362{
363 bufferlist bl;
364 int rc = cls_cxx_map_read_header(hctx, &bl);
365 if (rc < 0)
366 return rc;
31f18b77
FG
367
368 if (bl.length() == 0) {
369 *header = rgw_bucket_dir_header();
370 return 0;
371 }
7c673cae
FG
372 bufferlist::iterator iter = bl.begin();
373 try {
374 ::decode(*header, iter);
375 } catch (buffer::error& err) {
376 CLS_LOG(1, "ERROR: read_bucket_header(): failed to decode header\n");
377 return -EIO;
378 }
379
380 return 0;
381}
382
383int rgw_bucket_list(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
384{
385 bufferlist::iterator iter = in->begin();
386
387 struct rgw_cls_list_op op;
388 try {
389 ::decode(op, iter);
390 } catch (buffer::error& err) {
391 CLS_LOG(1, "ERROR: rgw_bucket_list(): failed to decode request\n");
392 return -EINVAL;
393 }
394
395 struct rgw_cls_list_ret ret;
396 struct rgw_bucket_dir& new_dir = ret.dir;
397 int rc = read_bucket_header(hctx, &new_dir.header);
398 if (rc < 0) {
399 CLS_LOG(1, "ERROR: rgw_bucket_list(): failed to read header\n");
400 return rc;
401 }
402
403 map<string, bufferlist> keys;
404 std::map<string, bufferlist>::iterator kiter;
405 string start_key;
406 encode_list_index_key(hctx, op.start_obj, &start_key);
407 bool done = false;
408 uint32_t left_to_read = op.num_entries + 1;
409
410 do {
411 rc = get_obj_vals(hctx, start_key, op.filter_prefix, left_to_read, &keys);
412 if (rc < 0)
413 return rc;
414
415 std::map<string, struct rgw_bucket_dir_entry>& m = new_dir.m;
416
417 done = keys.empty();
418
419 for (kiter = keys.begin(); kiter != keys.end(); ++kiter) {
420 struct rgw_bucket_dir_entry entry;
421
422 if (!bi_is_objs_index(kiter->first)) {
423 done = true;
424 break;
425 }
426
427 bufferlist& entrybl = kiter->second;
428 bufferlist::iterator eiter = entrybl.begin();
429 try {
430 ::decode(entry, eiter);
431 } catch (buffer::error& err) {
432 CLS_LOG(1, "ERROR: rgw_bucket_list(): failed to decode entry, key=%s\n", kiter->first.c_str());
433 return -EINVAL;
434 }
435
436 cls_rgw_obj_key key;
437 uint64_t ver;
438 decode_list_index_key(kiter->first, &key, &ver);
439
440 start_key = kiter->first;
441 CLS_LOG(20, "start_key=%s len=%zu", start_key.c_str(), start_key.size());
442
443 if (!entry.is_valid()) {
444 CLS_LOG(20, "entry %s[%s] is not valid\n", key.name.c_str(), key.instance.c_str());
445 continue;
446 }
447
448 if (!op.list_versions && !entry.is_visible()) {
449 CLS_LOG(20, "entry %s[%s] is not visible\n", key.name.c_str(), key.instance.c_str());
450 continue;
451 }
452 if (m.size() < op.num_entries) {
453 m[kiter->first] = entry;
454 }
455 left_to_read--;
456
457 CLS_LOG(20, "got entry %s[%s] m.size()=%d\n", key.name.c_str(), key.instance.c_str(), (int)m.size());
458 }
459 } while (left_to_read > 0 && !done);
460
461 ret.is_truncated = (left_to_read == 0) && /* we found more entries than we were requested, meaning response is truncated */
462 !done;
463
464 ::encode(ret, *out);
465 return 0;
466}
467
468static int check_index(cls_method_context_t hctx, struct rgw_bucket_dir_header *existing_header, struct rgw_bucket_dir_header *calc_header)
469{
470 int rc = read_bucket_header(hctx, existing_header);
471 if (rc < 0) {
472 CLS_LOG(1, "ERROR: check_index(): failed to read header\n");
473 return rc;
474 }
475
476 calc_header->tag_timeout = existing_header->tag_timeout;
477 calc_header->ver = existing_header->ver;
478
479 map<string, bufferlist> keys;
480 string start_obj;
481 string filter_prefix;
482
483#define CHECK_CHUNK_SIZE 1000
484 bool done = false;
485
486 do {
487 rc = get_obj_vals(hctx, start_obj, filter_prefix, CHECK_CHUNK_SIZE, &keys);
488 if (rc < 0)
489 return rc;
490
491 std::map<string, bufferlist>::iterator kiter = keys.begin();
492 for (; kiter != keys.end(); ++kiter) {
493 if (!bi_is_objs_index(kiter->first)) {
494 done = true;
495 break;
496 }
497
498 struct rgw_bucket_dir_entry entry;
499 bufferlist::iterator eiter = kiter->second.begin();
500 try {
501 ::decode(entry, eiter);
502 } catch (buffer::error& err) {
503 CLS_LOG(1, "ERROR: rgw_bucket_list(): failed to decode entry, key=%s\n", kiter->first.c_str());
504 return -EIO;
505 }
506 struct rgw_bucket_category_stats& stats = calc_header->stats[entry.meta.category];
507 stats.num_entries++;
508 stats.total_size += entry.meta.accounted_size;
509 stats.total_size_rounded += cls_rgw_get_rounded_size(entry.meta.accounted_size);
510 stats.actual_size += entry.meta.size;
511
512 start_obj = kiter->first;
513 }
514 } while (keys.size() == CHECK_CHUNK_SIZE && !done);
515
516 return 0;
517}
518
519int rgw_bucket_check_index(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
520{
521 struct rgw_cls_check_index_ret ret;
522
523 int rc = check_index(hctx, &ret.existing_header, &ret.calculated_header);
524 if (rc < 0)
525 return rc;
526
527 ::encode(ret, *out);
528
529 return 0;
530}
531
532static int write_bucket_header(cls_method_context_t hctx, struct rgw_bucket_dir_header *header)
533{
534 header->ver++;
535
536 bufferlist header_bl;
537 ::encode(*header, header_bl);
538 return cls_cxx_map_write_header(hctx, &header_bl);
539}
540
541
542int rgw_bucket_rebuild_index(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
543{
544 struct rgw_bucket_dir_header existing_header;
545 struct rgw_bucket_dir_header calc_header;
546 int rc = check_index(hctx, &existing_header, &calc_header);
547 if (rc < 0)
548 return rc;
549
550 return write_bucket_header(hctx, &calc_header);
551}
552
553int rgw_bucket_update_stats(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
554{
555 // decode request
556 rgw_cls_bucket_update_stats_op op;
557 auto iter = in->begin();
558 try {
559 ::decode(op, iter);
560 } catch (buffer::error& err) {
561 CLS_LOG(1, "ERROR: %s(): failed to decode request\n", __func__);
562 return -EINVAL;
563 }
564
565 struct rgw_bucket_dir_header header;
566 int rc = read_bucket_header(hctx, &header);
567 if (rc < 0) {
568 CLS_LOG(1, "ERROR: %s(): failed to read header\n", __func__);
569 return rc;
570 }
571
572 for (auto& s : op.stats) {
573 auto& dest = header.stats[s.first];
574 if (op.absolute) {
575 dest = s.second;
576 } else {
577 dest.total_size += s.second.total_size;
578 dest.total_size_rounded += s.second.total_size_rounded;
579 dest.num_entries += s.second.num_entries;
580 }
581 }
582
583 return write_bucket_header(hctx, &header);
584}
585
586int rgw_bucket_init_index(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
587{
588 bufferlist::iterator iter;
589
590 bufferlist header_bl;
591 int rc = cls_cxx_map_read_header(hctx, &header_bl);
592 if (rc < 0) {
593 switch (rc) {
594 case -ENODATA:
595 case -ENOENT:
596 break;
597 default:
598 return rc;
599 }
600 }
601
602 if (header_bl.length() != 0) {
603 CLS_LOG(1, "ERROR: index already initialized\n");
604 return -EINVAL;
605 }
606
607 rgw_bucket_dir dir;
608
609 return write_bucket_header(hctx, &dir.header);
610}
611
612int rgw_bucket_set_tag_timeout(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
613{
614 // decode request
615 rgw_cls_tag_timeout_op op;
616 bufferlist::iterator iter = in->begin();
617 try {
618 ::decode(op, iter);
619 } catch (buffer::error& err) {
620 CLS_LOG(1, "ERROR: rgw_bucket_set_tag_timeout(): failed to decode request\n");
621 return -EINVAL;
622 }
623
624 struct rgw_bucket_dir_header header;
625 int rc = read_bucket_header(hctx, &header);
626 if (rc < 0) {
627 CLS_LOG(1, "ERROR: rgw_bucket_set_tag_timeout(): failed to read header\n");
628 return rc;
629 }
630
631 header.tag_timeout = op.tag_timeout;
632
633 return write_bucket_header(hctx, &header);
634}
635
636static int read_key_entry(cls_method_context_t hctx, cls_rgw_obj_key& key, string *idx, struct rgw_bucket_dir_entry *entry,
637 bool special_delete_marker_name = false);
638
639int rgw_bucket_prepare_op(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
640{
641 // decode request
642 rgw_cls_obj_prepare_op op;
643 bufferlist::iterator iter = in->begin();
644 try {
645 ::decode(op, iter);
646 } catch (buffer::error& err) {
647 CLS_LOG(1, "ERROR: rgw_bucket_prepare_op(): failed to decode request\n");
648 return -EINVAL;
649 }
650
651 if (op.tag.empty()) {
652 CLS_LOG(1, "ERROR: tag is empty\n");
653 return -EINVAL;
654 }
655
656 CLS_LOG(1, "rgw_bucket_prepare_op(): request: op=%d name=%s instance=%s tag=%s\n",
657 op.op, op.key.name.c_str(), op.key.instance.c_str(), op.tag.c_str());
658
659 // get on-disk state
660 string idx;
661
662 struct rgw_bucket_dir_entry entry;
663 int rc = read_key_entry(hctx, op.key, &idx, &entry);
664 if (rc < 0 && rc != -ENOENT)
665 return rc;
666
667 bool noent = (rc == -ENOENT);
668
669 rc = 0;
670
671 if (noent) { // no entry, initialize fields
672 entry.key = op.key;
673 entry.ver = rgw_bucket_entry_ver();
674 entry.exists = false;
675 entry.locator = op.locator;
676 }
677
678 // fill in proper state
679 struct rgw_bucket_pending_info info;
680 info.timestamp = real_clock::now();
681 info.state = CLS_RGW_STATE_PENDING_MODIFY;
682 info.op = op.op;
683 entry.pending_map.insert(pair<string, rgw_bucket_pending_info>(op.tag, info));
684
685 struct rgw_bucket_dir_header header;
686 rc = read_bucket_header(hctx, &header);
687 if (rc < 0) {
688 CLS_LOG(1, "ERROR: rgw_bucket_prepare_op(): failed to read header\n");
689 return rc;
690 }
691
692 if (op.log_op) {
693 rc = log_index_operation(hctx, op.key, op.op, op.tag, entry.meta.mtime,
31f18b77 694 entry.ver, info.state, header.ver, header.max_marker, op.bilog_flags, NULL, NULL, &op.zones_trace);
7c673cae
FG
695 if (rc < 0)
696 return rc;
697 }
698
699 // write out new key to disk
700 bufferlist info_bl;
701 ::encode(entry, info_bl);
702 rc = cls_cxx_map_set_val(hctx, idx, &info_bl);
703 if (rc < 0)
704 return rc;
705
706 return write_bucket_header(hctx, &header);
707}
708
709static void unaccount_entry(struct rgw_bucket_dir_header& header, struct rgw_bucket_dir_entry& entry)
710{
711 struct rgw_bucket_category_stats& stats = header.stats[entry.meta.category];
712 stats.num_entries--;
713 stats.total_size -= entry.meta.accounted_size;
714 stats.total_size_rounded -= cls_rgw_get_rounded_size(entry.meta.accounted_size);
715 stats.actual_size -= entry.meta.size;
716}
717
718static void log_entry(const char *func, const char *str, struct rgw_bucket_dir_entry *entry)
719{
720 CLS_LOG(1, "%s(): %s: ver=%ld:%llu name=%s instance=%s locator=%s\n", func, str,
721 (long)entry->ver.pool, (unsigned long long)entry->ver.epoch,
722 entry->key.name.c_str(), entry->key.instance.c_str(), entry->locator.c_str());
723}
724
725static void log_entry(const char *func, const char *str, struct rgw_bucket_olh_entry *entry)
726{
727 CLS_LOG(1, "%s(): %s: epoch=%llu name=%s instance=%s tag=%s\n", func, str,
728 (unsigned long long)entry->epoch, entry->key.name.c_str(), entry->key.instance.c_str(),
729 entry->tag.c_str());
730}
731
732template <class T>
733static int read_index_entry(cls_method_context_t hctx, string& name, T *entry)
734{
735 bufferlist current_entry;
736 int rc = cls_cxx_map_get_val(hctx, name, &current_entry);
737 if (rc < 0) {
738 return rc;
739 }
740
741 bufferlist::iterator cur_iter = current_entry.begin();
742 try {
743 ::decode(*entry, cur_iter);
744 } catch (buffer::error& err) {
745 CLS_LOG(1, "ERROR: read_index_entry(): failed to decode entry\n");
746 return -EIO;
747 }
748
749 log_entry(__func__, "existing entry", entry);
750 return 0;
751}
752
753static int read_key_entry(cls_method_context_t hctx, cls_rgw_obj_key& key, string *idx, struct rgw_bucket_dir_entry *entry,
754 bool special_delete_marker_name)
755{
756 encode_obj_index_key(key, idx);
757 int rc = read_index_entry(hctx, *idx, entry);
758 if (rc < 0) {
759 return rc;
760 }
761
762 if (key.instance.empty() &&
763 entry->flags & RGW_BUCKET_DIRENT_FLAG_VER_MARKER) {
764 /* we only do it where key.instance is empty. In this case the delete marker will have a
765 * separate entry in the index to avoid collisions with the actual object, as it's mutable
766 */
767 if (special_delete_marker_name) {
768 encode_obj_versioned_data_key(key, idx, true);
769 rc = read_index_entry(hctx, *idx, entry);
770 if (rc == 0) {
771 return 0;
772 }
773 }
774 encode_obj_versioned_data_key(key, idx);
775 rc = read_index_entry(hctx, *idx, entry);
776 if (rc < 0) {
777 *entry = rgw_bucket_dir_entry(); /* need to reset entry because we initialized it earlier */
778 return rc;
779 }
780 }
781
782 return 0;
783}
784
785int rgw_bucket_complete_op(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
786{
787 // decode request
788 rgw_cls_obj_complete_op op;
789 bufferlist::iterator iter = in->begin();
790 try {
791 ::decode(op, iter);
792 } catch (buffer::error& err) {
793 CLS_LOG(1, "ERROR: rgw_bucket_complete_op(): failed to decode request\n");
794 return -EINVAL;
795 }
796 CLS_LOG(1, "rgw_bucket_complete_op(): request: op=%d name=%s instance=%s ver=%lu:%llu tag=%s\n",
797 op.op, op.key.name.c_str(), op.key.instance.c_str(),
798 (unsigned long)op.ver.pool, (unsigned long long)op.ver.epoch,
799 op.tag.c_str());
800
801 struct rgw_bucket_dir_header header;
802 int rc = read_bucket_header(hctx, &header);
803 if (rc < 0) {
804 CLS_LOG(1, "ERROR: rgw_bucket_complete_op(): failed to read header\n");
805 return -EINVAL;
806 }
807
808 struct rgw_bucket_dir_entry entry;
809 bool ondisk = true;
810
811 string idx;
812 rc = read_key_entry(hctx, op.key, &idx, &entry);
813 if (rc == -ENOENT) {
814 entry.key = op.key;
815 entry.ver = op.ver;
816 entry.meta = op.meta;
817 entry.locator = op.locator;
818 ondisk = false;
819 } else if (rc < 0) {
820 return rc;
821 }
822
823 entry.index_ver = header.ver;
824 entry.flags = (entry.key.instance.empty() ? 0 : RGW_BUCKET_DIRENT_FLAG_VER); /* resetting entry flags, entry might have been previously a delete marker */
825
826 if (op.tag.size()) {
827 map<string, struct rgw_bucket_pending_info>::iterator pinter = entry.pending_map.find(op.tag);
828 if (pinter == entry.pending_map.end()) {
829 CLS_LOG(1, "ERROR: couldn't find tag for pending operation\n");
830 return -EINVAL;
831 }
832 entry.pending_map.erase(pinter);
833 }
834
835 bool cancel = false;
836 bufferlist update_bl;
837
838 if (op.tag.size() && op.op == CLS_RGW_OP_CANCEL) {
839 CLS_LOG(1, "rgw_bucket_complete_op(): cancel requested\n");
840 cancel = true;
841 } else if (op.ver.pool == entry.ver.pool &&
842 op.ver.epoch && op.ver.epoch <= entry.ver.epoch) {
843 CLS_LOG(1, "rgw_bucket_complete_op(): skipping request, old epoch\n");
844 cancel = true;
845 }
846
847 bufferlist op_bl;
848 if (cancel) {
849 if (op.log_op) {
850 rc = log_index_operation(hctx, op.key, op.op, op.tag, entry.meta.mtime, entry.ver,
31f18b77 851 CLS_RGW_STATE_COMPLETE, header.ver, header.max_marker, op.bilog_flags, NULL, NULL, &op.zones_trace);
7c673cae
FG
852 if (rc < 0)
853 return rc;
854 }
855
856 if (op.tag.size()) {
857 bufferlist new_key_bl;
858 ::encode(entry, new_key_bl);
859 return cls_cxx_map_set_val(hctx, idx, &new_key_bl);
860 } else {
861 return 0;
862 }
863 }
864
865 if (entry.exists) {
866 unaccount_entry(header, entry);
867 }
868
869 entry.ver = op.ver;
870 switch ((int)op.op) {
871 case CLS_RGW_OP_DEL:
872 entry.meta = op.meta;
873 if (ondisk) {
874 if (!entry.pending_map.size()) {
875 int ret = cls_cxx_map_remove_key(hctx, idx);
876 if (ret < 0)
877 return ret;
878 } else {
879 entry.exists = false;
880 bufferlist new_key_bl;
881 ::encode(entry, new_key_bl);
882 int ret = cls_cxx_map_set_val(hctx, idx, &new_key_bl);
883 if (ret < 0)
884 return ret;
885 }
886 } else {
887 return -ENOENT;
888 }
889 break;
890 case CLS_RGW_OP_ADD:
891 {
892 struct rgw_bucket_dir_entry_meta& meta = op.meta;
893 struct rgw_bucket_category_stats& stats = header.stats[meta.category];
894 entry.meta = meta;
895 entry.key = op.key;
896 entry.exists = true;
897 entry.tag = op.tag;
898 stats.num_entries++;
899 stats.total_size += meta.accounted_size;
900 stats.total_size_rounded += cls_rgw_get_rounded_size(meta.accounted_size);
901 stats.actual_size += meta.size;
902 bufferlist new_key_bl;
903 ::encode(entry, new_key_bl);
904 int ret = cls_cxx_map_set_val(hctx, idx, &new_key_bl);
905 if (ret < 0)
906 return ret;
907 }
908 break;
909 }
910
911 if (op.log_op) {
912 rc = log_index_operation(hctx, op.key, op.op, op.tag, entry.meta.mtime, entry.ver,
31f18b77 913 CLS_RGW_STATE_COMPLETE, header.ver, header.max_marker, op.bilog_flags, NULL, NULL, &op.zones_trace);
7c673cae
FG
914 if (rc < 0)
915 return rc;
916 }
917
918 list<cls_rgw_obj_key>::iterator remove_iter;
919 CLS_LOG(20, "rgw_bucket_complete_op(): remove_objs.size()=%d\n", (int)op.remove_objs.size());
920 for (remove_iter = op.remove_objs.begin(); remove_iter != op.remove_objs.end(); ++remove_iter) {
921 cls_rgw_obj_key& remove_key = *remove_iter;
922 CLS_LOG(1, "rgw_bucket_complete_op(): removing entries, read_index_entry name=%s instance=%s\n",
923 remove_key.name.c_str(), remove_key.instance.c_str());
924 struct rgw_bucket_dir_entry remove_entry;
925 string k;
926 int ret = read_key_entry(hctx, remove_key, &k, &remove_entry);
927 if (ret < 0) {
928 CLS_LOG(1, "rgw_bucket_complete_op(): removing entries, read_index_entry name=%s instance=%s ret=%d\n",
929 remove_key.name.c_str(), remove_key.instance.c_str(), ret);
930 continue;
931 }
932 CLS_LOG(0, "rgw_bucket_complete_op(): entry.name=%s entry.instance=%s entry.meta.category=%d\n",
933 remove_entry.key.name.c_str(), remove_entry.key.instance.c_str(), remove_entry.meta.category);
934 unaccount_entry(header, remove_entry);
935
936 if (op.log_op) {
937 rc = log_index_operation(hctx, remove_key, CLS_RGW_OP_DEL, op.tag, remove_entry.meta.mtime,
31f18b77 938 remove_entry.ver, CLS_RGW_STATE_COMPLETE, header.ver, header.max_marker, op.bilog_flags, NULL, NULL, &op.zones_trace);
7c673cae
FG
939 if (rc < 0)
940 continue;
941 }
942
943 ret = cls_cxx_map_remove_key(hctx, k);
944 if (ret < 0) {
945 CLS_LOG(1, "rgw_bucket_complete_op(): cls_cxx_map_remove_key, failed to remove entry, name=%s instance=%s read_index_entry ret=%d\n", remove_key.name.c_str(), remove_key.instance.c_str(), rc);
946 continue;
947 }
948 }
949
950 return write_bucket_header(hctx, &header);
951}
952
953template <class T>
954static int write_entry(cls_method_context_t hctx, T& entry, const string& key)
955{
956 bufferlist bl;
957 ::encode(entry, bl);
958 return cls_cxx_map_set_val(hctx, key, &bl);
959}
960
961static int read_olh(cls_method_context_t hctx,cls_rgw_obj_key& obj_key, struct rgw_bucket_olh_entry *olh_data_entry, string *index_key, bool *found)
962{
963 cls_rgw_obj_key olh_key;
964 olh_key.name = obj_key.name;
965
966 encode_olh_data_key(olh_key, index_key);
967 int ret = read_index_entry(hctx, *index_key, olh_data_entry);
968 if (ret < 0 && ret != -ENOENT) {
969 CLS_LOG(0, "ERROR: read_index_entry() olh_key=%s ret=%d", olh_key.name.c_str(), ret);
970 return ret;
971 }
972 if (found) {
973 *found = (ret != -ENOENT);
974 }
975 return 0;
976}
977
978static void update_olh_log(struct rgw_bucket_olh_entry& olh_data_entry, OLHLogOp op, const string& op_tag,
979 cls_rgw_obj_key& key, bool delete_marker, uint64_t epoch)
980{
981 vector<rgw_bucket_olh_log_entry>& log = olh_data_entry.pending_log[olh_data_entry.epoch];
982 rgw_bucket_olh_log_entry log_entry;
983 log_entry.epoch = epoch;
984 log_entry.op = op;
985 log_entry.op_tag = op_tag;
986 log_entry.key = key;
987 log_entry.delete_marker = delete_marker;
988 log.push_back(log_entry);
989}
990
991static string escape_str(const string& s)
992{
993 int len = escape_json_attr_len(s.c_str(), s.size());
994 char escaped[len];
995 escape_json_attr(s.c_str(), s.size(), escaped);
996 return string(escaped);
997}
998
999static int write_obj_instance_entry(cls_method_context_t hctx, struct rgw_bucket_dir_entry& instance_entry, const string& instance_idx)
1000{
1001 CLS_LOG(20, "write_entry() instance=%s idx=%s flags=%d", escape_str(instance_entry.key.instance).c_str(), instance_idx.c_str(), instance_entry.flags);
1002 /* write the instance entry */
1003 int ret = write_entry(hctx, instance_entry, instance_idx);
1004 if (ret < 0) {
1005 CLS_LOG(0, "ERROR: write_entry() instance_key=%s ret=%d", escape_str(instance_idx).c_str(), ret);
1006 return ret;
1007 }
1008 return 0;
1009}
1010
1011/*
1012 * write object instance entry, and if needed also the list entry
1013 */
1014static int write_obj_entries(cls_method_context_t hctx, struct rgw_bucket_dir_entry& instance_entry, const string& instance_idx)
1015{
1016 int ret = write_obj_instance_entry(hctx, instance_entry, instance_idx);
1017 if (ret < 0) {
1018 return ret;
1019 }
1020 string instance_list_idx;
1021 get_list_index_key(instance_entry, &instance_list_idx);
1022
1023 if (instance_idx != instance_list_idx) {
1024 CLS_LOG(20, "write_entry() idx=%s flags=%d", escape_str(instance_list_idx).c_str(), instance_entry.flags);
1025 /* write a new list entry for the object instance */
1026 ret = write_entry(hctx, instance_entry, instance_list_idx);
1027 if (ret < 0) {
1028 CLS_LOG(0, "ERROR: write_entry() instance=%s instance_list_idx=%s ret=%d", instance_entry.key.instance.c_str(), instance_list_idx.c_str(), ret);
1029 return ret;
1030 }
1031 }
1032 return 0;
1033}
1034
1035
1036class BIVerObjEntry {
1037 cls_method_context_t hctx;
1038 cls_rgw_obj_key key;
1039 string instance_idx;
1040
1041 struct rgw_bucket_dir_entry instance_entry;
1042
1043 bool initialized;
1044
1045public:
1046 BIVerObjEntry(cls_method_context_t& _hctx, const cls_rgw_obj_key& _key) : hctx(_hctx), key(_key), initialized(false) {
1047 }
1048
1049 int init(bool check_delete_marker = true) {
1050 int ret = read_key_entry(hctx, key, &instance_idx, &instance_entry,
1051 check_delete_marker && key.instance.empty()); /* this is potentially a delete marker, for null objects we
1052 keep separate instance entry for the delete markers */
1053
1054 if (ret < 0) {
1055 CLS_LOG(0, "ERROR: read_key_entry() idx=%s ret=%d", instance_idx.c_str(), ret);
1056 return ret;
1057 }
1058 initialized = true;
1059 CLS_LOG(20, "read instance_entry key.name=%s key.instance=%s flags=%d", instance_entry.key.name.c_str(), instance_entry.key.instance.c_str(), instance_entry.flags);
1060 return 0;
1061 }
1062
1063 rgw_bucket_dir_entry& get_dir_entry() {
1064 return instance_entry;
1065 }
1066
1067 void init_as_delete_marker(rgw_bucket_dir_entry_meta& meta) {
1068 /* a deletion marker, need to initialize it, there's no instance entry for it yet */
1069 instance_entry.key = key;
1070 instance_entry.flags = RGW_BUCKET_DIRENT_FLAG_DELETE_MARKER;
1071 instance_entry.meta = meta;
1072 instance_entry.tag = "delete-marker";
1073
1074 initialized = true;
1075 }
1076
1077 void set_epoch(uint64_t epoch) {
1078 instance_entry.versioned_epoch = epoch;
1079 }
1080
1081 int unlink_list_entry() {
1082 string list_idx;
1083 /* this instance has a previous list entry, remove that entry */
1084 get_list_index_key(instance_entry, &list_idx);
1085 CLS_LOG(20, "unlink_list_entry() list_idx=%s", escape_str(list_idx).c_str());
1086 int ret = cls_cxx_map_remove_key(hctx, list_idx);
1087 if (ret < 0) {
1088 CLS_LOG(0, "ERROR: cls_cxx_map_remove_key() list_idx=%s ret=%d", list_idx.c_str(), ret);
1089 return ret;
1090 }
1091 return 0;
1092 }
1093
1094 int unlink() {
1095 /* remove the instance entry */
1096 CLS_LOG(20, "unlink() idx=%s", escape_str(instance_idx).c_str());
1097 int ret = cls_cxx_map_remove_key(hctx, instance_idx);
1098 if (ret < 0) {
1099 CLS_LOG(0, "ERROR: cls_cxx_map_remove_key() instance_idx=%s ret=%d", instance_idx.c_str(), ret);
1100 return ret;
1101 }
1102 return 0;
1103 }
1104
1105 int write_entries(uint64_t flags_set, uint64_t flags_reset) {
1106 if (!initialized) {
1107 int ret = init();
1108 if (ret < 0) {
1109 return ret;
1110 }
1111 }
1112 instance_entry.flags &= ~flags_reset;
1113 instance_entry.flags |= flags_set;
1114
1115 /* write the instance and list entries */
1116 bool special_delete_marker_key = (instance_entry.is_delete_marker() && instance_entry.key.instance.empty());
1117 encode_obj_versioned_data_key(key, &instance_idx, special_delete_marker_key);
1118 int ret = write_obj_entries(hctx, instance_entry, instance_idx);
1119 if (ret < 0) {
1120 CLS_LOG(0, "ERROR: write_obj_entries() instance_idx=%s ret=%d", instance_idx.c_str(), ret);
1121 return ret;
1122 }
1123
1124 return 0;
1125 }
1126
1127 int write(uint64_t epoch, bool current) {
1128 if (instance_entry.versioned_epoch > 0) {
1129 CLS_LOG(20, "%s(): instance_entry.versioned_epoch=%d epoch=%d", __func__, (int)instance_entry.versioned_epoch, (int)epoch);
1130 /* this instance has a previous list entry, remove that entry */
1131 int ret = unlink_list_entry();
1132 if (ret < 0) {
1133 return ret;
1134 }
1135 }
1136
1137 uint64_t flags = RGW_BUCKET_DIRENT_FLAG_VER;
1138 if (current) {
1139 flags |= RGW_BUCKET_DIRENT_FLAG_CURRENT;
1140 }
1141
1142 instance_entry.versioned_epoch = epoch;
1143 return write_entries(flags, 0);
1144 }
1145
1146 int demote_current() {
1147 return write_entries(0, RGW_BUCKET_DIRENT_FLAG_CURRENT);
1148 }
1149
1150 bool is_delete_marker() {
1151 return instance_entry.is_delete_marker();
1152 }
1153
1154 int find_next_key(cls_rgw_obj_key *next_key, bool *found) {
1155 string list_idx;
1156 /* this instance has a previous list entry, remove that entry */
1157 get_list_index_key(instance_entry, &list_idx);
1158 /* this is the current head, need to update! */
1159 map<string, bufferlist> keys;
1160 string filter = key.name; /* list key starts with key name, filter it to avoid a case where we cross to
1161 different namespace */
1162 int ret = cls_cxx_map_get_vals(hctx, list_idx, filter, 1, &keys);
1163 if (ret < 0) {
1164 return ret;
1165 }
1166
1167 if (keys.size() < 1) {
1168 *found = false;
1169 return 0;
1170 }
1171
1172 rgw_bucket_dir_entry next_entry;
1173
1174 map<string, bufferlist>::reverse_iterator last = keys.rbegin();
1175 try {
1176 bufferlist::iterator iter = last->second.begin();
1177 ::decode(next_entry, iter);
1178 } catch (buffer::error& err) {
1179 CLS_LOG(0, "ERROR; failed to decode entry: %s", last->first.c_str());
1180 return -EIO;
1181 }
1182
1183 *found = (key.name == next_entry.key.name);
1184 if (*found) {
1185 *next_key = next_entry.key;
1186 }
1187
1188 return 0;
1189 }
1190
1191 real_time mtime() {
1192 return instance_entry.meta.mtime;
1193 }
1194};
1195
1196
1197class BIOLHEntry {
1198 cls_method_context_t hctx;
1199 cls_rgw_obj_key key;
1200
1201 string olh_data_idx;
1202 struct rgw_bucket_olh_entry olh_data_entry;
1203
1204 bool initialized;
1205public:
1206 BIOLHEntry(cls_method_context_t& _hctx, const cls_rgw_obj_key& _key) : hctx(_hctx), key(_key), initialized(false) { }
1207
1208 int init(bool *exists) {
1209 /* read olh */
1210 int ret = read_olh(hctx, key, &olh_data_entry, &olh_data_idx, exists);
1211 if (ret < 0) {
1212 return ret;
1213 }
1214
1215 initialized = true;
1216 return 0;
1217 }
1218
1219 bool apply_epoch(uint64_t candidate_epoch) {
1220 if (candidate_epoch < olh_data_entry.epoch) {
1221 return false;
1222 }
1223
1224 olh_data_entry.epoch = candidate_epoch;
1225 return true;
1226 }
1227
1228 bool start_modify(uint64_t candidate_epoch) {
1229 if (candidate_epoch) {
1230 if (candidate_epoch < olh_data_entry.epoch) {
1231 return false; /* olh cannot be modified, old epoch */
1232 }
1233 olh_data_entry.epoch = candidate_epoch;
1234 } else {
1235 if (olh_data_entry.epoch == 0) {
1236 olh_data_entry.epoch = 2; /* versioned epoch should start with 2, 1 is reserved to converted plain entries */
1237 } else {
1238 olh_data_entry.epoch++;
1239 }
1240 }
1241 return true;
1242 }
1243
1244 uint64_t get_epoch() {
1245 return olh_data_entry.epoch;
1246 }
1247
1248 rgw_bucket_olh_entry& get_entry() {
1249 return olh_data_entry;
1250 }
1251
1252 void update(cls_rgw_obj_key& key, bool delete_marker) {
1253 olh_data_entry.delete_marker = delete_marker;
1254 olh_data_entry.key = key;
1255 }
1256
1257 int write() {
1258 /* write the olh data entry */
1259 int ret = write_entry(hctx, olh_data_entry, olh_data_idx);
1260 if (ret < 0) {
1261 CLS_LOG(0, "ERROR: write_entry() olh_key=%s ret=%d", olh_data_idx.c_str(), ret);
1262 return ret;
1263 }
1264
1265 return 0;
1266 }
1267
1268 void update_log(OLHLogOp op, const string& op_tag, cls_rgw_obj_key& key, bool delete_marker, uint64_t epoch = 0) {
1269 if (epoch == 0) {
1270 epoch = olh_data_entry.epoch;
1271 }
1272 update_olh_log(olh_data_entry, op, op_tag, key, delete_marker, epoch);
1273 }
1274
1275 bool exists() { return olh_data_entry.exists; }
1276
1277 void set_exists(bool exists) {
1278 olh_data_entry.exists = exists;
1279 }
1280
1281 bool pending_removal() { return olh_data_entry.pending_removal; }
1282
1283 void set_pending_removal(bool pending_removal) {
1284 olh_data_entry.pending_removal = pending_removal;
1285 }
1286
1287 const string& get_tag() { return olh_data_entry.tag; }
1288 void set_tag(const string& tag) {
1289 olh_data_entry.tag = tag;
1290 }
1291};
1292
1293static int write_version_marker(cls_method_context_t hctx, cls_rgw_obj_key& key)
1294{
1295 struct rgw_bucket_dir_entry entry;
1296 entry.key = key;
1297 entry.flags = RGW_BUCKET_DIRENT_FLAG_VER_MARKER;
1298 int ret = write_entry(hctx, entry, key.name);
1299 if (ret < 0) {
1300 CLS_LOG(0, "ERROR: write_entry returned ret=%d", ret);
1301 return ret;
1302 }
1303 return 0;
1304}
1305
1306/*
1307 * plain entries are the ones who were created when bucket was not versioned,
1308 * if we override these objects, we need to convert these to versioned entries -- ones that have
1309 * both data entry, and listing key. Their version is going to be empty though
1310 */
1311static int convert_plain_entry_to_versioned(cls_method_context_t hctx, cls_rgw_obj_key& key, bool demote_current, bool instance_only)
1312{
1313 if (!key.instance.empty()) {
1314 return -EINVAL;
1315 }
1316
1317 struct rgw_bucket_dir_entry entry;
1318
1319 string orig_idx;
1320 int ret = read_key_entry(hctx, key, &orig_idx, &entry);
1321 if (ret != -ENOENT) {
1322 if (ret < 0) {
1323 CLS_LOG(0, "ERROR: read_key_entry() returned ret=%d", ret);
1324 return ret;
1325 }
1326
1327 entry.versioned_epoch = 1; /* converted entries are always 1 */
1328 entry.flags |= RGW_BUCKET_DIRENT_FLAG_VER;
1329
1330 if (demote_current) {
1331 entry.flags &= ~RGW_BUCKET_DIRENT_FLAG_CURRENT;
1332 }
1333
1334 string new_idx;
1335 encode_obj_versioned_data_key(key, &new_idx);
1336
1337 if (instance_only) {
1338 ret = write_obj_instance_entry(hctx, entry, new_idx);
1339 } else {
1340 ret = write_obj_entries(hctx, entry, new_idx);
1341 }
1342 if (ret < 0) {
1343 CLS_LOG(0, "ERROR: write_obj_entries new_idx=%s returned %d", new_idx.c_str(), ret);
1344 return ret;
1345 }
1346 }
1347
1348 ret = write_version_marker(hctx, key);
1349 if (ret < 0) {
1350 return ret;
1351 }
1352
1353 return 0;
1354}
1355
1356/*
1357 * link an object version to an olh, update the relevant index entries. It will also handle the
1358 * deletion marker case. We have a few entries that we need to take care of. For object 'foo',
1359 * instance BAR, we'd update the following (not actual encoding):
1360 * - olh data: [BI_BUCKET_OLH_DATA_INDEX]foo
1361 * - object instance data: [BI_BUCKET_OBJ_INSTANCE_INDEX]foo,BAR
1362 * - object instance list entry: foo,123,BAR
1363 *
1364 * The instance list entry needs to be ordered by newer to older, so we generate an appropriate
1365 * number string that follows the name.
1366 * The top instance for each object is marked appropriately.
1367 * We generate instance entry for deletion markers here, as they are not created prior.
1368 */
1369static int rgw_bucket_link_olh(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
1370{
1371 string olh_data_idx;
1372 string instance_idx;
1373
1374 // decode request
1375 rgw_cls_link_olh_op op;
1376 bufferlist::iterator iter = in->begin();
1377 try {
1378 ::decode(op, iter);
1379 } catch (buffer::error& err) {
1380 CLS_LOG(0, "ERROR: rgw_bucket_link_olh_op(): failed to decode request\n");
1381 return -EINVAL;
1382 }
1383
1384 BIVerObjEntry obj(hctx, op.key);
1385 BIOLHEntry olh(hctx, op.key);
1386
1387 /* read instance entry */
1388 int ret = obj.init(op.delete_marker);
1389 bool existed = (ret == 0);
1390 if (ret == -ENOENT && op.delete_marker) {
1391 ret = 0;
1392 }
1393 if (ret < 0) {
1394 return ret;
1395 }
1396
1397 if (existed && !real_clock::is_zero(op.unmod_since)) {
1398 struct timespec mtime = ceph::real_clock::to_timespec(obj.mtime());
1399 struct timespec unmod = ceph::real_clock::to_timespec(op.unmod_since);
1400 if (!op.high_precision_time) {
1401 mtime.tv_nsec = 0;
1402 unmod.tv_nsec = 0;
1403 }
1404 if (mtime >= unmod) {
1405 return 0; /* no need to set error, we just return 0 and avoid writing to the bi log */
1406 }
1407 }
1408
1409 bool removing;
1410
1411 /*
1412 * Special handling for null instance object / delete-marker. For these objects we're going to
1413 * have separate instances for a data object vs. delete-marker to avoid collisions. We now check
1414 * if we got to overwrite a previous entry, and in that case we'll remove its list entry.
1415 */
1416 if (op.key.instance.empty()) {
1417 BIVerObjEntry other_obj(hctx, op.key);
1418 ret = other_obj.init(!op.delete_marker); /* try reading the other null versioned entry */
1419 existed = (ret >= 0 && !other_obj.is_delete_marker());
1420 if (ret >= 0 && other_obj.is_delete_marker() != op.delete_marker) {
1421 ret = other_obj.unlink_list_entry();
1422 if (ret < 0) {
1423 return ret;
1424 }
1425 ret = other_obj.unlink();
1426 if (ret < 0) {
1427 return ret;
1428 }
1429 }
1430
1431 removing = existed && op.delete_marker;
1432 } else {
1433 removing = (existed && !obj.is_delete_marker() && op.delete_marker);
1434 }
1435
1436 if (op.delete_marker) {
1437 /* a deletion marker, need to initialize entry as such */
1438 obj.init_as_delete_marker(op.meta);
1439 }
1440
1441 /* read olh */
1442 bool olh_found;
1443 ret = olh.init(&olh_found);
1444 if (ret < 0) {
1445 return ret;
1446 }
1447
1448 if (!olh.start_modify(op.olh_epoch)) {
1449 ret = obj.write(op.olh_epoch, false);
1450 if (ret < 0) {
1451 return ret;
1452 }
1453 if (removing) {
1454 olh.update_log(CLS_RGW_OLH_OP_REMOVE_INSTANCE, op.op_tag, op.key, false, op.olh_epoch);
1455 }
1456 return 0;
1457 }
1458
1459 if (olh_found) {
1460 const string& olh_tag = olh.get_tag();
1461 if (op.olh_tag != olh_tag) {
1462 if (!olh.pending_removal()) {
1463 CLS_LOG(5, "NOTICE: op.olh_tag (%s) != olh.tag (%s)", op.olh_tag.c_str(), olh_tag.c_str());
1464 return -ECANCELED;
1465 }
1466 /* if pending removal, this is a new olh instance */
1467 olh.set_tag(op.olh_tag);
1468 }
1469 if (olh.exists()) {
1470 rgw_bucket_olh_entry& olh_entry = olh.get_entry();
1471 /* found olh, previous instance is no longer the latest, need to update */
1472 if (!(olh_entry.key == op.key)) {
1473 BIVerObjEntry old_obj(hctx, olh_entry.key);
1474
1475 ret = old_obj.demote_current();
1476 if (ret < 0) {
1477 CLS_LOG(0, "ERROR: could not demote current on previous key ret=%d", ret);
1478 return ret;
1479 }
1480 }
1481 }
1482 olh.set_pending_removal(false);
1483 } else {
1484 bool instance_only = (op.key.instance.empty() && op.delete_marker);
1485 cls_rgw_obj_key key(op.key.name);
1486 ret = convert_plain_entry_to_versioned(hctx, key, true, instance_only);
1487 if (ret < 0) {
1488 CLS_LOG(0, "ERROR: convert_plain_entry_to_versioned ret=%d", ret);
1489 return ret;
1490 }
1491 olh.set_tag(op.olh_tag);
1492 }
1493
1494 /* update the olh log */
1495 olh.update_log(CLS_RGW_OLH_OP_LINK_OLH, op.op_tag, op.key, op.delete_marker);
1496 if (removing) {
1497 olh.update_log(CLS_RGW_OLH_OP_REMOVE_INSTANCE, op.op_tag, op.key, false);
1498 }
1499
1500 olh.update(op.key, op.delete_marker);
1501
1502 olh.set_exists(true);
1503
1504 ret = olh.write();
1505 if (ret < 0) {
1506 CLS_LOG(0, "ERROR: failed to update olh ret=%d", ret);
1507 return ret;
1508 }
1509
1510 /* write the instance and list entries */
1511 ret = obj.write(olh.get_epoch(), true);
1512 if (ret < 0) {
1513 return ret;
1514 }
1515
1516 struct rgw_bucket_dir_header header;
1517 ret = read_bucket_header(hctx, &header);
1518 if (ret < 0) {
1519 CLS_LOG(1, "ERROR: rgw_bucket_unlink_instance(): failed to read header\n");
1520 return ret;
1521 }
1522
1523 if (op.log_op) {
1524 rgw_bucket_dir_entry& entry = obj.get_dir_entry();
1525
1526 rgw_bucket_entry_ver ver;
1527 ver.epoch = (op.olh_epoch ? op.olh_epoch : olh.get_epoch());
1528
1529 string *powner = NULL;
1530 string *powner_display_name = NULL;
1531
1532 if (op.delete_marker) {
1533 powner = &entry.meta.owner;
1534 powner_display_name = &entry.meta.owner_display_name;
1535 }
1536
1537 RGWModifyOp operation = (op.delete_marker ? CLS_RGW_OP_LINK_OLH_DM : CLS_RGW_OP_LINK_OLH);
1538 ret = log_index_operation(hctx, op.key, operation, op.op_tag,
1539 entry.meta.mtime, ver,
1540 CLS_RGW_STATE_COMPLETE, header.ver, header.max_marker, op.bilog_flags | RGW_BILOG_FLAG_VERSIONED_OP,
31f18b77 1541 powner, powner_display_name, &op.zones_trace);
7c673cae
FG
1542 if (ret < 0)
1543 return ret;
1544 }
1545
1546 return write_bucket_header(hctx, &header); /* updates header version */
1547}
1548
1549static int rgw_bucket_unlink_instance(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
1550{
1551 string olh_data_idx;
1552 string instance_idx;
1553
1554 // decode request
1555 rgw_cls_unlink_instance_op op;
1556 bufferlist::iterator iter = in->begin();
1557 try {
1558 ::decode(op, iter);
1559 } catch (buffer::error& err) {
1560 CLS_LOG(0, "ERROR: rgw_bucket_rm_obj_instance_op(): failed to decode request\n");
1561 return -EINVAL;
1562 }
1563
1564 cls_rgw_obj_key dest_key = op.key;
1565 if (dest_key.instance == "null") {
1566 dest_key.instance.clear();
1567 }
1568
1569 BIVerObjEntry obj(hctx, dest_key);
1570 BIOLHEntry olh(hctx, dest_key);
1571
1572 int ret = obj.init();
1573 if (ret == -ENOENT) {
1574 return 0; /* already removed */
1575 }
1576 if (ret < 0) {
1577 CLS_LOG(0, "ERROR: obj.init() returned ret=%d", ret);
1578 return ret;
1579 }
1580
1581 bool olh_found;
1582 ret = olh.init(&olh_found);
1583 if (ret < 0) {
1584 CLS_LOG(0, "ERROR: olh.init() returned ret=%d", ret);
1585 return ret;
1586 }
1587
1588 if (!olh_found) {
1589 bool instance_only = false;
1590 cls_rgw_obj_key key(dest_key.name);
1591 ret = convert_plain_entry_to_versioned(hctx, key, true, instance_only);
1592 if (ret < 0) {
1593 CLS_LOG(0, "ERROR: convert_plain_entry_to_versioned ret=%d", ret);
1594 return ret;
1595 }
1596 olh.update(dest_key, false);
1597 olh.set_tag(op.olh_tag);
1598
1599 obj.set_epoch(1);
1600 }
1601
1602 if (!olh.start_modify(op.olh_epoch)) {
1603 ret = obj.unlink_list_entry();
1604 if (ret < 0) {
1605 return ret;
1606 }
1607
1608 if (!obj.is_delete_marker()) {
1609 olh.update_log(CLS_RGW_OLH_OP_REMOVE_INSTANCE, op.op_tag, op.key, false, op.olh_epoch);
1610 }
1611
1612 return 0;
1613 }
1614
1615 rgw_bucket_olh_entry& olh_entry = olh.get_entry();
1616 cls_rgw_obj_key& olh_key = olh_entry.key;
1617 CLS_LOG(20, "%s(): updating olh log: existing olh entry: %s[%s] (delete_marker=%d)", __func__,
1618 olh_key.name.c_str(), olh_key.instance.c_str(), olh_entry.delete_marker);
1619
1620 if (olh_key == dest_key) {
1621 /* this is the current head, need to update! */
1622 cls_rgw_obj_key next_key;
1623 bool found;
1624 ret = obj.find_next_key(&next_key, &found);
1625 if (ret < 0) {
1626 CLS_LOG(0, "ERROR: obj.find_next_key() returned ret=%d", ret);
1627 return ret;
1628 }
1629
1630 if (found) {
1631 BIVerObjEntry next(hctx, next_key);
1632 ret = next.write(olh.get_epoch(), true);
1633 if (ret < 0) {
1634 CLS_LOG(0, "ERROR: next.write() returned ret=%d", ret);
1635 return ret;
1636 }
1637
1638 CLS_LOG(20, "%s(): updating olh log: link olh -> %s[%s] (is_delete=%d)", __func__,
1639 next_key.name.c_str(), next_key.instance.c_str(), (int)next.is_delete_marker());
1640
1641 olh.update(next_key, next.is_delete_marker());
1642 olh.update_log(CLS_RGW_OLH_OP_LINK_OLH, op.op_tag, next_key, next.is_delete_marker());
1643 } else {
1644 /* next_key is empty */
1645 olh.update(next_key, false);
1646 olh.update_log(CLS_RGW_OLH_OP_UNLINK_OLH, op.op_tag, next_key, false);
1647 olh.set_exists(false);
1648 olh.set_pending_removal(true);
1649 }
1650 }
1651
1652 if (!obj.is_delete_marker()) {
1653 olh.update_log(CLS_RGW_OLH_OP_REMOVE_INSTANCE, op.op_tag, op.key, false);
1654 } else {
1655 /* this is a delete marker, it's our responsibility to remove its instance entry */
1656 ret = obj.unlink();
1657 if (ret < 0) {
1658 return ret;
1659 }
1660 }
1661
1662 ret = obj.unlink_list_entry();
1663 if (ret < 0) {
1664 return ret;
1665 }
1666
1667 ret = olh.write();
1668 if (ret < 0) {
1669 return ret;
1670 }
1671
1672 struct rgw_bucket_dir_header header;
1673 ret = read_bucket_header(hctx, &header);
1674 if (ret < 0) {
1675 CLS_LOG(1, "ERROR: rgw_bucket_unlink_instance(): failed to read header\n");
1676 return ret;
1677 }
1678
1679 if (op.log_op) {
1680 rgw_bucket_entry_ver ver;
1681 ver.epoch = (op.olh_epoch ? op.olh_epoch : olh.get_epoch());
1682
1683 real_time mtime = real_clock::now(); /* mtime has no real meaning in instance removal context */
1684 ret = log_index_operation(hctx, op.key, CLS_RGW_OP_UNLINK_INSTANCE, op.op_tag,
1685 mtime, ver,
1686 CLS_RGW_STATE_COMPLETE, header.ver, header.max_marker,
31f18b77 1687 op.bilog_flags | RGW_BILOG_FLAG_VERSIONED_OP, NULL, NULL, &op.zones_trace);
7c673cae
FG
1688 if (ret < 0)
1689 return ret;
1690 }
1691
1692 return write_bucket_header(hctx, &header); /* updates header version */
1693}
1694
1695static int rgw_bucket_read_olh_log(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
1696{
1697 // decode request
1698 rgw_cls_read_olh_log_op op;
1699 bufferlist::iterator iter = in->begin();
1700 try {
1701 ::decode(op, iter);
1702 } catch (buffer::error& err) {
1703 CLS_LOG(0, "ERROR: rgw_bucket_read_olh_log(): failed to decode request\n");
1704 return -EINVAL;
1705 }
1706
1707 if (!op.olh.instance.empty()) {
1708 CLS_LOG(1, "bad key passed in (non empty instance)");
1709 return -EINVAL;
1710 }
1711
1712 struct rgw_bucket_olh_entry olh_data_entry;
1713 string olh_data_key;
1714 encode_olh_data_key(op.olh, &olh_data_key);
1715 int ret = read_index_entry(hctx, olh_data_key, &olh_data_entry);
1716 if (ret < 0 && ret != -ENOENT) {
1717 CLS_LOG(0, "ERROR: read_index_entry() olh_key=%s ret=%d", olh_data_key.c_str(), ret);
1718 return ret;
1719 }
1720
1721 if (olh_data_entry.tag != op.olh_tag) {
1722 CLS_LOG(1, "NOTICE: %s(): olh_tag_mismatch olh_data_entry.tag=%s op.olh_tag=%s", __func__, olh_data_entry.tag.c_str(), op.olh_tag.c_str());
1723 return -ECANCELED;
1724 }
1725
1726 rgw_cls_read_olh_log_ret op_ret;
1727
1728#define MAX_OLH_LOG_ENTRIES 1000
1729 map<uint64_t, vector<rgw_bucket_olh_log_entry> >& log = olh_data_entry.pending_log;
1730
1731 if (log.begin()->first > op.ver_marker && log.size() <= MAX_OLH_LOG_ENTRIES) {
1732 op_ret.log = log;
1733 op_ret.is_truncated = false;
1734 } else {
1735 map<uint64_t, vector<rgw_bucket_olh_log_entry> >::iterator iter = log.upper_bound(op.ver_marker);
1736
1737 for (int i = 0; i < MAX_OLH_LOG_ENTRIES && iter != log.end(); ++i, ++iter) {
1738 op_ret.log[iter->first] = iter->second;
1739 }
1740 op_ret.is_truncated = (iter != log.end());
1741 }
1742
1743 ::encode(op_ret, *out);
1744
1745 return 0;
1746}
1747
1748static int rgw_bucket_trim_olh_log(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
1749{
1750 // decode request
1751 rgw_cls_trim_olh_log_op op;
1752 bufferlist::iterator iter = in->begin();
1753 try {
1754 ::decode(op, iter);
1755 } catch (buffer::error& err) {
1756 CLS_LOG(0, "ERROR: rgw_bucket_trim_olh_log(): failed to decode request\n");
1757 return -EINVAL;
1758 }
1759
1760 if (!op.olh.instance.empty()) {
1761 CLS_LOG(1, "bad key passed in (non empty instance)");
1762 return -EINVAL;
1763 }
1764
1765 /* read olh entry */
1766 struct rgw_bucket_olh_entry olh_data_entry;
1767 string olh_data_key;
1768 encode_olh_data_key(op.olh, &olh_data_key);
1769 int ret = read_index_entry(hctx, olh_data_key, &olh_data_entry);
1770 if (ret < 0 && ret != -ENOENT) {
1771 CLS_LOG(0, "ERROR: read_index_entry() olh_key=%s ret=%d", olh_data_key.c_str(), ret);
1772 return ret;
1773 }
1774
1775 if (olh_data_entry.tag != op.olh_tag) {
1776 CLS_LOG(1, "NOTICE: %s(): olh_tag_mismatch olh_data_entry.tag=%s op.olh_tag=%s", __func__, olh_data_entry.tag.c_str(), op.olh_tag.c_str());
1777 return -ECANCELED;
1778 }
1779
1780 /* remove all versions up to and including ver from the pending map */
1781 map<uint64_t, vector<rgw_bucket_olh_log_entry> >& log = olh_data_entry.pending_log;
1782 map<uint64_t, vector<rgw_bucket_olh_log_entry> >::iterator liter = log.begin();
1783 while (liter != log.end() && liter->first <= op.ver) {
1784 map<uint64_t, vector<rgw_bucket_olh_log_entry> >::iterator rm_iter = liter;
1785 ++liter;
1786 log.erase(rm_iter);
1787 }
1788
1789 /* write the olh data entry */
1790 ret = write_entry(hctx, olh_data_entry, olh_data_key);
1791 if (ret < 0) {
1792 CLS_LOG(0, "ERROR: write_entry() olh_key=%s ret=%d", olh_data_key.c_str(), ret);
1793 return ret;
1794 }
1795
1796 return 0;
1797}
1798
1799static int rgw_bucket_clear_olh(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
1800{
1801 // decode request
1802 rgw_cls_bucket_clear_olh_op op;
1803 bufferlist::iterator iter = in->begin();
1804 try {
1805 ::decode(op, iter);
1806 } catch (buffer::error& err) {
1807 CLS_LOG(0, "ERROR: rgw_bucket_clear_olh(): failed to decode request\n");
1808 return -EINVAL;
1809 }
1810
1811 if (!op.key.instance.empty()) {
1812 CLS_LOG(1, "bad key passed in (non empty instance)");
1813 return -EINVAL;
1814 }
1815
1816 /* read olh entry */
1817 struct rgw_bucket_olh_entry olh_data_entry;
1818 string olh_data_key;
1819 encode_olh_data_key(op.key, &olh_data_key);
1820 int ret = read_index_entry(hctx, olh_data_key, &olh_data_entry);
1821 if (ret < 0 && ret != -ENOENT) {
1822 CLS_LOG(0, "ERROR: read_index_entry() olh_key=%s ret=%d", olh_data_key.c_str(), ret);
1823 return ret;
1824 }
1825
1826 if (olh_data_entry.tag != op.olh_tag) {
1827 CLS_LOG(1, "NOTICE: %s(): olh_tag_mismatch olh_data_entry.tag=%s op.olh_tag=%s", __func__, olh_data_entry.tag.c_str(), op.olh_tag.c_str());
1828 return -ECANCELED;
1829 }
1830
1831 ret = cls_cxx_map_remove_key(hctx, olh_data_key);
1832 if (ret < 0) {
1833 CLS_LOG(1, "NOTICE: %s(): can't remove key %s ret=%d", __func__, olh_data_key.c_str(), ret);
1834 return ret;
1835 }
1836
1837 rgw_bucket_dir_entry plain_entry;
1838
1839 /* read plain entry, make sure it's a versioned place holder */
1840 ret = read_index_entry(hctx, op.key.name, &plain_entry);
1841 if (ret == -ENOENT) {
1842 /* we're done, no entry existing */
1843 return 0;
1844 }
1845 if (ret < 0) {
1846 CLS_LOG(0, "ERROR: read_index_entry key=%s ret=%d", op.key.name.c_str(), ret);
1847 return ret;
1848 }
1849
1850 if ((plain_entry.flags & RGW_BUCKET_DIRENT_FLAG_VER_MARKER) == 0) {
1851 /* it's not a version marker, don't remove it */
1852 return 0;
1853 }
1854
1855 ret = cls_cxx_map_remove_key(hctx, op.key.name);
1856 if (ret < 0) {
1857 CLS_LOG(1, "NOTICE: %s(): can't remove key %s ret=%d", __func__, op.key.name.c_str(), ret);
1858 return ret;
1859 }
1860
1861 return 0;
1862}
1863
1864int rgw_dir_suggest_changes(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
1865{
1866 CLS_LOG(1, "rgw_dir_suggest_changes()");
1867
1868 bufferlist header_bl;
1869 struct rgw_bucket_dir_header header;
1870 bool header_changed = false;
1871
1872 int rc = read_bucket_header(hctx, &header);
1873 if (rc < 0) {
1874 CLS_LOG(1, "ERROR: rgw_dir_suggest_changes(): failed to read header\n");
1875 return rc;
1876 }
1877
224ce89b
WB
1878 timespan tag_timeout(
1879 std::chrono::seconds(
1880 header.tag_timeout ? header.tag_timeout : CEPH_RGW_TAG_TIMEOUT));
7c673cae
FG
1881
1882 bufferlist::iterator in_iter = in->begin();
1883
1884 while (!in_iter.end()) {
1885 __u8 op;
1886 rgw_bucket_dir_entry cur_change;
1887 rgw_bucket_dir_entry cur_disk;
1888 try {
1889 ::decode(op, in_iter);
1890 ::decode(cur_change, in_iter);
1891 } catch (buffer::error& err) {
1892 CLS_LOG(1, "ERROR: rgw_dir_suggest_changes(): failed to decode request\n");
1893 return -EINVAL;
1894 }
1895
1896 bufferlist cur_disk_bl;
1897 string cur_change_key;
1898 encode_obj_index_key(cur_change.key, &cur_change_key);
1899 int ret = cls_cxx_map_get_val(hctx, cur_change_key, &cur_disk_bl);
1900 if (ret < 0 && ret != -ENOENT)
1901 return -EINVAL;
1902
1903 if (cur_disk_bl.length()) {
1904 bufferlist::iterator cur_disk_iter = cur_disk_bl.begin();
1905 try {
1906 ::decode(cur_disk, cur_disk_iter);
1907 } catch (buffer::error& error) {
1908 CLS_LOG(1, "ERROR: rgw_dir_suggest_changes(): failed to decode cur_disk\n");
1909 return -EINVAL;
1910 }
1911
1912 real_time cur_time = real_clock::now();
1913 map<string, struct rgw_bucket_pending_info>::iterator iter =
1914 cur_disk.pending_map.begin();
1915 while(iter != cur_disk.pending_map.end()) {
1916 map<string, struct rgw_bucket_pending_info>::iterator cur_iter=iter++;
1917 if (cur_time > (cur_iter->second.timestamp + timespan(tag_timeout))) {
1918 cur_disk.pending_map.erase(cur_iter);
1919 }
1920 }
1921 }
1922
1923 CLS_LOG(20, "cur_disk.pending_map.empty()=%d op=%d cur_disk.exists=%d cur_change.pending_map.size()=%d cur_change.exists=%d\n",
1924 cur_disk.pending_map.empty(), (int)op, cur_disk.exists,
1925 (int)cur_change.pending_map.size(), cur_change.exists);
1926
1927 if (cur_disk.pending_map.empty()) {
1928 if (cur_disk.exists) {
1929 struct rgw_bucket_category_stats& old_stats = header.stats[cur_disk.meta.category];
1930 CLS_LOG(10, "total_entries: %" PRId64 " -> %" PRId64 "\n", old_stats.num_entries, old_stats.num_entries - 1);
1931 old_stats.num_entries--;
1932 old_stats.total_size -= cur_disk.meta.accounted_size;
1933 old_stats.total_size_rounded -= cls_rgw_get_rounded_size(cur_disk.meta.accounted_size);
1934 old_stats.actual_size -= cur_disk.meta.size;
1935 header_changed = true;
1936 }
1937 struct rgw_bucket_category_stats& stats =
1938 header.stats[cur_change.meta.category];
1939 bool log_op = (op & CEPH_RGW_DIR_SUGGEST_LOG_OP) != 0;
1940 op &= CEPH_RGW_DIR_SUGGEST_OP_MASK;
1941 switch(op) {
1942 case CEPH_RGW_REMOVE:
1943 CLS_LOG(10, "CEPH_RGW_REMOVE name=%s instance=%s\n", cur_change.key.name.c_str(), cur_change.key.instance.c_str());
1944 ret = cls_cxx_map_remove_key(hctx, cur_change_key);
1945 if (ret < 0)
1946 return ret;
1947 if (log_op && cur_disk.exists) {
1948 ret = log_index_operation(hctx, cur_disk.key, CLS_RGW_OP_DEL, cur_disk.tag, cur_disk.meta.mtime,
31f18b77 1949 cur_disk.ver, CLS_RGW_STATE_COMPLETE, header.ver, header.max_marker, 0, NULL, NULL, NULL);
7c673cae
FG
1950 if (ret < 0) {
1951 CLS_LOG(0, "ERROR: %s(): failed to log operation ret=%d", __func__, ret);
1952 return ret;
1953 }
1954 }
1955 break;
1956 case CEPH_RGW_UPDATE:
1957 CLS_LOG(10, "CEPH_RGW_UPDATE name=%s instance=%s total_entries: %" PRId64 " -> %" PRId64 "\n",
1958 cur_change.key.name.c_str(), cur_change.key.instance.c_str(), stats.num_entries, stats.num_entries + 1);
1959 stats.num_entries++;
1960 stats.total_size += cur_change.meta.accounted_size;
1961 stats.total_size_rounded += cls_rgw_get_rounded_size(cur_change.meta.accounted_size);
1962 stats.actual_size += cur_change.meta.size;
1963 header_changed = true;
1964 cur_change.index_ver = header.ver;
1965 bufferlist cur_state_bl;
1966 ::encode(cur_change, cur_state_bl);
1967 ret = cls_cxx_map_set_val(hctx, cur_change_key, &cur_state_bl);
1968 if (ret < 0)
1969 return ret;
1970 if (log_op) {
1971 ret = log_index_operation(hctx, cur_change.key, CLS_RGW_OP_ADD, cur_change.tag, cur_change.meta.mtime,
31f18b77 1972 cur_change.ver, CLS_RGW_STATE_COMPLETE, header.ver, header.max_marker, 0, NULL, NULL, NULL);
7c673cae
FG
1973 if (ret < 0) {
1974 CLS_LOG(0, "ERROR: %s(): failed to log operation ret=%d", __func__, ret);
1975 return ret;
1976 }
1977 }
1978 break;
1979 }
1980 }
1981
1982 }
1983
1984 if (header_changed) {
1985 return write_bucket_header(hctx, &header);
1986 }
1987 return 0;
1988}
1989
1990static int rgw_obj_remove(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
1991{
1992 // decode request
1993 rgw_cls_obj_remove_op op;
1994 bufferlist::iterator iter = in->begin();
1995 try {
1996 ::decode(op, iter);
1997 } catch (buffer::error& err) {
1998 CLS_LOG(0, "ERROR: %s(): failed to decode request", __func__);
1999 return -EINVAL;
2000 }
2001
2002 if (op.keep_attr_prefixes.empty()) {
2003 return cls_cxx_remove(hctx);
2004 }
2005
2006 map<string, bufferlist> attrset;
2007 int ret = cls_cxx_getxattrs(hctx, &attrset);
2008 if (ret < 0 && ret != -ENOENT) {
2009 CLS_LOG(0, "ERROR: %s(): cls_cxx_getxattrs() returned %d", __func__, ret);
2010 return ret;
2011 }
2012
2013 map<string, bufferlist> new_attrs;
2014 for (list<string>::iterator iter = op.keep_attr_prefixes.begin();
2015 iter != op.keep_attr_prefixes.end(); ++iter) {
2016 string& check_prefix = *iter;
2017
2018 for (map<string, bufferlist>::iterator aiter = attrset.lower_bound(check_prefix);
2019 aiter != attrset.end(); ++aiter) {
2020 const string& attr = aiter->first;
2021
2022 if (attr.substr(0, check_prefix.size()) > check_prefix) {
2023 break;
2024 }
2025
2026 new_attrs[attr] = aiter->second;
2027 }
2028 }
2029
2030 CLS_LOG(20, "%s(): removing object", __func__);
2031 ret = cls_cxx_remove(hctx);
2032 if (ret < 0) {
2033 CLS_LOG(0, "ERROR: %s(): cls_cxx_remove returned %d", __func__, ret);
2034 return ret;
2035 }
2036
2037 if (new_attrs.empty()) {
2038 /* no data to keep */
2039 return 0;
2040 }
2041
2042 ret = cls_cxx_create(hctx, false);
2043 if (ret < 0) {
2044 CLS_LOG(0, "ERROR: %s(): cls_cxx_create returned %d", __func__, ret);
2045 return ret;
2046 }
2047
2048 for (map<string, bufferlist>::iterator aiter = new_attrs.begin();
2049 aiter != new_attrs.end(); ++aiter) {
2050 const string& attr = aiter->first;
2051
2052 ret = cls_cxx_setxattr(hctx, attr.c_str(), &aiter->second);
2053 CLS_LOG(20, "%s(): setting attr: %s", __func__, attr.c_str());
2054 if (ret < 0) {
2055 CLS_LOG(0, "ERROR: %s(): cls_cxx_setxattr (attr=%s) returned %d", __func__, attr.c_str(), ret);
2056 return ret;
2057 }
2058 }
2059
2060 return 0;
2061}
2062
2063static int rgw_obj_store_pg_ver(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
2064{
2065 // decode request
2066 rgw_cls_obj_store_pg_ver_op op;
2067 bufferlist::iterator iter = in->begin();
2068 try {
2069 ::decode(op, iter);
2070 } catch (buffer::error& err) {
2071 CLS_LOG(0, "ERROR: %s(): failed to decode request", __func__);
2072 return -EINVAL;
2073 }
2074
2075 bufferlist bl;
2076 uint64_t ver = cls_current_version(hctx);
2077 ::encode(ver, bl);
2078 int ret = cls_cxx_setxattr(hctx, op.attr.c_str(), &bl);
2079 if (ret < 0) {
2080 CLS_LOG(0, "ERROR: %s(): cls_cxx_setxattr (attr=%s) returned %d", __func__, op.attr.c_str(), ret);
2081 return ret;
2082 }
2083
2084 return 0;
2085}
2086
2087static int rgw_obj_check_attrs_prefix(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
2088{
2089 // decode request
2090 rgw_cls_obj_check_attrs_prefix op;
2091 bufferlist::iterator iter = in->begin();
2092 try {
2093 ::decode(op, iter);
2094 } catch (buffer::error& err) {
2095 CLS_LOG(0, "ERROR: %s(): failed to decode request", __func__);
2096 return -EINVAL;
2097 }
2098
2099 if (op.check_prefix.empty()) {
2100 return -EINVAL;
2101 }
2102
2103 map<string, bufferlist> attrset;
2104 int ret = cls_cxx_getxattrs(hctx, &attrset);
2105 if (ret < 0 && ret != -ENOENT) {
2106 CLS_LOG(0, "ERROR: %s(): cls_cxx_getxattrs() returned %d", __func__, ret);
2107 return ret;
2108 }
2109
2110 bool exist = false;
2111
2112 for (map<string, bufferlist>::iterator aiter = attrset.lower_bound(op.check_prefix);
2113 aiter != attrset.end(); ++aiter) {
2114 const string& attr = aiter->first;
2115
2116 if (attr.substr(0, op.check_prefix.size()) > op.check_prefix) {
2117 break;
2118 }
2119
2120 exist = true;
2121 }
2122
2123 if (exist == op.fail_if_exist) {
2124 return -ECANCELED;
2125 }
2126
2127 return 0;
2128}
2129
2130static int rgw_obj_check_mtime(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
2131{
2132 // decode request
2133 rgw_cls_obj_check_mtime op;
2134 bufferlist::iterator iter = in->begin();
2135 try {
2136 ::decode(op, iter);
2137 } catch (buffer::error& err) {
2138 CLS_LOG(0, "ERROR: %s(): failed to decode request", __func__);
2139 return -EINVAL;
2140 }
2141
2142 real_time obj_ut;
2143 int ret = cls_cxx_stat2(hctx, NULL, &obj_ut);
2144 if (ret < 0 && ret != -ENOENT) {
2145 CLS_LOG(0, "ERROR: %s(): cls_cxx_stat() returned %d", __func__, ret);
2146 return ret;
2147 }
2148 if (ret == -ENOENT) {
2149 CLS_LOG(10, "object does not exist, skipping check");
2150 }
2151
2152 ceph_timespec obj_ts = ceph::real_clock::to_ceph_timespec(obj_ut);
2153 ceph_timespec op_ts = ceph::real_clock::to_ceph_timespec(op.mtime);
2154
2155 if (!op.high_precision_time) {
2156 obj_ts.tv_nsec = 0;
2157 op_ts.tv_nsec = 0;
2158 }
2159
2160 CLS_LOG(10, "%s: obj_ut=%lld.%06lld op.mtime=%lld.%06lld", __func__,
2161 (long long)obj_ts.tv_sec, (long long)obj_ts.tv_nsec,
2162 (long long)op_ts.tv_sec, (long long)op_ts.tv_nsec);
2163
2164 bool check;
2165
2166 switch (op.type) {
2167 case CLS_RGW_CHECK_TIME_MTIME_EQ:
2168 check = (obj_ts == op_ts);
2169 break;
2170 case CLS_RGW_CHECK_TIME_MTIME_LT:
2171 check = (obj_ts < op_ts);
2172 break;
2173 case CLS_RGW_CHECK_TIME_MTIME_LE:
2174 check = (obj_ts <= op_ts);
2175 break;
2176 case CLS_RGW_CHECK_TIME_MTIME_GT:
2177 check = (obj_ts > op_ts);
2178 break;
2179 case CLS_RGW_CHECK_TIME_MTIME_GE:
2180 check = (obj_ts >= op_ts);
2181 break;
2182 default:
2183 return -EINVAL;
2184 };
2185
2186 if (!check) {
2187 return -ECANCELED;
2188 }
2189
2190 return 0;
2191}
2192
2193static int rgw_bi_get_op(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
2194{
2195 // decode request
2196 rgw_cls_bi_get_op op;
2197 bufferlist::iterator iter = in->begin();
2198 try {
2199 ::decode(op, iter);
2200 } catch (buffer::error& err) {
2201 CLS_LOG(0, "ERROR: %s(): failed to decode request", __func__);
2202 return -EINVAL;
2203 }
2204
2205 string idx;
2206
2207 switch (op.type) {
2208 case PlainIdx:
2209 idx = op.key.name;
2210 break;
2211 case InstanceIdx:
2212 encode_obj_index_key(op.key, &idx);
2213 break;
2214 case OLHIdx:
2215 encode_olh_data_key(op.key, &idx);
2216 break;
2217 default:
2218 CLS_LOG(10, "%s(): invalid key type encoding: %d", __func__, op.type);
2219 return -EINVAL;
2220 }
2221
2222 rgw_cls_bi_get_ret op_ret;
2223
2224 rgw_cls_bi_entry& entry = op_ret.entry;
2225
2226 entry.type = op.type;
2227 entry.idx = idx;
2228
2229 int r = cls_cxx_map_get_val(hctx, idx, &entry.data);
2230 if (r < 0) {
2231 CLS_LOG(10, "%s(): cls_cxx_map_get_val() returned %d", __func__, r);
2232 return r;
2233 }
2234
2235 ::encode(op_ret, *out);
2236
2237 return 0;
2238}
2239
2240static int rgw_bi_put_op(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
2241{
2242 // decode request
2243 rgw_cls_bi_put_op op;
2244 bufferlist::iterator iter = in->begin();
2245 try {
2246 ::decode(op, iter);
2247 } catch (buffer::error& err) {
2248 CLS_LOG(0, "ERROR: %s(): failed to decode request", __func__);
2249 return -EINVAL;
2250 }
2251
2252 rgw_cls_bi_entry& entry = op.entry;
2253
2254 int r = cls_cxx_map_set_val(hctx, entry.idx, &entry.data);
2255 if (r < 0) {
2256 CLS_LOG(0, "ERROR: %s(): cls_cxx_map_set_val() returned r=%d", __func__, r);
2257 }
2258
2259 return 0;
2260}
2261
2262static int list_plain_entries(cls_method_context_t hctx, const string& name, const string& marker, uint32_t max,
2263 list<rgw_cls_bi_entry> *entries)
2264{
2265 string filter = name;
2266 string start_key = marker;
2267
2268 string end_key; // stop listing at bi_log_prefix
2269 bi_log_prefix(end_key);
2270
2271 int count = 0;
2272 map<string, bufferlist> keys;
2273 do {
2274 if (count >= (int)max) {
2275 return count;
2276 }
2277 keys.clear();
2278#define BI_GET_NUM_KEYS 128
2279 int ret = cls_cxx_map_get_vals(hctx, start_key, filter, BI_GET_NUM_KEYS, &keys);
2280 if (ret < 0) {
2281 return ret;
2282 }
2283
2284 map<string, bufferlist>::iterator iter;
2285 for (iter = keys.begin(); iter != keys.end(); ++iter) {
2286 if (iter->first >= end_key) {
2287 /* past the end of plain namespace */
2288 return count;
2289 }
2290
2291 rgw_cls_bi_entry entry;
2292 entry.type = PlainIdx;
2293 entry.idx = iter->first;
2294 entry.data = iter->second;
2295
2296 bufferlist::iterator biter = entry.data.begin();
2297
2298 rgw_bucket_dir_entry e;
2299 try {
2300 ::decode(e, biter);
2301 } catch (buffer::error& err) {
2302 CLS_LOG(0, "ERROR: %s(): failed to decode buffer", __func__);
2303 return -EIO;
2304 }
2305
2306 CLS_LOG(20, "%s(): entry.idx=%s e.key.name=%s", __func__, escape_str(entry.idx).c_str(), escape_str(e.key.name).c_str());
2307
2308 if (!name.empty() && e.key.name != name) {
2309 return count;
2310 }
2311
2312 entries->push_back(entry);
2313 count++;
2314 if (count >= (int)max) {
2315 return count;
2316 }
2317 start_key = entry.idx;
2318 }
2319 } while (!keys.empty());
2320
2321 return count;
2322}
2323
2324static int list_instance_entries(cls_method_context_t hctx, const string& name, const string& marker, uint32_t max,
2325 list<rgw_cls_bi_entry> *entries)
2326{
2327 cls_rgw_obj_key key(name);
2328 string first_instance_idx;
2329 encode_obj_versioned_data_key(key, &first_instance_idx);
2330 string start_key;
2331
2332 if (!name.empty()) {
2333 start_key = first_instance_idx;
2334 } else {
2335 start_key = BI_PREFIX_CHAR;
2336 start_key.append(bucket_index_prefixes[BI_BUCKET_OBJ_INSTANCE_INDEX]);
2337 }
2338 string filter = start_key;
2339 if (bi_entry_gt(marker, start_key)) {
2340 start_key = marker;
2341 }
2342 int count = 0;
2343 map<string, bufferlist> keys;
2344 bool started = true;
2345 do {
2346 if (count >= (int)max) {
2347 return count;
2348 }
2349 keys.clear();
2350#define BI_GET_NUM_KEYS 128
2351 int ret;
2352 if (started) {
2353 ret = cls_cxx_map_get_val(hctx, start_key, &keys[start_key]);
2354 if (ret == -ENOENT) {
2355 ret = cls_cxx_map_get_vals(hctx, start_key, string(), BI_GET_NUM_KEYS, &keys);
2356 }
2357 started = false;
2358 } else {
2359 ret = cls_cxx_map_get_vals(hctx, start_key, string(), BI_GET_NUM_KEYS, &keys);
2360 }
2361 CLS_LOG(20, "%s(): start_key=%s first_instance_idx=%s keys.size()=%d", __func__, escape_str(start_key).c_str(), escape_str(first_instance_idx).c_str(), (int)keys.size());
2362 if (ret < 0) {
2363 return ret;
2364 }
2365
2366 map<string, bufferlist>::iterator iter;
2367 for (iter = keys.begin(); iter != keys.end(); ++iter) {
2368 rgw_cls_bi_entry entry;
2369 entry.type = InstanceIdx;
2370 entry.idx = iter->first;
2371 entry.data = iter->second;
2372
2373 if (!filter.empty() && entry.idx.compare(0, filter.size(), filter) != 0) {
2374 return count;
2375 }
2376
2377 CLS_LOG(20, "%s(): entry.idx=%s", __func__, escape_str(entry.idx).c_str());
2378
2379 bufferlist::iterator biter = entry.data.begin();
2380
2381 rgw_bucket_dir_entry e;
2382 try {
2383 ::decode(e, biter);
2384 } catch (buffer::error& err) {
2385 CLS_LOG(0, "ERROR: %s(): failed to decode buffer (size=%d)", __func__, entry.data.length());
2386 return -EIO;
2387 }
2388
2389 if (!name.empty() && e.key.name != name) {
2390 return count;
2391 }
2392
2393 entries->push_back(entry);
2394 count++;
2395 start_key = entry.idx;
2396 }
2397 } while (!keys.empty());
2398
2399 return count;
2400}
2401
2402static int list_olh_entries(cls_method_context_t hctx, const string& name, const string& marker, uint32_t max,
2403 list<rgw_cls_bi_entry> *entries)
2404{
2405 cls_rgw_obj_key key(name);
2406 string first_instance_idx;
2407 encode_olh_data_key(key, &first_instance_idx);
2408 string start_key;
2409
2410 if (!name.empty()) {
2411 start_key = first_instance_idx;
2412 } else {
2413 start_key = BI_PREFIX_CHAR;
2414 start_key.append(bucket_index_prefixes[BI_BUCKET_OLH_DATA_INDEX]);
2415 }
2416 string filter = start_key;
2417 if (bi_entry_gt(marker, start_key)) {
2418 start_key = marker;
2419 }
2420 int count = 0;
2421 map<string, bufferlist> keys;
2422 bool started = true;
2423 do {
2424 if (count >= (int)max) {
2425 return count;
2426 }
2427 keys.clear();
2428#define BI_GET_NUM_KEYS 128
2429 int ret;
2430 if (started) {
2431 ret = cls_cxx_map_get_val(hctx, start_key, &keys[start_key]);
2432 if (ret == -ENOENT) {
2433 ret = cls_cxx_map_get_vals(hctx, start_key, string(), BI_GET_NUM_KEYS, &keys);
2434 }
2435 started = false;
2436 } else {
2437 ret = cls_cxx_map_get_vals(hctx, start_key, string(), BI_GET_NUM_KEYS, &keys);
2438 }
2439 CLS_LOG(20, "%s(): start_key=%s first_instance_idx=%s keys.size()=%d", __func__, escape_str(start_key).c_str(), escape_str(first_instance_idx).c_str(), (int)keys.size());
2440 if (ret < 0) {
2441 return ret;
2442 }
2443
2444 map<string, bufferlist>::iterator iter;
2445 for (iter = keys.begin(); iter != keys.end(); ++iter) {
2446 rgw_cls_bi_entry entry;
2447 entry.type = OLHIdx;
2448 entry.idx = iter->first;
2449 entry.data = iter->second;
2450
2451 if (!filter.empty() && entry.idx.compare(0, filter.size(), filter) != 0) {
2452 return count;
2453 }
2454
2455 CLS_LOG(20, "%s(): entry.idx=%s", __func__, escape_str(entry.idx).c_str());
2456
2457 bufferlist::iterator biter = entry.data.begin();
2458
2459 rgw_bucket_olh_entry e;
2460 try {
2461 ::decode(e, biter);
2462 } catch (buffer::error& err) {
2463 CLS_LOG(0, "ERROR: %s(): failed to decode buffer (size=%d)", __func__, entry.data.length());
2464 return -EIO;
2465 }
2466
2467 if (!name.empty() && e.key.name != name) {
2468 return count;
2469 }
2470
2471 entries->push_back(entry);
2472 count++;
2473 start_key = entry.idx;
2474 }
2475 } while (!keys.empty());
2476
2477 return count;
2478}
2479
2480static int rgw_bi_list_op(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
2481{
2482 // decode request
2483 rgw_cls_bi_list_op op;
2484 bufferlist::iterator iter = in->begin();
2485 try {
2486 ::decode(op, iter);
2487 } catch (buffer::error& err) {
2488 CLS_LOG(0, "ERROR: %s(): failed to decode request", __func__);
2489 return -EINVAL;
2490 }
2491
2492 rgw_cls_bi_list_ret op_ret;
2493
2494 string filter = op.name;
2495#define MAX_BI_LIST_ENTRIES 1000
2496 int32_t max = (op.max < MAX_BI_LIST_ENTRIES ? op.max : MAX_BI_LIST_ENTRIES) + 1; /* one extra entry for identifying truncation */
2497 string start_key = op.marker;
2498 int ret = list_plain_entries(hctx, op.name, op.marker, max, &op_ret.entries);
2499 if (ret < 0) {
2500 CLS_LOG(0, "ERROR: %s(): list_plain_entries retured ret=%d", __func__, ret);
2501 return ret;
2502 }
2503 int count = ret;
2504
2505 CLS_LOG(20, "found %d plain entries", count);
2506
2507 ret = list_instance_entries(hctx, op.name, op.marker, max - count, &op_ret.entries);
2508 if (ret < 0) {
2509 CLS_LOG(0, "ERROR: %s(): list_instance_entries retured ret=%d", __func__, ret);
2510 return ret;
2511 }
2512
2513 count += ret;
2514
2515 ret = list_olh_entries(hctx, op.name, op.marker, max - count, &op_ret.entries);
2516 if (ret < 0) {
2517 CLS_LOG(0, "ERROR: %s(): list_olh_entries retured ret=%d", __func__, ret);
2518 return ret;
2519 }
2520
2521 count += ret;
2522
2523 op_ret.is_truncated = (count >= max);
2524 while (count >= max) {
2525 op_ret.entries.pop_back();
2526 count--;
2527 }
2528
2529 ::encode(op_ret, *out);
2530
2531 return 0;
2532}
2533
2534int bi_log_record_decode(bufferlist& bl, rgw_bi_log_entry& e)
2535{
2536 bufferlist::iterator iter = bl.begin();
2537 try {
2538 ::decode(e, iter);
2539 } catch (buffer::error& err) {
2540 CLS_LOG(0, "ERROR: failed to decode rgw_bi_log_entry");
2541 return -EIO;
2542 }
2543 return 0;
2544}
2545
2546static int bi_log_iterate_entries(cls_method_context_t hctx, const string& marker, const string& end_marker,
2547 string& key_iter, uint32_t max_entries, bool *truncated,
2548 int (*cb)(cls_method_context_t, const string&, rgw_bi_log_entry&, void *),
2549 void *param)
2550{
2551 CLS_LOG(10, "bi_log_iterate_range");
2552
2553 map<string, bufferlist> keys;
2554 string filter_prefix, end_key;
2555 uint32_t i = 0;
2556 string key;
2557
2558 if (truncated)
2559 *truncated = false;
2560
2561 string start_key;
2562 if (key_iter.empty()) {
2563 key = BI_PREFIX_CHAR;
2564 key.append(bucket_index_prefixes[BI_BUCKET_LOG_INDEX]);
2565 key.append(marker);
2566
2567 start_key = key;
2568 } else {
2569 start_key = key_iter;
2570 }
2571
2572 if (end_marker.empty()) {
2573 end_key = BI_PREFIX_CHAR;
2574 end_key.append(bucket_index_prefixes[BI_BUCKET_LOG_INDEX + 1]);
2575 } else {
2576 end_key = BI_PREFIX_CHAR;
2577 end_key.append(bucket_index_prefixes[BI_BUCKET_LOG_INDEX]);
2578 end_key.append(end_marker);
2579 }
2580
2581 CLS_LOG(0, "bi_log_iterate_entries start_key=%s end_key=%s\n", start_key.c_str(), end_key.c_str());
2582
2583 string filter;
2584
2585 do {
2586#define BI_NUM_KEYS 128
2587 int ret = cls_cxx_map_get_vals(hctx, start_key, filter, BI_NUM_KEYS, &keys);
2588 if (ret < 0)
2589 return ret;
2590
2591 map<string, bufferlist>::iterator iter = keys.begin();
2592 if (iter == keys.end())
2593 break;
2594
2595 for (; iter != keys.end(); ++iter) {
2596 const string& key = iter->first;
2597 rgw_bi_log_entry e;
2598
2599 CLS_LOG(0, "bi_log_iterate_entries key=%s bl.length=%d\n", key.c_str(), (int)iter->second.length());
2600
2601 if (key.compare(end_key) > 0)
2602 return 0;
2603
2604 ret = bi_log_record_decode(iter->second, e);
2605 if (ret < 0)
2606 return ret;
2607
2608 if (max_entries && (i >= max_entries)) {
2609 if (truncated)
2610 *truncated = true;
2611 key_iter = key;
2612 return 0;
2613 }
2614
2615 ret = cb(hctx, key, e, param);
2616 if (ret < 0)
2617 return ret;
2618 i++;
2619
2620 }
2621 --iter;
2622 start_key = iter->first;
2623 } while (true);
2624 return 0;
2625}
2626
2627static int bi_log_list_cb(cls_method_context_t hctx, const string& key, rgw_bi_log_entry& info, void *param)
2628{
2629 list<rgw_bi_log_entry> *l = (list<rgw_bi_log_entry> *)param;
2630 l->push_back(info);
2631 return 0;
2632}
2633
2634static int bi_log_list_entries(cls_method_context_t hctx, const string& marker,
2635 uint32_t max, list<rgw_bi_log_entry>& entries, bool *truncated)
2636{
2637 string key_iter;
2638 string end_marker;
2639 int ret = bi_log_iterate_entries(hctx, marker, end_marker,
2640 key_iter, max, truncated,
2641 bi_log_list_cb, &entries);
2642 return ret;
2643}
2644
2645static int rgw_bi_log_list(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
2646{
2647 bufferlist::iterator in_iter = in->begin();
2648
2649 cls_rgw_bi_log_list_op op;
2650 try {
2651 ::decode(op, in_iter);
2652 } catch (buffer::error& err) {
2653 CLS_LOG(1, "ERROR: rgw_bi_log_list(): failed to decode entry\n");
2654 return -EINVAL;
2655 }
2656
2657 cls_rgw_bi_log_list_ret op_ret;
2658 int ret = bi_log_list_entries(hctx, op.marker, op.max, op_ret.entries, &op_ret.truncated);
2659 if (ret < 0)
2660 return ret;
2661
2662 ::encode(op_ret, *out);
2663
2664 return 0;
2665}
2666
2667static int bi_log_list_trim_cb(cls_method_context_t hctx, const string& key, rgw_bi_log_entry& info, void *param)
2668{
2669 list<rgw_bi_log_entry> *entries = (list<rgw_bi_log_entry> *)param;
2670
2671 entries->push_back(info);
2672 return 0;
2673}
2674
2675static int bi_log_remove_entry(cls_method_context_t hctx, rgw_bi_log_entry& entry)
2676{
2677 string key;
2678 key = BI_PREFIX_CHAR;
2679 key.append(bucket_index_prefixes[BI_BUCKET_LOG_INDEX]);
2680 key.append(entry.id);
2681 return cls_cxx_map_remove_key(hctx, key);
2682}
2683
2684static int bi_log_list_trim_entries(cls_method_context_t hctx,
2685 const string& start_marker, const string& end_marker,
2686 list<rgw_bi_log_entry>& entries, bool *truncated)
2687{
2688 string key_iter;
2689#define MAX_TRIM_ENTRIES 1000 /* max entries to trim in a single operation */
2690 int ret = bi_log_iterate_entries(hctx, start_marker, end_marker,
2691 key_iter, MAX_TRIM_ENTRIES, truncated,
2692 bi_log_list_trim_cb, &entries);
2693 return ret;
2694}
2695
2696static int rgw_bi_log_trim(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
2697{
2698 bufferlist::iterator in_iter = in->begin();
2699
2700 cls_rgw_bi_log_trim_op op;
2701 try {
2702 ::decode(op, in_iter);
2703 } catch (buffer::error& err) {
2704 CLS_LOG(1, "ERROR: rgw_bi_log_list(): failed to decode entry\n");
2705 return -EINVAL;
2706 }
2707
2708 cls_rgw_bi_log_list_ret op_ret;
2709 list<rgw_bi_log_entry> entries;
2710#define MAX_TRIM_ENTRIES 1000 /* don't do more than that in a single operation */
2711 bool truncated;
2712 int ret = bi_log_list_trim_entries(hctx, op.start_marker, op.end_marker, entries, &truncated);
2713 if (ret < 0)
2714 return ret;
2715
2716 if (entries.empty())
2717 return -ENODATA;
2718
2719 list<rgw_bi_log_entry>::iterator iter;
2720 for (iter = entries.begin(); iter != entries.end(); ++iter) {
2721 rgw_bi_log_entry& entry = *iter;
2722
2723 ret = bi_log_remove_entry(hctx, entry);
2724 if (ret < 0)
2725 return ret;
2726 }
2727
2728 return 0;
2729}
2730
2731static void usage_record_prefix_by_time(uint64_t epoch, string& key)
2732{
2733 char buf[32];
2734 snprintf(buf, sizeof(buf), "%011llu", (long long unsigned)epoch);
2735 key = buf;
2736}
2737
2738static void usage_record_prefix_by_user(string& user, uint64_t epoch, string& key)
2739{
2740 char buf[user.size() + 32];
2741 snprintf(buf, sizeof(buf), "%s_%011llu_", user.c_str(), (long long unsigned)epoch);
2742 key = buf;
2743}
2744
2745static void usage_record_name_by_time(uint64_t epoch, const string& user, string& bucket, string& key)
2746{
2747 char buf[32 + user.size() + bucket.size()];
2748 snprintf(buf, sizeof(buf), "%011llu_%s_%s", (long long unsigned)epoch, user.c_str(), bucket.c_str());
2749 key = buf;
2750}
2751
2752static void usage_record_name_by_user(const string& user, uint64_t epoch, string& bucket, string& key)
2753{
2754 char buf[32 + user.size() + bucket.size()];
2755 snprintf(buf, sizeof(buf), "%s_%011llu_%s", user.c_str(), (long long unsigned)epoch, bucket.c_str());
2756 key = buf;
2757}
2758
2759static int usage_record_decode(bufferlist& record_bl, rgw_usage_log_entry& e)
2760{
2761 bufferlist::iterator kiter = record_bl.begin();
2762 try {
2763 ::decode(e, kiter);
2764 } catch (buffer::error& err) {
2765 CLS_LOG(1, "ERROR: usage_record_decode(): failed to decode record_bl\n");
2766 return -EINVAL;
2767 }
2768
2769 return 0;
2770}
2771
2772int rgw_user_usage_log_add(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
2773{
2774 CLS_LOG(10, "rgw_user_usage_log_add()");
2775
2776 bufferlist::iterator in_iter = in->begin();
2777 rgw_cls_usage_log_add_op op;
2778
2779 try {
2780 ::decode(op, in_iter);
2781 } catch (buffer::error& err) {
2782 CLS_LOG(1, "ERROR: rgw_user_usage_log_add(): failed to decode request\n");
2783 return -EINVAL;
2784 }
2785
2786 rgw_usage_log_info& info = op.info;
2787 vector<rgw_usage_log_entry>::iterator iter;
2788
2789 for (iter = info.entries.begin(); iter != info.entries.end(); ++iter) {
2790 rgw_usage_log_entry& entry = *iter;
2791 string key_by_time;
2792
2793 rgw_user *puser = (entry.payer.empty() ? &entry.owner : &entry.payer);
2794
2795 usage_record_name_by_time(entry.epoch, puser->to_str(), entry.bucket, key_by_time);
2796
2797 CLS_LOG(10, "rgw_user_usage_log_add user=%s bucket=%s\n", puser->to_str().c_str(), entry.bucket.c_str());
2798
2799 bufferlist record_bl;
2800 int ret = cls_cxx_map_get_val(hctx, key_by_time, &record_bl);
2801 if (ret < 0 && ret != -ENOENT) {
2802 CLS_LOG(1, "ERROR: rgw_user_usage_log_add(): cls_cxx_map_read_key returned %d\n", ret);
2803 return -EINVAL;
2804 }
2805 if (ret >= 0) {
2806 rgw_usage_log_entry e;
2807 ret = usage_record_decode(record_bl, e);
2808 if (ret < 0)
2809 return ret;
2810 CLS_LOG(10, "rgw_user_usage_log_add aggregating existing bucket\n");
2811 entry.aggregate(e);
2812 }
2813
2814 bufferlist new_record_bl;
2815 ::encode(entry, new_record_bl);
2816 ret = cls_cxx_map_set_val(hctx, key_by_time, &new_record_bl);
2817 if (ret < 0)
2818 return ret;
2819
2820 string key_by_user;
2821 usage_record_name_by_user(puser->to_str(), entry.epoch, entry.bucket, key_by_user);
2822 ret = cls_cxx_map_set_val(hctx, key_by_user, &new_record_bl);
2823 if (ret < 0)
2824 return ret;
2825 }
2826
2827 return 0;
2828}
2829
2830static int usage_iterate_range(cls_method_context_t hctx, uint64_t start, uint64_t end,
2831 string& user, string& key_iter, uint32_t max_entries, bool *truncated,
2832 int (*cb)(cls_method_context_t, const string&, rgw_usage_log_entry&, void *),
2833 void *param)
2834{
2835 CLS_LOG(10, "usage_iterate_range");
2836
2837 map<string, bufferlist> keys;
2838#define NUM_KEYS 32
2839 string filter_prefix;
2840 string start_key, end_key;
2841 bool by_user = !user.empty();
2842 uint32_t i = 0;
2843 string user_key;
2844
2845 if (truncated)
2846 *truncated = false;
2847
2848 if (!by_user) {
2849 usage_record_prefix_by_time(end, end_key);
2850 } else {
2851 user_key = user;
2852 user_key.append("_");
2853 }
2854
2855 if (key_iter.empty()) {
2856 if (by_user) {
2857 usage_record_prefix_by_user(user, start, start_key);
2858 } else {
2859 usage_record_prefix_by_time(start, start_key);
2860 }
2861 } else {
2862 start_key = key_iter;
2863 }
2864
2865 do {
2866 CLS_LOG(20, "usage_iterate_range start_key=%s", start_key.c_str());
2867 int ret = cls_cxx_map_get_vals(hctx, start_key, filter_prefix, NUM_KEYS, &keys);
2868 if (ret < 0)
2869 return ret;
2870
2871
2872 map<string, bufferlist>::iterator iter = keys.begin();
2873 if (iter == keys.end())
2874 break;
2875
2876 for (; iter != keys.end(); ++iter) {
2877 const string& key = iter->first;
2878 rgw_usage_log_entry e;
2879
2880 if (!by_user && key.compare(end_key) >= 0) {
2881 CLS_LOG(20, "usage_iterate_range reached key=%s, done", key.c_str());
2882 return 0;
2883 }
2884
2885 if (by_user && key.compare(0, user_key.size(), user_key) != 0) {
2886 CLS_LOG(20, "usage_iterate_range reached key=%s, done", key.c_str());
2887 return 0;
2888 }
2889
2890 ret = usage_record_decode(iter->second, e);
2891 if (ret < 0)
2892 return ret;
2893
2894 if (e.epoch < start)
2895 continue;
2896
2897 /* keys are sorted by epoch, so once we're past end we're done */
2898 if (e.epoch >= end)
2899 return 0;
2900
2901 ret = cb(hctx, key, e, param);
2902 if (ret < 0)
2903 return ret;
2904
2905
2906 i++;
2907 if (max_entries && (i > max_entries)) {
2908 CLS_LOG(20, "usage_iterate_range reached max_entries (%d), done", max_entries);
2909 *truncated = true;
2910 key_iter = key;
2911 return 0;
2912 }
2913 }
2914 --iter;
2915 start_key = iter->first;
2916 } while (true);
2917 return 0;
2918}
2919
2920static int usage_log_read_cb(cls_method_context_t hctx, const string& key, rgw_usage_log_entry& entry, void *param)
2921{
2922 map<rgw_user_bucket, rgw_usage_log_entry> *usage = (map<rgw_user_bucket, rgw_usage_log_entry> *)param;
2923 rgw_user *puser;
2924 if (!entry.payer.empty()) {
2925 puser = &entry.payer;
2926 } else {
2927 puser = &entry.owner;
2928 }
2929 rgw_user_bucket ub(puser->to_str(), entry.bucket);
2930 rgw_usage_log_entry& le = (*usage)[ub];
2931 le.aggregate(entry);
2932
2933 return 0;
2934}
2935
2936int rgw_user_usage_log_read(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
2937{
2938 CLS_LOG(10, "rgw_user_usage_log_read()");
2939
2940 bufferlist::iterator in_iter = in->begin();
2941 rgw_cls_usage_log_read_op op;
2942
2943 try {
2944 ::decode(op, in_iter);
2945 } catch (buffer::error& err) {
2946 CLS_LOG(1, "ERROR: rgw_user_usage_log_read(): failed to decode request\n");
2947 return -EINVAL;
2948 }
2949
2950 rgw_cls_usage_log_read_ret ret_info;
2951 map<rgw_user_bucket, rgw_usage_log_entry> *usage = &ret_info.usage;
2952 string iter = op.iter;
2953#define MAX_ENTRIES 1000
2954 uint32_t max_entries = (op.max_entries ? op.max_entries : MAX_ENTRIES);
2955 int ret = usage_iterate_range(hctx, op.start_epoch, op.end_epoch, op.owner, iter, max_entries, &ret_info.truncated, usage_log_read_cb, (void *)usage);
2956 if (ret < 0)
2957 return ret;
2958
2959 if (ret_info.truncated)
2960 ret_info.next_iter = iter;
2961
2962 ::encode(ret_info, *out);
2963 return 0;
2964}
2965
2966static int usage_log_trim_cb(cls_method_context_t hctx, const string& key, rgw_usage_log_entry& entry, void *param)
2967{
2968 string key_by_time;
2969 string key_by_user;
2970
2971 string o = entry.owner.to_str();
2972 usage_record_name_by_time(entry.epoch, o, entry.bucket, key_by_time);
2973 usage_record_name_by_user(o, entry.epoch, entry.bucket, key_by_user);
2974
2975 int ret = cls_cxx_map_remove_key(hctx, key_by_time);
2976 if (ret < 0)
2977 return ret;
2978
2979 return cls_cxx_map_remove_key(hctx, key_by_user);
2980}
2981
2982int rgw_user_usage_log_trim(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
2983{
2984 CLS_LOG(10, "rgw_user_usage_log_trim()");
2985
2986 /* only continue if object exists! */
2987 int ret = cls_cxx_stat(hctx, NULL, NULL);
2988 if (ret < 0)
2989 return ret;
2990
2991 bufferlist::iterator in_iter = in->begin();
2992 rgw_cls_usage_log_trim_op op;
2993
2994 try {
2995 ::decode(op, in_iter);
2996 } catch (buffer::error& err) {
2997 CLS_LOG(1, "ERROR: rgw_user_log_usage_log_trim(): failed to decode request\n");
2998 return -EINVAL;
2999 }
3000
3001 string iter;
3002 ret = usage_iterate_range(hctx, op.start_epoch, op.end_epoch, op.user, iter, 0, NULL, usage_log_trim_cb, NULL);
3003 if (ret < 0)
3004 return ret;
3005
3006 return 0;
3007}
3008
3009/*
3010 * We hold the garbage collection chain data under two different indexes: the first 'name' index
3011 * keeps them under a unique tag that represents the chains, and a second 'time' index keeps
3012 * them by their expiration timestamp
3013 */
3014#define GC_OBJ_NAME_INDEX 0
3015#define GC_OBJ_TIME_INDEX 1
3016
3017static string gc_index_prefixes[] = { "0_",
3018 "1_" };
3019
3020static void prepend_index_prefix(const string& src, int index, string *dest)
3021{
3022 *dest = gc_index_prefixes[index];
3023 dest->append(src);
3024}
3025
3026static int gc_omap_get(cls_method_context_t hctx, int type, const string& key, cls_rgw_gc_obj_info *info)
3027{
3028 string index;
3029 prepend_index_prefix(key, type, &index);
3030
3031 bufferlist bl;
3032 int ret = cls_cxx_map_get_val(hctx, index, &bl);
3033 if (ret < 0)
3034 return ret;
3035
3036 try {
3037 bufferlist::iterator iter = bl.begin();
3038 ::decode(*info, iter);
3039 } catch (buffer::error& err) {
3040 CLS_LOG(0, "ERROR: rgw_cls_gc_omap_get(): failed to decode index=%s\n", index.c_str());
3041 }
3042
3043 return 0;
3044}
3045
3046static int gc_omap_set(cls_method_context_t hctx, int type, const string& key, const cls_rgw_gc_obj_info *info)
3047{
3048 bufferlist bl;
3049 ::encode(*info, bl);
3050
3051 string index = gc_index_prefixes[type];
3052 index.append(key);
3053
3054 int ret = cls_cxx_map_set_val(hctx, index, &bl);
3055 if (ret < 0)
3056 return ret;
3057
3058 return 0;
3059}
3060
3061static int gc_omap_remove(cls_method_context_t hctx, int type, const string& key)
3062{
3063 string index = gc_index_prefixes[type];
3064 index.append(key);
3065
3066 int ret = cls_cxx_map_remove_key(hctx, index);
3067 if (ret < 0)
3068 return ret;
3069
3070 return 0;
3071}
3072
3073static bool key_in_index(const string& key, int index_type)
3074{
3075 const string& prefix = gc_index_prefixes[index_type];
3076 return (key.compare(0, prefix.size(), prefix) == 0);
3077}
3078
3079
3080static int gc_update_entry(cls_method_context_t hctx, uint32_t expiration_secs,
3081 cls_rgw_gc_obj_info& info)
3082{
3083 cls_rgw_gc_obj_info old_info;
3084 int ret = gc_omap_get(hctx, GC_OBJ_NAME_INDEX, info.tag, &old_info);
3085 if (ret == 0) {
3086 string key;
3087 get_time_key(old_info.time, &key);
3088 ret = gc_omap_remove(hctx, GC_OBJ_TIME_INDEX, key);
3089 if (ret < 0 && ret != -ENOENT) {
3090 CLS_LOG(0, "ERROR: failed to remove key=%s\n", key.c_str());
3091 return ret;
3092 }
3093 }
3094 info.time = ceph::real_clock::now();
3095 info.time += make_timespan(expiration_secs);
3096 ret = gc_omap_set(hctx, GC_OBJ_NAME_INDEX, info.tag, &info);
3097 if (ret < 0)
3098 return ret;
3099
3100 string key;
3101 get_time_key(info.time, &key);
3102 ret = gc_omap_set(hctx, GC_OBJ_TIME_INDEX, key, &info);
3103 if (ret < 0)
3104 goto done_err;
3105
3106 return 0;
3107
3108done_err:
3109 CLS_LOG(0, "ERROR: gc_set_entry error info.tag=%s, ret=%d\n", info.tag.c_str(), ret);
3110 gc_omap_remove(hctx, GC_OBJ_NAME_INDEX, info.tag);
3111 return ret;
3112}
3113
3114static int gc_defer_entry(cls_method_context_t hctx, const string& tag, uint32_t expiration_secs)
3115{
3116 cls_rgw_gc_obj_info info;
3117 int ret = gc_omap_get(hctx, GC_OBJ_NAME_INDEX, tag, &info);
3118 if (ret == -ENOENT)
3119 return 0;
3120 if (ret < 0)
3121 return ret;
3122 return gc_update_entry(hctx, expiration_secs, info);
3123}
3124
3125int gc_record_decode(bufferlist& bl, cls_rgw_gc_obj_info& e)
3126{
3127 bufferlist::iterator iter = bl.begin();
3128 try {
3129 ::decode(e, iter);
3130 } catch (buffer::error& err) {
3131 CLS_LOG(0, "ERROR: failed to decode cls_rgw_gc_obj_info");
3132 return -EIO;
3133 }
3134 return 0;
3135}
3136
3137static int rgw_cls_gc_set_entry(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3138{
3139 bufferlist::iterator in_iter = in->begin();
3140
3141 cls_rgw_gc_set_entry_op op;
3142 try {
3143 ::decode(op, in_iter);
3144 } catch (buffer::error& err) {
3145 CLS_LOG(1, "ERROR: rgw_cls_gc_set_entry(): failed to decode entry\n");
3146 return -EINVAL;
3147 }
3148
3149 return gc_update_entry(hctx, op.expiration_secs, op.info);
3150}
3151
3152static int rgw_cls_gc_defer_entry(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3153{
3154 bufferlist::iterator in_iter = in->begin();
3155
3156 cls_rgw_gc_defer_entry_op op;
3157 try {
3158 ::decode(op, in_iter);
3159 } catch (buffer::error& err) {
3160 CLS_LOG(1, "ERROR: rgw_cls_gc_defer_entry(): failed to decode entry\n");
3161 return -EINVAL;
3162 }
3163
3164 return gc_defer_entry(hctx, op.tag, op.expiration_secs);
3165}
3166
3167static int gc_iterate_entries(cls_method_context_t hctx, const string& marker, bool expired_only,
3168 string& key_iter, uint32_t max_entries, bool *truncated,
3169 int (*cb)(cls_method_context_t, const string&, cls_rgw_gc_obj_info&, void *),
3170 void *param)
3171{
3172 CLS_LOG(10, "gc_iterate_range");
3173
3174 map<string, bufferlist> keys;
3175 string filter_prefix, end_key;
3176 uint32_t i = 0;
3177 string key;
3178
3179 if (truncated)
3180 *truncated = false;
3181
3182 string start_key;
31f18b77 3183 if (marker.empty()) {
7c673cae
FG
3184 prepend_index_prefix(marker, GC_OBJ_TIME_INDEX, &start_key);
3185 } else {
31f18b77 3186 start_key = marker;
7c673cae
FG
3187 }
3188
3189 if (expired_only) {
3190 real_time now = ceph::real_clock::now();
3191 string now_str;
3192 get_time_key(now, &now_str);
3193 prepend_index_prefix(now_str, GC_OBJ_TIME_INDEX, &end_key);
3194
3195 CLS_LOG(0, "gc_iterate_entries end_key=%s\n", end_key.c_str());
3196 }
3197
3198 string filter;
3199
3200 do {
3201#define GC_NUM_KEYS 32
3202 int ret = cls_cxx_map_get_vals(hctx, start_key, filter, GC_NUM_KEYS, &keys);
3203 if (ret < 0)
3204 return ret;
3205
3206
3207 map<string, bufferlist>::iterator iter = keys.begin();
3208 if (iter == keys.end())
3209 break;
3210
3211 for (; iter != keys.end(); ++iter) {
3212 const string& key = iter->first;
3213 cls_rgw_gc_obj_info e;
3214
3215 CLS_LOG(10, "gc_iterate_entries key=%s\n", key.c_str());
3216
3217 if (!end_key.empty() && key.compare(end_key) >= 0)
3218 return 0;
3219
3220 if (!key_in_index(key, GC_OBJ_TIME_INDEX))
3221 return 0;
3222
3223 ret = gc_record_decode(iter->second, e);
3224 if (ret < 0)
3225 return ret;
3226
3227 if (max_entries && (i >= max_entries)) {
3228 if (truncated)
3229 *truncated = true;
31f18b77
FG
3230 --iter;
3231 key_iter = iter->first;
7c673cae
FG
3232 return 0;
3233 }
3234
3235 ret = cb(hctx, key, e, param);
3236 if (ret < 0)
3237 return ret;
3238 i++;
3239
3240 }
3241 --iter;
3242 start_key = iter->first;
3243 } while (true);
3244 return 0;
3245}
3246
3247static int gc_list_cb(cls_method_context_t hctx, const string& key, cls_rgw_gc_obj_info& info, void *param)
3248{
3249 list<cls_rgw_gc_obj_info> *l = (list<cls_rgw_gc_obj_info> *)param;
3250 l->push_back(info);
3251 return 0;
3252}
3253
3254static int gc_list_entries(cls_method_context_t hctx, const string& marker,
3255 uint32_t max, bool expired_only,
31f18b77 3256 list<cls_rgw_gc_obj_info>& entries, bool *truncated, string& next_marker)
7c673cae 3257{
7c673cae 3258 int ret = gc_iterate_entries(hctx, marker, expired_only,
31f18b77 3259 next_marker, max, truncated,
7c673cae
FG
3260 gc_list_cb, &entries);
3261 return ret;
3262}
3263
3264static int rgw_cls_gc_list(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3265{
3266 bufferlist::iterator in_iter = in->begin();
3267
3268 cls_rgw_gc_list_op op;
3269 try {
3270 ::decode(op, in_iter);
3271 } catch (buffer::error& err) {
3272 CLS_LOG(1, "ERROR: rgw_cls_gc_list(): failed to decode entry\n");
3273 return -EINVAL;
3274 }
3275
3276 cls_rgw_gc_list_ret op_ret;
31f18b77
FG
3277 int ret = gc_list_entries(hctx, op.marker, op.max, op.expired_only,
3278 op_ret.entries, &op_ret.truncated, op_ret.next_marker);
7c673cae
FG
3279 if (ret < 0)
3280 return ret;
3281
3282 ::encode(op_ret, *out);
3283
3284 return 0;
3285}
3286
3287static int gc_remove(cls_method_context_t hctx, list<string>& tags)
3288{
3289 list<string>::iterator iter;
3290
3291 for (iter = tags.begin(); iter != tags.end(); ++iter) {
3292 string& tag = *iter;
3293 cls_rgw_gc_obj_info info;
3294 int ret = gc_omap_get(hctx, GC_OBJ_NAME_INDEX, tag, &info);
3295 if (ret == -ENOENT) {
3296 CLS_LOG(0, "couldn't find tag in name index tag=%s\n", tag.c_str());
3297 continue;
3298 }
3299
3300 if (ret < 0)
3301 return ret;
3302
3303 string time_key;
3304 get_time_key(info.time, &time_key);
3305 ret = gc_omap_remove(hctx, GC_OBJ_TIME_INDEX, time_key);
3306 if (ret < 0 && ret != -ENOENT)
3307 return ret;
3308 if (ret == -ENOENT) {
3309 CLS_LOG(0, "couldn't find key in time index key=%s\n", time_key.c_str());
3310 }
3311
3312 ret = gc_omap_remove(hctx, GC_OBJ_NAME_INDEX, tag);
3313 if (ret < 0 && ret != -ENOENT)
3314 return ret;
3315 }
3316
3317 return 0;
3318}
3319
3320static int rgw_cls_gc_remove(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3321{
3322 bufferlist::iterator in_iter = in->begin();
3323
3324 cls_rgw_gc_remove_op op;
3325 try {
3326 ::decode(op, in_iter);
3327 } catch (buffer::error& err) {
3328 CLS_LOG(1, "ERROR: rgw_cls_gc_remove(): failed to decode entry\n");
3329 return -EINVAL;
3330 }
3331
3332 return gc_remove(hctx, op.tags);
3333}
3334
3335static int rgw_cls_lc_set_entry(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3336{
3337 bufferlist::iterator in_iter = in->begin();
3338
3339 cls_rgw_lc_set_entry_op op;
3340 try {
3341 ::decode(op, in_iter);
3342 } catch (buffer::error& err) {
3343 CLS_LOG(1, "ERROR: rgw_cls_lc_set_entry(): failed to decode entry\n");
3344 return -EINVAL;
3345 }
3346
3347 bufferlist bl;
3348 ::encode(op.entry, bl);
3349
3350 int ret = cls_cxx_map_set_val(hctx, op.entry.first, &bl);
3351 return ret;
3352}
3353
3354static int rgw_cls_lc_rm_entry(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3355{
3356 bufferlist::iterator in_iter = in->begin();
3357
3358 cls_rgw_lc_rm_entry_op op;
3359 try {
3360 ::decode(op, in_iter);
3361 } catch (buffer::error& err) {
3362 CLS_LOG(1, "ERROR: rgw_cls_lc_rm_entry(): failed to decode entry\n");
3363 return -EINVAL;
3364 }
3365
3366 bufferlist bl;
3367 ::encode(op.entry, bl);
3368
3369 int ret = cls_cxx_map_remove_key(hctx, op.entry.first);
3370 return ret;
3371}
3372
3373static int rgw_cls_lc_get_next_entry(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3374{
3375 bufferlist::iterator in_iter = in->begin();
3376 cls_rgw_lc_get_next_entry_ret op_ret;
3377 cls_rgw_lc_get_next_entry_op op;
3378 try {
3379 ::decode(op, in_iter);
3380 } catch (buffer::error& err) {
3381 CLS_LOG(1, "ERROR: rgw_cls_lc_get_next_entry: failed to decode op\n");
3382 return -EINVAL;
3383 }
3384
3385 map<string, bufferlist> vals;
3386 string filter_prefix;
3387 int ret = cls_cxx_map_get_vals(hctx, op.marker, filter_prefix, 1, &vals);
3388 if (ret < 0)
3389 return ret;
3390 map<string, bufferlist>::iterator it;
3391 pair<string, int> entry;
3392 if (!vals.empty()) {
3393 it=vals.begin();
3394 in_iter = it->second.begin();
3395 try {
3396 ::decode(entry, in_iter);
3397 } catch (buffer::error& err) {
3398 CLS_LOG(1, "ERROR: rgw_cls_lc_get_next_entry(): failed to decode entry\n");
3399 return -EIO;
3400 }
3401 }
3402 op_ret.entry = entry;
3403 ::encode(op_ret, *out);
3404 return 0;
3405}
3406
3407static int rgw_cls_lc_list_entries(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3408{
3409 cls_rgw_lc_list_entries_op op;
3410 bufferlist::iterator in_iter = in->begin();
3411 try {
3412 ::decode(op, in_iter);
3413 } catch (buffer::error& err) {
3414 CLS_LOG(1, "ERROR: rgw_cls_lc_list_entries(): failed to decode op\n");
3415 return -EINVAL;
3416 }
3417
3418 cls_rgw_lc_list_entries_ret op_ret;
3419 bufferlist::iterator iter;
3420 map<string, bufferlist> vals;
3421 string filter_prefix;
3422 int ret = cls_cxx_map_get_vals(hctx, op.marker, filter_prefix, op.max_entries, &vals);
3423 if (ret < 0)
3424 return ret;
3425 map<string, bufferlist>::iterator it;
3426 pair<string, int> entry;
3427 for (it = vals.begin(); it != vals.end(); ++it) {
3428 iter = it->second.begin();
3429 try {
3430 ::decode(entry, iter);
3431 } catch (buffer::error& err) {
3432 CLS_LOG(1, "ERROR: rgw_cls_lc_list_entries(): failed to decode entry\n");
3433 return -EIO;
3434 }
3435 op_ret.entries.insert(entry);
3436 }
3437 ::encode(op_ret, *out);
3438 return 0;
3439}
3440
3441static int rgw_cls_lc_put_head(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3442{
3443 bufferlist::iterator in_iter = in->begin();
3444
3445 cls_rgw_lc_put_head_op op;
3446 try {
3447 ::decode(op, in_iter);
3448 } catch (buffer::error& err) {
3449 CLS_LOG(1, "ERROR: rgw_cls_lc_put_head(): failed to decode entry\n");
3450 return -EINVAL;
3451 }
3452
3453 bufferlist bl;
3454 ::encode(op.head, bl);
3455 int ret = cls_cxx_map_write_header(hctx,&bl);
3456 return ret;
3457}
3458
3459static int rgw_cls_lc_get_head(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3460{
3461 bufferlist bl;
3462 int ret = cls_cxx_map_read_header(hctx, &bl);
3463 if (ret < 0)
3464 return ret;
3465 cls_rgw_lc_obj_head head;
3466 if (bl.length() != 0) {
3467 bufferlist::iterator iter = bl.begin();
3468 try {
3469 ::decode(head, iter);
3470 } catch (buffer::error& err) {
3471 CLS_LOG(0, "ERROR: rgw_cls_lc_get_head(): failed to decode entry %s\n",err.what());
3472 return -EINVAL;
3473 }
3474 } else {
3475 head.start_date = 0;
3476 head.marker.clear();
3477 }
3478 cls_rgw_lc_get_head_ret op_ret;
3479 op_ret.head = head;
3480 ::encode(op_ret, *out);
3481 return 0;
3482}
3483
31f18b77
FG
3484static int rgw_reshard_add(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3485{
3486 bufferlist::iterator in_iter = in->begin();
3487
3488 cls_rgw_reshard_add_op op;
3489 try {
3490 ::decode(op, in_iter);
3491 } catch (buffer::error& err) {
3492 CLS_LOG(1, "ERROR: rgw_reshard_add: failed to decode entry\n");
3493 return -EINVAL;
3494 }
3495
3496
3497 string key;
3498 op.entry.get_key(&key);
3499
3500 bufferlist bl;
3501 ::encode(op.entry, bl);
3502 int ret = cls_cxx_map_set_val(hctx, key, &bl);
3503 if (ret < 0) {
3504 CLS_ERR("error adding reshard job for bucket %s with key %s",op.entry.bucket_name.c_str(), key.c_str());
3505 return ret;
3506 }
3507
3508 return ret;
3509}
3510
3511static int rgw_reshard_list(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3512{
3513 cls_rgw_reshard_list_op op;
3514 bufferlist::iterator in_iter = in->begin();
3515 try {
3516 ::decode(op, in_iter);
3517 } catch (buffer::error& err) {
3518 CLS_LOG(1, "ERROR: rgw_cls_rehard_list(): failed to decode entry\n");
3519 return -EINVAL;
3520 }
3521 cls_rgw_reshard_list_ret op_ret;
3522 bufferlist::iterator iter;
3523 map<string, bufferlist> vals;
3524 string filter_prefix;
3525#define MAX_RESHARD_LIST_ENTRIES 1000
3526 /* one extra entry for identifying truncation */
3527 int32_t max = (op.max < MAX_RESHARD_LIST_ENTRIES ? op.max : MAX_RESHARD_LIST_ENTRIES) + 1;
3528 int ret = cls_cxx_map_get_vals(hctx, op.marker, filter_prefix, max, &vals);
3529 if (ret < 0)
3530 return ret;
3531 map<string, bufferlist>::iterator it;
3532 cls_rgw_reshard_entry entry;
3533 int i = 0;
3534 for (it = vals.begin(); i < (int)op.max && it != vals.end(); ++it, ++i) {
3535 iter = it->second.begin();
3536 try {
3537 ::decode(entry, iter);
3538 } catch (buffer::error& err) {
3539 CLS_LOG(1, "ERROR: rgw_cls_rehard_list(): failed to decode entry\n");
3540 return -EIO;
3541 }
3542 op_ret.entries.push_back(entry);
3543 }
3544 op_ret.is_truncated = op.max && (vals.size() > op.max);
3545 ::encode(op_ret, *out);
3546 return 0;
3547}
3548
3549static int get_reshard_entry(cls_method_context_t hctx, const string& key, cls_rgw_reshard_entry *entry)
3550{
3551 bufferlist bl;
3552 int ret = cls_cxx_map_get_val(hctx, key, &bl);
3553 if (ret < 0)
3554 return ret;
3555 bufferlist::iterator iter = bl.begin();
3556 try {
3557 ::decode(*entry, iter);
3558 } catch (buffer::error& err) {
3559 CLS_LOG(0, "ERROR: %s : failed to decode entry %s\n", __func__, err.what());
3560 return -EIO;
3561 }
3562 return 0;
3563}
3564
3565static int rgw_reshard_get(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3566{
3567 bufferlist::iterator in_iter = in->begin();
3568
3569 cls_rgw_reshard_get_op op;
3570 try {
3571 ::decode(op, in_iter);
3572 } catch (buffer::error& err) {
3573 CLS_LOG(1, "ERROR: rgw_reshard_get: failed to decode entry\n");
3574 return -EINVAL;
3575 }
3576
3577 string key;
3578 cls_rgw_reshard_entry entry;
3579 op.entry.get_key(&key);
3580 int ret = get_reshard_entry(hctx, key, &entry);
3581 if (ret < 0) {
3582 return ret;
3583 }
3584
3585 cls_rgw_reshard_get_ret op_ret;
3586 op_ret.entry = entry;
3587 ::encode(op_ret, *out);
3588 return 0;
3589}
3590
3591static int rgw_reshard_remove(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3592{
3593 bufferlist::iterator in_iter = in->begin();
3594
3595 cls_rgw_reshard_remove_op op;
3596 try {
3597 ::decode(op, in_iter);
3598 } catch (buffer::error& err) {
3599 CLS_LOG(1, "ERROR: rgw_cls_rehard_remove: failed to decode entry\n");
3600 return -EINVAL;
3601 }
3602
3603 string key;
3604 cls_rgw_reshard_entry entry;
3605 cls_rgw_reshard_entry::generate_key(op.tenant, op.bucket_name, &key);
3606 int ret = get_reshard_entry(hctx, key, &entry);
3607 if (ret < 0) {
3608 return ret;
3609 }
3610
3611 if (!op.bucket_id.empty() &&
3612 entry.bucket_id != op.bucket_id) {
3613 return 0;
3614 }
3615
3616 ret = cls_cxx_map_remove_key(hctx, key);
3617 if (ret < 0) {
3618 CLS_LOG(0, "ERROR: failed to remove key: key=%s ret=%d", key.c_str(), ret);
3619 return 0;
3620 }
3621 return ret;
3622}
3623
3624static int rgw_set_bucket_resharding(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3625{
3626 cls_rgw_set_bucket_resharding_op op;
3627
3628 bufferlist::iterator in_iter = in->begin();
3629 try {
3630 ::decode(op, in_iter);
3631 } catch (buffer::error& err) {
3632 CLS_LOG(1, "ERROR: cls_rgw_set_bucket_resharding: failed to decode entry\n");
3633 return -EINVAL;
3634 }
3635
3636 struct rgw_bucket_dir_header header;
3637 int rc = read_bucket_header(hctx, &header);
3638 if (rc < 0) {
3639 CLS_LOG(1, "ERROR: %s(): failed to read header\n", __func__);
3640 return rc;
3641 }
3642
3643 header.new_instance.set_status(op.entry.new_bucket_instance_id, op.entry.num_shards, op.entry.reshard_status);
3644
3645 return write_bucket_header(hctx, &header);
3646}
3647
3648static int rgw_clear_bucket_resharding(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3649{
3650 cls_rgw_set_bucket_resharding_op op;
3651
3652 bufferlist::iterator in_iter = in->begin();
3653 try {
3654 ::decode(op, in_iter);
3655 } catch (buffer::error& err) {
3656 CLS_LOG(1, "ERROR: cls_rgw_clear_bucket_resharding: failed to decode entry\n");
3657 return -EINVAL;
3658 }
3659
3660 struct rgw_bucket_dir_header header;
3661 int rc = read_bucket_header(hctx, &header);
3662 if (rc < 0) {
3663 CLS_LOG(1, "ERROR: %s(): failed to read header\n", __func__);
3664 return rc;
3665 }
3666 header.new_instance.clear();
3667
3668 return write_bucket_header(hctx, &header);
3669}
3670
3671static int rgw_guard_bucket_resharding(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3672{
3673 cls_rgw_guard_bucket_resharding_op op;
3674
3675 bufferlist::iterator in_iter = in->begin();
3676 try {
3677 ::decode(op, in_iter);
3678 } catch (buffer::error& err) {
3679 CLS_LOG(1, "ERROR: cls_rgw_clear_bucket_resharding: failed to decode entry\n");
3680 return -EINVAL;
3681 }
3682
3683 struct rgw_bucket_dir_header header;
3684 int rc = read_bucket_header(hctx, &header);
3685 if (rc < 0) {
3686 CLS_LOG(1, "ERROR: %s(): failed to read header\n", __func__);
3687 return rc;
3688 }
3689
3690 if (header.resharding()) {
3691 return op.ret_err;
3692 }
3693
3694 return 0;
3695}
3696
3697static int rgw_get_bucket_resharding(cls_method_context_t hctx, bufferlist *in, bufferlist *out)
3698{
3699 cls_rgw_get_bucket_resharding_op op;
3700
3701 bufferlist::iterator in_iter = in->begin();
3702 try {
3703 ::decode(op, in_iter);
3704 } catch (buffer::error& err) {
3705 CLS_LOG(1, "ERROR: cls_rgw_clear_bucket_resharding: failed to decode entry\n");
3706 return -EINVAL;
3707 }
3708
3709 struct rgw_bucket_dir_header header;
3710 int rc = read_bucket_header(hctx, &header);
3711 if (rc < 0) {
3712 CLS_LOG(1, "ERROR: %s(): failed to read header\n", __func__);
3713 return rc;
3714 }
3715
3716 cls_rgw_get_bucket_resharding_ret op_ret;
3717 op_ret.new_instance = header.new_instance;
3718
3719 ::encode(op_ret, *out);
3720
3721 return 0;
3722}
3723
7c673cae
FG
3724CLS_INIT(rgw)
3725{
3726 CLS_LOG(1, "Loaded rgw class!");
3727
3728 cls_handle_t h_class;
3729 cls_method_handle_t h_rgw_bucket_init_index;
3730 cls_method_handle_t h_rgw_bucket_set_tag_timeout;
3731 cls_method_handle_t h_rgw_bucket_list;
3732 cls_method_handle_t h_rgw_bucket_check_index;
3733 cls_method_handle_t h_rgw_bucket_rebuild_index;
3734 cls_method_handle_t h_rgw_bucket_update_stats;
3735 cls_method_handle_t h_rgw_bucket_prepare_op;
3736 cls_method_handle_t h_rgw_bucket_complete_op;
3737 cls_method_handle_t h_rgw_bucket_link_olh;
3738 cls_method_handle_t h_rgw_bucket_unlink_instance_op;
3739 cls_method_handle_t h_rgw_bucket_read_olh_log;
3740 cls_method_handle_t h_rgw_bucket_trim_olh_log;
3741 cls_method_handle_t h_rgw_bucket_clear_olh;
3742 cls_method_handle_t h_rgw_obj_remove;
3743 cls_method_handle_t h_rgw_obj_store_pg_ver;
3744 cls_method_handle_t h_rgw_obj_check_attrs_prefix;
3745 cls_method_handle_t h_rgw_obj_check_mtime;
3746 cls_method_handle_t h_rgw_bi_get_op;
3747 cls_method_handle_t h_rgw_bi_put_op;
3748 cls_method_handle_t h_rgw_bi_list_op;
3749 cls_method_handle_t h_rgw_bi_log_list_op;
3750 cls_method_handle_t h_rgw_dir_suggest_changes;
3751 cls_method_handle_t h_rgw_user_usage_log_add;
3752 cls_method_handle_t h_rgw_user_usage_log_read;
3753 cls_method_handle_t h_rgw_user_usage_log_trim;
3754 cls_method_handle_t h_rgw_gc_set_entry;
3755 cls_method_handle_t h_rgw_gc_list;
3756 cls_method_handle_t h_rgw_gc_remove;
3757 cls_method_handle_t h_rgw_lc_set_entry;
3758 cls_method_handle_t h_rgw_lc_rm_entry;
3759 cls_method_handle_t h_rgw_lc_get_next_entry;
3760 cls_method_handle_t h_rgw_lc_put_head;
3761 cls_method_handle_t h_rgw_lc_get_head;
3762 cls_method_handle_t h_rgw_lc_list_entries;
31f18b77
FG
3763 cls_method_handle_t h_rgw_reshard_add;
3764 cls_method_handle_t h_rgw_reshard_list;
3765 cls_method_handle_t h_rgw_reshard_get;
3766 cls_method_handle_t h_rgw_reshard_remove;
3767 cls_method_handle_t h_rgw_set_bucket_resharding;
3768 cls_method_handle_t h_rgw_clear_bucket_resharding;
3769 cls_method_handle_t h_rgw_guard_bucket_resharding;
3770 cls_method_handle_t h_rgw_get_bucket_resharding;
7c673cae
FG
3771
3772
3773 cls_register(RGW_CLASS, &h_class);
3774
3775 /* bucket index */
3776 cls_register_cxx_method(h_class, RGW_BUCKET_INIT_INDEX, CLS_METHOD_RD | CLS_METHOD_WR, rgw_bucket_init_index, &h_rgw_bucket_init_index);
3777 cls_register_cxx_method(h_class, RGW_BUCKET_SET_TAG_TIMEOUT, CLS_METHOD_RD | CLS_METHOD_WR, rgw_bucket_set_tag_timeout, &h_rgw_bucket_set_tag_timeout);
3778 cls_register_cxx_method(h_class, RGW_BUCKET_LIST, CLS_METHOD_RD, rgw_bucket_list, &h_rgw_bucket_list);
3779 cls_register_cxx_method(h_class, RGW_BUCKET_CHECK_INDEX, CLS_METHOD_RD, rgw_bucket_check_index, &h_rgw_bucket_check_index);
3780 cls_register_cxx_method(h_class, RGW_BUCKET_REBUILD_INDEX, CLS_METHOD_RD | CLS_METHOD_WR, rgw_bucket_rebuild_index, &h_rgw_bucket_rebuild_index);
3781 cls_register_cxx_method(h_class, RGW_BUCKET_UPDATE_STATS, CLS_METHOD_RD | CLS_METHOD_WR, rgw_bucket_update_stats, &h_rgw_bucket_update_stats);
3782 cls_register_cxx_method(h_class, RGW_BUCKET_PREPARE_OP, CLS_METHOD_RD | CLS_METHOD_WR, rgw_bucket_prepare_op, &h_rgw_bucket_prepare_op);
3783 cls_register_cxx_method(h_class, RGW_BUCKET_COMPLETE_OP, CLS_METHOD_RD | CLS_METHOD_WR, rgw_bucket_complete_op, &h_rgw_bucket_complete_op);
3784 cls_register_cxx_method(h_class, RGW_BUCKET_LINK_OLH, CLS_METHOD_RD | CLS_METHOD_WR, rgw_bucket_link_olh, &h_rgw_bucket_link_olh);
3785 cls_register_cxx_method(h_class, RGW_BUCKET_UNLINK_INSTANCE, CLS_METHOD_RD | CLS_METHOD_WR, rgw_bucket_unlink_instance, &h_rgw_bucket_unlink_instance_op);
3786 cls_register_cxx_method(h_class, RGW_BUCKET_READ_OLH_LOG, CLS_METHOD_RD, rgw_bucket_read_olh_log, &h_rgw_bucket_read_olh_log);
3787 cls_register_cxx_method(h_class, RGW_BUCKET_TRIM_OLH_LOG, CLS_METHOD_RD | CLS_METHOD_WR, rgw_bucket_trim_olh_log, &h_rgw_bucket_trim_olh_log);
3788 cls_register_cxx_method(h_class, RGW_BUCKET_CLEAR_OLH, CLS_METHOD_RD | CLS_METHOD_WR, rgw_bucket_clear_olh, &h_rgw_bucket_clear_olh);
3789
3790 cls_register_cxx_method(h_class, RGW_OBJ_REMOVE, CLS_METHOD_RD | CLS_METHOD_WR, rgw_obj_remove, &h_rgw_obj_remove);
3791 cls_register_cxx_method(h_class, RGW_OBJ_STORE_PG_VER, CLS_METHOD_WR, rgw_obj_store_pg_ver, &h_rgw_obj_store_pg_ver);
3792 cls_register_cxx_method(h_class, RGW_OBJ_CHECK_ATTRS_PREFIX, CLS_METHOD_RD, rgw_obj_check_attrs_prefix, &h_rgw_obj_check_attrs_prefix);
3793 cls_register_cxx_method(h_class, RGW_OBJ_CHECK_MTIME, CLS_METHOD_RD, rgw_obj_check_mtime, &h_rgw_obj_check_mtime);
3794
3795 cls_register_cxx_method(h_class, RGW_BI_GET, CLS_METHOD_RD, rgw_bi_get_op, &h_rgw_bi_get_op);
3796 cls_register_cxx_method(h_class, RGW_BI_PUT, CLS_METHOD_RD | CLS_METHOD_WR, rgw_bi_put_op, &h_rgw_bi_put_op);
3797 cls_register_cxx_method(h_class, RGW_BI_LIST, CLS_METHOD_RD, rgw_bi_list_op, &h_rgw_bi_list_op);
3798
3799 cls_register_cxx_method(h_class, RGW_BI_LOG_LIST, CLS_METHOD_RD, rgw_bi_log_list, &h_rgw_bi_log_list_op);
3800 cls_register_cxx_method(h_class, RGW_BI_LOG_TRIM, CLS_METHOD_RD | CLS_METHOD_WR, rgw_bi_log_trim, &h_rgw_bi_log_list_op);
3801 cls_register_cxx_method(h_class, RGW_DIR_SUGGEST_CHANGES, CLS_METHOD_RD | CLS_METHOD_WR, rgw_dir_suggest_changes, &h_rgw_dir_suggest_changes);
3802
3803 /* usage logging */
3804 cls_register_cxx_method(h_class, RGW_USER_USAGE_LOG_ADD, CLS_METHOD_RD | CLS_METHOD_WR, rgw_user_usage_log_add, &h_rgw_user_usage_log_add);
3805 cls_register_cxx_method(h_class, RGW_USER_USAGE_LOG_READ, CLS_METHOD_RD, rgw_user_usage_log_read, &h_rgw_user_usage_log_read);
3806 cls_register_cxx_method(h_class, RGW_USER_USAGE_LOG_TRIM, CLS_METHOD_RD | CLS_METHOD_WR, rgw_user_usage_log_trim, &h_rgw_user_usage_log_trim);
3807
3808 /* garbage collection */
3809 cls_register_cxx_method(h_class, RGW_GC_SET_ENTRY, CLS_METHOD_RD | CLS_METHOD_WR, rgw_cls_gc_set_entry, &h_rgw_gc_set_entry);
3810 cls_register_cxx_method(h_class, RGW_GC_DEFER_ENTRY, CLS_METHOD_RD | CLS_METHOD_WR, rgw_cls_gc_defer_entry, &h_rgw_gc_set_entry);
3811 cls_register_cxx_method(h_class, RGW_GC_LIST, CLS_METHOD_RD, rgw_cls_gc_list, &h_rgw_gc_list);
3812 cls_register_cxx_method(h_class, RGW_GC_REMOVE, CLS_METHOD_RD | CLS_METHOD_WR, rgw_cls_gc_remove, &h_rgw_gc_remove);
3813
3814 /* lifecycle bucket list */
3815 cls_register_cxx_method(h_class, RGW_LC_SET_ENTRY, CLS_METHOD_RD | CLS_METHOD_WR, rgw_cls_lc_set_entry, &h_rgw_lc_set_entry);
3816 cls_register_cxx_method(h_class, RGW_LC_RM_ENTRY, CLS_METHOD_RD | CLS_METHOD_WR, rgw_cls_lc_rm_entry, &h_rgw_lc_rm_entry);
3817 cls_register_cxx_method(h_class, RGW_LC_GET_NEXT_ENTRY, CLS_METHOD_RD, rgw_cls_lc_get_next_entry, &h_rgw_lc_get_next_entry);
3818 cls_register_cxx_method(h_class, RGW_LC_PUT_HEAD, CLS_METHOD_RD| CLS_METHOD_WR, rgw_cls_lc_put_head, &h_rgw_lc_put_head);
3819 cls_register_cxx_method(h_class, RGW_LC_GET_HEAD, CLS_METHOD_RD, rgw_cls_lc_get_head, &h_rgw_lc_get_head);
3820 cls_register_cxx_method(h_class, RGW_LC_LIST_ENTRIES, CLS_METHOD_RD, rgw_cls_lc_list_entries, &h_rgw_lc_list_entries);
31f18b77
FG
3821 cls_register_cxx_method(h_class, "reshard_add", CLS_METHOD_RD | CLS_METHOD_WR, rgw_reshard_add, &h_rgw_reshard_add);
3822 cls_register_cxx_method(h_class, "reshard_list", CLS_METHOD_RD, rgw_reshard_list, &h_rgw_reshard_list);
3823 cls_register_cxx_method(h_class, "reshard_get", CLS_METHOD_RD,rgw_reshard_get, &h_rgw_reshard_get);
3824 cls_register_cxx_method(h_class, "reshard_remove", CLS_METHOD_RD | CLS_METHOD_WR, rgw_reshard_remove, &h_rgw_reshard_remove);
3825 cls_register_cxx_method(h_class, "set_bucket_resharding", CLS_METHOD_RD | CLS_METHOD_WR,
3826 rgw_set_bucket_resharding, &h_rgw_set_bucket_resharding);
3827 cls_register_cxx_method(h_class, "clear_bucket_resharding", CLS_METHOD_RD | CLS_METHOD_WR,
3828 rgw_clear_bucket_resharding, &h_rgw_clear_bucket_resharding);
3829 cls_register_cxx_method(h_class, "guard_bucket_resharding", CLS_METHOD_RD ,
3830 rgw_guard_bucket_resharding, &h_rgw_guard_bucket_resharding);
3831 cls_register_cxx_method(h_class, "get_bucket_resharding", CLS_METHOD_RD ,
3832 rgw_get_bucket_resharding, &h_rgw_get_bucket_resharding);
3833
7c673cae
FG
3834 return;
3835}
3836