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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
|
/* $OpenBSD: privsep.c,v 1.35 2021/09/06 13:33:11 deraadt Exp $ */
/*
* Copyright 2001 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
*
* Copyright (c) 2002 Matthieu Herrb
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif
#include <sys/param.h>
#include <sys/uio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "os.h"
#include "osdep.h"
enum cmd_types {
PRIV_OPEN_DEVICE,
PRIV_SIG_PARENT,
};
/* Command parameters */
typedef struct priv_cmd {
int cmd;
int _pad;
union {
struct _open {
char path[MAXPATHLEN];
} open;
} arg;
} priv_cmd_t;
static int priv_fd = -1;
static pid_t parent_pid = -1;
struct okdev {
const char *const name;
int flags;
} allowed_devices[] = {
/* Serial devices */
{"/dev/wsmouse", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wsmouse0", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wsmouse1", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wsmouse2", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wsmouse3", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wsmouse4", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wsmouse5", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wsmouse6", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wsmouse7", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wsmouse8", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wsmouse9", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/uhid0", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/uhid1", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/uhid2", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/uhid3", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/tty00", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/tty01", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/tty02", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/tty03", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/tty04", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttya", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyb", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyc", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyd", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wskbd", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wskbd0", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wskbd1", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wskbd2", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/wskbd3", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyC0", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyC1", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyC2", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyC3", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyC4", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyC5", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyC6", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyC7", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyD0", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyE0", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyF0", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyG0", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyH0", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyI0", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/ttyJ0", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/pci", O_RDWR | O_NONBLOCK | O_EXCL},
{"/dev/drm0", O_RDWR },
{"/dev/drm1", O_RDWR },
{"/dev/drm2", O_RDWR },
{"/dev/drm3", O_RDWR },
{"/dev/dri/card0", O_RDWR },
{"/dev/dri/card1", O_RDWR },
{"/dev/dri/card2", O_RDWR },
{"/dev/dri/card3", O_RDWR },
{"/dev/amdmsr", O_RDWR | O_EXCL},
{NULL, 0}
};
/* return 1 if allowed to open said path */
static struct okdev *
open_ok(const char *path)
{
struct okdev *p;
struct stat sb;
for (p = allowed_devices; p->name != NULL; p++) {
if (strcmp(path, p->name) == 0) {
if (stat(path, &sb) < 0) {
/* path is valid, but doesn't exist */
return NULL;
}
if (sb.st_mode & S_IFCHR) {
/* File is a character device */
return p;
}
}
}
/* path is not valid */
return NULL;
}
static void
send_fd(int s, int fd)
{
struct msghdr msg;
union {
struct cmsghdr hdr;
char buf[CMSG_SPACE(sizeof(int))];
} cmsgbuf;
struct cmsghdr *cmsg;
struct iovec vec;
int result = 0;
ssize_t n;
memset(&msg, 0, sizeof(msg));
if (fd >= 0) {
msg.msg_control = &cmsgbuf.buf;
msg.msg_controllen = sizeof(cmsgbuf.buf);
cmsg = CMSG_FIRSTHDR(&msg);
cmsg->cmsg_len = CMSG_LEN(sizeof(int));
cmsg->cmsg_level = SOL_SOCKET;
cmsg->cmsg_type = SCM_RIGHTS;
*(int *)CMSG_DATA(cmsg) = fd;
} else {
result = errno;
}
vec.iov_base = &result;
vec.iov_len = sizeof(int);
msg.msg_iov = &vec;
msg.msg_iovlen = 1;
if ((n = sendmsg(s, &msg, 0)) == -1)
warn("%s: sendmsg(%d)", __func__, s);
if (n != sizeof(int))
warnx("%s: sendmsg: expected sent 1 got %ld",
__func__, (long)n);
}
static int
receive_fd(int s)
{
struct msghdr msg;
union {
struct cmsghdr hdr;
char buf[CMSG_SPACE(sizeof(int))];
} cmsgbuf;
struct cmsghdr *cmsg;
struct iovec vec;
ssize_t n;
int result;
int fd;
memset(&msg, 0, sizeof(msg));
vec.iov_base = &result;
vec.iov_len = sizeof(int);
msg.msg_iov = &vec;
msg.msg_iovlen = 1;
msg.msg_control = &cmsgbuf.buf;
msg.msg_controllen = sizeof(cmsgbuf.buf);
do
n = recvmsg(s, &msg, MSG_CMSG_CLOEXEC);
while (n == -1 && errno == EINTR);
if (n != sizeof(int)) {
warnx("%s: recvmsg: expected received 1 got %ld",
__func__, (long)n);
return -1;
}
if (result == 0) {
cmsg = CMSG_FIRSTHDR(&msg);
if (cmsg == NULL) {
warnx("%s: no message header", __func__);
return -1;
}
if (cmsg->cmsg_type != SCM_RIGHTS)
warnx("%s: expected type %d got %d", __func__,
SCM_RIGHTS, cmsg->cmsg_type);
fd = (*(int *)CMSG_DATA(cmsg));
return fd;
} else {
errno = result;
return -1;
}
}
int
priv_init(uid_t uid, gid_t gid)
{
int i, fd;
pid_t pid;
int socks[2];
priv_cmd_t cmd;
struct okdev *dev;
parent_pid = getppid();
/* Create sockets */
if (socketpair(AF_LOCAL, SOCK_STREAM, PF_UNSPEC, socks) == -1) {
return -1;
}
pid = fork();
if (pid < 0) {
/* can't fork */
return -1;
}
if (pid != 0) {
/* Father - drop privileges and return */
if (setgroups(1, &gid) == -1)
return -1;
if (setegid(gid) == -1)
return -1;
if (setgid(gid) == -1)
return -1;
if (seteuid(uid) == -1)
return -1;
if (setuid(uid) == -1)
return -1;
close(socks[0]);
priv_fd = socks[1];
return 0;
}
/* son */
for (i = 1; i <= _NSIG; i++)
signal(i, SIG_DFL);
setproctitle("[priv]");
close(socks[1]);
priv_vendor_init();
for (dev = allowed_devices; dev->name != NULL; dev++) {
if (unveil(dev->name, "rw") == -1 && errno != ENOENT)
err(1, "unveil %s", dev->name);
}
if (pledge("stdio rpath wpath sendfd proc", NULL) == -1)
err(1, "pledge");
while (1) {
if (read(socks[0], &cmd, sizeof(cmd)) == 0) {
exit(0);
}
switch (cmd.cmd) {
case PRIV_OPEN_DEVICE:
if ((dev = open_ok(cmd.arg.open.path)) != NULL) {
fd = open(cmd.arg.open.path, dev->flags);
} else {
fd = -1;
errno = EPERM;
}
send_fd(socks[0], fd);
if (fd >= 0)
close(fd);
break;
case PRIV_SIG_PARENT:
if (parent_pid > 1)
kill(parent_pid, SIGUSR1);
break;
default:
errx(1, "%s: unknown command %d", __func__, cmd.cmd);
break;
}
}
_exit(1);
}
/* Open file */
int
priv_open_device(const char *path)
{
priv_cmd_t cmd;
struct okdev *dev;
if (priv_fd != -1) {
cmd.cmd = PRIV_OPEN_DEVICE;
strlcpy(cmd.arg.open.path, path, MAXPATHLEN);
write(priv_fd, &cmd, sizeof(cmd));
return receive_fd(priv_fd);
} else {
if ((dev = open_ok(path)) != NULL)
return open(path, dev->flags);
else {
errno = EPERM;
return -1;
}
}
}
void
priv_init_parent_process(pid_t ppid)
{
parent_pid = ppid;
}
/* send signal to parent process */
void
priv_signal_parent(void)
{
priv_cmd_t cmd;
if (priv_fd != -1) {
if (parent_pid == -1)
warnx("parent_pid == -1\n");
cmd.cmd = PRIV_SIG_PARENT;
write(priv_fd, &cmd, sizeof(cmd));
} else
if (parent_pid > 1)
kill(parent_pid, SIGUSR1);
}
#ifdef TEST
/* This is not a complete regression test */
int
main(int argc, char *argv[])
{
int fd;
if (priv_init(getuid(), getgid()) < 0) {
err(1, "priv_init");
}
fd = priv_open_device("/dev/wsmouse");
if (fd < 0) {
err(1, "priv_open_device");
}
write(fd, "test\n", 5);
close(fd);
exit(0);
}
#endif
|