huangcm
2025-02-24 69ed55dec4b2116a19e4cca4393cbc014fce5fb2
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// Copyright 2018 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
 
package prog
 
import (
   "math/rand"
   "testing"
)
 
func TestMinimize(t *testing.T) {
   tests := []struct {
       orig            string
       callIndex       int
       pred            func(*Prog, int) bool
       result          string
       resultCallIndex int
   }{
       // Predicate always returns false, so must get the same program.
       {
           "mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)\n" +
               "sched_yield()\n" +
               "pipe2(&(0x7f0000000000), 0x0)\n",
           2,
           func(p *Prog, callIndex int) bool {
               if len(p.Calls) == 0 {
                   t.Fatalf("got an empty program")
               }
               if p.Calls[len(p.Calls)-1].Meta.Name != "pipe2" {
                   t.Fatalf("last call is removed")
               }
               return false
           },
           "mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)\n" +
               "sched_yield()\n" +
               "pipe2(&(0x7f0000000000), 0x0)\n",
           2,
       },
       // Remove a call.
       {
           "mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)\n" +
               "sched_yield()\n" +
               "pipe2(&(0x7f0000000000)={0xffffffffffffffff, 0xffffffffffffffff}, 0x0)\n",
           2,
           func(p *Prog, callIndex int) bool {
               // Aim at removal of sched_yield.
               return len(p.Calls) == 2 && p.Calls[0].Meta.Name == "mmap" && p.Calls[1].Meta.Name == "pipe2"
           },
           "mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x0, 0x10, 0xffffffffffffffff, 0x0)\n" +
               "pipe2(&(0x7f0000000000), 0x0)\n",
           1,
       },
       // Remove two dependent calls.
       {
           "mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)\n" +
               "pipe2(&(0x7f0000000000)={0x0, 0x0}, 0x0)\n" +
               "sched_yield()\n",
           2,
           func(p *Prog, callIndex int) bool {
               // Aim at removal of pipe2 and then mmap.
               if len(p.Calls) == 2 && p.Calls[0].Meta.Name == "mmap" && p.Calls[1].Meta.Name == "sched_yield" {
                   return true
               }
               if len(p.Calls) == 1 && p.Calls[0].Meta.Name == "sched_yield" {
                   return true
               }
               return false
           },
           "sched_yield()\n",
           0,
       },
       // Remove a call and replace results.
       {
           "mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)\n" +
               "pipe2(&(0x7f0000000000)={<r0=>0x0, 0x0}, 0x0)\n" +
               "write(r0, &(0x7f0000000000)=\"1155\", 0x2)\n" +
               "sched_yield()\n",
           3,
           func(p *Prog, callIndex int) bool {
               return p.String() == "mmap-write-sched_yield"
           },
           "mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x0, 0x10, 0xffffffffffffffff, 0x0)\n" +
               "write(0xffffffffffffffff, &(0x7f0000000000), 0x0)\n" +
               "sched_yield()\n",
           2,
       },
       // Remove a call and replace results.
       {
           "mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)\n" +
               "r0=open(&(0x7f0000000000)=\"1155\", 0x0, 0x0)\n" +
               "write(r0, &(0x7f0000000000)=\"1155\", 0x2)\n" +
               "sched_yield()\n",
           -1,
           func(p *Prog, callIndex int) bool {
               return p.String() == "mmap-write-sched_yield"
           },
           "mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x0, 0x10, 0xffffffffffffffff, 0x0)\n" +
               "write(0xffffffffffffffff, &(0x7f0000000000), 0x0)\n" +
               "sched_yield()\n",
           -1,
       },
   }
   target, _, _ := initTest(t)
   for ti, test := range tests {
       p, err := target.Deserialize([]byte(test.orig))
       if err != nil {
           t.Fatalf("failed to deserialize original program #%v: %v", ti, err)
       }
       p1, ci := Minimize(p, test.callIndex, false, test.pred)
       res := p1.Serialize()
       if string(res) != test.result {
           t.Fatalf("minimization produced wrong result #%v\norig:\n%v\nexpect:\n%v\ngot:\n%v\n",
               ti, test.orig, test.result, string(res))
       }
       if ci != test.resultCallIndex {
           t.Fatalf("minimization broke call index #%v: got %v, want %v",
               ti, ci, test.resultCallIndex)
       }
   }
}
 
func TestMinimizeRandom(t *testing.T) {
   target, rs, iters := initTest(t)
   iters /= 10 // Long test.
   for i := 0; i < iters; i++ {
       for _, crash := range []bool{false, true} {
           p := target.Generate(rs, 5, nil)
           Minimize(p, len(p.Calls)-1, crash, func(p1 *Prog, callIndex int) bool {
               return false
           })
           Minimize(p, len(p.Calls)-1, crash, func(p1 *Prog, callIndex int) bool {
               return true
           })
       }
   }
}
 
func TestMinimizeCallIndex(t *testing.T) {
   target, rs, iters := initTest(t)
   r := rand.New(rs)
   for i := 0; i < iters; i++ {
       p := target.Generate(rs, 5, nil)
       ci := r.Intn(len(p.Calls))
       p1, ci1 := Minimize(p, ci, r.Intn(2) == 0, func(p1 *Prog, callIndex int) bool {
           return r.Intn(2) == 0
       })
       if ci1 < 0 || ci1 >= len(p1.Calls) || p.Calls[ci].Meta.Name != p1.Calls[ci1].Meta.Name {
           t.Fatalf("bad call index after minimization")
       }
   }
}