passt: Relicense to GPL 2.0, or any later version
In practical terms, passt doesn't benefit from the additional
protection offered by the AGPL over the GPL, because it's not
suitable to be executed over a computer network.
Further, restricting the distribution under the version 3 of the GPL
wouldn't provide any practical advantage either, as long as the passt
codebase is concerned, and might cause unnecessary compatibility
dilemmas.
Change licensing terms to the GNU General Public License Version 2,
or any later version, with written permission from all current and
past contributors, namely: myself, David Gibson, Laine Stump, Andrea
Bolognani, Paul Holzinger, Richard W.M. Jones, Chris Kuhn, Florian
Weimer, Giuseppe Scrivano, Stefan Hajnoczi, and Vasiliy Ulyanov.
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2023-04-05 20:11:44 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2022-09-12 12:56:20 +02:00
|
|
|
|
2023-04-06 05:28:06 +02:00
|
|
|
/* nstool - maintain a namespace to be entered by other processes
|
2022-09-12 12:56:20 +02:00
|
|
|
*
|
|
|
|
* Copyright Red Hat
|
|
|
|
* Author: David Gibson <david@gibson.dropbear.id.au>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2023-04-06 05:28:09 +02:00
|
|
|
#include <stdbool.h>
|
2023-04-06 05:28:12 +02:00
|
|
|
#include <stdint.h>
|
2022-09-12 12:56:20 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
2023-04-06 05:28:10 +02:00
|
|
|
#include <getopt.h>
|
2023-04-06 05:28:11 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <limits.h>
|
2022-09-12 12:56:20 +02:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <linux/un.h>
|
2023-04-06 05:28:11 +02:00
|
|
|
#include <sched.h>
|
|
|
|
|
|
|
|
#define ARRAY_SIZE(a) ((int)(sizeof(a) / sizeof((a)[0])))
|
2022-09-12 12:56:20 +02:00
|
|
|
|
|
|
|
#define die(...) \
|
|
|
|
do { \
|
|
|
|
fprintf(stderr, __VA_ARGS__); \
|
|
|
|
exit(1); \
|
|
|
|
} while (0)
|
|
|
|
|
2023-04-06 05:28:11 +02:00
|
|
|
struct ns_type {
|
|
|
|
int flag;
|
|
|
|
const char *name;
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct ns_type nstypes[] = {
|
|
|
|
{ CLONE_NEWCGROUP, "cgroup" },
|
|
|
|
{ CLONE_NEWIPC, "ipc" },
|
|
|
|
{ CLONE_NEWNET, "net" },
|
|
|
|
{ CLONE_NEWNS, "mnt" },
|
|
|
|
{ CLONE_NEWPID, "pid" },
|
|
|
|
{ CLONE_NEWTIME, "time" },
|
|
|
|
{ CLONE_NEWUSER, "user" },
|
|
|
|
{ CLONE_NEWUTS, "uts" },
|
|
|
|
};
|
|
|
|
|
2023-04-06 05:28:13 +02:00
|
|
|
#define for_each_nst(_nst, _flags) \
|
|
|
|
for ((_nst) = &nstypes[0]; \
|
|
|
|
((_nst) - nstypes) < ARRAY_SIZE(nstypes); \
|
|
|
|
(_nst)++) \
|
|
|
|
if ((_flags) & (_nst)->flag)
|
|
|
|
|
|
|
|
#define for_every_nst(_nst) for_each_nst(_nst, INT_MAX)
|
|
|
|
|
2023-04-06 05:28:12 +02:00
|
|
|
#define NSTOOL_MAGIC 0x7570017575601d75ULL
|
|
|
|
|
2023-04-06 05:28:11 +02:00
|
|
|
struct holder_info {
|
2023-04-06 05:28:12 +02:00
|
|
|
uint64_t magic;
|
2023-04-06 05:28:11 +02:00
|
|
|
pid_t pid;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
|
|
|
};
|
|
|
|
|
2022-09-12 12:56:20 +02:00
|
|
|
static void usage(void)
|
|
|
|
{
|
2023-04-06 05:28:08 +02:00
|
|
|
die("Usage:\n"
|
|
|
|
" nstool hold SOCK\n"
|
|
|
|
" Run within a set of namespaces, open a Unix domain socket\n"
|
|
|
|
" (the \"control socket\") at SOCK and wait for requests from\n"
|
|
|
|
" other nstool subcommands.\n"
|
2023-04-06 05:28:10 +02:00
|
|
|
" nstool info [-pw] pid SOCK\n"
|
|
|
|
" Print information about the nstool hold process with control\n"
|
|
|
|
" socket at SOCK\n"
|
|
|
|
" -p Print just the holder's PID as seen by the caller\n"
|
|
|
|
" -w Retry connecting to SOCK until it is ready\n"
|
2023-04-06 05:28:08 +02:00
|
|
|
" nstool stop SOCK\n"
|
|
|
|
" Instruct the nstool hold with control socket at SOCK to\n"
|
|
|
|
" terminate.\n");
|
2022-09-12 12:56:20 +02:00
|
|
|
}
|
|
|
|
|
2023-04-06 05:28:11 +02:00
|
|
|
static int connect_ctl(const char *sockpath, bool wait,
|
|
|
|
struct holder_info *info,
|
|
|
|
struct ucred *peercred)
|
2022-09-12 12:56:20 +02:00
|
|
|
{
|
2023-04-06 05:28:09 +02:00
|
|
|
int fd = socket(AF_UNIX, SOCK_STREAM, PF_UNIX);
|
|
|
|
struct sockaddr_un addr = {
|
|
|
|
.sun_family = AF_UNIX,
|
|
|
|
};
|
2023-04-06 05:28:11 +02:00
|
|
|
struct holder_info discard;
|
|
|
|
ssize_t len;
|
2022-09-12 12:56:20 +02:00
|
|
|
int rc;
|
|
|
|
|
2023-04-06 05:28:09 +02:00
|
|
|
if (fd < 0)
|
|
|
|
die("socket(): %s\n", strerror(errno));
|
|
|
|
|
|
|
|
strncpy(addr.sun_path, sockpath, UNIX_PATH_MAX);
|
|
|
|
|
|
|
|
do {
|
|
|
|
rc = connect(fd, (struct sockaddr *)&addr, sizeof(addr));
|
|
|
|
if (rc < 0 &&
|
|
|
|
(!wait || (errno != ENOENT && errno != ECONNREFUSED)))
|
|
|
|
die("connect() to %s: %s\n", sockpath, strerror(errno));
|
|
|
|
} while (rc < 0);
|
|
|
|
|
2023-04-06 05:28:11 +02:00
|
|
|
if (!info)
|
|
|
|
info = &discard;
|
|
|
|
|
|
|
|
/* Always read the info structure, even if we don't need it,
|
|
|
|
* so that the holder doesn't get a broken pipe error
|
|
|
|
*/
|
|
|
|
len = read(fd, info, sizeof(*info));
|
|
|
|
if (len < 0)
|
|
|
|
die("read() on control socket %s: %s\n", sockpath, strerror(errno));
|
|
|
|
if ((size_t)len < sizeof(*info))
|
|
|
|
die("short read() on control socket %s\n", sockpath);
|
|
|
|
|
2023-04-06 05:28:12 +02:00
|
|
|
if (info->magic != NSTOOL_MAGIC)
|
|
|
|
die("Control socket %s doesn't appear to belong to nstool\n",
|
|
|
|
sockpath);
|
|
|
|
|
2023-04-06 05:28:11 +02:00
|
|
|
if (peercred) {
|
|
|
|
socklen_t optlen = sizeof(*peercred);
|
|
|
|
|
|
|
|
rc = getsockopt(fd, SOL_SOCKET, SO_PEERCRED,
|
|
|
|
peercred, &optlen);
|
|
|
|
if (rc < 0)
|
|
|
|
die("getsockopet(SO_PEERCRED) %s: %s\n",
|
|
|
|
sockpath, strerror(errno));
|
|
|
|
}
|
|
|
|
|
2023-04-06 05:28:09 +02:00
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cmd_hold(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int fd = socket(AF_UNIX, SOCK_STREAM, PF_UNIX);
|
|
|
|
struct sockaddr_un addr = {
|
|
|
|
.sun_family = AF_UNIX,
|
|
|
|
};
|
|
|
|
const char *sockpath = argv[1];
|
2023-04-06 05:28:11 +02:00
|
|
|
struct holder_info info;
|
2023-04-06 05:28:09 +02:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
if (argc != 2)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
if (fd < 0)
|
|
|
|
die("socket(): %s\n", strerror(errno));
|
|
|
|
|
|
|
|
strncpy(addr.sun_path, sockpath, UNIX_PATH_MAX);
|
|
|
|
|
|
|
|
rc = bind(fd, (struct sockaddr *)&addr, sizeof(addr));
|
2022-09-12 12:56:20 +02:00
|
|
|
if (rc < 0)
|
2023-04-06 05:28:09 +02:00
|
|
|
die("bind() to %s: %s\n", sockpath, strerror(errno));
|
2022-09-12 12:56:20 +02:00
|
|
|
|
|
|
|
rc = listen(fd, 0);
|
|
|
|
if (rc < 0)
|
2023-04-06 05:28:09 +02:00
|
|
|
die("listen() on %s: %s\n", sockpath, strerror(errno));
|
2022-09-12 12:56:20 +02:00
|
|
|
|
2023-04-06 05:28:12 +02:00
|
|
|
info.magic = NSTOOL_MAGIC;
|
2023-04-06 05:28:11 +02:00
|
|
|
info.pid = getpid();
|
|
|
|
info.uid = getuid();
|
|
|
|
info.gid = getgid();
|
|
|
|
|
2022-09-12 12:56:20 +02:00
|
|
|
do {
|
|
|
|
int afd = accept(fd, NULL, NULL);
|
|
|
|
char buf;
|
|
|
|
|
|
|
|
if (afd < 0)
|
|
|
|
die("accept(): %s\n", strerror(errno));
|
|
|
|
|
2023-04-06 05:28:11 +02:00
|
|
|
rc = write(afd, &info, sizeof(info));
|
|
|
|
if (rc < 0)
|
|
|
|
die("write(): %s\n", strerror(errno));
|
|
|
|
if ((size_t)rc < sizeof(info))
|
|
|
|
die("short write() on control socket\n");
|
|
|
|
|
2022-09-12 12:56:20 +02:00
|
|
|
rc = read(afd, &buf, sizeof(buf));
|
|
|
|
if (rc < 0)
|
|
|
|
die("read(): %s\n", strerror(errno));
|
|
|
|
} while (rc == 0);
|
|
|
|
|
2023-04-06 05:28:09 +02:00
|
|
|
unlink(sockpath);
|
2022-09-12 12:56:20 +02:00
|
|
|
}
|
|
|
|
|
2023-04-06 05:28:11 +02:00
|
|
|
static ssize_t getlink(char *buf, size_t bufsiz, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
char linkpath[PATH_MAX];
|
|
|
|
ssize_t linklen;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
if (vsnprintf(linkpath, sizeof(linkpath), fmt, ap) >= PATH_MAX)
|
|
|
|
die("Truncated path \"%s\"\n", linkpath);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
linklen = readlink(linkpath, buf, bufsiz);
|
|
|
|
if (linklen < 0)
|
|
|
|
die("readlink() on %s: %s\n", linkpath, strerror(errno));
|
|
|
|
if ((size_t)linklen >= bufsiz)
|
|
|
|
die("Target of symbolic link %s is too long\n", linkpath);
|
|
|
|
|
|
|
|
return linklen;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int detect_namespaces(pid_t pid)
|
|
|
|
{
|
2023-04-06 05:28:13 +02:00
|
|
|
const struct ns_type *nst;
|
2023-04-06 05:28:11 +02:00
|
|
|
int flags = 0;
|
|
|
|
|
2023-04-06 05:28:13 +02:00
|
|
|
for_every_nst(nst) {
|
2023-04-06 05:28:11 +02:00
|
|
|
char selflink[PATH_MAX], pidlink[PATH_MAX];
|
|
|
|
ssize_t selflen, pidlen;
|
|
|
|
|
|
|
|
selflen = getlink(selflink, sizeof(selflink),
|
|
|
|
"/proc/self/ns/%s", nst->name);
|
|
|
|
pidlen = getlink(pidlink, sizeof(pidlink),
|
|
|
|
"/proc/%d/ns/%s", pid, nst->name);
|
|
|
|
|
|
|
|
if ((selflen != pidlen) || memcmp(selflink, pidlink, selflen))
|
|
|
|
flags |= nst->flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_nstypes(int flags)
|
|
|
|
{
|
2023-04-06 05:28:13 +02:00
|
|
|
const struct ns_type *nst;
|
2023-04-06 05:28:11 +02:00
|
|
|
bool first = true;
|
|
|
|
|
2023-04-06 05:28:13 +02:00
|
|
|
for_each_nst(nst, flags) {
|
2023-04-06 05:28:11 +02:00
|
|
|
printf("%s%s", first ? "" : ", " , nst->name);
|
|
|
|
first = false;
|
|
|
|
flags &= ~nst->flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags)
|
|
|
|
printf("%s0x%x", first ? "" : ", ", flags);
|
|
|
|
}
|
|
|
|
|
2023-04-06 05:28:10 +02:00
|
|
|
static void cmd_info(int argc, char *argv[])
|
2022-09-12 12:56:20 +02:00
|
|
|
{
|
2023-04-06 05:28:10 +02:00
|
|
|
const struct option options[] = {
|
|
|
|
{"pid", no_argument, NULL, 'p' },
|
|
|
|
{"wait", no_argument, NULL, 'w' },
|
|
|
|
{ 0 },
|
|
|
|
};
|
|
|
|
bool pidonly = false, waitforsock = false;
|
|
|
|
const char *optstring = "pw";
|
2023-04-06 05:28:11 +02:00
|
|
|
struct holder_info info;
|
|
|
|
struct ucred peercred;
|
2023-04-06 05:28:10 +02:00
|
|
|
const char *sockpath;
|
2023-04-06 05:28:11 +02:00
|
|
|
int fd, opt;
|
2022-09-12 12:56:20 +02:00
|
|
|
|
2023-04-06 05:28:10 +02:00
|
|
|
do {
|
|
|
|
opt = getopt_long(argc, argv, optstring, options, NULL);
|
|
|
|
|
|
|
|
switch (opt) {
|
|
|
|
case 'p':
|
|
|
|
pidonly = true;
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
waitforsock = true;
|
|
|
|
break;
|
|
|
|
case -1:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
} while (opt != -1);
|
|
|
|
|
|
|
|
if (optind != argc - 1) {
|
|
|
|
fprintf(stderr, "B\n");
|
2023-04-06 05:28:09 +02:00
|
|
|
usage();
|
2023-04-06 05:28:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sockpath = argv[optind];
|
2023-04-06 05:28:09 +02:00
|
|
|
|
2023-04-06 05:28:11 +02:00
|
|
|
fd = connect_ctl(sockpath, waitforsock, &info, &peercred);
|
2022-09-12 12:56:20 +02:00
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
2023-04-06 05:28:10 +02:00
|
|
|
if (pidonly) {
|
|
|
|
printf("%d\n", peercred.pid);
|
|
|
|
} else {
|
2023-04-06 05:28:11 +02:00
|
|
|
int flags = detect_namespaces(peercred.pid);
|
|
|
|
|
|
|
|
printf("Namespaces: ");
|
|
|
|
print_nstypes(flags);
|
|
|
|
printf("\n");
|
|
|
|
|
2023-04-06 05:28:10 +02:00
|
|
|
printf("As seen from calling context:\n");
|
|
|
|
printf("\tPID:\t%d\n", peercred.pid);
|
|
|
|
printf("\tUID:\t%u\n", peercred.uid);
|
|
|
|
printf("\tGID:\t%u\n", peercred.gid);
|
2023-04-06 05:28:11 +02:00
|
|
|
|
|
|
|
printf("As seen from holding context:\n");
|
|
|
|
printf("\tPID:\t%d\n", info.pid);
|
|
|
|
printf("\tUID:\t%u\n", info.uid);
|
|
|
|
printf("\tGID:\t%u\n", info.gid);
|
2023-04-06 05:28:10 +02:00
|
|
|
}
|
2022-09-12 12:56:20 +02:00
|
|
|
}
|
|
|
|
|
2023-04-06 05:28:09 +02:00
|
|
|
static void cmd_stop(int argc, char *argv[])
|
2022-09-12 12:56:20 +02:00
|
|
|
{
|
2023-04-06 05:28:09 +02:00
|
|
|
const char *sockpath = argv[1];
|
|
|
|
int fd, rc;
|
2022-09-12 12:56:20 +02:00
|
|
|
char buf = 'Q';
|
|
|
|
|
2023-04-06 05:28:09 +02:00
|
|
|
if (argc != 2)
|
|
|
|
usage();
|
|
|
|
|
2023-04-06 05:28:11 +02:00
|
|
|
fd = connect_ctl(sockpath, false, NULL, NULL);
|
2022-09-12 12:56:20 +02:00
|
|
|
|
|
|
|
rc = write(fd, &buf, sizeof(buf));
|
|
|
|
if (rc < 0)
|
2023-04-06 05:28:09 +02:00
|
|
|
die("write() to %s: %s\n", sockpath, strerror(errno));
|
2022-09-12 12:56:20 +02:00
|
|
|
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2023-04-06 05:28:09 +02:00
|
|
|
const char *subcmd = argv[1];
|
2022-09-12 12:56:20 +02:00
|
|
|
int fd;
|
|
|
|
|
2023-04-06 05:28:09 +02:00
|
|
|
if (argc < 2)
|
2022-09-12 12:56:20 +02:00
|
|
|
usage();
|
|
|
|
|
|
|
|
fd = socket(AF_UNIX, SOCK_STREAM, PF_UNIX);
|
|
|
|
if (fd < 0)
|
|
|
|
die("socket(): %s\n", strerror(errno));
|
|
|
|
|
2023-04-06 05:28:09 +02:00
|
|
|
if (strcmp(subcmd, "hold") == 0)
|
|
|
|
cmd_hold(argc - 1, argv + 1);
|
2023-04-06 05:28:10 +02:00
|
|
|
else if (strcmp(subcmd, "info") == 0)
|
|
|
|
cmd_info(argc - 1, argv + 1);
|
2023-04-06 05:28:09 +02:00
|
|
|
else if (strcmp(subcmd, "stop") == 0)
|
|
|
|
cmd_stop(argc - 1, argv + 1);
|
2022-09-12 12:56:20 +02:00
|
|
|
else
|
|
|
|
usage();
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|