Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-12 | Merge release-20200804.0-67-gd797f2666 (automated) | gVisor bot | |
2020-08-12 | Merge release-20200804.0-66-gc5ed39016 (automated) | gVisor bot | |
2020-08-11 | Merge release-20200804.0-64-gc92242c89 (automated) | gVisor bot | |
2020-08-11 | Merge release-20200804.0-63-g49947d2eb (automated) | gVisor bot | |
2020-08-11 | Merge release-20200804.0-62-g89f3197fc (automated) | gVisor bot | |
2020-08-10 | Merge release-20200804.0-60-g0a8ae4b32 (automated) | gVisor bot | |
2020-08-10 | Merge release-20200804.0-59-ga1af46c20 (automated) | gVisor bot | |
2020-08-10 | Merge release-20200804.0-58-ga88cf5a2e (automated) | gVisor bot | |
2020-08-10 | Merge release-20200804.0-57-g7ba5e3558 (automated) | gVisor bot | |
2020-08-10 | Merge release-20200804.0-56-g9ac71dc78 (automated) | gVisor bot | |
2020-08-10 | Merge release-20200804.0-55-g79e7d0b06 (automated) | gVisor bot | |
2020-08-09 | Merge release-20200804.0-54-gb404b5c25 (automated) | gVisor bot | |
2020-08-08 | Merge release-20200804.0-53-g13a8ae81b (automated) | gVisor bot | |
2020-08-07 | Add context.FullStateChanged() | Andrei Vagin | |
It indicates that the Sentry has changed the state of the thread and next calls of PullFullState() has to do nothing. PiperOrigin-RevId: 325567415 | |||
2020-08-08 | Merge release-20200804.0-52-g3be26a271 (automated) | gVisor bot | |
2020-08-08 | Merge release-20200804.0-51-g977618c8e (automated) | gVisor bot | |
2020-08-08 | Merge release-20200804.0-49-g343661770 (automated) | gVisor bot | |
2020-08-08 | Merge release-20200804.0-48-g8f6d576af (automated) | gVisor bot | |
2020-08-07 | Merge pull request #3069 from lubinszARM:pr_serr_injection2 | gVisor bot | |
PiperOrigin-RevId: 325546308 | |||
2020-08-04 | Merge release-20200622.1-318-g25798f214 (automated) | gVisor bot | |
2020-08-03 | Add callbacks to support lazy loading/restoring thread states | Andrei Vagin | |
PiperOrigin-RevId: 324748508 | |||
2020-07-31 | Merge release-20200622.1-304-gd5b31458a (automated) | gVisor bot | |
2020-07-31 | Merge pull request #3300 from lubinszARM:pr_fpsimd_usr | gVisor bot | |
PiperOrigin-RevId: 324309862 | |||
2020-07-31 | Merge release-20200622.1-300-ga7d9aa6d5 (automated) | gVisor bot | |
2020-07-30 | Merge pull request #3448 from lubinszARM:pr_tls_tests | gVisor bot | |
PiperOrigin-RevId: 324127810 | |||
2020-07-30 | Merge pull request #3028 from lubinszARM:pr_kvm_hello1 | gVisor bot | |
PiperOrigin-RevId: 324125938 | |||
2020-07-30 | add usr-tls test cases for Arm64 | Bin Lu | |
Signed-off-by: Bin Lu <bin.lu@arm.com> | |||
2020-07-30 | supporting sError injection step 2 on Arm64 | Bin Lu | |
I disabled DAIF(DEBUG, sError, IRQ, FIQ) in guest kernel mode, and enabled them in guest user mode. So, I can make sure all DAIF-s come from guest user mode, and then the case 'TestBounceStress' can passed on Arm64. Test steps: 1, cd pkg/sentry/platform/kvm 2, bazel test kvm_test --strip=never --test_output=streamed Signed-off-by: Bin Lu <bin.lu@arm.com> | |||
2020-07-29 | load/store user fpsimd on Arm64 | Bin Lu | |
full context switch: add fpsimd load/store support to container application. Signed-off-by: Bin Lu <bin.lu@arm.com> | |||
2020-07-27 | Merge release-20200622.1-245-gb0eafc745 (automated) | gVisor bot | |
2020-07-27 | Merge release-20200622.1-243-g1b2006083 (automated) | gVisor bot | |
2020-07-27 | Merge pull request #3201 from lubinszARM:pr_sys64_2 | gVisor bot | |
PiperOrigin-RevId: 323456118 | |||
2020-07-27 | Merge pull request #3299 from lubinszARM:pr_asid | gVisor bot | |
PiperOrigin-RevId: 323455097 | |||
2020-07-27 | Merge release-20200622.1-232-gf347a578b (automated) | gVisor bot | |
2020-07-27 | Move platform.File in memmap | Andrei Vagin | |
The subsequent systrap changes will need to import memmap from the platform package. PiperOrigin-RevId: 323409486 | |||
2020-07-26 | updated the functions to distinguish IA/DA for Arm64 | Bin Lu | |
We need to correctly distinguish instruction_abort/data_abort for mem_abort@Arm64. So, EC/WNR/FSC in esr_el1 should be checked. Signed-off-by: Bin Lu <bin.lu@arm.com> | |||
2020-07-26 | allow guest user applications read CNTVCT_EL0/CNTFRQ_EL0 | Bin Lu | |
At present, when doing syscall_kvm test, we need to enable the function of ESR_ELx_SYS64_ISS_SYS_CNTVCT/ESR_ELx_SYS64_ISS_SYS_CNTFRQ to successfully pass the test. I set CNTKCTL_EL1.EL0VCTEN==1/CNTKCTL_EL1.EL0PCTEN==1, so that the related cases can passed. Signed-off-by: Bin Lu <bin.lu@arm.com> | |||
2020-07-23 | Merge release-20200622.1-201-g4eb3c8c7e (automated) | gVisor bot | |
2020-07-23 | kvm-tls-2:add the preservation of user-TLS in the Arm64 kvm platform | lubinszARM | |
This patch load/save TLS for the container application. Related issue: full context-switch supporting for Arm64 #1238 COPYBARA_INTEGRATE_REVIEW=https://github.com/google/gvisor/pull/2761 from lubinszARM:pr_tls_2 cb5dbca1c9c3f378002406da7a58887f9b5032b3 PiperOrigin-RevId: 322887044 | |||
2020-07-20 | add asid support to Arm64 | Bin Lu | |
Support the operation of asid, so that I can optimize tlb performance by combining with nG. Signed-off-by: Bin Lu <bin.lu@arm.com> | |||
2020-07-13 | Merge pull request #3200 from lubinszARM:pr_kvm_ut_1 | gVisor bot | |
PiperOrigin-RevId: 321060717 | |||
2020-07-13 | Merge release-20200622.1-100-g505b4f5e5 (automated) | gVisor bot | |
2020-07-10 | Split the kvm ut test cases to correspond to different platforms | Bin Lu | |
Split the kvm ut test cases to pass unit-tests on Arm64. I will add the tls and full-context test cases for Arm64 later. Signed-off-by: Bin Lu <bin.lu@arm.com> | |||
2020-07-08 | Merge release-20200622.1-81-gf3fa43cf2 (automated) | gVisor bot | |
2020-07-08 | Merge release-20200622.1-80-ge1f11dea2 (automated) | gVisor bot | |
2020-07-03 | allow guest user applications read ctr_el0 on Arm64 | Bin Lu | |
At present, when doing syscall_kvm test, we need to enable the function of ESR_ELx_SYS64_ISS_SYS_CTR_READ to successfully pass the test. I set SCTLR_EL1.UCT==1, so that the related cases can passed. Signed-off-by: Bin Lu <bin.lu@arm.com> | |||
2020-06-24 | Merge release-20200608.0-119-g364ac92ba (automated) | gVisor bot | |
2020-06-23 | Merge release-20200608.0-108-g44dd65ce1 (automated) | gVisor bot | |
2020-06-16 | support sError injection in kvm module on Arm64 | Bin Lu | |
There are 3 types of asynchronous exceptions on Arm64: sError, IRQ, FIQ. In this case, we use the sError injection method in bluepillHandler to force the guest to quit. So that the test case of "TestBounce" can be passed on Arm64. Signed-off-by: Bin Lu <bin.lu@arm.com> | |||
2020-06-11 | Merge release-20200522.0-127-gb436b9717 (automated) | gVisor bot | |