summaryrefslogtreecommitdiff
path: root/sandbox.c
blob: f83a947262ed2807f40c779e68b78156a168e0e1 (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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#include "xs.h"

#include "snac.h"

#include <unistd.h>

#if defined (__linux__)
#   define __USE_GNU
#   include <linux/landlock.h>
#   include <linux/prctl.h>
#   include <sys/syscall.h>
#   include <sys/prctl.h>
#   include <fcntl.h>
#   include <arpa/inet.h>
#endif

void sbox_enter(const char *basedir)
{
    if (xs_is_true(xs_dict_get(srv_config, "disable_openbsd_security"))) {
        srv_log(xs_dup("disable_openbsd_security is deprecated. Use disable_sandbox instead."));
        return;
    }
    if (xs_is_true(xs_dict_get(srv_config, "disable_sandbox"))) {
        srv_debug(0, xs_dup("Sandbox disabled by admin"));
        return;
    }

    const char *address = xs_dict_get(srv_config, "address");

#if defined (__OpenBSD__)
    int smail = !xs_is_true(xs_dict_get(srv_config, "disable_email_notifications"));

    srv_debug(1, xs_fmt("Calling unveil()"));
    unveil(basedir,                "rwc");
    unveil("/tmp",                 "rwc");
    unveil("/etc/resolv.conf",     "r");
    unveil("/etc/hosts",           "r");
    unveil("/etc/ssl/openssl.cnf", "r");
    unveil("/etc/ssl/cert.pem",    "r");
    unveil("/usr/share/zoneinfo",  "r");

    if (smail)
        unveil("/usr/sbin/sendmail",   "x");

    if (*address == '/')
        unveil(address, "rwc");

    unveil(NULL,                   NULL);

    srv_debug(1, xs_fmt("Calling pledge()"));

    xs *p = xs_str_new("stdio rpath wpath cpath flock inet proc dns fattr");

    if (smail)
        p = xs_str_cat(p, " exec");

    if (*address == '/')
        p = xs_str_cat(p, " unix");

    pledge(p, NULL);

    xs_free(p);
#elif defined (__linux__)
    int error, ruleset_fd, abi;
    struct landlock_ruleset_attr      rules = {0};
    struct landlock_path_beneath_attr path  = {0};
    struct landlock_net_port_attr     net   = {0};

    rules.handled_access_fs =
        LANDLOCK_ACCESS_FS_EXECUTE     |
        LANDLOCK_ACCESS_FS_WRITE_FILE  |
        LANDLOCK_ACCESS_FS_READ_FILE   |
        LANDLOCK_ACCESS_FS_REMOVE_DIR  |
        LANDLOCK_ACCESS_FS_REMOVE_FILE |
        LANDLOCK_ACCESS_FS_MAKE_CHAR   |
        LANDLOCK_ACCESS_FS_MAKE_DIR    |
        LANDLOCK_ACCESS_FS_MAKE_REG    |
        LANDLOCK_ACCESS_FS_MAKE_SOCK   |
        LANDLOCK_ACCESS_FS_MAKE_FIFO   |
        LANDLOCK_ACCESS_FS_MAKE_BLOCK  |
        LANDLOCK_ACCESS_FS_MAKE_SYM    |
        LANDLOCK_ACCESS_FS_REFER       |
        LANDLOCK_ACCESS_FS_TRUNCATE    |
        LANDLOCK_ACCESS_FS_IOCTL_DEV;
    rules.handled_access_net =
        LANDLOCK_ACCESS_NET_BIND_TCP |
        LANDLOCK_ACCESS_NET_CONNECT_TCP;

    abi = syscall(SYS_landlock_create_ruleset, NULL, 0, LANDLOCK_CREATE_RULESET_VERSION);
    switch (abi) {
    case -1:
        srv_debug(0, xs_dup("Kernel without landlock support"));
        return;
    case 1:
        rules.handled_access_fs  &= ~LANDLOCK_ACCESS_FS_REFER;
        __attribute__((fallthrough));
    case 2:
        rules.handled_access_fs  &= ~LANDLOCK_ACCESS_FS_TRUNCATE;
        __attribute__((fallthrough));
    case 3:
        rules.handled_access_net &= ~(LANDLOCK_ACCESS_NET_BIND_TCP | LANDLOCK_ACCESS_NET_CONNECT_TCP);
        __attribute__((fallthrough));
    case 4:
        rules.handled_access_fs  &= ~LANDLOCK_ACCESS_FS_IOCTL_DEV;
    }
    srv_debug(1, xs_fmt("lanlock abi: %d", abi));

    ruleset_fd = syscall(SYS_landlock_create_ruleset, &rules, sizeof(struct landlock_ruleset_attr), 0);
    if (ruleset_fd == -1) {
        srv_debug(0, xs_fmt("landlock_create_ruleset failed: %s", strerror(errno)));
        return;
    }

#define LL_R LANDLOCK_ACCESS_FS_READ_FILE
#define LL_X LANDLOCK_ACCESS_FS_EXECUTE
#define LL_RWC (LL_R | LANDLOCK_ACCESS_FS_WRITE_FILE | LANDLOCK_ACCESS_FS_MAKE_REG | LANDLOCK_ACCESS_FS_TRUNCATE)
#define LL_UNX (LL_R | LANDLOCK_ACCESS_FS_WRITE_FILE | LANDLOCK_ACCESS_FS_MAKE_SOCK)
#define LL_CON LANDLOCK_ACCESS_NET_CONNECT_TCP
#define LL_BND LANDLOCK_ACCESS_NET_BIND_TCP

#define LANDLOCK_PATH(p, r) do {\
    path.allowed_access = r;\
    if (abi < 3)\
        path.allowed_access &= ~LANDLOCK_ACCESS_FS_TRUNCATE;\
    path.parent_fd = open(p, O_PATH | O_CLOEXEC);\
    if (path.parent_fd == -1) {\
        srv_debug(2, xs_fmt("open %s: %s", p, strerror(errno)));\
        goto close;\
    }\
    error = syscall(SYS_landlock_add_rule, ruleset_fd, LANDLOCK_RULE_PATH_BENEATH, &path, 0); \
    if (error) {\
        srv_debug(0, xs_fmt("LANDLOCK_PATH(%s): %s", p, strerror(errno)));\
        goto close;\
    }\
} while (0)

#define LANDLOCK_PORT(p, r) do {\
    uint16_t _p = p;\
    net.port = _p;\
    net.allowed_access = r;\
    error = syscall(SYS_landlock_add_rule, ruleset_fd, LANDLOCK_RULE_NET_PORT, &net, 0);\
    if (error) {\
        srv_debug(0, xs_fmt("LANDLOCK_PORT(%d): %s", _p, strerror(errno)));\
        goto close;\
    }\
} while (0)

    LANDLOCK_PATH(basedir,                LL_RWC);
    LANDLOCK_PATH("/tmp",                 LL_RWC);
    LANDLOCK_PATH("/dev/shm",             LL_RWC);
    LANDLOCK_PATH("/etc/resolv.conf",     LL_R  );
    LANDLOCK_PATH("/etc/hosts",           LL_R  );
    LANDLOCK_PATH("/etc/ssl/openssl.cnf", LL_R  );
    LANDLOCK_PATH("/etc/ssl/cert.pem",    LL_R  );
    LANDLOCK_PATH("/usr/share/zoneinfo",  LL_R  );

    if (*address == '/')
        LANDLOCK_PATH(address, LL_UNX);

    if (abi > 3) {
        if (*address != '/') {
            LANDLOCK_PORT(
                (uint16_t)xs_number_get(xs_dict_get(srv_config, "port")), LL_BND);
        }

        LANDLOCK_PORT(80,  LL_CON);
        LANDLOCK_PORT(443, LL_CON);
    }
    
    if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0)) {
        srv_debug(0, xs_fmt("prctl SET_NO_NEW_PRIVS: %s", strerror(errno)));
        goto close;
    }

    if (syscall(SYS_landlock_restrict_self, ruleset_fd, 0))
        srv_debug(0, xs_fmt("landlock_restrict_self: %s", strerror(errno)));

    srv_log(xs_dup("landlocked"));

close:
    close(ruleset_fd);

#endif
}