如何从 Rust 中的内存缓冲区执行原始指令? [英] How to execute raw instructions from a memory buffer in Rust?

查看:46
本文介绍了如何从 Rust 中的内存缓冲区执行原始指令?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试制作一个可执行的内存缓冲区,然后在 Rust 中执行它.我已经一路走来,直到我需要将原始可执行字节转换为代码/指令.您可以在下面的 C 中看到一个工作示例.

I'm attempting to make a buffer of memory executable, then execute it in Rust. I've gotten all the way until I need to cast the raw executable bytes as code/instructions. You can see a working example in C below.

额外的细节:

  • Rust 1.34
  • Linux
  • CC 8.2.1
unsigned char code[] = {
0x55,                           //    push   %rbp
0x48, 0x89, 0xe5,               //    mov    %rsp,%rbp
0xb8, 0x37, 0x00, 0x00, 0x00,   //    mov    $0x37,%eax
0xc9,                           //    leaveq
0xc3                            //    retq
};


void reflect(const unsigned char *code) {
  void *buf;

  /* copy code to executable buffer */    
  buf = mmap(0, sizeof(code), PROT_READ|PROT_WRITE|PROT_EXEC,MAP_PRIVATE|MAP_ANON,-1,0);
  memcpy(buf, code, sizeof(code));

  ((void (*) (void))buf)();
}

extern crate mmap;

use mmap::{MapOption, MemoryMap};

unsafe fn reflect(instructions: &[u8]) {
    let map = MemoryMap::new(
        instructions.len(),
        &[
            MapOption::MapAddr(0 as *mut u8),
            MapOption::MapOffset(0),
            MapOption::MapFd(-1),
            MapOption::MapReadable,
            MapOption::MapWritable,
            MapOption::MapExecutable,
            MapOption::MapNonStandardFlags(libc::MAP_ANON),
            MapOption::MapNonStandardFlags(libc::MAP_PRIVATE),
        ],
    )
    .unwrap();

    std::ptr::copy(instructions.as_ptr(), map.data(), instructions.len());
    // How to cast into extern "C" fn() ?
}

推荐答案

使用 mem::transmute 将原始指针转换为函数指针类型.

Use mem::transmute to cast a raw pointer to a function pointer type.

use std::mem;

let func: unsafe extern "C" fn() = mem::transmute(map.data());
func();

这篇关于如何从 Rust 中的内存缓冲区执行原始指令?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆