Blame modules/pam_namespace/namespace.conf.5

Packit Service b29381
'\" t
Packit Service b29381
.\"     Title: namespace.conf
Packit Service b29381
.\"    Author: [see the "AUTHORS" section]
Packit Service b29381
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
Packit Service b29381
.\"      Date: 05/18/2017
Packit Service b29381
.\"    Manual: Linux-PAM Manual
Packit Service b29381
.\"    Source: Linux-PAM Manual
Packit Service b29381
.\"  Language: English
Packit Service b29381
.\"
Packit Service b29381
.TH "NAMESPACE\&.CONF" "5" "05/18/2017" "Linux-PAM Manual" "Linux\-PAM Manual"
Packit Service b29381
.\" -----------------------------------------------------------------
Packit Service b29381
.\" * Define some portability stuff
Packit Service b29381
.\" -----------------------------------------------------------------
Packit Service b29381
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Packit Service b29381
.\" http://bugs.debian.org/507673
Packit Service b29381
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
Packit Service b29381
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Packit Service b29381
.ie \n(.g .ds Aq \(aq
Packit Service b29381
.el       .ds Aq '
Packit Service b29381
.\" -----------------------------------------------------------------
Packit Service b29381
.\" * set default formatting
Packit Service b29381
.\" -----------------------------------------------------------------
Packit Service b29381
.\" disable hyphenation
Packit Service b29381
.nh
Packit Service b29381
.\" disable justification (adjust text to left margin only)
Packit Service b29381
.ad l
Packit Service b29381
.\" -----------------------------------------------------------------
Packit Service b29381
.\" * MAIN CONTENT STARTS HERE *
Packit Service b29381
.\" -----------------------------------------------------------------
Packit Service b29381
.SH "NAME"
Packit Service b29381
namespace.conf \- the namespace configuration file
Packit Service b29381
.SH "DESCRIPTION"
Packit Service b29381
.PP
Packit Service b29381
The
Packit Service b29381
\fIpam_namespace\&.so\fR
Packit Service b29381
module allows setup of private namespaces with polyinstantiated directories\&. Directories can be polyinstantiated based on user name or, in the case of SELinux, user name, sensitivity level or complete security context\&. If an executable script
Packit Service b29381
/etc/security/namespace\&.init
Packit Service b29381
exists, it is used to initialize the namespace every time an instance directory is set up and mounted\&. The script receives the polyinstantiated directory path and the instance directory path as its arguments\&.
Packit Service b29381
.PP
Packit Service b29381
The
Packit Service b29381
/etc/security/namespace\&.conf
Packit Service b29381
file specifies which directories are polyinstantiated, how they are polyinstantiated, how instance directories would be named, and any users for whom polyinstantiation would not be performed\&.
Packit Service b29381
.PP
Packit Service b29381
When someone logs in, the file
Packit Service b29381
namespace\&.conf
Packit Service b29381
is scanned\&. Comments are marked by
Packit Service b29381
\fI#\fR
Packit Service b29381
characters\&. Each non comment line represents one polyinstantiated directory\&. The fields are separated by spaces but can be quoted by
Packit Service b29381
\fI"\fR
Packit Service b29381
characters also escape sequences
Packit Service b29381
\fI\eb\fR,
Packit Service b29381
\fI\en\fR, and
Packit Service b29381
\fI\et\fR
Packit Service b29381
are recognized\&. The fields are as follows:
Packit Service b29381
.PP
Packit Service b29381
\fIpolydir\fR\fIinstance_prefix\fR\fImethod\fR\fIlist_of_uids\fR
Packit Service b29381
.PP
Packit Service b29381
The first field,
Packit Service b29381
\fIpolydir\fR, is the absolute pathname of the directory to polyinstantiate\&. The special string
Packit Service b29381
\fI$HOME\fR
Packit Service b29381
is replaced with the user\*(Aqs home directory, and
Packit Service b29381
\fI$USER\fR
Packit Service b29381
with the username\&. This field cannot be blank\&.
Packit Service b29381
.PP
Packit Service b29381
The second field,
Packit Service b29381
\fIinstance_prefix\fR
Packit Service b29381
is the string prefix used to build the pathname for the instantiation of <polydir>\&. Depending on the polyinstantiation
Packit Service b29381
\fImethod\fR
Packit Service b29381
it is then appended with "instance differentiation string" to generate the final instance directory path\&. This directory is created if it did not exist already, and is then bind mounted on the <polydir> to provide an instance of <polydir> based on the <method> column\&. The special string
Packit Service b29381
\fI$HOME\fR
Packit Service b29381
is replaced with the user\*(Aqs home directory, and
Packit Service b29381
\fI$USER\fR
Packit Service b29381
with the username\&. This field cannot be blank\&.
Packit Service b29381
.PP
Packit Service b29381
The third field,
Packit Service b29381
\fImethod\fR, is the method used for polyinstantiation\&. It can take these values; "user" for polyinstantiation based on user name, "level" for polyinstantiation based on process MLS level and user name, "context" for polyinstantiation based on process security context and user name, "tmpfs" for mounting tmpfs filesystem as an instance dir, and "tmpdir" for creating temporary directory as an instance dir which is removed when the user\*(Aqs session is closed\&. Methods "context" and "level" are only available with SELinux\&. This field cannot be blank\&.
Packit Service b29381
.PP
Packit Service b29381
The fourth field,
Packit Service b29381
\fIlist_of_uids\fR, is a comma separated list of user names for whom the polyinstantiation is not performed\&. If left blank, polyinstantiation will be performed for all users\&. If the list is preceded with a single "~" character, polyinstantiation is performed only for users in the list\&.
Packit Service b29381
.PP
Packit Service b29381
The
Packit Service b29381
\fImethod\fR
Packit Service b29381
field can contain also following optional flags separated by
Packit Service b29381
\fI:\fR
Packit Service b29381
characters\&.
Packit Service b29381
.PP
Packit Service b29381
\fIcreate\fR=\fImode\fR,\fIowner\fR,\fIgroup\fR
Packit Service b29381
\- create the polyinstantiated directory\&. The mode, owner and group parameters are optional\&. The default for mode is determined by umask, the default owner is the user whose session is opened, the default group is the primary group of the user\&.
Packit Service b29381
.PP
Packit Service b29381
\fIiscript\fR=\fIpath\fR
Packit Service b29381
\- path to the instance directory init script\&. The base directory for relative paths is
Packit Service b29381
/etc/security/namespace\&.d\&.
Packit Service b29381
.PP
Packit Service b29381
\fInoinit\fR
Packit Service b29381
\- instance directory init script will not be executed\&.
Packit Service b29381
.PP
Packit Service b29381
\fIshared\fR
Packit Service b29381
\- the instance directories for "context" and "level" methods will not contain the user name and will be shared among all users\&.
Packit Service b29381
.PP
Packit Service b29381
\fImntopts\fR=\fIvalue\fR
Packit Service b29381
\- value of this flag is passed to the mount call when the tmpfs mount is done\&. It allows for example the specification of the maximum size of the tmpfs instance that is created by the mount call\&. See
Packit Service b29381
\fBmount\fR(8)
Packit Service b29381
for details\&.
Packit Service b29381
.PP
Packit Service b29381
The directory where polyinstantiated instances are to be created, must exist and must have, by default, the mode of 0000\&. The requirement that the instance parent be of mode 0000 can be overridden with the command line option
Packit Service b29381
\fIignore_instance_parent_mode\fR
Packit Service b29381
.PP
Packit Service b29381
In case of context or level polyinstantiation the SELinux context which is used for polyinstantiation is the context used for executing a new process as obtained by getexeccon\&. This context must be set by the calling application or
Packit Service b29381
pam_selinux\&.so
Packit Service b29381
module\&. If this context is not set the polyinstatiation will be based just on user name\&.
Packit Service b29381
.PP
Packit Service b29381
The "instance differentiation string" is <user name> for "user" method and <user name>_<raw directory context> for "context" and "level" methods\&. If the whole string is too long the end of it is replaced with md5sum of itself\&. Also when command line option
Packit Service b29381
\fIgen_hash\fR
Packit Service b29381
is used the whole string is replaced with md5sum of itself\&.
Packit Service b29381
.SH "EXAMPLES"
Packit Service b29381
.PP
Packit Service b29381
These are some example lines which might be specified in
Packit Service b29381
/etc/security/namespace\&.conf\&.
Packit Service b29381
.sp
Packit Service b29381
.if n \{\
Packit Service b29381
.RS 4
Packit Service b29381
.\}
Packit Service b29381
.nf
Packit Service b29381
      # The following three lines will polyinstantiate /tmp,
Packit Service b29381
      # /var/tmp and user\*(Aqs home directories\&. /tmp and /var/tmp
Packit Service b29381
      # will be polyinstantiated based on the security level
Packit Service b29381
      # as well as user name, whereas home directory will be
Packit Service b29381
      # polyinstantiated based on the full security context and user name\&.
Packit Service b29381
      # Polyinstantiation will not be performed for user root
Packit Service b29381
      # and adm for directories /tmp and /var/tmp, whereas home
Packit Service b29381
      # directories will be polyinstantiated for all users\&.
Packit Service b29381
      #
Packit Service b29381
      # Note that instance directories do not have to reside inside
Packit Service b29381
      # the polyinstantiated directory\&. In the examples below,
Packit Service b29381
      # instances of /tmp will be created in /tmp\-inst directory,
Packit Service b29381
      # where as instances of /var/tmp and users home directories
Packit Service b29381
      # will reside within the directories that are being
Packit Service b29381
      # polyinstantiated\&.
Packit Service b29381
      #
Packit Service b29381
      /tmp     /tmp\-inst/               level      root,adm
Packit Service b29381
      /var/tmp /var/tmp/tmp\-inst/   	level      root,adm
Packit Service b29381
      $HOME    $HOME/$USER\&.inst/inst\- context
Packit Service b29381
    
Packit Service b29381
.fi
Packit Service b29381
.if n \{\
Packit Service b29381
.RE
Packit Service b29381
.\}
Packit Service b29381
.PP
Packit Service b29381
For the <service>s you need polyinstantiation (login for example) put the following line in /etc/pam\&.d/<service> as the last line for session group:
Packit Service b29381
.PP
Packit Service b29381
session required pam_namespace\&.so [arguments]
Packit Service b29381
.PP
Packit Service b29381
This module also depends on pam_selinux\&.so setting the context\&.
Packit Service b29381
.SH "SEE ALSO"
Packit Service b29381
.PP
Packit Service b29381
\fBpam_namespace\fR(8),
Packit Service b29381
\fBpam.d\fR(5),
Packit Service b29381
\fBpam\fR(8)
Packit Service b29381
.SH "AUTHORS"
Packit Service b29381
.PP
Packit Service b29381
The namespace\&.conf manual page was written by Janak Desai <janak@us\&.ibm\&.com>\&. More features added by Tomas Mraz <tmraz@redhat\&.com>\&.