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>
|
2022-09-12 12:56:20 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <linux/un.h>
|
|
|
|
|
|
|
|
#define die(...) \
|
|
|
|
do { \
|
|
|
|
fprintf(stderr, __VA_ARGS__); \
|
|
|
|
exit(1); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
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"
|
|
|
|
" nstool pid SOCK\n"
|
|
|
|
" Print the pid of the nstool hold process with control socket\n"
|
|
|
|
" at SOCK, as seen in the caller's namespace.\n"
|
|
|
|
" 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:09 +02:00
|
|
|
static int connect_ctl(const char * sockpath, bool wait)
|
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,
|
|
|
|
};
|
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);
|
|
|
|
|
|
|
|
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];
|
|
|
|
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:09 +02:00
|
|
|
printf("nstool hold: local PID=%d local UID=%u local GID=%u\n",
|
2022-09-12 12:56:20 +02:00
|
|
|
getpid(), getuid(), getgid());
|
|
|
|
do {
|
|
|
|
int afd = accept(fd, NULL, NULL);
|
|
|
|
char buf;
|
|
|
|
|
|
|
|
if (afd < 0)
|
|
|
|
die("accept(): %s\n", strerror(errno));
|
|
|
|
|
|
|
|
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:09 +02:00
|
|
|
static void cmd_pid(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];
|
2022-09-12 12:56:20 +02:00
|
|
|
struct ucred peercred;
|
|
|
|
socklen_t optlen = sizeof(peercred);
|
2023-04-06 05:28:09 +02:00
|
|
|
int fd, rc;
|
2022-09-12 12:56:20 +02:00
|
|
|
|
2023-04-06 05:28:09 +02:00
|
|
|
if (argc != 2)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
fd = connect_ctl(sockpath, true);
|
2022-09-12 12:56:20 +02:00
|
|
|
|
|
|
|
rc = getsockopt(fd, SOL_SOCKET, SO_PEERCRED,
|
|
|
|
&peercred, &optlen);
|
|
|
|
if (rc < 0)
|
2023-04-06 05:28:09 +02:00
|
|
|
die("getsockopet(SO_PEERCRED) %s: %s\n",
|
|
|
|
sockpath, strerror(errno));
|
2022-09-12 12:56:20 +02:00
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
printf("%d\n", peercred.pid);
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
fd = connect_ctl(sockpath, false);
|
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);
|
|
|
|
else if (strcmp(subcmd, "pid") == 0)
|
|
|
|
cmd_pid(argc - 1, argv + 1);
|
|
|
|
else if (strcmp(subcmd, "stop") == 0)
|
|
|
|
cmd_stop(argc - 1, argv + 1);
|
2022-09-12 12:56:20 +02:00
|
|
|
else
|
|
|
|
usage();
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|