blob: 7e5ed67c5a61e7b26908bb8b1dae9fa4fb297c24 (
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
|
/* $OpenBSD: suidexec_inherit.c,v 1.3 2021/12/15 18:42:38 anton Exp $ */
/*
* Written by Bret Stephen Lambert <blambert@openbsd.org> 2014
* Public Domain.
*/
#include <sys/types.h>
#include <sys/signal.h>
#include <sys/proc.h>
#include <sys/sysctl.h>
#include <sys/wait.h>
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <pwd.h>
#include <unistd.h>
#include "setuid_regress.h"
int
main(int argc, char *argv[])
{
struct kinfo_proc kproc;
char *toexec = NULL;
if (argc > 1) {
argv++;
if ((toexec = strdup(argv[0])) == NULL)
err(1, "strdup");
}
if (!issetugid())
errx(1, "process not marked as issetugid()");
if (read_kproc_pid(&kproc, getpid()) == -1)
err(1, "kproc read failed");
if (kproc.p_psflags & PS_SUGID)
errx(1, "PS_SUGID incorrectly set");
if (!(kproc.p_psflags & PS_SUGIDEXEC))
errx(1, "PS_SUGIDEXEC not set");
if (toexec != NULL)
if (execv(toexec, argv) == -1)
err(1, "exec of %s failed", toexec);
free(toexec);
exit(0);
}
|