2 * Dirtyrate implement code
4 * Copyright (c) 2020 HUAWEI TECHNOLOGIES CO.,LTD.
7 * Chuan Zheng <zhengchuan@huawei.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "qapi/error.h"
17 #include "qemu/config-file.h"
18 #include "exec/memory.h"
19 #include "exec/ramblock.h"
20 #include "exec/target_page.h"
21 #include "qemu/rcu_queue.h"
22 #include "qapi/qapi-commands-migration.h"
23 #include "migration.h"
26 #include "dirtyrate.h"
28 static int CalculatingState
= DIRTY_RATE_STATUS_UNSTARTED
;
29 static struct DirtyRateStat DirtyStat
;
31 static int64_t set_sample_page_period(int64_t msec
, int64_t initial_time
)
35 current_time
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
36 if ((current_time
- initial_time
) >= msec
) {
37 msec
= current_time
- initial_time
;
39 g_usleep((msec
+ initial_time
- current_time
) * 1000);
45 static bool is_sample_period_valid(int64_t sec
)
47 if (sec
< MIN_FETCH_DIRTYRATE_TIME_SEC
||
48 sec
> MAX_FETCH_DIRTYRATE_TIME_SEC
) {
55 static int dirtyrate_set_state(int *state
, int old_state
, int new_state
)
57 assert(new_state
< DIRTY_RATE_STATUS__MAX
);
58 trace_dirtyrate_set_state(DirtyRateStatus_str(new_state
));
59 if (qatomic_cmpxchg(state
, old_state
, new_state
) == old_state
) {
66 static struct DirtyRateInfo
*query_dirty_rate_info(void)
68 int64_t dirty_rate
= DirtyStat
.dirty_rate
;
69 struct DirtyRateInfo
*info
= g_malloc0(sizeof(DirtyRateInfo
));
71 if (qatomic_read(&CalculatingState
) == DIRTY_RATE_STATUS_MEASURED
) {
72 info
->has_dirty_rate
= true;
73 info
->dirty_rate
= dirty_rate
;
76 info
->status
= CalculatingState
;
77 info
->start_time
= DirtyStat
.start_time
;
78 info
->calc_time
= DirtyStat
.calc_time
;
80 trace_query_dirty_rate_info(DirtyRateStatus_str(CalculatingState
));
85 static void init_dirtyrate_stat(int64_t start_time
, int64_t calc_time
)
87 DirtyStat
.total_dirty_samples
= 0;
88 DirtyStat
.total_sample_count
= 0;
89 DirtyStat
.total_block_mem_MB
= 0;
90 DirtyStat
.dirty_rate
= -1;
91 DirtyStat
.start_time
= start_time
;
92 DirtyStat
.calc_time
= calc_time
;
95 static void update_dirtyrate_stat(struct RamblockDirtyInfo
*info
)
97 DirtyStat
.total_dirty_samples
+= info
->sample_dirty_count
;
98 DirtyStat
.total_sample_count
+= info
->sample_pages_count
;
99 /* size of total pages in MB */
100 DirtyStat
.total_block_mem_MB
+= (info
->ramblock_pages
*
101 TARGET_PAGE_SIZE
) >> 20;
104 static void update_dirtyrate(uint64_t msec
)
107 uint64_t total_dirty_samples
= DirtyStat
.total_dirty_samples
;
108 uint64_t total_sample_count
= DirtyStat
.total_sample_count
;
109 uint64_t total_block_mem_MB
= DirtyStat
.total_block_mem_MB
;
111 dirtyrate
= total_dirty_samples
* total_block_mem_MB
*
112 1000 / (total_sample_count
* msec
);
114 DirtyStat
.dirty_rate
= dirtyrate
;
118 * get hash result for the sampled memory with length of TARGET_PAGE_SIZE
119 * in ramblock, which starts from ramblock base address.
121 static uint32_t get_ramblock_vfn_hash(struct RamblockDirtyInfo
*info
,
126 crc
= crc32(0, (info
->ramblock_addr
+
127 vfn
* TARGET_PAGE_SIZE
), TARGET_PAGE_SIZE
);
129 trace_get_ramblock_vfn_hash(info
->idstr
, vfn
, crc
);
133 static bool save_ramblock_hash(struct RamblockDirtyInfo
*info
)
135 unsigned int sample_pages_count
;
139 sample_pages_count
= info
->sample_pages_count
;
141 /* ramblock size less than one page, return success to skip this ramblock */
142 if (unlikely(info
->ramblock_pages
== 0 || sample_pages_count
== 0)) {
146 info
->hash_result
= g_try_malloc0_n(sample_pages_count
,
148 if (!info
->hash_result
) {
152 info
->sample_page_vfn
= g_try_malloc0_n(sample_pages_count
,
154 if (!info
->sample_page_vfn
) {
155 g_free(info
->hash_result
);
160 for (i
= 0; i
< sample_pages_count
; i
++) {
161 info
->sample_page_vfn
[i
] = g_rand_int_range(rand
, 0,
162 info
->ramblock_pages
- 1);
163 info
->hash_result
[i
] = get_ramblock_vfn_hash(info
,
164 info
->sample_page_vfn
[i
]);
171 static void get_ramblock_dirty_info(RAMBlock
*block
,
172 struct RamblockDirtyInfo
*info
,
173 struct DirtyRateConfig
*config
)
175 uint64_t sample_pages_per_gigabytes
= config
->sample_pages_per_gigabytes
;
177 /* Right shift 30 bits to calc ramblock size in GB */
178 info
->sample_pages_count
= (qemu_ram_get_used_length(block
) *
179 sample_pages_per_gigabytes
) >> 30;
180 /* Right shift TARGET_PAGE_BITS to calc page count */
181 info
->ramblock_pages
= qemu_ram_get_used_length(block
) >>
183 info
->ramblock_addr
= qemu_ram_get_host_addr(block
);
184 strcpy(info
->idstr
, qemu_ram_get_idstr(block
));
187 static void free_ramblock_dirty_info(struct RamblockDirtyInfo
*infos
, int count
)
195 for (i
= 0; i
< count
; i
++) {
196 g_free(infos
[i
].sample_page_vfn
);
197 g_free(infos
[i
].hash_result
);
202 static bool skip_sample_ramblock(RAMBlock
*block
)
205 * Sample only blocks larger than MIN_RAMBLOCK_SIZE.
207 if (qemu_ram_get_used_length(block
) < (MIN_RAMBLOCK_SIZE
<< 10)) {
208 trace_skip_sample_ramblock(block
->idstr
,
209 qemu_ram_get_used_length(block
));
216 static bool record_ramblock_hash_info(struct RamblockDirtyInfo
**block_dinfo
,
217 struct DirtyRateConfig config
,
220 struct RamblockDirtyInfo
*info
= NULL
;
221 struct RamblockDirtyInfo
*dinfo
= NULL
;
222 RAMBlock
*block
= NULL
;
227 RAMBLOCK_FOREACH_MIGRATABLE(block
) {
228 if (skip_sample_ramblock(block
)) {
234 dinfo
= g_try_malloc0_n(total_count
, sizeof(struct RamblockDirtyInfo
));
239 RAMBLOCK_FOREACH_MIGRATABLE(block
) {
240 if (skip_sample_ramblock(block
)) {
243 if (index
>= total_count
) {
246 info
= &dinfo
[index
];
247 get_ramblock_dirty_info(block
, info
, &config
);
248 if (!save_ramblock_hash(info
)) {
256 *block_count
= index
;
257 *block_dinfo
= dinfo
;
261 static void calc_page_dirty_rate(struct RamblockDirtyInfo
*info
)
266 for (i
= 0; i
< info
->sample_pages_count
; i
++) {
267 crc
= get_ramblock_vfn_hash(info
, info
->sample_page_vfn
[i
]);
268 if (crc
!= info
->hash_result
[i
]) {
269 trace_calc_page_dirty_rate(info
->idstr
, crc
, info
->hash_result
[i
]);
270 info
->sample_dirty_count
++;
275 static struct RamblockDirtyInfo
*
276 find_block_matched(RAMBlock
*block
, int count
,
277 struct RamblockDirtyInfo
*infos
)
280 struct RamblockDirtyInfo
*matched
;
282 for (i
= 0; i
< count
; i
++) {
283 if (!strcmp(infos
[i
].idstr
, qemu_ram_get_idstr(block
))) {
292 if (infos
[i
].ramblock_addr
!= qemu_ram_get_host_addr(block
) ||
293 infos
[i
].ramblock_pages
!=
294 (qemu_ram_get_used_length(block
) >> TARGET_PAGE_BITS
)) {
295 trace_find_page_matched(block
->idstr
);
304 static bool compare_page_hash_info(struct RamblockDirtyInfo
*info
,
307 struct RamblockDirtyInfo
*block_dinfo
= NULL
;
308 RAMBlock
*block
= NULL
;
310 RAMBLOCK_FOREACH_MIGRATABLE(block
) {
311 if (skip_sample_ramblock(block
)) {
314 block_dinfo
= find_block_matched(block
, block_count
, info
);
315 if (block_dinfo
== NULL
) {
318 calc_page_dirty_rate(block_dinfo
);
319 update_dirtyrate_stat(block_dinfo
);
322 if (DirtyStat
.total_sample_count
== 0) {
329 static void calculate_dirtyrate(struct DirtyRateConfig config
)
331 struct RamblockDirtyInfo
*block_dinfo
= NULL
;
334 int64_t initial_time
;
336 rcu_register_thread();
338 initial_time
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
);
339 if (!record_ramblock_hash_info(&block_dinfo
, config
, &block_count
)) {
344 msec
= config
.sample_period_seconds
* 1000;
345 msec
= set_sample_page_period(msec
, initial_time
);
346 DirtyStat
.start_time
= initial_time
/ 1000;
347 DirtyStat
.calc_time
= msec
/ 1000;
350 if (!compare_page_hash_info(block_dinfo
, block_count
)) {
354 update_dirtyrate(msec
);
358 free_ramblock_dirty_info(block_dinfo
, block_count
);
359 rcu_unregister_thread();
362 void *get_dirtyrate_thread(void *arg
)
364 struct DirtyRateConfig config
= *(struct DirtyRateConfig
*)arg
;
369 ret
= dirtyrate_set_state(&CalculatingState
, DIRTY_RATE_STATUS_UNSTARTED
,
370 DIRTY_RATE_STATUS_MEASURING
);
372 error_report("change dirtyrate state failed.");
376 start_time
= qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) / 1000;
377 calc_time
= config
.sample_period_seconds
;
378 init_dirtyrate_stat(start_time
, calc_time
);
380 calculate_dirtyrate(config
);
382 ret
= dirtyrate_set_state(&CalculatingState
, DIRTY_RATE_STATUS_MEASURING
,
383 DIRTY_RATE_STATUS_MEASURED
);
385 error_report("change dirtyrate state failed.");
390 void qmp_calc_dirty_rate(int64_t calc_time
, Error
**errp
)
392 static struct DirtyRateConfig config
;
397 * If the dirty rate is already being measured, don't attempt to start.
399 if (qatomic_read(&CalculatingState
) == DIRTY_RATE_STATUS_MEASURING
) {
400 error_setg(errp
, "the dirty rate is already being measured.");
404 if (!is_sample_period_valid(calc_time
)) {
405 error_setg(errp
, "calc-time is out of range[%d, %d].",
406 MIN_FETCH_DIRTYRATE_TIME_SEC
,
407 MAX_FETCH_DIRTYRATE_TIME_SEC
);
412 * Init calculation state as unstarted.
414 ret
= dirtyrate_set_state(&CalculatingState
, CalculatingState
,
415 DIRTY_RATE_STATUS_UNSTARTED
);
417 error_setg(errp
, "init dirty rate calculation state failed.");
421 config
.sample_period_seconds
= calc_time
;
422 config
.sample_pages_per_gigabytes
= DIRTYRATE_DEFAULT_SAMPLE_PAGES
;
423 qemu_thread_create(&thread
, "get_dirtyrate", get_dirtyrate_thread
,
424 (void *)&config
, QEMU_THREAD_DETACHED
);
427 struct DirtyRateInfo
*qmp_query_dirty_rate(Error
**errp
)
429 return query_dirty_rate_info();