1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
|
/*
* QEMU ram block attributes
*
* Copyright Intel
*
* Author:
* Chenyi Qiang <chenyi.qiang@intel.com>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "qemu/osdep.h"
#include "qemu/error-report.h"
#include "system/ramblock.h"
#include "trace.h"
OBJECT_DEFINE_SIMPLE_TYPE_WITH_INTERFACES(RamBlockAttributes,
ram_block_attributes,
RAM_BLOCK_ATTRIBUTES,
OBJECT,
{ TYPE_RAM_DISCARD_MANAGER },
{ })
static size_t
ram_block_attributes_get_block_size(const RamBlockAttributes *attr)
{
/*
* Because page conversion could be manipulated in the size of at least 4K
* or 4K aligned, Use the host page size as the granularity to track the
* memory attribute.
*/
g_assert(attr && attr->ram_block);
g_assert(attr->ram_block->page_size == qemu_real_host_page_size());
return attr->ram_block->page_size;
}
static bool
ram_block_attributes_rdm_is_populated(const RamDiscardManager *rdm,
const MemoryRegionSection *section)
{
const RamBlockAttributes *attr = RAM_BLOCK_ATTRIBUTES(rdm);
const size_t block_size = ram_block_attributes_get_block_size(attr);
const uint64_t first_bit = section->offset_within_region / block_size;
const uint64_t last_bit =
first_bit + int128_get64(section->size) / block_size - 1;
unsigned long first_discarded_bit;
first_discarded_bit = find_next_zero_bit(attr->bitmap, last_bit + 1,
first_bit);
return first_discarded_bit > last_bit;
}
typedef int (*ram_block_attributes_section_cb)(MemoryRegionSection *s,
void *arg);
static int
ram_block_attributes_notify_populate_cb(MemoryRegionSection *section,
void *arg)
{
RamDiscardListener *rdl = arg;
return rdl->notify_populate(rdl, section);
}
static int
ram_block_attributes_notify_discard_cb(MemoryRegionSection *section,
void *arg)
{
RamDiscardListener *rdl = arg;
rdl->notify_discard(rdl, section);
return 0;
}
static int
ram_block_attributes_for_each_populated_section(const RamBlockAttributes *attr,
MemoryRegionSection *section,
void *arg,
ram_block_attributes_section_cb cb)
{
unsigned long first_bit, last_bit;
uint64_t offset, size;
const size_t block_size = ram_block_attributes_get_block_size(attr);
int ret = 0;
first_bit = section->offset_within_region / block_size;
first_bit = find_next_bit(attr->bitmap, attr->bitmap_size,
first_bit);
while (first_bit < attr->bitmap_size) {
MemoryRegionSection tmp = *section;
offset = first_bit * block_size;
last_bit = find_next_zero_bit(attr->bitmap, attr->bitmap_size,
first_bit + 1) - 1;
size = (last_bit - first_bit + 1) * block_size;
if (!memory_region_section_intersect_range(&tmp, offset, size)) {
break;
}
ret = cb(&tmp, arg);
if (ret) {
error_report("%s: Failed to notify RAM discard listener: %s",
__func__, strerror(-ret));
break;
}
first_bit = find_next_bit(attr->bitmap, attr->bitmap_size,
last_bit + 2);
}
return ret;
}
static int
ram_block_attributes_for_each_discarded_section(const RamBlockAttributes *attr,
MemoryRegionSection *section,
void *arg,
ram_block_attributes_section_cb cb)
{
unsigned long first_bit, last_bit;
uint64_t offset, size;
const size_t block_size = ram_block_attributes_get_block_size(attr);
int ret = 0;
first_bit = section->offset_within_region / block_size;
first_bit = find_next_zero_bit(attr->bitmap, attr->bitmap_size,
first_bit);
while (first_bit < attr->bitmap_size) {
MemoryRegionSection tmp = *section;
offset = first_bit * block_size;
last_bit = find_next_bit(attr->bitmap, attr->bitmap_size,
first_bit + 1) - 1;
size = (last_bit - first_bit + 1) * block_size;
if (!memory_region_section_intersect_range(&tmp, offset, size)) {
break;
}
ret = cb(&tmp, arg);
if (ret) {
error_report("%s: Failed to notify RAM discard listener: %s",
__func__, strerror(-ret));
break;
}
first_bit = find_next_zero_bit(attr->bitmap,
attr->bitmap_size,
last_bit + 2);
}
return ret;
}
static uint64_t
ram_block_attributes_rdm_get_min_granularity(const RamDiscardManager *rdm,
const MemoryRegion *mr)
{
const RamBlockAttributes *attr = RAM_BLOCK_ATTRIBUTES(rdm);
g_assert(mr == attr->ram_block->mr);
return ram_block_attributes_get_block_size(attr);
}
static void
ram_block_attributes_rdm_register_listener(RamDiscardManager *rdm,
RamDiscardListener *rdl,
MemoryRegionSection *section)
{
RamBlockAttributes *attr = RAM_BLOCK_ATTRIBUTES(rdm);
int ret;
g_assert(section->mr == attr->ram_block->mr);
rdl->section = memory_region_section_new_copy(section);
QLIST_INSERT_HEAD(&attr->rdl_list, rdl, next);
ret = ram_block_attributes_for_each_populated_section(attr, section, rdl,
ram_block_attributes_notify_populate_cb);
if (ret) {
error_report("%s: Failed to register RAM discard listener: %s",
__func__, strerror(-ret));
exit(1);
}
}
static void
ram_block_attributes_rdm_unregister_listener(RamDiscardManager *rdm,
RamDiscardListener *rdl)
{
RamBlockAttributes *attr = RAM_BLOCK_ATTRIBUTES(rdm);
int ret;
g_assert(rdl->section);
g_assert(rdl->section->mr == attr->ram_block->mr);
if (rdl->double_discard_supported) {
rdl->notify_discard(rdl, rdl->section);
} else {
ret = ram_block_attributes_for_each_populated_section(attr,
rdl->section, rdl, ram_block_attributes_notify_discard_cb);
if (ret) {
error_report("%s: Failed to unregister RAM discard listener: %s",
__func__, strerror(-ret));
exit(1);
}
}
memory_region_section_free_copy(rdl->section);
rdl->section = NULL;
QLIST_REMOVE(rdl, next);
}
typedef struct RamBlockAttributesReplayData {
ReplayRamDiscardState fn;
void *opaque;
} RamBlockAttributesReplayData;
static int ram_block_attributes_rdm_replay_cb(MemoryRegionSection *section,
void *arg)
{
RamBlockAttributesReplayData *data = arg;
return data->fn(section, data->opaque);
}
static int
ram_block_attributes_rdm_replay_populated(const RamDiscardManager *rdm,
MemoryRegionSection *section,
ReplayRamDiscardState replay_fn,
void *opaque)
{
RamBlockAttributes *attr = RAM_BLOCK_ATTRIBUTES(rdm);
RamBlockAttributesReplayData data = { .fn = replay_fn, .opaque = opaque };
g_assert(section->mr == attr->ram_block->mr);
return ram_block_attributes_for_each_populated_section(attr, section, &data,
ram_block_attributes_rdm_replay_cb);
}
static int
ram_block_attributes_rdm_replay_discarded(const RamDiscardManager *rdm,
MemoryRegionSection *section,
ReplayRamDiscardState replay_fn,
void *opaque)
{
RamBlockAttributes *attr = RAM_BLOCK_ATTRIBUTES(rdm);
RamBlockAttributesReplayData data = { .fn = replay_fn, .opaque = opaque };
g_assert(section->mr == attr->ram_block->mr);
return ram_block_attributes_for_each_discarded_section(attr, section, &data,
ram_block_attributes_rdm_replay_cb);
}
static bool
ram_block_attributes_is_valid_range(RamBlockAttributes *attr, uint64_t offset,
uint64_t size)
{
MemoryRegion *mr = attr->ram_block->mr;
g_assert(mr);
uint64_t region_size = memory_region_size(mr);
const size_t block_size = ram_block_attributes_get_block_size(attr);
if (!QEMU_IS_ALIGNED(offset, block_size) ||
!QEMU_IS_ALIGNED(size, block_size)) {
return false;
}
if (offset + size <= offset) {
return false;
}
if (offset + size > region_size) {
return false;
}
return true;
}
static void ram_block_attributes_notify_discard(RamBlockAttributes *attr,
uint64_t offset,
uint64_t size)
{
RamDiscardListener *rdl;
QLIST_FOREACH(rdl, &attr->rdl_list, next) {
MemoryRegionSection tmp = *rdl->section;
if (!memory_region_section_intersect_range(&tmp, offset, size)) {
continue;
}
rdl->notify_discard(rdl, &tmp);
}
}
static int
ram_block_attributes_notify_populate(RamBlockAttributes *attr,
uint64_t offset, uint64_t size)
{
RamDiscardListener *rdl;
int ret = 0;
QLIST_FOREACH(rdl, &attr->rdl_list, next) {
MemoryRegionSection tmp = *rdl->section;
if (!memory_region_section_intersect_range(&tmp, offset, size)) {
continue;
}
ret = rdl->notify_populate(rdl, &tmp);
if (ret) {
break;
}
}
return ret;
}
int ram_block_attributes_state_change(RamBlockAttributes *attr,
uint64_t offset, uint64_t size,
bool to_discard)
{
const size_t block_size = ram_block_attributes_get_block_size(attr);
const unsigned long first_bit = offset / block_size;
const unsigned long nbits = size / block_size;
const unsigned long last_bit = first_bit + nbits - 1;
const bool is_discarded = find_next_bit(attr->bitmap, attr->bitmap_size,
first_bit) > last_bit;
const bool is_populated = find_next_zero_bit(attr->bitmap,
attr->bitmap_size, first_bit) > last_bit;
unsigned long bit;
int ret = 0;
if (!ram_block_attributes_is_valid_range(attr, offset, size)) {
error_report("%s, invalid range: offset 0x%" PRIx64 ", size "
"0x%" PRIx64, __func__, offset, size);
return -EINVAL;
}
trace_ram_block_attributes_state_change(offset, size,
is_discarded ? "discarded" :
is_populated ? "populated" :
"mixture",
to_discard ? "discarded" :
"populated");
if (to_discard) {
if (is_discarded) {
/* Already private */
} else if (is_populated) {
/* Completely shared */
bitmap_clear(attr->bitmap, first_bit, nbits);
ram_block_attributes_notify_discard(attr, offset, size);
} else {
/* Unexpected mixture: process individual blocks */
for (bit = first_bit; bit < first_bit + nbits; bit++) {
if (!test_bit(bit, attr->bitmap)) {
continue;
}
clear_bit(bit, attr->bitmap);
ram_block_attributes_notify_discard(attr, bit * block_size,
block_size);
}
}
} else {
if (is_populated) {
/* Already shared */
} else if (is_discarded) {
/* Completely private */
bitmap_set(attr->bitmap, first_bit, nbits);
ret = ram_block_attributes_notify_populate(attr, offset, size);
} else {
/* Unexpected mixture: process individual blocks */
for (bit = first_bit; bit < first_bit + nbits; bit++) {
if (test_bit(bit, attr->bitmap)) {
continue;
}
set_bit(bit, attr->bitmap);
ret = ram_block_attributes_notify_populate(attr,
bit * block_size,
block_size);
if (ret) {
break;
}
}
}
}
return ret;
}
RamBlockAttributes *ram_block_attributes_create(RAMBlock *ram_block)
{
const int block_size = qemu_real_host_page_size();
RamBlockAttributes *attr;
MemoryRegion *mr = ram_block->mr;
attr = RAM_BLOCK_ATTRIBUTES(object_new(TYPE_RAM_BLOCK_ATTRIBUTES));
attr->ram_block = ram_block;
if (memory_region_set_ram_discard_manager(mr, RAM_DISCARD_MANAGER(attr))) {
object_unref(OBJECT(attr));
return NULL;
}
attr->bitmap_size =
ROUND_UP(int128_get64(mr->size), block_size) / block_size;
attr->bitmap = bitmap_new(attr->bitmap_size);
return attr;
}
void ram_block_attributes_destroy(RamBlockAttributes *attr)
{
g_assert(attr);
g_free(attr->bitmap);
memory_region_set_ram_discard_manager(attr->ram_block->mr, NULL);
object_unref(OBJECT(attr));
}
static void ram_block_attributes_init(Object *obj)
{
RamBlockAttributes *attr = RAM_BLOCK_ATTRIBUTES(obj);
QLIST_INIT(&attr->rdl_list);
}
static void ram_block_attributes_finalize(Object *obj)
{
}
static void ram_block_attributes_class_init(ObjectClass *klass,
const void *data)
{
RamDiscardManagerClass *rdmc = RAM_DISCARD_MANAGER_CLASS(klass);
rdmc->get_min_granularity = ram_block_attributes_rdm_get_min_granularity;
rdmc->register_listener = ram_block_attributes_rdm_register_listener;
rdmc->unregister_listener = ram_block_attributes_rdm_unregister_listener;
rdmc->is_populated = ram_block_attributes_rdm_is_populated;
rdmc->replay_populated = ram_block_attributes_rdm_replay_populated;
rdmc->replay_discarded = ram_block_attributes_rdm_replay_discarded;
}
|