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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
|
other: 0.781
semantic: 0.764
instruction: 0.754
mistranslation: 0.665
boot: 0.652
[Qemu-devel] [BUG/RFC] INIT IPI lost when VM starts
Hi,
We encountered a problem that when a domain starts, seabios failed to online a
vCPU.
After investigation, we found that the reason is in kvm-kmod, KVM_APIC_INIT bit
in
vcpu->arch.apic->pending_events was overwritten by qemu, and thus an INIT IPI
sent
to AP was lost. Qemu does this since libvirtd sends a âquery-cpusâ qmp command
to qemu
on VM start.
In qemu, qmp_query_cpus-> cpu_synchronize_state-> kvm_cpu_synchronize_state->
do_kvm_cpu_synchronize_state, qemu gets registers/vcpu_events from kvm-kmod and
sets cpu->kvm_vcpu_dirty to true, and vcpu thread in qemu will call
kvm_arch_put_registers if cpu->kvm_vcpu_dirty is true, thus pending_events is
overwritten by qemu.
I think there is no need for qemu to set cpu->kvm_vcpu_dirty to true after
âquery-cpusâ,
and kvm-kmod should not clear KVM_APIC_INIT unconditionally. And I am not sure
whether
it is OK for qemu to set cpu->kvm_vcpu_dirty in do_kvm_cpu_synchronize_state in
each caller.
Whatâs your opinion?
Let me clarify it more clearly. Time sequence is that qemu handles âquery-cpusâ qmp
command, vcpu 1 (and vcpu 0) got registers from kvm-kmod (qmp_query_cpus->
cpu_synchronize_state-> kvm_cpu_synchronize_state->
> do_kvm_cpu_synchronize_state-> kvm_arch_get_registers), then vcpu 0 (BSP)
sends INIT-SIPI to vcpu 1(AP). In kvm-kmod, vcpu 1âs pending_eventsâs KVM_APIC_INIT
bit set.
Then vcpu 1 continue running, vcpu1 thread in qemu calls
kvm_arch_put_registers-> kvm_put_vcpu_events, so KVM_APIC_INIT bit in vcpu 1âs
pending_events got cleared, i.e., lost.
In kvm-kmod, except for pending_events, sipi_vector may also be overwritten.,
so I am not sure if there are other fields/registers in danger, i.e., those may
be modified asynchronously with vcpu thread itself.
BTW, using a sleep like following can reliably reproduce this problem, if VM
equipped with more than 2 vcpus and starting VM using libvirtd.
diff --git a/target/i386/kvm.c b/target/i386/kvm.c
index 55865db..5099290 100644
--- a/target/i386/kvm.c
+++ b/target/i386/kvm.c
@@ -2534,6 +2534,11 @@ static int kvm_put_vcpu_events(X86CPU *cpu, int level)
KVM_VCPUEVENT_VALID_NMI_PENDING | KVM_VCPUEVENT_VALID_SIPI_VECTOR;
}
+ if (CPU(cpu)->cpu_index == 1) {
+ fprintf(stderr, "vcpu 1 sleep!!!!\n");
+ sleep(10);
+ }
+
return kvm_vcpu_ioctl(CPU(cpu), KVM_SET_VCPU_EVENTS, &events);
}
On 2017/3/20 22:21, Herongguang (Stephen) wrote:
Hi,
We encountered a problem that when a domain starts, seabios failed to online a
vCPU.
After investigation, we found that the reason is in kvm-kmod, KVM_APIC_INIT bit
in
vcpu->arch.apic->pending_events was overwritten by qemu, and thus an INIT IPI
sent
to AP was lost. Qemu does this since libvirtd sends a âquery-cpusâ qmp command
to qemu
on VM start.
In qemu, qmp_query_cpus-> cpu_synchronize_state-> kvm_cpu_synchronize_state->
do_kvm_cpu_synchronize_state, qemu gets registers/vcpu_events from kvm-kmod and
sets cpu->kvm_vcpu_dirty to true, and vcpu thread in qemu will call
kvm_arch_put_registers if cpu->kvm_vcpu_dirty is true, thus pending_events is
overwritten by qemu.
I think there is no need for qemu to set cpu->kvm_vcpu_dirty to true after
âquery-cpusâ,
and kvm-kmod should not clear KVM_APIC_INIT unconditionally. And I am not sure
whether
it is OK for qemu to set cpu->kvm_vcpu_dirty in do_kvm_cpu_synchronize_state in
each caller.
Whatâs your opinion?
On 20/03/2017 15:21, Herongguang (Stephen) wrote:
>
>
We encountered a problem that when a domain starts, seabios failed to
>
online a vCPU.
>
>
After investigation, we found that the reason is in kvm-kmod,
>
KVM_APIC_INIT bit in
>
vcpu->arch.apic->pending_events was overwritten by qemu, and thus an
>
INIT IPI sent
>
to AP was lost. Qemu does this since libvirtd sends a âquery-cpusâ qmp
>
command to qemu
>
on VM start.
>
>
In qemu, qmp_query_cpus-> cpu_synchronize_state->
>
kvm_cpu_synchronize_state->
>
do_kvm_cpu_synchronize_state, qemu gets registers/vcpu_events from
>
kvm-kmod and
>
sets cpu->kvm_vcpu_dirty to true, and vcpu thread in qemu will call
>
kvm_arch_put_registers if cpu->kvm_vcpu_dirty is true, thus
>
pending_events is
>
overwritten by qemu.
>
>
I think there is no need for qemu to set cpu->kvm_vcpu_dirty to true
>
after âquery-cpusâ,
>
and kvm-kmod should not clear KVM_APIC_INIT unconditionally. And I am
>
not sure whether
>
it is OK for qemu to set cpu->kvm_vcpu_dirty in
>
do_kvm_cpu_synchronize_state in each caller.
>
>
Whatâs your opinion?
Hi Rongguang,
sorry for the late response.
Where exactly is KVM_APIC_INIT dropped? kvm_get_mp_state does clear the
bit, but the result of the INIT is stored in mp_state.
kvm_get_vcpu_events is called after kvm_get_mp_state; it retrieves
KVM_APIC_INIT in events.smi.latched_init and kvm_set_vcpu_events passes
it back. Maybe it should ignore events.smi.latched_init if not in SMM,
but I would like to understand the exact sequence of events.
Thanks,
paolo
On 2017/4/6 0:16, Paolo Bonzini wrote:
On 20/03/2017 15:21, Herongguang (Stephen) wrote:
We encountered a problem that when a domain starts, seabios failed to
online a vCPU.
After investigation, we found that the reason is in kvm-kmod,
KVM_APIC_INIT bit in
vcpu->arch.apic->pending_events was overwritten by qemu, and thus an
INIT IPI sent
to AP was lost. Qemu does this since libvirtd sends a âquery-cpusâ qmp
command to qemu
on VM start.
In qemu, qmp_query_cpus-> cpu_synchronize_state->
kvm_cpu_synchronize_state->
do_kvm_cpu_synchronize_state, qemu gets registers/vcpu_events from
kvm-kmod and
sets cpu->kvm_vcpu_dirty to true, and vcpu thread in qemu will call
kvm_arch_put_registers if cpu->kvm_vcpu_dirty is true, thus
pending_events is
overwritten by qemu.
I think there is no need for qemu to set cpu->kvm_vcpu_dirty to true
after âquery-cpusâ,
and kvm-kmod should not clear KVM_APIC_INIT unconditionally. And I am
not sure whether
it is OK for qemu to set cpu->kvm_vcpu_dirty in
do_kvm_cpu_synchronize_state in each caller.
Whatâs your opinion?
Hi Rongguang,
sorry for the late response.
Where exactly is KVM_APIC_INIT dropped? kvm_get_mp_state does clear the
bit, but the result of the INIT is stored in mp_state.
It's dropped in KVM_SET_VCPU_EVENTS, see below.
kvm_get_vcpu_events is called after kvm_get_mp_state; it retrieves
KVM_APIC_INIT in events.smi.latched_init and kvm_set_vcpu_events passes
it back. Maybe it should ignore events.smi.latched_init if not in SMM,
but I would like to understand the exact sequence of events.
time0:
vcpu1:
qmp_query_cpus-> cpu_synchronize_state-> kvm_cpu_synchronize_state->
> do_kvm_cpu_synchronize_state(and set vcpu1's cpu->kvm_vcpu_dirty to true)->
kvm_arch_get_registers(KVM_APIC_INIT bit in vcpu->arch.apic->pending_events was not set)
time1:
vcpu0:
send INIT-SIPI to all AP->(in vcpu 0's context)__apic_accept_irq(KVM_APIC_INIT bit
in vcpu1's arch.apic->pending_events is set)
time2:
vcpu1:
kvm_cpu_exec->(if cpu->kvm_vcpu_dirty is
true)kvm_arch_put_registers->kvm_put_vcpu_events(overwritten KVM_APIC_INIT bit in
vcpu->arch.apic->pending_events!)
So it's a race between vcpu1 get/put registers with kvm/other vcpus changing
vcpu1's status/structure fields in the mean time, I am in worry of if there are
other fields may be overwritten,
sipi_vector is one.
also see:
https://www.mail-archive.com/address@hidden/msg438675.html
Thanks,
paolo
.
Hi Paolo,
What's your opinion about this patch? We found it just before finishing patches
for the past two days.
Thanks,
-Gonglei
>
-----Original Message-----
>
From: address@hidden [
mailto:address@hidden
On
>
Behalf Of Herongguang (Stephen)
>
Sent: Thursday, April 06, 2017 9:47 AM
>
To: Paolo Bonzini; address@hidden; address@hidden;
>
address@hidden; address@hidden; address@hidden;
>
wangxin (U); Huangweidong (C)
>
Subject: Re: [BUG/RFC] INIT IPI lost when VM starts
>
>
>
>
On 2017/4/6 0:16, Paolo Bonzini wrote:
>
>
>
> On 20/03/2017 15:21, Herongguang (Stephen) wrote:
>
>> We encountered a problem that when a domain starts, seabios failed to
>
>> online a vCPU.
>
>>
>
>> After investigation, we found that the reason is in kvm-kmod,
>
>> KVM_APIC_INIT bit in
>
>> vcpu->arch.apic->pending_events was overwritten by qemu, and thus an
>
>> INIT IPI sent
>
>> to AP was lost. Qemu does this since libvirtd sends a âquery-cpusâ qmp
>
>> command to qemu
>
>> on VM start.
>
>>
>
>> In qemu, qmp_query_cpus-> cpu_synchronize_state->
>
>> kvm_cpu_synchronize_state->
>
>> do_kvm_cpu_synchronize_state, qemu gets registers/vcpu_events from
>
>> kvm-kmod and
>
>> sets cpu->kvm_vcpu_dirty to true, and vcpu thread in qemu will call
>
>> kvm_arch_put_registers if cpu->kvm_vcpu_dirty is true, thus
>
>> pending_events is
>
>> overwritten by qemu.
>
>>
>
>> I think there is no need for qemu to set cpu->kvm_vcpu_dirty to true
>
>> after âquery-cpusâ,
>
>> and kvm-kmod should not clear KVM_APIC_INIT unconditionally. And I am
>
>> not sure whether
>
>> it is OK for qemu to set cpu->kvm_vcpu_dirty in
>
>> do_kvm_cpu_synchronize_state in each caller.
>
>>
>
>> Whatâs your opinion?
>
> Hi Rongguang,
>
>
>
> sorry for the late response.
>
>
>
> Where exactly is KVM_APIC_INIT dropped? kvm_get_mp_state does clear
>
the
>
> bit, but the result of the INIT is stored in mp_state.
>
>
It's dropped in KVM_SET_VCPU_EVENTS, see below.
>
>
>
>
> kvm_get_vcpu_events is called after kvm_get_mp_state; it retrieves
>
> KVM_APIC_INIT in events.smi.latched_init and kvm_set_vcpu_events passes
>
> it back. Maybe it should ignore events.smi.latched_init if not in SMM,
>
> but I would like to understand the exact sequence of events.
>
>
time0:
>
vcpu1:
>
qmp_query_cpus-> cpu_synchronize_state-> kvm_cpu_synchronize_state->
>
> do_kvm_cpu_synchronize_state(and set vcpu1's cpu->kvm_vcpu_dirty to
>
true)-> kvm_arch_get_registers(KVM_APIC_INIT bit in
>
vcpu->arch.apic->pending_events was not set)
>
>
time1:
>
vcpu0:
>
send INIT-SIPI to all AP->(in vcpu 0's
>
context)__apic_accept_irq(KVM_APIC_INIT bit in vcpu1's
>
arch.apic->pending_events is set)
>
>
time2:
>
vcpu1:
>
kvm_cpu_exec->(if cpu->kvm_vcpu_dirty is
>
true)kvm_arch_put_registers->kvm_put_vcpu_events(overwritten
>
KVM_APIC_INIT bit in vcpu->arch.apic->pending_events!)
>
>
So it's a race between vcpu1 get/put registers with kvm/other vcpus changing
>
vcpu1's status/structure fields in the mean time, I am in worry of if there
>
are
>
other fields may be overwritten,
>
sipi_vector is one.
>
>
also see:
>
https://www.mail-archive.com/address@hidden/msg438675.html
>
>
> Thanks,
>
>
>
> paolo
>
>
>
> .
>
>
>
2017-11-20 06:57+0000, Gonglei (Arei):
>
Hi Paolo,
>
>
What's your opinion about this patch? We found it just before finishing
>
patches
>
for the past two days.
I think your case was fixed by f4ef19108608 ("KVM: X86: Fix loss of
pending INIT due to race"), but that patch didn't fix it perfectly, so
maybe you're hitting a similar case that happens in SMM ...
>
> -----Original Message-----
>
> From: address@hidden [
mailto:address@hidden
On
>
> Behalf Of Herongguang (Stephen)
>
> On 2017/4/6 0:16, Paolo Bonzini wrote:
>
> > Hi Rongguang,
>
> >
>
> > sorry for the late response.
>
> >
>
> > Where exactly is KVM_APIC_INIT dropped? kvm_get_mp_state does clear
>
> the
>
> > bit, but the result of the INIT is stored in mp_state.
>
>
>
> It's dropped in KVM_SET_VCPU_EVENTS, see below.
>
>
>
> >
>
> > kvm_get_vcpu_events is called after kvm_get_mp_state; it retrieves
>
> > KVM_APIC_INIT in events.smi.latched_init and kvm_set_vcpu_events passes
>
> > it back. Maybe it should ignore events.smi.latched_init if not in SMM,
>
> > but I would like to understand the exact sequence of events.
>
>
>
> time0:
>
> vcpu1:
>
> qmp_query_cpus-> cpu_synchronize_state-> kvm_cpu_synchronize_state->
>
> > do_kvm_cpu_synchronize_state(and set vcpu1's cpu->kvm_vcpu_dirty to
>
> true)-> kvm_arch_get_registers(KVM_APIC_INIT bit in
>
> vcpu->arch.apic->pending_events was not set)
>
>
>
> time1:
>
> vcpu0:
>
> send INIT-SIPI to all AP->(in vcpu 0's
>
> context)__apic_accept_irq(KVM_APIC_INIT bit in vcpu1's
>
> arch.apic->pending_events is set)
>
>
>
> time2:
>
> vcpu1:
>
> kvm_cpu_exec->(if cpu->kvm_vcpu_dirty is
>
> true)kvm_arch_put_registers->kvm_put_vcpu_events(overwritten
>
> KVM_APIC_INIT bit in vcpu->arch.apic->pending_events!)
>
>
>
> So it's a race between vcpu1 get/put registers with kvm/other vcpus changing
>
> vcpu1's status/structure fields in the mean time, I am in worry of if there
>
> are
>
> other fields may be overwritten,
>
> sipi_vector is one.
Fields that can be asynchronously written by other VCPUs (like SIPI,
NMI) must not be SET if other VCPUs were not paused since the last GET.
(Looking at the interface, we can currently lose pending SMI.)
INIT is one of the restricted fields, but the API unconditionally
couples SMM with latched INIT, which means that we can lose an INIT if
the VCPU is in SMM mode -- do you see SMM in kvm_vcpu_events?
Thanks.
|