]> git.proxmox.com Git - ceph.git/blob - ceph/src/os/bluestore/StupidAllocator.cc
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / os / bluestore / StupidAllocator.cc
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3
4 #include "StupidAllocator.h"
5 #include "bluestore_types.h"
6 #include "common/debug.h"
7
8 #define dout_context cct
9 #define dout_subsys ceph_subsys_bluestore
10 #undef dout_prefix
11 #define dout_prefix *_dout << "stupidalloc 0x" << this << " "
12
13 StupidAllocator::StupidAllocator(CephContext* cct)
14 : cct(cct), num_free(0),
15 free(10),
16 last_alloc(0)
17 {
18 }
19
20 StupidAllocator::~StupidAllocator()
21 {
22 }
23
24 unsigned StupidAllocator::_choose_bin(uint64_t orig_len)
25 {
26 uint64_t len = orig_len / cct->_conf->bdev_block_size;
27 int bin = std::min((int)cbits(len), (int)free.size() - 1);
28 ldout(cct, 30) << __func__ << " len 0x" << std::hex << orig_len
29 << std::dec << " -> " << bin << dendl;
30 return bin;
31 }
32
33 void StupidAllocator::_insert_free(uint64_t off, uint64_t len)
34 {
35 unsigned bin = _choose_bin(len);
36 ldout(cct, 30) << __func__ << " 0x" << std::hex << off << "~" << len
37 << std::dec << " in bin " << bin << dendl;
38 while (true) {
39 free[bin].insert(off, len, &off, &len);
40 unsigned newbin = _choose_bin(len);
41 if (newbin == bin)
42 break;
43 ldout(cct, 30) << __func__ << " promoting 0x" << std::hex << off << "~" << len
44 << std::dec << " to bin " << newbin << dendl;
45 free[bin].erase(off, len);
46 bin = newbin;
47 }
48 }
49
50 /// return the effective length of the extent if we align to alloc_unit
51 uint64_t StupidAllocator::_aligned_len(
52 StupidAllocator::interval_set_t::iterator p,
53 uint64_t alloc_unit)
54 {
55 uint64_t skew = p.get_start() % alloc_unit;
56 if (skew)
57 skew = alloc_unit - skew;
58 if (skew > p.get_len())
59 return 0;
60 else
61 return p.get_len() - skew;
62 }
63
64 int64_t StupidAllocator::allocate_int(
65 uint64_t want_size, uint64_t alloc_unit, int64_t hint,
66 uint64_t *offset, uint32_t *length)
67 {
68 std::lock_guard l(lock);
69 ldout(cct, 10) << __func__ << " want_size 0x" << std::hex << want_size
70 << " alloc_unit 0x" << alloc_unit
71 << " hint 0x" << hint << std::dec
72 << dendl;
73 uint64_t want = std::max(alloc_unit, want_size);
74 int bin = _choose_bin(want);
75 int orig_bin = bin;
76
77 auto p = free[0].begin();
78
79 if (!hint)
80 hint = last_alloc;
81
82 // search up (from hint)
83 if (hint) {
84 for (bin = orig_bin; bin < (int)free.size(); ++bin) {
85 p = free[bin].lower_bound(hint);
86 while (p != free[bin].end()) {
87 if (_aligned_len(p, alloc_unit) >= want_size) {
88 goto found;
89 }
90 ++p;
91 }
92 }
93 }
94
95 // search up (from origin, and skip searched extents by hint)
96 for (bin = orig_bin; bin < (int)free.size(); ++bin) {
97 p = free[bin].begin();
98 auto end = hint ? free[bin].lower_bound(hint) : free[bin].end();
99 while (p != end) {
100 if (_aligned_len(p, alloc_unit) >= want_size) {
101 goto found;
102 }
103 ++p;
104 }
105 }
106
107 // search down (hint)
108 if (hint) {
109 for (bin = orig_bin; bin >= 0; --bin) {
110 p = free[bin].lower_bound(hint);
111 while (p != free[bin].end()) {
112 if (_aligned_len(p, alloc_unit) >= alloc_unit) {
113 goto found;
114 }
115 ++p;
116 }
117 }
118 }
119
120 // search down (from origin, and skip searched extents by hint)
121 for (bin = orig_bin; bin >= 0; --bin) {
122 p = free[bin].begin();
123 auto end = hint ? free[bin].lower_bound(hint) : free[bin].end();
124 while (p != end) {
125 if (_aligned_len(p, alloc_unit) >= alloc_unit) {
126 goto found;
127 }
128 ++p;
129 }
130 }
131
132 return -ENOSPC;
133
134 found:
135 uint64_t skew = p.get_start() % alloc_unit;
136 if (skew)
137 skew = alloc_unit - skew;
138 *offset = p.get_start() + skew;
139 *length = std::min(std::max(alloc_unit, want_size), p2align((p.get_len() - skew), alloc_unit));
140 if (cct->_conf->bluestore_debug_small_allocations) {
141 uint64_t max =
142 alloc_unit * (rand() % cct->_conf->bluestore_debug_small_allocations);
143 if (max && *length > max) {
144 ldout(cct, 10) << __func__ << " shortening allocation of 0x" << std::hex
145 << *length << " -> 0x"
146 << max << " due to debug_small_allocations" << std::dec
147 << dendl;
148 *length = max;
149 }
150 }
151 ldout(cct, 30) << __func__ << " got 0x" << std::hex << *offset << "~" << *length
152 << " from bin " << std::dec << bin << dendl;
153
154 free[bin].erase(*offset, *length);
155 uint64_t off, len;
156 if (*offset && free[bin].contains(*offset - skew - 1, &off, &len)) {
157 int newbin = _choose_bin(len);
158 if (newbin != bin) {
159 ldout(cct, 30) << __func__ << " demoting 0x" << std::hex << off << "~" << len
160 << std::dec << " to bin " << newbin << dendl;
161 free[bin].erase(off, len);
162 _insert_free(off, len);
163 }
164 }
165 if (free[bin].contains(*offset + *length, &off, &len)) {
166 int newbin = _choose_bin(len);
167 if (newbin != bin) {
168 ldout(cct, 30) << __func__ << " demoting 0x" << std::hex << off << "~" << len
169 << std::dec << " to bin " << newbin << dendl;
170 free[bin].erase(off, len);
171 _insert_free(off, len);
172 }
173 }
174
175 num_free -= *length;
176 ceph_assert(num_free >= 0);
177 last_alloc = *offset + *length;
178 return 0;
179 }
180
181 int64_t StupidAllocator::allocate(
182 uint64_t want_size,
183 uint64_t alloc_unit,
184 uint64_t max_alloc_size,
185 int64_t hint,
186 PExtentVector *extents)
187 {
188 uint64_t allocated_size = 0;
189 uint64_t offset = 0;
190 uint32_t length = 0;
191 int res = 0;
192
193 if (max_alloc_size == 0) {
194 max_alloc_size = want_size;
195 }
196
197 while (allocated_size < want_size) {
198 res = allocate_int(std::min(max_alloc_size, (want_size - allocated_size)),
199 alloc_unit, hint, &offset, &length);
200 if (res != 0) {
201 /*
202 * Allocation failed.
203 */
204 break;
205 }
206 bool can_append = true;
207 if (!extents->empty()) {
208 bluestore_pextent_t &last_extent = extents->back();
209 if ((last_extent.end() == offset) &&
210 ((last_extent.length + length) <= max_alloc_size)) {
211 can_append = false;
212 last_extent.length += length;
213 }
214 }
215 if (can_append) {
216 extents->emplace_back(bluestore_pextent_t(offset, length));
217 }
218
219 allocated_size += length;
220 hint = offset + length;
221 }
222
223 if (allocated_size == 0) {
224 return -ENOSPC;
225 }
226 return allocated_size;
227 }
228
229 void StupidAllocator::release(
230 const interval_set<uint64_t>& release_set)
231 {
232 std::lock_guard l(lock);
233 for (interval_set<uint64_t>::const_iterator p = release_set.begin();
234 p != release_set.end();
235 ++p) {
236 const auto offset = p.get_start();
237 const auto length = p.get_len();
238 ldout(cct, 10) << __func__ << " 0x" << std::hex << offset << "~" << length
239 << std::dec << dendl;
240 _insert_free(offset, length);
241 num_free += length;
242 }
243 }
244
245 uint64_t StupidAllocator::get_free()
246 {
247 std::lock_guard l(lock);
248 return num_free;
249 }
250
251 double StupidAllocator::get_fragmentation(uint64_t alloc_unit)
252 {
253 ceph_assert(alloc_unit);
254 double res;
255 uint64_t max_intervals = 0;
256 uint64_t intervals = 0;
257 {
258 std::lock_guard l(lock);
259 max_intervals = p2roundup<uint64_t>(num_free, alloc_unit) / alloc_unit;
260 for (unsigned bin = 0; bin < free.size(); ++bin) {
261 intervals += free[bin].num_intervals();
262 }
263 }
264 ldout(cct, 30) << __func__ << " " << intervals << "/" << max_intervals
265 << dendl;
266 ceph_assert(intervals <= max_intervals);
267 if (!intervals || max_intervals <= 1) {
268 return 0.0;
269 }
270 intervals--;
271 max_intervals--;
272 res = (double)intervals / max_intervals;
273 return res;
274 }
275
276 void StupidAllocator::dump()
277 {
278 std::lock_guard l(lock);
279 for (unsigned bin = 0; bin < free.size(); ++bin) {
280 ldout(cct, 0) << __func__ << " free bin " << bin << ": "
281 << free[bin].num_intervals() << " extents" << dendl;
282 for (auto p = free[bin].begin();
283 p != free[bin].end();
284 ++p) {
285 ldout(cct, 0) << __func__ << " 0x" << std::hex << p.get_start() << "~"
286 << p.get_len() << std::dec << dendl;
287 }
288 }
289 }
290
291 void StupidAllocator::init_add_free(uint64_t offset, uint64_t length)
292 {
293 std::lock_guard l(lock);
294 ldout(cct, 10) << __func__ << " 0x" << std::hex << offset << "~" << length
295 << std::dec << dendl;
296 _insert_free(offset, length);
297 num_free += length;
298 }
299
300 void StupidAllocator::init_rm_free(uint64_t offset, uint64_t length)
301 {
302 std::lock_guard l(lock);
303 ldout(cct, 10) << __func__ << " 0x" << std::hex << offset << "~" << length
304 << std::dec << dendl;
305 interval_set_t rm;
306 rm.insert(offset, length);
307 for (unsigned i = 0; i < free.size() && !rm.empty(); ++i) {
308 interval_set_t overlap;
309 overlap.intersection_of(rm, free[i]);
310 if (!overlap.empty()) {
311 ldout(cct, 20) << __func__ << " bin " << i << " rm 0x" << std::hex << overlap
312 << std::dec << dendl;
313 auto it = overlap.begin();
314 auto it_end = overlap.end();
315 while (it != it_end) {
316 auto o = it.get_start();
317 auto l = it.get_len();
318
319 free[i].erase(o, l,
320 [&](uint64_t off, uint64_t len) {
321 unsigned newbin = _choose_bin(len);
322 if (newbin != i) {
323 ldout(cct, 30) << __func__ << " demoting1 0x" << std::hex << off << "~" << len
324 << std::dec << " to bin " << newbin << dendl;
325 _insert_free(off, len);
326 return true;
327 }
328 return false;
329 });
330 ++it;
331 }
332
333 rm.subtract(overlap);
334 }
335 }
336 ceph_assert(rm.empty());
337 num_free -= length;
338 ceph_assert(num_free >= 0);
339 }
340
341
342 void StupidAllocator::shutdown()
343 {
344 ldout(cct, 1) << __func__ << dendl;
345 }
346