RISS 학술연구정보서비스

검색
다국어 입력

http://chineseinput.net/에서 pinyin(병음)방식으로 중국어를 변환할 수 있습니다.

변환된 중국어를 복사하여 사용하시면 됩니다.

예시)
  • 中文 을 입력하시려면 zhongwen을 입력하시고 space를누르시면됩니다.
  • 北京 을 입력하시려면 beijing을 입력하시고 space를 누르시면 됩니다.
닫기
    인기검색어 순위 펼치기

    RISS 인기검색어

      Retrofitting the address sanitizer for rust by program analysis

      한글로보기

      https://www.riss.kr/link?id=T16841172

      • 0

        상세조회
      • 0

        다운로드
      서지정보 열기
      • 내보내기
      • 내책장담기
      • 공유하기
      • 오류접수

      부가정보

      국문 초록 (Abstract)

      Rust는 강력한 타입과 메모리 안전성 보장으로 안전한 시스템 프로그래밍 언어로서 인기를 얻고 있다. 그러나 Rust도 완벽한 메모리 안전을 보장하지는 않는다. "unsafe" 키워드는 보안 대신 유연성을 위해 Rust의 복잡한 제약을 일시적으로 벗어날 수 있도록 한다. 또한, Rust 프로그램은 종종 C/C++ 와 같은 안전하지 않은 언어로 작성된 다양한 코드베이스 구성요소를 포함한다. 이러한 이기종 언어 간의 상호작용은 Unsafe 키워드로 작성된 코드에 더해 Rust의 안전성을 위협한다. RustSan은 Rust 프로그램의 효율적인 테스팅을 위한 AddressSanitizer (ASan)을 최적화하는 디자인이다. 우리는 Rust 기반 프로그램에서 ASan으로 보호된 코드 상당 부분이 Rust의 기본적인 보호에 의해 보호되고 있고 이미 안전한 코드여서 ASan의 보호가 필요 없음을 확인했다. 이를 기반으로 RustSan은 Rust의 언어적 보안을 깨트릴 수 있는 가능성이 있는 코드를 식별하고 이 부분들만 ASan으로 보호한다. 평가에서 RustSan은 sanitizer 오버헤드를 효율적으로 감소시키는 것을 볼 수 있다. RustSan을 사용하여 벤치마크를 수행한 결과, 기존의 ASan에 대비해 일반적인 Rust 프로그램에서 평균 42.2%의 실행 시간 감소를 달성한다. 또한, RustSan의 sanity check의 삭제에 대한 정확성은 Rust 프로그램의 CVE 재현을 통해 검증되었다.
      번역하기

      Rust는 강력한 타입과 메모리 안전성 보장으로 안전한 시스템 프로그래밍 언어로서 인기를 얻고 있다. 그러나 Rust도 완벽한 메모리 안전을 보장하지는 않는다. "unsafe" 키워드는 보안 대신 유...

      Rust는 강력한 타입과 메모리 안전성 보장으로 안전한 시스템 프로그래밍 언어로서 인기를 얻고 있다. 그러나 Rust도 완벽한 메모리 안전을 보장하지는 않는다. "unsafe" 키워드는 보안 대신 유연성을 위해 Rust의 복잡한 제약을 일시적으로 벗어날 수 있도록 한다. 또한, Rust 프로그램은 종종 C/C++ 와 같은 안전하지 않은 언어로 작성된 다양한 코드베이스 구성요소를 포함한다. 이러한 이기종 언어 간의 상호작용은 Unsafe 키워드로 작성된 코드에 더해 Rust의 안전성을 위협한다. RustSan은 Rust 프로그램의 효율적인 테스팅을 위한 AddressSanitizer (ASan)을 최적화하는 디자인이다. 우리는 Rust 기반 프로그램에서 ASan으로 보호된 코드 상당 부분이 Rust의 기본적인 보호에 의해 보호되고 있고 이미 안전한 코드여서 ASan의 보호가 필요 없음을 확인했다. 이를 기반으로 RustSan은 Rust의 언어적 보안을 깨트릴 수 있는 가능성이 있는 코드를 식별하고 이 부분들만 ASan으로 보호한다. 평가에서 RustSan은 sanitizer 오버헤드를 효율적으로 감소시키는 것을 볼 수 있다. RustSan을 사용하여 벤치마크를 수행한 결과, 기존의 ASan에 대비해 일반적인 Rust 프로그램에서 평균 42.2%의 실행 시간 감소를 달성한다. 또한, RustSan의 sanity check의 삭제에 대한 정확성은 Rust 프로그램의 CVE 재현을 통해 검증되었다.

      더보기

      다국어 초록 (Multilingual Abstract)

      Rust is gaining traction as a safe systems programming language with its strong type and memory safety guarantees. However, Rust is not infallible. The "unsafe" keyword allows the programmer to temporarily escape the Rust restrictions to trade security for flexibility. Moreover, Rust programs often embed C/C++ components due to the maturity and diversity of codebases written in these unsafe languages. Such cross-language interaction threatens the security guarantees of Rust in addition to the unsafe Rust portions of programs in Rust. RustSan is a retrofitted design of AddressSanitizer (ASan) for efficient fuzzing of Rust programs. Our observation is that a significant portion of ASan-instrumented instructions in a Rust-based program is redundant when the Rust security guarantees are valid at the site. To this end, RustSan identifies and only instruments instructions that indeed may undermine Rust security guarantees. Our evaluation shows RustSan efficiently reduces the sanitizer overhead. Benchmarking among the general Rust programs with RustSan achieves an average of 42.2% execution time reduction over unmodified ASan. Also, the accuracy of RustSan’s instrumentation trimming is verified through the reproduction of CVEs in Rust programs in addition to our theoretical foundation.
      번역하기

      Rust is gaining traction as a safe systems programming language with its strong type and memory safety guarantees. However, Rust is not infallible. The "unsafe" keyword allows the programmer to temporarily escape the Rust restrictions to trade securit...

      Rust is gaining traction as a safe systems programming language with its strong type and memory safety guarantees. However, Rust is not infallible. The "unsafe" keyword allows the programmer to temporarily escape the Rust restrictions to trade security for flexibility. Moreover, Rust programs often embed C/C++ components due to the maturity and diversity of codebases written in these unsafe languages. Such cross-language interaction threatens the security guarantees of Rust in addition to the unsafe Rust portions of programs in Rust. RustSan is a retrofitted design of AddressSanitizer (ASan) for efficient fuzzing of Rust programs. Our observation is that a significant portion of ASan-instrumented instructions in a Rust-based program is redundant when the Rust security guarantees are valid at the site. To this end, RustSan identifies and only instruments instructions that indeed may undermine Rust security guarantees. Our evaluation shows RustSan efficiently reduces the sanitizer overhead. Benchmarking among the general Rust programs with RustSan achieves an average of 42.2% execution time reduction over unmodified ASan. Also, the accuracy of RustSan’s instrumentation trimming is verified through the reproduction of CVEs in Rust programs in addition to our theoretical foundation.

      더보기

      목차 (Table of Contents)

      • 제 1 장 서 론 1
      • 제 2 장 배경 및 관련연구 4
      • 2.1 AddressSanitizer 4
      • 2.1.1 Rust에서의 AddressSanitizer 5
      • 2.2 Rust Memory Safety 5
      • 제 1 장 서 론 1
      • 제 2 장 배경 및 관련연구 4
      • 2.1 AddressSanitizer 4
      • 2.1.1 Rust에서의 AddressSanitizer 5
      • 2.2 Rust Memory Safety 5
      • 2.2.1 Temporal Memory Safety 5
      • 2.2.1 Spatial Memory Safety 6
      • 제 3 장 어려움 및 설계 7
      • 3.1 Challenge and Overall Design 7
      • 3.2 Definition 8
      • 3.3 Cross-IR Analysis 10
      • 3.3.1 Unsafe Object Identification 10
      • 3.3.2 False-Safe Instruction Selection 11
      • 3.3.3 Allocation Function Identification 13
      • 3.4 Tri-state AddressSanitizer 14
      • 제 4 장 구현 및 평가 16
      • 4.1 Detection Capability 16
      • 4.2 Scalability 18
      • 4.3 Runtime Performance Becnmark 19
      • 제 5 장 결 론 22
      더보기

      분석정보

      View

      상세정보조회

      0

      Usage

      원문다운로드

      0

      대출신청

      0

      복사신청

      0

      EDDS신청

      0

      동일 주제 내 활용도 TOP

      더보기

      주제

      연도별 연구동향

      연도별 활용동향

      연관논문

      연구자 네트워크맵

      공동연구자 (7)

      유사연구자 (20) 활용도상위20명

      이 자료와 함께 이용한 RISS 자료

      나만을 위한 추천자료

      해외이동버튼