Compare commits
8 Commits
assertions
...
main
Author | SHA1 | Date | |
---|---|---|---|
7c30e3f974 | |||
df522e679f | |||
ff564493bd | |||
8372ba28da | |||
7d369ad1d5 | |||
3765a571cc | |||
4c5788af37 | |||
ccef9979e4 |
4
.vscode/settings.json
vendored
Normal file
4
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"editor.defaultFormatter": "ms-vscode.cpptools",
|
||||
"editor.formatOnSave": true
|
||||
}
|
1
examples/cp/.gitignore
vendored
Normal file
1
examples/cp/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
cp_priv_sep
|
@ -1,13 +1,17 @@
|
||||
C=clang
|
||||
|
||||
all: c c_cgroup ml
|
||||
all: c cp_priv_sep c_cgroup ml
|
||||
|
||||
clean:
|
||||
rm -f c ml
|
||||
rm -f c cp_priv_sep c_cgroup ml
|
||||
|
||||
c: cp.c
|
||||
${C} -o c cp.c
|
||||
|
||||
cp_priv_sep: cp_priv_sep.c ../../lib/clone3.c ../../include/clone3.h
|
||||
${C} -I../../include -o cp_priv_sep cp_priv_sep.c ../../lib/clone3.c
|
||||
sudo setcap CAP_SYS_ADMIN+eip ./cp_priv_sep
|
||||
|
||||
c_cgroup: cp_cgroup.c
|
||||
${C} -o c_cgroup cp_cgroup.c
|
||||
|
||||
|
154
examples/cp/cp_priv_sep.c
Normal file
154
examples/cp/cp_priv_sep.c
Normal file
@ -0,0 +1,154 @@
|
||||
// For privilege separation
|
||||
#include <clone3.h>
|
||||
#include <fcntl.h>
|
||||
#include <linux/wait.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
#include <unistd.h>
|
||||
|
||||
// This program
|
||||
#include <stdio.h>
|
||||
|
||||
#define BUF_SIZE 4096
|
||||
|
||||
struct copy_args {
|
||||
char *src;
|
||||
char *dst;
|
||||
};
|
||||
|
||||
int process_args(int argc, char **argv, struct copy_args *);
|
||||
int do_copy(struct copy_args *args);
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
pid_t child;
|
||||
|
||||
// Spawn args processor
|
||||
int args_pid_fd;
|
||||
|
||||
struct clone_args args_processor_cl_args = {
|
||||
.flags = CLONE_NEWIPC | CLONE_NEWNET | CLONE_NEWNS | CLONE_NEWPID |
|
||||
CLONE_NEWUSER | CLONE_NEWUTS | CLONE_PIDFD,
|
||||
.pidfd = (uint64_t)&args_pid_fd,
|
||||
.child_tid = (uint64_t)NULL,
|
||||
.parent_tid = (uint64_t)NULL,
|
||||
.exit_signal = SIGCHLD,
|
||||
.stack = (uint64_t)NULL,
|
||||
.stack_size = 0,
|
||||
.tls = (uint64_t)NULL,
|
||||
};
|
||||
|
||||
int args_pipe_fds[2];
|
||||
if (pipe(args_pipe_fds) < 0) {
|
||||
perror("pipe");
|
||||
exit(-1);
|
||||
}
|
||||
|
||||
if ((child = clone3(&args_processor_cl_args)) == 0) {
|
||||
char args[sizeof(struct copy_args)];
|
||||
|
||||
int code = process_args(argc, argv, &args);
|
||||
if (code != 0) {
|
||||
exit(code);
|
||||
}
|
||||
|
||||
write(args_pipe_fds[1], &args, sizeof(args));
|
||||
exit(0);
|
||||
} else if (child < 0) {
|
||||
perror("clone3");
|
||||
return -1;
|
||||
}
|
||||
|
||||
// Wait for args processor
|
||||
// Implicit assertion that sizeof(args) < the pipe buffer size (won't block)
|
||||
siginfo_t status;
|
||||
if (waitid(P_PIDFD, args_pid_fd, &status, WEXITED) == -1) {
|
||||
perror("waitid");
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (status.si_status != 0) {
|
||||
return status.si_status;
|
||||
}
|
||||
|
||||
char args[sizeof(struct copy_args)];
|
||||
read(args_pipe_fds[0], &args, sizeof(args));
|
||||
|
||||
// Spawn copier (can be more separated)
|
||||
int copy_pid_fd;
|
||||
|
||||
struct clone_args do_copy_cl_args = {
|
||||
.flags = CLONE_NEWIPC | CLONE_NEWNET | CLONE_NEWPID | CLONE_NEWUTS |
|
||||
CLONE_PIDFD,
|
||||
.pidfd = (uint64_t)©_pid_fd,
|
||||
.child_tid = (uint64_t)NULL,
|
||||
.parent_tid = (uint64_t)NULL,
|
||||
.exit_signal = SIGCHLD,
|
||||
.stack = (uint64_t)NULL,
|
||||
.stack_size = 0,
|
||||
.tls = (uint64_t)NULL,
|
||||
};
|
||||
|
||||
if ((child = clone3(&do_copy_cl_args)) == 0) {
|
||||
int code = do_copy(&args);
|
||||
exit(code);
|
||||
} else if (child < 0) {
|
||||
perror("clone3");
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (waitid(P_PIDFD, copy_pid_fd, &status, WEXITED) == -1) {
|
||||
perror("waitid");
|
||||
return -1;
|
||||
}
|
||||
|
||||
return status.si_status;
|
||||
}
|
||||
|
||||
int process_args(int argc, char **argv, struct copy_args *args) {
|
||||
if (argc != 3) {
|
||||
fprintf(stderr, "usage: %s SRC DST\n", argv[0]);
|
||||
return -1;
|
||||
}
|
||||
|
||||
args->src = argv[1];
|
||||
args->dst = argv[2];
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int do_copy(struct copy_args *args) {
|
||||
fprintf(stderr, "src: `%s`; dst: `%s`\n", args->src, args->dst);
|
||||
int src_fd, dst_fd;
|
||||
|
||||
if ((src_fd = open(args->src, O_RDONLY)) < 0) {
|
||||
perror("open");
|
||||
return 1;
|
||||
}
|
||||
if ((dst_fd = open(args->dst, O_WRONLY | O_CREAT | O_TRUNC)) < 0) {
|
||||
perror("open");
|
||||
return 1;
|
||||
}
|
||||
|
||||
char buf[BUF_SIZE];
|
||||
while (1) {
|
||||
int read_bytes = read(src_fd, buf, BUF_SIZE);
|
||||
if (read_bytes < 0) {
|
||||
perror("read");
|
||||
return read_bytes;
|
||||
}
|
||||
|
||||
if (!read_bytes) {
|
||||
fprintf(stderr, "copy complete\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (write(dst_fd, buf, read_bytes) < 0) {
|
||||
perror("write");
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
1
examples/echo/.gitignore
vendored
Normal file
1
examples/echo/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
echo_priv_sep
|
10
examples/echo/Makefile
Normal file
10
examples/echo/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
C=clang -Wall
|
||||
|
||||
all: echo_priv_sep
|
||||
|
||||
clean:
|
||||
rm -f echo_priv_sep
|
||||
|
||||
echo_priv_sep: echo_priv_sep.c ../../lib/clone3.c ../../include/clone3.h
|
||||
${C} -I../../include -o echo_priv_sep echo_priv_sep.c ../../lib/clone3.c
|
||||
sudo setcap CAP_SYS_ADMIN+eip ./echo_priv_sep
|
196
examples/echo/echo_priv_sep.c
Normal file
196
examples/echo/echo_priv_sep.c
Normal file
@ -0,0 +1,196 @@
|
||||
// For privilege separation
|
||||
#include <clone3.h>
|
||||
|
||||
#include <linux/wait.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
#include <unistd.h>
|
||||
|
||||
// This program
|
||||
#include <netinet/in.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#define BUF_SIZE 1024
|
||||
|
||||
int real_main(int, char **, int);
|
||||
int request_handler(int);
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
pid_t child;
|
||||
|
||||
int num_pids = 2;
|
||||
int pid_fds[num_pids];
|
||||
|
||||
// Create IPC
|
||||
int pipe_fds[2];
|
||||
if (pipe(pipe_fds) < 0) {
|
||||
perror("pipe");
|
||||
exit(-1);
|
||||
}
|
||||
|
||||
// Spawn real_main
|
||||
// Use CLONE_FILES to have the opened fds passed up
|
||||
struct clone_args real_main_cl_args = {
|
||||
.flags = CLONE_NEWIPC | CLONE_NEWNS | CLONE_NEWPID | CLONE_NEWUSER |
|
||||
CLONE_NEWUTS | CLONE_PIDFD | CLONE_FILES,
|
||||
.pidfd = (uint64_t)&pid_fds[0],
|
||||
.child_tid = (uint64_t)NULL,
|
||||
.parent_tid = (uint64_t)NULL,
|
||||
.exit_signal = SIGCHLD,
|
||||
.stack = (uint64_t)NULL,
|
||||
.stack_size = 0,
|
||||
.tls = (uint64_t)NULL,
|
||||
};
|
||||
|
||||
if ((child = clone3(&real_main_cl_args)) == 0) {
|
||||
int code = real_main(argc, argv, pipe_fds[1]);
|
||||
exit(code);
|
||||
} else if (child < 0) {
|
||||
perror("clone3");
|
||||
exit(-1);
|
||||
}
|
||||
|
||||
// Spawn internal cloner (to maintain capabilities)
|
||||
// Use CLONE_FILES to pass the opened fds down
|
||||
struct clone_args process_generator_cl_args = {
|
||||
.flags = CLONE_FILES,
|
||||
.pidfd = (uint64_t)&pid_fds[1],
|
||||
.child_tid = (uint64_t)NULL,
|
||||
.parent_tid = (uint64_t)NULL,
|
||||
.exit_signal = SIGCHLD,
|
||||
.stack = (uint64_t)NULL,
|
||||
.stack_size = 0,
|
||||
.tls = (uint64_t)NULL,
|
||||
};
|
||||
|
||||
if ((child = clone3(&process_generator_cl_args)) == 0) {
|
||||
int read_pipe = pipe_fds[0];
|
||||
|
||||
int client_fd;
|
||||
while (1) {
|
||||
int bytes_read = read(read_pipe, &client_fd, sizeof(client_fd));
|
||||
if (bytes_read == 0) {
|
||||
break;
|
||||
} else if (bytes_read < 0) {
|
||||
perror("read");
|
||||
exit(-1);
|
||||
}
|
||||
|
||||
fprintf(stderr, "got client_fd: %d\n", client_fd);
|
||||
|
||||
// Do not use CLONE_FILES for default CoW behaviour
|
||||
struct clone_args request_cl_args = {
|
||||
.flags = CLONE_NEWIPC | CLONE_NEWNS | CLONE_NEWPID | CLONE_NEWUSER |
|
||||
CLONE_NEWUTS | CLONE_PIDFD,
|
||||
.pidfd = (uint64_t)&pid_fds[0],
|
||||
.child_tid = (uint64_t)NULL,
|
||||
.parent_tid = (uint64_t)NULL,
|
||||
.exit_signal = SIGCHLD,
|
||||
.stack = (uint64_t)NULL,
|
||||
.stack_size = 0,
|
||||
.tls = (uint64_t)NULL,
|
||||
};
|
||||
|
||||
if ((child = clone3(&request_cl_args)) == 0) {
|
||||
int code = request_handler(client_fd);
|
||||
exit(code);
|
||||
} else if (child < 0) {
|
||||
perror("clone3");
|
||||
exit(-1);
|
||||
}
|
||||
}
|
||||
|
||||
exit(0);
|
||||
} else if (child < 0) {
|
||||
perror("clone3");
|
||||
exit(-1);
|
||||
}
|
||||
|
||||
// Wait for child processes
|
||||
siginfo_t status;
|
||||
|
||||
for (int i = 0; i < num_pids; i++) {
|
||||
if (waitid(P_PIDFD, pid_fds[i], &status, WEXITED) == -1) {
|
||||
perror("waitid");
|
||||
return -1;
|
||||
}
|
||||
if (status.si_status != 0) {
|
||||
return status.si_status;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int real_main(int argc, char **argv, int write_pipe) {
|
||||
if (argc != 2) {
|
||||
fprintf(stderr, "expected 1 argument\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
int port = atoi(argv[1]);
|
||||
|
||||
int server_fd = socket(AF_INET, SOCK_STREAM, 0);
|
||||
if (server_fd < 0) {
|
||||
perror("socket");
|
||||
}
|
||||
|
||||
int opt_val = 1;
|
||||
setsockopt(server_fd, SOL_SOCKET, SO_REUSEADDR, &opt_val, sizeof opt_val);
|
||||
|
||||
struct sockaddr_in server;
|
||||
|
||||
server.sin_family = AF_INET;
|
||||
server.sin_port = htons(port);
|
||||
server.sin_addr.s_addr = htonl(INADDR_ANY);
|
||||
|
||||
if (bind(server_fd, (struct sockaddr *)&server, sizeof(server)) < 0) {
|
||||
perror("bind");
|
||||
}
|
||||
|
||||
if (listen(server_fd, 16) < 0) {
|
||||
perror("listen");
|
||||
}
|
||||
|
||||
while (1) {
|
||||
struct sockaddr_in client;
|
||||
socklen_t client_len = sizeof(client);
|
||||
|
||||
int client_fd = accept(server_fd, (struct sockaddr *)&client, &client_len);
|
||||
if (client_fd < 0) {
|
||||
perror("accept");
|
||||
}
|
||||
|
||||
write(write_pipe, &client_fd, sizeof(client_fd));
|
||||
fprintf(stderr, "sent client_fd: %d\n", client_fd);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int request_handler(int client_fd) {
|
||||
char buf[BUF_SIZE];
|
||||
while (1) {
|
||||
int read = recv(client_fd, buf, BUF_SIZE, 0);
|
||||
if (read < 0) {
|
||||
perror("recv");
|
||||
return read;
|
||||
}
|
||||
|
||||
if (!read) {
|
||||
fprintf(stderr, "connection terminated\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (send(client_fd, buf, read, 0) < 0) {
|
||||
perror("send");
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
1
examples/fib/.gitignore
vendored
Normal file
1
examples/fib/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
fib_priv_sep
|
10
examples/fib/Makefile
Normal file
10
examples/fib/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
C=clang -Wall
|
||||
|
||||
all: fib_priv_sep
|
||||
|
||||
clean:
|
||||
rm -f fib_priv_sep
|
||||
|
||||
fib_priv_sep: fib_priv_sep.c ../../lib/clone3.c ../../include/clone3.h
|
||||
${C} -I../../include -o fib_priv_sep fib_priv_sep.c ../../lib/clone3.c
|
||||
sudo setcap CAP_SYS_ADMIN+eip ./fib_priv_sep
|
76
examples/fib/fib_priv_sep.c
Normal file
76
examples/fib/fib_priv_sep.c
Normal file
@ -0,0 +1,76 @@
|
||||
// For privilege separation
|
||||
#include <clone3.h>
|
||||
|
||||
#include <linux/wait.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
|
||||
// This program
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
|
||||
uint64_t fib(uint64_t i) {
|
||||
uint64_t a = 0;
|
||||
uint64_t b = 1;
|
||||
|
||||
for (; i > 0; i--) {
|
||||
uint64_t old_b = b;
|
||||
b = b + a;
|
||||
a = old_b;
|
||||
}
|
||||
|
||||
return a;
|
||||
}
|
||||
|
||||
int real_main(int argc, char **argv);
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
int pid_fd;
|
||||
|
||||
struct clone_args cl_args = {
|
||||
.flags = CLONE_NEWIPC | CLONE_NEWNET | CLONE_NEWNS | CLONE_NEWPID |
|
||||
CLONE_NEWUSER | CLONE_NEWUTS | CLONE_PIDFD,
|
||||
.pidfd = (uint64_t)&pid_fd,
|
||||
.child_tid = (uint64_t)NULL,
|
||||
.parent_tid = (uint64_t)NULL,
|
||||
.exit_signal = SIGCHLD,
|
||||
.stack = (uint64_t)NULL,
|
||||
.stack_size = 0,
|
||||
.tls = (uint64_t)NULL,
|
||||
};
|
||||
|
||||
pid_t child = clone3(&cl_args);
|
||||
if (child < 0) {
|
||||
perror("clone3");
|
||||
exit(-1);
|
||||
} else if (child == 0) {
|
||||
int code = real_main(argc, argv);
|
||||
exit(code);
|
||||
} else {
|
||||
siginfo_t status;
|
||||
if (waitid(P_PIDFD, pid_fd, &status, WEXITED) == -1) {
|
||||
perror("waitid");
|
||||
return -1;
|
||||
}
|
||||
|
||||
exit(status.si_status);
|
||||
}
|
||||
}
|
||||
|
||||
int real_main(int argc, char **argv) {
|
||||
if (argc != 2) {
|
||||
fprintf(stderr, "expected 1 argument\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
uint64_t i = 0;
|
||||
if (sscanf(argv[1], "%lu", &i) != 1) {
|
||||
fprintf(stderr, "sscanf failed\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
uint64_t fib_result = fib(i);
|
||||
printf("fib(%lu) = %lu\n", i, fib_result);
|
||||
return 0;
|
||||
}
|
15
examples/unshare_umount.c
Normal file
15
examples/unshare_umount.c
Normal file
@ -0,0 +1,15 @@
|
||||
#define _GNU_SOURCE
|
||||
#include <sched.h>
|
||||
#include <sys/mount.h>
|
||||
#include <sys/types.h>
|
||||
#include <dirent.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
if (unshare(CLONE_NEWNS))
|
||||
perror("unshare");
|
||||
if (mount("none", "/", NULL, MS_REC|MS_PRIVATE, NULL))
|
||||
perror("mount");
|
||||
if (umount("/"))
|
||||
perror("umount");
|
||||
}
|
3
include/clone3.h
Normal file
3
include/clone3.h
Normal file
@ -0,0 +1,3 @@
|
||||
#include <linux/sched.h>
|
||||
|
||||
long clone3(struct clone_args *cl_args);
|
7
lib/clone3.c
Normal file
7
lib/clone3.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <clone3.h>
|
||||
#include <sys/syscall.h>
|
||||
#include <unistd.h>
|
||||
|
||||
long clone3(struct clone_args *cl_args) {
|
||||
return syscall(SYS_clone3, cl_args, sizeof(struct clone_args));
|
||||
}
|
Reference in New Issue
Block a user