summaryrefslogtreecommitdiff
path: root/modules/pam_listfile/pam_listfile.8.xml
blob: 85489d3cf98683220ff97c989a12479a1f03827f (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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<?xml version="1.0" encoding='UTF-8'?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
	"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">

<refentry id="pam_listfile">

  <refmeta>
    <refentrytitle>pam_listfile</refentrytitle>
    <manvolnum>8</manvolnum>
    <refmiscinfo class="sectdesc">Linux-PAM Manual</refmiscinfo>
  </refmeta>

  <refnamediv id="pam_listfile-name">
    <refname>pam_listfile</refname>
    <refpurpose>deny or allow services based on an arbitrary file.</refpurpose>
  </refnamediv>

  <refsynopsisdiv>
    <cmdsynopsis id="pam_listfile-cmdsynopsis">
      <command>pam_listfile.so</command>
      <arg choice="plain">
	item=[tty|user|rhost|ruser|group|shell]
      </arg>
      <arg choice="plain">
        sense=[allow|deny]
      </arg>
      <arg choice="plain">
        file=<replaceable>/path/filename</replaceable>
      </arg>
      <arg choice="plain">
        onerr=[succeed|fail]
      </arg>
      <arg choice="opt">
        apply=[<replaceable>user</replaceable>|<replaceable>@group</replaceable>]
      </arg>
    </cmdsynopsis>
  </refsynopsisdiv>

  <refsect1 id="pam_listfile-description">

    <title>DESCRIPTION</title>

    <para>
      pam_listfile is a PAM module which provides a way to deny or
      allow services based on an arbitrary file.
    </para>
    <para>
      The module gets the <option>item</option> of the type specified --
      <emphasis>user</emphasis> specifies the username,
      <emphasis>PAM_USER</emphasis>; tty specifies the name of the terminal
      over which the request has been made, <emphasis>PAM_TTY</emphasis>;
      rhost specifies the name of the remote host (if any) from which the
      request was made, <emphasis>PAM_RHOST</emphasis>; and ruser specifies
      the name of the remote user (if available) who made the request,
      <emphasis>PAM_RUSER</emphasis> -- and looks for an instance of that
      item in the <option>file=<replaceable>filename</replaceable></option>.
      <filename>filename</filename> contains one line per item listed. If
      the item is found, then if
      <option>sense=<replaceable>allow</replaceable></option>,
      <emphasis>PAM_SUCCESS</emphasis> is returned, causing the authorization
      request to succeed; else if
      <option>sense=<replaceable>deny</replaceable></option>,
      <emphasis>PAM_AUTH_ERR</emphasis> is returned, causing the authorization
      request to fail.
    </para>
    <para>
      If an error is encountered (for instance, if
      <filename>filename</filename> does not exist, or a poorly-constructed
      argument is encountered), then if <emphasis>onerr=succeed</emphasis>,
      <emphasis>PAM_SUCCESS</emphasis> is returned, otherwise if
      <emphasis>onerr=fail</emphasis>, <emphasis>PAM_AUTH_ERR</emphasis> or
      <emphasis>PAM_SERVICE_ERR</emphasis> (as appropriate) will be returned.
    </para>
    <para>
      An additional argument, <option>apply=</option>, can be used
      to restrict the application of the above to a specific user
      (<option>apply=<replaceable>username</replaceable></option>)
      or a given group
      (<option>apply=<replaceable>@groupname</replaceable></option>).
      This added restriction is only meaningful when used with the
      <emphasis>tty</emphasis>, <emphasis>rhost</emphasis> and
      <emphasis>shell</emphasis> items.
    </para>
    <para>
      Besides this last one, all arguments should be specified; do not
      count on any default behavior.
    </para>
    <para>
      No credentials are awarded by this module.
    </para>
  </refsect1>

  <refsect1 id="pam_listfile-options">

    <title>OPTIONS</title>
    <para>
      <variablelist>

        <varlistentry>
          <term>
            <option>item=[tty|user|rhost|ruser|group|shell]</option>
          </term>
          <listitem>
            <para>
	      What is listed in the file and should be checked for.
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            <option>sense=[allow|deny]</option>
          </term>
          <listitem>
            <para>
              Action to take if found in file, if the item is NOT found in
              the file, then the opposite action is requested.
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            <option>file=<replaceable>/path/filename</replaceable></option>
          </term>
          <listitem>
            <para>
              File containing one item per line. The file needs to be a plain
              file and not world writeable.
            </para>
          </listitem>
	</varlistentry>

        <varlistentry>
          <term>
            <option>onerr=[succeed|fail]</option>
          </term>
          <listitem>
            <para>
              What to do if something weird happens like being unable to open
              the file.
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>
            <option>apply=[<replaceable>user</replaceable>|<replaceable>@group</replaceable>]</option>
          </term>
          <listitem>
            <para>
              Restrict the user class for which the restriction apply. Note that
              with <option>item=[user|ruser|group]</option> this oes not make sense,
              but for <option>item=[tty|rhost|shell]</option> it have a meaning.
            </para>
          </listitem>
        </varlistentry>
      </variablelist>

    </para>
  </refsect1>

  <refsect1 id="pam_listfile-services">
    <title>MODULE SERVICES PROVIDED</title>
    <para>
      The services <option>auth</option>, <option>account</option>,
      <option>password</option> and <option>session</option> are supported.
    </para>
  </refsect1>

  <refsect1 id='pam_listfile-return_values'>
    <title>RETURN VALUES</title>
    <para>
      <variablelist>

        <varlistentry>
          <term>PAM_AUTH_ERR</term>
          <listitem>
            <para>Authentication failure.</para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>PAM_BUF_ERR</term>
          <listitem>
             <para>
               Memory buffer error.
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>PAM_IGNORE</term>
          <listitem>
            <para>
              The rule does not apply to the <option>apply</option> option.
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>PAM_SERVICE_ERR</term>
          <listitem>
            <para>
	      Error in service module.
            </para>
          </listitem>
        </varlistentry>

        <varlistentry>
          <term>PAM_SUCCESS</term>
          <listitem>
            <para>
              Success.
            </para>
          </listitem>
        </varlistentry>

      </variablelist>
    </para>
  </refsect1>

  <refsect1 id='pam_listfile-examples'>
    <title>EXAMPLES</title>
    <para>
      Classic 'ftpusers' authentication can be implemented with this entry
      in <filename>/etc/pam.d/ftpd</filename>:
      <programlisting>
#
# deny ftp-access to users listed in the /etc/ftpusers file
#
auth    required       pam_listfile.so \
        onerr=succeed item=user sense=deny file=/etc/ftpusers
      </programlisting>
      Note, users listed in <filename>/etc/ftpusers</filename> file are
      (counterintuitively) <emphasis>not</emphasis> allowed access to
      the ftp service.
    </para>
    <para>
      To allow login access only for certain users, you can use a
      <filename>/etc/pam.d/login</filename> entry like this:
      <programlisting>
#
# permit login to users listed in /etc/loginusers
#
auth    required       pam_listfile.so \
        onerr=fail item=user sense=allow file=/etc/loginusers
      </programlisting>
      For this example to work, all users who are allowed to use the
      login service should be listed in the file
      <filename>/etc/loginusers</filename>.  Unless you are explicitly
      trying to lock out root, make sure that when you do this, you leave
      a way for root to log in, either by listing root in
      <filename>/etc/loginusers</filename>, or by listing a user who is
      able to <emphasis>su</emphasis> to the root account.
    </para>
  </refsect1>

  <refsect1 id='pam_listfile-see_also'>
    <title>SEE ALSO</title>
    <para>
      <citerefentry>
	<refentrytitle>pam.conf</refentrytitle><manvolnum>5</manvolnum>
      </citerefentry>,
      <citerefentry>
	<refentrytitle>pam.d</refentrytitle><manvolnum>8</manvolnum>
      </citerefentry>,
      <citerefentry>
	<refentrytitle>pam</refentrytitle><manvolnum>8</manvolnum>
      </citerefentry>
    </para>
  </refsect1>

  <refsect1 id='pam_listfile-author'>
    <title>AUTHOR</title>
      <para>
        pam_listfile was written by Michael K. Johnson &lt;johnsonm@redhat.com&gt;
        and Elliot Lee &lt;sopwith@cuc.edu&gt;.
      </para>
  </refsect1>

</refentry>