1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
/*
* Copyright (c) 2017-2019, SyLabs, Inc. All rights reserved.
* Copyright (c) 2017, SingularityWare, LLC. All rights reserved.
*
* This file is part of the Singularity Linux container project. It is subject to the license
* terms in the LICENSE.md file found in the top-level directory of this distribution and
* at https://github.com/sylabs/singularity/blob/main/LICENSE.md. No part
* of Singularity, including this file, may be copied, modified, propagated, or distributed
* except according to the terms contained in the LICENSE.md file.
*
*/
#define _GNU_SOURCE
#include <unistd.h>
#include <errno.h>
#include <sys/syscall.h>
#include "include/setns.h"
#include "include/message.h"
#ifdef __NR_setns
int xsetns(int fd, int nstype) {
return syscall(__NR_setns, fd, nstype);
}
#else
int xsetns(int fd, int nstype) {
(void)fd;
(void)nstype;
singularity_message(WARNING, "setns() not supported at compile time by kernel at time of building\n");
errno = ENOSYS;
return -1;
}
#endif /* __NR_setns */
|