summaryrefslogtreecommitdiff
path: root/Linux-PAM/modules/pam_namespace/namespace.conf.5
blob: 6a3cc9e3b0452267b7966ee1351ea9a041d30e17 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
.\"     Title: namespace.conf
.\"    Author: 
.\" Generator: DocBook XSL Stylesheets v1.73.1 <http://docbook.sf.net/>
.\"      Date: 02/13/2008
.\"    Manual: Linux-PAM Manual
.\"    Source: Linux-PAM Manual
.\"
.TH "NAMESPACE\.CONF" "5" "02/13/2008" "Linux-PAM Manual" "Linux\-PAM Manual"
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.SH "NAME"
namespace.conf - the namespace configuration file
.SH "DESCRIPTION"
.PP
The
\fIpam_namespace\.so\fR
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
\fI/etc/security/namespace\.init\fR
exists, it is used to initialize the namespace every time a new instance directory is setup\. The script receives the polyinstantiated directory path and the instance directory path as its arguments\.
.PP
The
\fI/etc/security/namespace\.conf\fR
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\.
.PP
When someone logs in, the file
\fInamespace\.conf\fR
is scanned\. Comments are marked by
\fI#\fR
characters\. Each non comment line represents one polyinstantiated directory\. The fields are separated by spaces but can be quoted by
\fI"\fR
characters also escape sequences
\fI\eb\fR,
\fI\en\fR, and
\fI\et\fR
are recognized\. The fields are as follows:
.PP
\fIpolydir\fR
\fIinstance_prefix\fR
\fImethod\fR
\fIlist_of_uids\fR
.PP
The first field,
\fIpolydir\fR, is the absolute pathname of the directory to polyinstantiate\. The special string
\fI$HOME\fR
is replaced with the user\'s home directory, and
\fI$USER\fR
with the username\. This field cannot be blank\.
.PP
The second field,
\fIinstance_prefix\fR
is the string prefix used to build the pathname for the instantiation of <polydir>\. Depending on the polyinstantiation
\fImethod\fR
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
\fI$HOME\fR
is replaced with the user\'s home directory, and
\fI$USER\fR
with the username\. This field cannot be blank\.
.PP
The third field,
\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\'s session is closed\. Methods "context" and "level" are only available with SELinux\. This field cannot be blank\.
.PP
The fourth field,
\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\.
.PP
The
\fImethod\fR
field can contain also following optional flags separated by
\fI:\fR
characters\.
.PP
\fIcreate\fR=\fImode\fR,\fIowner\fR,\fIgroup\fR
\- 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\.
.PP
\fIiscript\fR=\fIpath\fR
\- path to the instance directory init script\. The base directory for relative paths is
\fI/etc/security/namespace\.d\fR\.
.PP
\fInoinit\fR
\- instance directory init script will not be executed\.
.PP
\fIshared\fR
\- the instance directories for "context" and "level" methods will not contain the user name and will be shared among all users\.
.PP
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
\fIignore_instance_parent_mode\fR
.PP
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
\fIpam_selinux\.so\fR
module\. If this context is not set the polyinstatiation will be based just on user name\.
.PP
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
\fIgen_hash\fR
is used the whole string is replaced with md5sum of itself\.
.SH "EXAMPLES"
.PP
These are some example lines which might be specified in
\fI/etc/security/namespace\.conf\fR\.
.sp
.RS 4
.nf
      # The following three lines will polyinstantiate /tmp,
      # /var/tmp and user\'s home directories\. /tmp and /var/tmp
      # will be polyinstantiated based on the security level
      # as well as user name, whereas home directory will be
      # polyinstantiated based on the full security context and user name\.
      # Polyinstantiation will not be performed for user root
      # and adm for directories /tmp and /var/tmp, whereas home
      # directories will be polyinstantiated for all users\.
      #
      # Note that instance directories do not have to reside inside
      # the polyinstantiated directory\. In the examples below,
      # instances of /tmp will be created in /tmp\-inst directory,
      # where as instances of /var/tmp and users home directories
      # will reside within the directories that are being
      # polyinstantiated\.
      #
      /tmp     /tmp\-inst/               level      root,adm
      /var/tmp /var/tmp/tmp\-inst/   	level      root,adm
      $HOME    $HOME/$USER\.inst/inst\- context
    
.fi
.RE
.PP
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:
.PP
session required pam_namespace\.so [arguments]
.PP
This module also depends on pam_selinux\.so setting the context\.
.SH "SEE ALSO"
.PP

\fBpam_namespace\fR(8),
\fBpam.d\fR(5),
\fBpam\fR(8)
.SH "AUTHORS"
.PP
The namespace\.conf manual page was written by Janak Desai <janak@us\.ibm\.com>\. More features added by Tomas Mraz <tmraz@redhat\.com>\.