namespaces/userns_setns_test.cThis is namespaces/userns_setns_test.c, an example to accompany the book, The Linux Programming Interface. This file is not printed in the book; it demonstrates Linux features that are not described in the book (typically features that have appeared since the book was published). The source code file is copyright 2024, Michael Kerrisk, and is licensed under the GNU General Public License, version 3. In the listing below, the names of Linux system calls and C library functions are hyperlinked to manual pages from the Linux man-pages project, and the names of functions implemented in the book are hyperlinked to the implementations of those functions.
|
/* userns_setns_test.c Open a /proc/PID/ns/user namespace file specified on the command line, and then create a child process in a new user namespace. Both processes then try to setns() into the namespace identified on the command line. The setns() system call requires CAP_SYS_ADMIN in the target namespace. See https://lwn.net/Articles/540087/ */ #define _GNU_SOURCE #include <fcntl.h> #include <sched.h> #include <unistd.h> #include <stdlib.h> #include <limits.h> #include <errno.h> #include <stdio.h> #include <string.h> #include <sys/wait.h> #include <sys/capability.h> #include <sys/mman.h> #include "userns_functions.h" /* A simple error-handling function: print an error message based on the value in 'errno' and terminate the calling process */ #define errExit(msg) do { perror(msg); exit(EXIT_FAILURE); \ } while (0)
static void display_symlink(char *pname, char *link) { char path[PATH_MAX]; ssize_t s = readlink(link, path, PATH_MAX); if (s == -1) errExit("readlink"); printf("%s%s ==> %.*s\n", pname, link, (int) s, path); }
/* Try to join the user namespace identified by the file descriptor 'fd'. 'pname' is a per-process string that the caller can use to distinguish information messages displayed by this function */ static void test_setns(char *pname, int fd) { display_symlink(pname, "/proc/self/ns/user"); /* Attempt to join the user namespace specified by 'fd' */ display_creds_and_caps(pname); if (setns(fd, CLONE_NEWUSER) == -1) { printf("%ssetns() failed: %s\n", pname, strerror(errno)); } else { printf("%ssetns() succeeded\n", pname); display_symlink(pname, "/proc/self/ns/user"); display_creds_and_caps(pname); } }
static int /* Start function for cloned child */ childFunc(void *arg) { long fd = (long) arg; usleep(100000); /* Avoid intermingling with parent's output */ /* Test whether setns() is possible from the child user namespace */ test_setns("child: ", fd); return 0; } #define STACK_SIZE (1024 * 1024)
int main(int argc, char *argv[]) { if (argc != 2) { fprintf(stderr, "Usage: %s /proc/PID/ns/user\n", argv[0]); exit(EXIT_FAILURE); } /* Open user namespace file specified on command line */ long fd = open(argv[1], O_RDONLY); if (fd == -1) errExit("open"); /* Create child process in new user namespace */ char *stack = mmap(NULL, STACK_SIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, -1, 0); if (stack == MAP_FAILED) errExit("mmap"); pid_t child_pid = clone(childFunc, stack + STACK_SIZE, CLONE_NEWUSER | SIGCHLD, (void *) fd); if (child_pid == -1) errExit("clone"); munmap(stack, STACK_SIZE); /* Test whether setns() is possible from the parent user namespace */ test_setns("parent: ", fd); printf("\n"); if (waitpid(child_pid, NULL, 0) == -1) /* Wait for child */ errExit("waitpid"); exit(EXIT_SUCCESS); }
Note that, in most cases, the programs rendered in these web pages are not free standing: you'll typically also need a few other source files (mostly in the lib/ subdirectory) as well. Generally, it's easier to just download the entire source tarball and build the programs with make(1). By hovering your mouse over the various hyperlinked include files and function calls above, you can see which other source files this file depends on.