summaryrefslogtreecommitdiffhomepage
path: root/test/unit/feature/isolation.py
blob: 7877c03a4f6f5130def9053035ec4f30e9189797 (plain) (blame)
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
152
153
154
155
156
157
158
159
160
import os

from unit.applications.lang.go import TestApplicationGo
from unit.applications.lang.java import TestApplicationJava
from unit.applications.lang.node import TestApplicationNode
from unit.applications.proto import TestApplicationProto
from conftest import option


class TestFeatureIsolation(TestApplicationProto):
    allns = ['pid', 'mnt', 'ipc', 'uts', 'cgroup', 'net']

    def check(self, available, temp_dir):
        test_conf = {"namespaces": {"credential": True}}

        conf = ''
        if 'go' in available['modules']:
            TestApplicationGo().prepare_env('empty', 'app')

            conf = {
                "listeners": {"*:7080": {"pass": "applications/empty"}},
                "applications": {
                    "empty": {
                        "type": "external",
                        "processes": {"spare": 0},
                        "working_directory": option.test_dir + "/go/empty",
                        "executable": option.temp_dir + "/go/app",
                        "isolation": {"namespaces": {"credential": True}},
                    },
                },
            }

        elif 'python' in available['modules']:
            conf = {
                "listeners": {"*:7080": {"pass": "applications/empty"}},
                "applications": {
                    "empty": {
                        "type": "python",
                        "processes": {"spare": 0},
                        "path": option.test_dir + "/python/empty",
                        "working_directory": option.test_dir + "/python/empty",
                        "module": "wsgi",
                        "isolation": {"namespaces": {"credential": True}},
                    }
                },
            }

        elif 'php' in available['modules']:
            conf = {
                "listeners": {"*:7080": {"pass": "applications/phpinfo"}},
                "applications": {
                    "phpinfo": {
                        "type": "php",
                        "processes": {"spare": 0},
                        "root": option.test_dir + "/php/phpinfo",
                        "working_directory": option.test_dir + "/php/phpinfo",
                        "index": "index.php",
                        "isolation": {"namespaces": {"credential": True}},
                    }
                },
            }

        elif 'ruby' in available['modules']:
            conf = {
                "listeners": {"*:7080": {"pass": "applications/empty"}},
                "applications": {
                    "empty": {
                        "type": "ruby",
                        "processes": {"spare": 0},
                        "working_directory": option.test_dir + "/ruby/empty",
                        "script": option.test_dir + "/ruby/empty/config.ru",
                        "isolation": {"namespaces": {"credential": True}},
                    }
                },
            }

        elif 'java' in available['modules']:
            TestApplicationJava().prepare_env('empty')

            conf = {
                "listeners": {"*:7080": {"pass": "applications/empty"}},
                "applications": {
                    "empty": {
                        "unit_jars": option.current_dir + "/build",
                        "type": "java",
                        "processes": {"spare": 0},
                        "working_directory": option.test_dir + "/java/empty/",
                        "webapp": option.temp_dir + "/java",
                        "isolation": {"namespaces": {"credential": True}},
                    }
                },
            }

        elif 'node' in available['modules']:
            TestApplicationNode().prepare_env('basic')

            conf = {
                "listeners": {"*:7080": {"pass": "applications/basic"}},
                "applications": {
                    "basic": {
                        "type": "external",
                        "processes": {"spare": 0},
                        "working_directory": option.temp_dir + "/node",
                        "executable": "app.js",
                        "isolation": {"namespaces": {"credential": True}},
                    }
                },
            }

        elif 'perl' in available['modules']:
            conf = {
                "listeners": {"*:7080": {"pass": "applications/body_empty"}},
                "applications": {
                    "body_empty": {
                        "type": "perl",
                        "processes": {"spare": 0},
                        "working_directory": option.test_dir
                        + "/perl/body_empty",
                        "script": option.test_dir + "/perl/body_empty/psgi.pl",
                        "isolation": {"namespaces": {"credential": True}},
                    }
                },
            }

        else:
            return

        if 'success' not in self.conf(conf):
            return

        userns = self.getns('user')
        if not userns:
            return

        available['features']['isolation'] = {'user': userns}

        unp_clone_path = '/proc/sys/kernel/unprivileged_userns_clone'
        if os.path.exists(unp_clone_path):
            with open(unp_clone_path, 'r') as f:
                if str(f.read()).rstrip() == '1':
                    available['features']['isolation'][
                        'unprivileged_userns_clone'
                    ] = True

        for ns in self.allns:
            ns_value = self.getns(ns)
            if ns_value:
                available['features']['isolation'][ns] = ns_value

    def getns(self, nstype):
        # read namespace id from symlink file:
        # it points to: '<nstype>:[<ns id>]'
        # # eg.: 'pid:[4026531836]'
        nspath = '/proc/self/ns/' + nstype
        data = None

        if os.path.exists(nspath):
            data = int(os.readlink(nspath)[len(nstype) + 2 : -1])

        return data