-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathfilemap.go
51 lines (44 loc) · 1.32 KB
/
filemap.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package main
import (
"fmt"
"log"
"os"
"os/exec"
"strconv"
"syscall"
)
func main() {
pid := os.Getpid()
fmt.Println("*** testfileのメモリマップ前のプロセスの仮想アドレス空間 ***")
command := exec.Command("cat", "/proc/"+strconv.Itoa(pid)+"/maps")
command.Stdout = os.Stdout
err := command.Run()
if err != nil {
log.Fatal("catの実行に失敗しました")
}
file, err := os.OpenFile("testfile", os.O_RDWR, 0)
if err != nil {
log.Fatal("testfileを開けませんでした")
}
defer file.Close()
// mmap()システムコールの呼び出しによって1GBのメモリ領域を獲得
data, err := syscall.Mmap(int(file.Fd()), 0, 5, syscall.PROT_READ|syscall.PROT_WRITE, syscall.MAP_SHARED)
if err != nil {
log.Fatal("mmap()に失敗しました")
}
fmt.Println("")
fmt.Printf("testfileをマップしたアドレス: 0x%p\n", &data[0])
fmt.Println("")
fmt.Println("*** testfileのメモリマップ後のプロセスの仮想アドレス空間 ***")
command = exec.Command("cat", "/proc/"+strconv.Itoa(pid)+"/maps")
command.Stdout = os.Stdout
err = command.Run()
if err != nil {
log.Fatal("catの実行に失敗しました")
}
// マップしたファイルの中身を書き換える
replaceBytes := []byte("HELLO")
for i, _ := range data {
data[i] = replaceBytes[i]
}
}