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
|
/* uroot - User's root
* utils.c Source file with various utility functions
*
* Copyright (C) 2018 Karel Kočí
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the 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 or 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 the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>
#include "utils.h"
#include "conf.h"
// Compute the size needed (including \0) to format given message
size_t printf_len(const char *msg, ...) {
va_list args;
va_start(args, msg);
size_t result = vsnprintf(NULL, 0, msg, args);
va_end(args);
return result + 1;
}
// Like sprintf, but returs the string. Expects there's enough space.
char *printf_into(char *dst, const char *msg, ...) {
va_list args;
va_start(args, msg);
vsprintf(dst, msg, args);
va_end(args);
return dst;
}
const char *get_shell() {
const char *ret;
ret = secure_getenv("SHELL");
if (!ret)
ret = DEFAULT_SHELL;
return ret;
}
int new_map_id(const char *idtp, pid_t pid, int id) {
// TODO check /etc/sub* for current user subids and map them
pid_t chld = fork();
if (!chld) {
char *tool = aprintf("new%smap", idtp);
char *const args[] = {
tool, aprintf("%d", pid),
"0", aprintf("%d", id), "1",
"1", "65537", "65536",
NULL
};
execvp(tool, args);
abort();
}
int stat;
waitpid(chld, &stat, 0);
return stat;
}
|