-
Notifications
You must be signed in to change notification settings - Fork 98
EINCVIRTCHILD
SGX INSTRUCTION REFERENCES EINCVIRTCHILD — Increment VIRTCHILDCNT in SECS
Opcode/ Instruction | Op/En | 64/32 bit Mode Support | CPUID Feature Flag | Description |
EAX = 01H ENCLV[EINCVIRTCHILD] | IR | V/V | EAX[5] | This leaf function increments the SECS VIRTCHILDCNT field. |
Op/En | EAX | RBX | RCX |
IR | EINCVIRTCHILD (In) | Address of an enclave page (In) | Address of an SECS page (In) |
This instruction increments the SECS VIRTCHILDCNT field. This instruction can only be executed when the current privilege level is 0.
The content of RCX is an effective address of an EPC page. The DS segment is used to create a linear address. Segment override is not supported.
EINCVIRTCHILD Memory Parameter Semantics
EPCPAGE | SECS |
Read/Write access permitted by Non Enclave | Read access permitted by Enclave |
The instruction faults if any of the following:
EINCVIRTCHILD Faulting Conditions
A memory operand effective address is outside the DS segment limit (32b mode). | A page fault occurs in accessing memory operands. |
DS segment is unusable (32b mode). | RBX does not refer to an enclave page (REG, TCS, TRIM, SECS). |
A memory address is in a non-canonical form (64b mode). | RCX does not refer to an SECS page. |
A memory operand is not properly aligned. | RBX does not refer to an enclave page associated with SECS referenced in RCX. |
Concurrency Restrictions
Table 40-76. Base Concurrency Restrictions of EINCVIRTCHILD
Leaf | Parameter | Base Concurrency Restrictions | ||
Access | On Conflict | SGX_CONFLICT VM Exit Qualification | ||
EINCVIRTCHILD | Target [DS:RBX] | Shared | SGX_EPC_PAGE_ CONFLICT | |
SECS [DS:RCX] | Concurrent |
Vol. 3D 40-133 SGX INSTRUCTION REFERENCES
Table 40-77. Additional Concurrency Restrictions of EINCVIRTCHILD
Leaf | Parameter | Additional Concurrency Restrictions | |||||
vs. EACCEPT, EACCEPTCOPY, EMODPE, EMODPR, EMODT | vs. EADD, EEXTEND, EINIT | vs. ETRACK, ETRACKC | |||||
Access | On Conflict | Access | On Conflict | Access | On Conflict | ||
EINCVIRTCHILD | Target [DS:RBX] Concurrent | Concurrent | Concurrent | ||||
SECS [DS:RCX] | Concurrent | Concurrent | Concurrent |
<table>
<tr>
<td><b>Name</b></td>
<td><b>Type</b></td>
<td><b>Size (bits)</b></td>
<td><b>Description</b></td>
</tr>
<tr>
<td>TMP_SECS</td>
<td>Physical Address</td>
<td>64</td>
<td>Physical address of the SECS of the page being modified.</td>
</tr>
<tr>
<td>TMP_VIRTCHILDCNT</td>
<td>Integer</td>
<td>64</td>
<td>Number of virtual child pages.</td>
</tr>
</table>
<table>
<tr>
<td><b>Error</b></td>
<td><b>Value</b></td>
<td><b>Description</b></td>
</tr>
<tr>
<td>No Error</td>
<td>0</td>
<td>EINCVIRTCHILD Successful.</td>
</tr>
<tr>
<td>SGX_EPC_PAGE_CONFLICT</td>
<td></td>
<td>Failure due to concurrent operation of another SGX instruction.</td>
</tr>
<tr>
<td>SGX_INVALID_COUNTER</td>
<td></td>
<td>Attempt to increment counter that will produce an overflow.</td>
</tr>
</table>
(* check alignment of DS:RBX *)
IF (DS:RBX is not 4K aligned) THEN
#GP(0); FI;
(* check DS:RBX is an linear address of an EPC page *)
IF (DS:RBX does not resolve within an EPC) THEN
#PF(DS:RBX, PFEC.SGX); FI;
(* check DS:RCX is an linear address of an EPC page *)
IF (DS:RCX does not resolve within an EPC) THEN
#PF(DS:RCX, PFEC.SGX); FI;
(* Check the EPCPAGE for concurrency *)
IF (EPCPAGE is being modified) THEN
RFLAGS.ZF = 1;
RAX = SGX_EPC_PAGE_CONFLICT;
goto DONE;
FI;
(* check that the EPC page is valid *)
IF (EPCM(DS:RBX).VALID = 0) THEN
#PF(DS:RBX, PFEC.SGX); FI;
(* check that the EPC page has the correct type and that the back pointer matches the pointer passed as the pointer to parent *)
IF ((EPCM(DS:RBX).PAGE_TYPE = PT_REG) or
(EPCM(DS:RBX).PAGE_TYPE = PT_TCS) or
40-134 Vol. 3D
SGX INSTRUCTION REFERENCES
(EPCM(DS:RBX).PAGE_TYPE = PT_TRIM) )
THEN
(* get the SECS of DS:RBX *)
TMP_SECS ← Address of SECS for (DS:RBX);
ELSE IF (EPCM(DS:RBX).PAGE_TYPE = PT_SECS) THEN
(* get the physical address of DS:RBX *)
TMP_SECS ← Physical_Address(DS:RBX);
ELSE
(* EINCVIRTCHILD called on page of incorrect type *)
#PF(DS:RBX, PFEC.SGX); FI;
IF (TMP_SECS ≠ Physical_Address(DS:RCX)) THEN
#GP(0); FI;
(* Atomically increment virtchild counter and check for overflow *)
Locked_Increment(SECS(TMP_SECS).VIRTCHILDCNT);
IF (There was an overflow) THEN
Locked_Decrement(SECS(TMP_SECS).VIRTCHILDCNT);
RFLAGS.ZF← 1;
RAX ← SGX_INVALID_COUNTER;
goto DONE;
FI;
RFLAGS.ZF ← 0;
RAX ← 0;
DONE:
(* clear flags *)
RFLAGS.CF ← 0;
RFLAGS.PF ← 0;
RFLAGS.AF ← 0;
RFLAGS.OF ← 0;
RFLAGS.SF ← 0;
ZF is set if EINCVIRTCHILD fails due to concurrent operation with another SGX instruction, or if there is a VIRT- CHILDCNT underflow; otherwise cleared.
#GP(0) If a memory operand effective address is outside the DS segment limit. If DS segment is unusable. If a memory operand is not properly aligned. RBX does not refer to an enclave page associated with SECS referenced in RCX.
#PF(error code) If a page fault occurs in accessing memory operands. If RBX does not refer to an enclave page (REG, TCS, TRIM, SECS). If RCX does not refer to an SECS page.
Vol. 3D 40-135 SGX INSTRUCTION REFERENCES
#GP(0) If a memory address is in a non-canonical form. If a memory operand is not properly aligned. RBX does not refer to an enclave page associated with SECS referenced in RCX.
#PF(error code) If a page fault occurs in accessing memory operands. If RBX does not refer to an enclave page (REG, TCS, TRIM, SECS). If RCX does not refer to an SECS page.
40-136 Vol. 3D
Source: Intel® Architecture Software Developer's Manual (May 2018)
Generated: 5-6-2018