-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathdroproot.c
67 lines (57 loc) · 1.94 KB
/
droproot.c
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
/*
* droproot.c: This file is part of the `djbdns' project, originally written
* by Dr. D J Bernstein and later released under public-domain since late
* December 2007 (http://cr.yp.to/distributors.html).
*
* Copyright (C) 2009 - 2012 Prasad J Pandit
*
* This program is a free software; you can redistribute it and/or modify
* it under the terms of GNU General Public License as published by Free
* Software Foundation; either version 2 of the license or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* of FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to Free Software Foundation, Inc., 51
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <err.h>
#include <unistd.h>
#include "env.h"
#include "scan.h"
#include "prot.h"
#include "strerr.h"
extern short debug_level;
void
droproot (void)
{
char *x = NULL;
unsigned long id = 0;
x = env_get ("ROOT");
if (!x)
err (-1, "$ROOT not set");
if (chdir (x) == -1)
err (-1, "could not change working directory to `%s'", x);
if (chroot(".") == -1)
err (-1, "could not change root directory to `%s'", x);
if (debug_level)
warnx ("root & working directory changed to `%s'", x);
x = env_get ("GID");
if (!x)
err (-1, "$GID not set");
scan_ulong (x, &id);
if (prot_gid ((int) id) == -1)
err (-1, "could not set group-id to `%ld'", id);
x = env_get ("UID");
if (!x)
err (-1, "$UID not set");
scan_ulong (x, &id);
if (prot_uid ((int) id) == -1)
err (-1, "could not set user-id to `%ld'", id);
if (debug_level)
warnx ("root privileges dropped, user-id set to `%ld'", id);
}