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>
|
|
|
|
*
|
|
|
|
* Can run in 3 modes:
|
|
|
|
*
|
2023-04-06 05:28:07 +02:00
|
|
|
* nstool hold <path>
|
2022-09-12 12:56:20 +02:00
|
|
|
* Designed to be run inside a namespace, opens a Unix domain
|
|
|
|
* control socket at <path> and waits until instructed to stop
|
2023-04-06 05:28:07 +02:00
|
|
|
* with "nstool stop <path>"
|
|
|
|
* nstool pid <path>
|
|
|
|
* Prints the PID of the nstool hold process with control socket
|
|
|
|
* <path>. This is given in the PID namespace where nstool pid
|
|
|
|
* is executed, not the one where nstool hold is running
|
|
|
|
* nstool stop <path>
|
|
|
|
* Instruct the nstool hold with control socket at <path> to
|
|
|
|
* exit.
|
2022-09-12 12:56:20 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#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:07 +02:00
|
|
|
die("Usage: nstool hold|pid|stop <socket path>\n");
|
2022-09-12 12:56:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void hold(int fd, const struct sockaddr_un *addr)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = bind(fd, (struct sockaddr *)addr, sizeof(*addr));
|
|
|
|
if (rc < 0)
|
|
|
|
die("bind(): %s\n", strerror(errno));
|
|
|
|
|
|
|
|
rc = listen(fd, 0);
|
|
|
|
if (rc < 0)
|
|
|
|
die("listen(): %s\n", strerror(errno));
|
|
|
|
|
2023-04-06 05:28:06 +02:00
|
|
|
printf("nstool: 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);
|
|
|
|
|
|
|
|
unlink(addr->sun_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pid(int fd, const struct sockaddr_un *addr)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
struct ucred peercred;
|
|
|
|
socklen_t optlen = sizeof(peercred);
|
|
|
|
|
|
|
|
do {
|
|
|
|
rc = connect(fd, (struct sockaddr *)addr, sizeof(*addr));
|
|
|
|
if (rc < 0 && errno != ENOENT && errno != ECONNREFUSED)
|
|
|
|
die("connect(): %s\n", strerror(errno));
|
|
|
|
} while (rc < 0);
|
|
|
|
|
|
|
|
rc = getsockopt(fd, SOL_SOCKET, SO_PEERCRED,
|
|
|
|
&peercred, &optlen);
|
|
|
|
if (rc < 0)
|
|
|
|
die("getsockopet(SO_PEERCRED): %s\n", strerror(errno));
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
printf("%d\n", peercred.pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void stop(int fd, const struct sockaddr_un *addr)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
char buf = 'Q';
|
|
|
|
|
|
|
|
rc = connect(fd, (struct sockaddr *)addr, sizeof(*addr));
|
|
|
|
if (rc < 0)
|
|
|
|
die("connect(): %s\n", strerror(errno));
|
|
|
|
|
|
|
|
rc = write(fd, &buf, sizeof(buf));
|
|
|
|
if (rc < 0)
|
2023-04-06 05:28:06 +02:00
|
|
|
die("write(): %s\n", strerror(errno));
|
2022-09-12 12:56:20 +02:00
|
|
|
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
const char *sockname;
|
|
|
|
struct sockaddr_un sockaddr = {
|
|
|
|
.sun_family = AF_UNIX,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (argc != 3)
|
|
|
|
usage();
|
|
|
|
|
2023-04-06 05:28:07 +02:00
|
|
|
sockname = argv[2];
|
2022-09-12 12:56:20 +02:00
|
|
|
strncpy(sockaddr.sun_path, sockname, UNIX_PATH_MAX);
|
|
|
|
|
|
|
|
fd = socket(AF_UNIX, SOCK_STREAM, PF_UNIX);
|
|
|
|
if (fd < 0)
|
|
|
|
die("socket(): %s\n", strerror(errno));
|
|
|
|
|
2023-04-06 05:28:07 +02:00
|
|
|
if (strcmp(argv[1], "hold") == 0)
|
2022-09-12 12:56:20 +02:00
|
|
|
hold(fd, &sockaddr);
|
2023-04-06 05:28:07 +02:00
|
|
|
else if (strcmp(argv[1], "pid") == 0)
|
2022-09-12 12:56:20 +02:00
|
|
|
pid(fd, &sockaddr);
|
2023-04-06 05:28:07 +02:00
|
|
|
else if (strcmp(argv[1], "stop") == 0)
|
2022-09-12 12:56:20 +02:00
|
|
|
stop(fd, &sockaddr);
|
|
|
|
else
|
|
|
|
usage();
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|