blob: a0c8552b64ee04375cf9409b3a48f1b5230bc11e [file] [log] [blame]
Christopher Ferris25981132017-11-14 16:53:49 -08001/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
Christopher Ferris33185402017-01-13 13:28:52 -08002#ifndef __LINUX_NSFS_H
3#define __LINUX_NSFS_H
4
5#include <linux/ioctl.h>
6
7#define NSIO 0xb7
8
9/* Returns a file descriptor that refers to an owning user namespace */
Christopher Ferris0543f742017-07-26 13:09:46 -070010#define NS_GET_USERNS _IO(NSIO, 0x1)
Christopher Ferris33185402017-01-13 13:28:52 -080011/* Returns a file descriptor that refers to a parent namespace */
Christopher Ferris0543f742017-07-26 13:09:46 -070012#define NS_GET_PARENT _IO(NSIO, 0x2)
13/* Returns the type of namespace (CLONE_NEW* value) referred to by
14 file descriptor */
15#define NS_GET_NSTYPE _IO(NSIO, 0x3)
16/* Get owner UID (in the caller's user namespace) for a user namespace */
17#define NS_GET_OWNER_UID _IO(NSIO, 0x4)
Christopher Ferris33185402017-01-13 13:28:52 -080018
19#endif /* __LINUX_NSFS_H */