메뉴 여닫기
환경 설정 메뉴 여닫기
개인 메뉴 여닫기
로그인하지 않음
지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

Translations:BUDAlloc: Defeating Use-After-Free Bugs by Decoupling Virtual Address Management from Kernel/17/ko: 두 판 사이의 차이

noriwiki
FuzzyBot (토론 | 기여)
외부 원본에서 새 판을 가져옴
 
(차이 없음)

2024년 12월 12일 (목) 05:23 기준 최신판

이 메시지에 대한 정보 (기여)
이 메시지에 대한 설명문이 없습니다. 만약 이 메시지가 어디에 어떻게 사용되는지 알고 있다면 설명문을 작성해 다른 번역자를 도와줄 수 있습니다.
메시지 정의 (BUDAlloc: Defeating Use-After-Free Bugs by Decoupling Virtual Address Management from Kernel)
== Implementation ==
=== User-level components of BUDAlloc ===
[[파일:BUDAlloc Figure 2.png|500픽셀|가운데]]
; One-time-allocator
: OTA의 디자인은 기존 OTA들의 디자인을 따라간다. Allocation상황에서 우선 OTA는 Canonical address를 Internal allocator (BUDAlloc에서는 mimalloc)을 통해서 할당받는다. 그후, OTA는 겹치지 않는 새로운 Alias address를 할당 받아서, User-level trie메타데이터에 Alias to canonical에 대한 정보를 기록한다. Free상황에서는 이 역순으로 동작한다.

Implementation

User-level components of BUDAlloc

One-time-allocator
OTA의 디자인은 기존 OTA들의 디자인을 따라간다. Allocation상황에서 우선 OTA는 Canonical address를 Internal allocator (BUDAlloc에서는 mimalloc)을 통해서 할당받는다. 그후, OTA는 겹치지 않는 새로운 Alias address를 할당 받아서, User-level trie메타데이터에 Alias to canonical에 대한 정보를 기록한다. Free상황에서는 이 역순으로 동작한다.