aboutsummaryrefslogtreecommitdiff
path: root/compiler_wrapper/pie_flags_test.go
blob: 77a0fc8fc1c4b82bed609f608ff62b0562357a2d (plain)
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
// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package main

import (
	"testing"
)

func TestAddPieFlags(t *testing.T) {
	withTestContext(t, func(ctx *testContext) {
		initPieConfig(ctx.cfg)
		cmd := ctx.must(callCompiler(ctx, ctx.cfg,
			ctx.newCommand(gccX86_64, mainCc)))
		if err := verifyArgOrder(cmd, "-pie", mainCc); err != nil {
			t.Error(err)
		}
		if err := verifyArgOrder(cmd, "-fPIE", mainCc); err != nil {
			t.Error(err)
		}
	})
}

func TestOmitPieFlagsWhenNoPieArgGiven(t *testing.T) {
	withTestContext(t, func(ctx *testContext) {
		initPieConfig(ctx.cfg)
		cmd := ctx.must(callCompiler(ctx, ctx.cfg,
			ctx.newCommand(gccX86_64, "-nopie", mainCc)))
		if err := verifyArgCount(cmd, 0, "-nopie"); err != nil {
			t.Error(err)
		}
		if err := verifyArgCount(cmd, 0, "-pie"); err != nil {
			t.Error(err)
		}
		if err := verifyArgCount(cmd, 0, "-fPIE"); err != nil {
			t.Error(err)
		}

		cmd = ctx.must(callCompiler(ctx, ctx.cfg,
			ctx.newCommand(gccX86_64, "-fno-pie", mainCc)))
		if err := verifyArgCount(cmd, 0, "-pie"); err != nil {
			t.Error(err)
		}
		if err := verifyArgCount(cmd, 0, "-fPIE"); err != nil {
			t.Error(err)
		}
	})
}

func TestOmitPieFlagsWhenKernelDefined(t *testing.T) {
	withTestContext(t, func(ctx *testContext) {
		initPieConfig(ctx.cfg)
		cmd := ctx.must(callCompiler(ctx, ctx.cfg,
			ctx.newCommand(gccX86_64, "-D__KERNEL__", mainCc)))
		if err := verifyArgCount(cmd, 0, "-pie"); err != nil {
			t.Error(err)
		}
		if err := verifyArgCount(cmd, 0, "-fPIE"); err != nil {
			t.Error(err)
		}
	})
}

func TestAddPieFlagsForEabiEvenIfNoPieGiven(t *testing.T) {
	withTestContext(t, func(ctx *testContext) {
		initPieConfig(ctx.cfg)
		cmd := ctx.must(callCompiler(ctx, ctx.cfg,
			ctx.newCommand(gccX86_64Eabi, "-nopie", mainCc)))
		if err := verifyArgCount(cmd, 0, "-nopie"); err != nil {
			t.Error(err)
		}
		if err := verifyArgCount(cmd, 1, "-pie"); err != nil {
			t.Error(err)
		}
		if err := verifyArgCount(cmd, 1, "-fPIE"); err != nil {
			t.Error(err)
		}
	})
}

func initPieConfig(cfg *config) {
	cfg.commonFlags = []string{"-fPIE", "-pie"}
}