// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2004-2006 Sage Weil * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "include/types.h" #include "include/buffer.h" #include "osd/osd_types.h" #include #include "HashIndex.h" #include "common/debug.h" #define dout_subsys ceph_subsys_filestore const string HashIndex::SUBDIR_ATTR = "contents"; const string HashIndex::IN_PROGRESS_OP_TAG = "in_progress_op"; int HashIndex::cleanup() { bufferlist bl; int r = get_attr_path(vector(), IN_PROGRESS_OP_TAG, bl); if (r < 0) { // No in progress operations! return 0; } bufferlist::iterator i = bl.begin(); InProgressOp in_progress(i); subdir_info_s info; r = get_info(in_progress.path, &info); if (r < 0) return r; if (in_progress.is_split()) return complete_split(in_progress.path, info); else if (in_progress.is_merge()) return complete_merge(in_progress.path, info); else return -EINVAL; } int HashIndex::_init() { subdir_info_s info; vector path; return set_info(path, info); } /* LFNIndex virtual method implementations */ int HashIndex::_created(const vector &path, const hobject_t &hoid, const string &mangled_name) { subdir_info_s info; int r; r = get_info(path, &info); if (r < 0) return r; info.objs++; r = set_info(path, info); if (r < 0) return r; if (must_split(info)) { int r = initiate_split(path, info); if (r < 0) return r; return complete_split(path, info); } else { return 0; } } int HashIndex::_remove(const vector &path, const hobject_t &hoid, const string &mangled_name) { int r; r = remove_object(path, hoid); if (r < 0) return r; subdir_info_s info; r = get_info(path, &info); if (r < 0) return r; info.objs--; r = set_info(path, info); if (r < 0) return r; if (must_merge(info)) { r = initiate_merge(path, info); if (r < 0) return r; return complete_merge(path, info); } else { return 0; } } int HashIndex::_lookup(const hobject_t &hoid, vector *path, string *mangled_name, int *exists_out) { vector path_comp; get_path_components(hoid, &path_comp); vector::iterator next = path_comp.begin(); int r, exists; while (1) { r = path_exists(*path, &exists); if (r < 0) return r; if (!exists) { if (path->empty()) return -ENOENT; path->pop_back(); break; } if (next == path_comp.end()) break; path->push_back(*(next++)); } return get_mangled_name(*path, hoid, mangled_name, exists_out); } int HashIndex::_collection_list(vector *ls) { vector path; return list_by_hash(path, 0, 0, 0, 0, ls); } int HashIndex::_collection_list_partial(const hobject_t &start, int min_count, int max_count, snapid_t seq, vector *ls, hobject_t *next) { vector path; *next = start; dout(20) << "_collection_list_partial " << start << " " << min_count << "-" << max_count << " ls.size " << ls->size() << dendl; return list_by_hash(path, min_count, max_count, seq, next, ls); } int HashIndex::prep_delete() { return recursive_remove(vector()); } int HashIndex::recursive_remove(const vector &path) { set subdirs; int r = list_subdirs(path, &subdirs); if (r < 0) return r; map objects; r = list_objects(path, 0, 0, &objects); if (r < 0) return r; if (objects.size()) return -ENOTEMPTY; vector subdir(path); for (set::iterator i = subdirs.begin(); i != subdirs.end(); ++i) { subdir.push_back(*i); r = recursive_remove(subdir); if (r < 0) return r; subdir.pop_back(); } return remove_path(path); } int HashIndex::start_split(const vector &path) { bufferlist bl; InProgressOp op_tag(InProgressOp::SPLIT, path); op_tag.encode(bl); return add_attr_path(vector(), IN_PROGRESS_OP_TAG, bl); } int HashIndex::start_merge(const vector &path) { bufferlist bl; InProgressOp op_tag(InProgressOp::MERGE, path); op_tag.encode(bl); return add_attr_path(vector(), IN_PROGRESS_OP_TAG, bl); } int HashIndex::end_split_or_merge(const vector &path) { return remove_attr_path(vector(), IN_PROGRESS_OP_TAG); } int HashIndex::get_info(const vector &path, subdir_info_s *info) { bufferlist buf; int r = get_attr_path(path, SUBDIR_ATTR, buf); if (r < 0) return r; bufferlist::iterator bufiter = buf.begin(); info->decode(bufiter); assert(path.size() == (unsigned)info->hash_level); return 0; } int HashIndex::set_info(const vector &path, const subdir_info_s &info) { bufferlist buf; assert(path.size() == (unsigned)info.hash_level); info.encode(buf); return add_attr_path(path, SUBDIR_ATTR, buf); } bool HashIndex::must_merge(const subdir_info_s &info) { return (info.hash_level > 0 && info.objs < (unsigned)merge_threshold && info.subdirs == 0); } bool HashIndex::must_split(const subdir_info_s &info) { return (info.hash_level < (unsigned)MAX_HASH_LEVEL && info.objs > ((unsigned)merge_threshold * 16 * split_multiplier)); } int HashIndex::initiate_merge(const vector &path, subdir_info_s info) { return start_merge(path); } int HashIndex::complete_merge(const vector &path, subdir_info_s info) { vector dst = path; dst.pop_back(); subdir_info_s dstinfo; int r, exists; r = path_exists(path, &exists); if (r < 0) return r; r = get_info(dst, &dstinfo); if (r < 0) return r; if (exists) { r = move_objects(path, dst); if (r < 0) return r; map objects_dst; r = list_objects(dst, 0, 0, &objects_dst); if (r < 0) return r; set subdirs; r = list_subdirs(dst, &subdirs); if (r < 0) return r; dstinfo.objs = objects_dst.size(); dstinfo.subdirs = subdirs.size() - 1; r = set_info(dst, dstinfo); if (r < 0) return r; r = remove_path(path); if (r < 0) return r; } if (must_merge(dstinfo)) { r = initiate_merge(dst, dstinfo); if (r < 0) return r; r = fsync_dir(dst); if (r < 0) return r; return complete_merge(dst, dstinfo); } r = fsync_dir(dst); if (r < 0) return r; return end_split_or_merge(path); } int HashIndex::initiate_split(const vector &path, subdir_info_s info) { return start_split(path); } int HashIndex::complete_split(const vector &path, subdir_info_s info) { int level = info.hash_level; map objects; vector dst = path; int r; dst.push_back(""); r = list_objects(path, 0, 0, &objects); if (r < 0) return r; set subdirs; r = list_subdirs(path, &subdirs); if (r < 0) return r; map > mapped; map moved; int num_moved = 0; for (map::iterator i = objects.begin(); i != objects.end(); ++i) { vector new_path; get_path_components(i->second, &new_path); mapped[new_path[level]][i->first] = i->second; } for (map >::iterator i = mapped.begin(); i != mapped.end(); ) { dst[level] = i->first; /* If the info already exists, it must be correct, * we may be picking up a partially finished split */ subdir_info_s temp; // subdir has already been fully copied if (subdirs.count(i->first) && !get_info(dst, &temp)) { for (map::iterator j = i->second.begin(); j != i->second.end(); ++j) { moved[j->first] = j->second; num_moved++; objects.erase(j->first); } ++i; continue; } subdir_info_s info_new; info_new.objs = i->second.size(); info_new.subdirs = 0; info_new.hash_level = level + 1; if (must_merge(info_new) && !subdirs.count(i->first)) { mapped.erase(i++); continue; } // Subdir doesn't yet exist if (!subdirs.count(i->first)) { info.subdirs += 1; r = create_path(dst); if (r < 0) return r; } // else subdir has been created but only partially copied for (map::iterator j = i->second.begin(); j != i->second.end(); ++j) { moved[j->first] = j->second; num_moved++; objects.erase(j->first); r = link_object(path, dst, j->second, j->first); // May be a partially finished split if (r < 0 && r != -EEXIST) { return r; } } r = fsync_dir(dst); if (r < 0) return r; // Presence of info must imply that all objects have been copied r = set_info(dst, info_new); if (r < 0) return r; r = fsync_dir(dst); if (r < 0) return r; ++i; } r = remove_objects(path, moved, &objects); if (r < 0) return r; info.objs = objects.size(); r = set_info(path, info); if (r < 0) return r; r = fsync_dir(path); if (r < 0) return r; return end_split_or_merge(path); } void HashIndex::get_path_components(const hobject_t &hoid, vector *path) { char buf[MAX_HASH_LEVEL + 1]; snprintf(buf, sizeof(buf), "%.*X", MAX_HASH_LEVEL, (uint32_t)hoid.get_filestore_key()); // Path components are the hex characters of hoid.hash, least // significant first for (int i = 0; i < MAX_HASH_LEVEL; ++i) { path->push_back(string(&buf[i], 1)); } } string HashIndex::get_hash_str(uint32_t hash) { char buf[MAX_HASH_LEVEL + 1]; snprintf(buf, sizeof(buf), "%.*X", MAX_HASH_LEVEL, hash); string retval; for (int i = 0; i < MAX_HASH_LEVEL; ++i) { retval.push_back(buf[MAX_HASH_LEVEL - 1 - i]); } return retval; } string HashIndex::get_path_str(const hobject_t &hoid) { return get_hash_str(hoid.hash); } uint32_t HashIndex::hash_prefix_to_hash(string prefix) { while (prefix.size() < sizeof(uint32_t) * 2) { prefix.push_back('0'); } uint32_t hash; sscanf(prefix.c_str(), "%x", &hash); // nibble reverse hash = ((hash & 0x0f0f0f0f) << 4) | ((hash & 0xf0f0f0f0) >> 4); hash = ((hash & 0x00ff00ff) << 8) | ((hash & 0xff00ff00) >> 8); hash = ((hash & 0x0000ffff) << 16) | ((hash & 0xffff0000) >> 16); return hash; } int HashIndex::get_path_contents_by_hash(const vector &path, const string *lower_bound, const hobject_t *next_object, const snapid_t *seq, set *hash_prefixes, multimap *objects) { set subdirs; map rev_objects; int r; string cur_prefix; for (vector::const_iterator i = path.begin(); i != path.end(); ++i) { cur_prefix.append(*i); } r = list_objects(path, 0, 0, &rev_objects); if (r < 0) return r; for (map::iterator i = rev_objects.begin(); i != rev_objects.end(); ++i) { string hash_prefix = get_path_str(i->second); if (lower_bound && hash_prefix < *lower_bound) continue; if (next_object && i->second < *next_object) continue; if (seq && i->second.snap < *seq) continue; hash_prefixes->insert(hash_prefix); objects->insert(pair(hash_prefix, i->second)); } r = list_subdirs(path, &subdirs); if (r < 0) return r; for (set::iterator i = subdirs.begin(); i != subdirs.end(); ++i) { string candidate = cur_prefix + *i; if (lower_bound && candidate < lower_bound->substr(0, candidate.size())) continue; if (next_object && candidate < get_path_str(*next_object).substr(0, candidate.size())) continue; hash_prefixes->insert(cur_prefix + *i); } return 0; } int HashIndex::list_by_hash(const vector &path, int min_count, int max_count, snapid_t seq, hobject_t *next, vector *out) { assert(out); vector next_path = path; next_path.push_back(""); set hash_prefixes; multimap objects; int r = get_path_contents_by_hash(path, NULL, next, &seq, &hash_prefixes, &objects); if (r < 0) return r; dout(20) << " prefixes " << hash_prefixes << dendl; for (set::iterator i = hash_prefixes.begin(); i != hash_prefixes.end(); ++i) { multimap::iterator j = objects.find(*i); if (j == objects.end()) { if (min_count > 0 && out->size() > (unsigned)min_count) { if (next) *next = hobject_t("", "", CEPH_NOSNAP, hash_prefix_to_hash(*i), -1); return 0; } *(next_path.rbegin()) = *(i->rbegin()); hobject_t next_recurse; if (next) next_recurse = *next; r = list_by_hash(next_path, min_count, max_count, seq, &next_recurse, out); if (r < 0) return r; if (!next_recurse.is_max()) { if (next) *next = next_recurse; return 0; } } else { while (j != objects.end() && j->first == *i) { if (max_count > 0 && out->size() == (unsigned)max_count) { if (next) *next = j->second; return 0; } if (!next || j->second >= *next) { out->push_back(j->second); } ++j; } } } if (next) *next = hobject_t::get_max(); return 0; }