summaryrefslogtreecommitdiff
path: root/doc/man/pam_get_authtok.3.xml
blob: 4edf69e7a28452561ef27cddce95141f151a2f8a (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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
                   "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">

<refentry id="pam_get_authtok">

  <refmeta>
    <refentrytitle>pam_get_authtok</refentrytitle>
    <manvolnum>3</manvolnum>
    <refmiscinfo class='setdesc'>Linux-PAM Manual</refmiscinfo>
  </refmeta>

  <refnamediv id="pam_get_authtok-name">
    <refname>pam_get_authtok</refname>
    <refpurpose>get authentication token</refpurpose>
  </refnamediv>

<!-- body begins here -->

  <refsynopsisdiv id="pam_get_authtok-synopsis">
    <funcsynopsis>
      <funcsynopsisinfo>#include &lt;security/pam_ext.h&gt;</funcsynopsisinfo>
      <funcprototype>
        <funcdef>int <function>pam_get_authtok</function></funcdef>
        <paramdef>pam_handle_t *<parameter>pamh</parameter></paramdef>
        <paramdef>int <parameter>item</parameter></paramdef>
        <paramdef>const char **<parameter>authtok</parameter></paramdef>
        <paramdef>const char *<parameter>prompt</parameter></paramdef>
      </funcprototype>
    </funcsynopsis>
  </refsynopsisdiv>

  <refsect1 id='pam_get_authtok-description'>
    <title>DESCRIPTION</title>
    <para>
      The <function>pam_get_authtok</function> function returns the
      cached authentication token, or prompts the user if no token is
      currently cached. It is intended for internal use by Linux-PAM and
      PAM service modules. Upon successful return,
      <emphasis>authtok</emphasis> contains a pointer to the value of the
      authentication token. Note, this is a pointer to the
      <emphasis>actual</emphasis> data and should
      <emphasis remap="B">not</emphasis> be <emphasis>free()</emphasis>'ed or
      over-written!
    </para>
    <para>
      The <emphasis>prompt</emphasis> argument specifies a prompt to use
      if no token is cached. If a NULL pointer
      is given, <function>pam_get_authtok</function> uses pre-defined prompts.
    </para>
    <para>
      The following values are supported for <emphasis>item</emphasis>:
    </para>
    <variablelist>
      <varlistentry>
        <term>PAM_AUTHTOK</term>
        <listitem>
          <para>
            Returns the current authentication token. Called from
            <citerefentry><refentrytitle>pam_sm_chauthtok</refentrytitle><manvolnum>3</manvolnum>
            </citerefentry> <function>pam_get_authtok</function> will
            ask the user to confirm the new token by retyping it. If
            a prompt was specified, "Retype" will be used as prefix.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>PAM_OLDAUTHTOK</term>
        <listitem>
          <para>
            Returns the previous authentication token when changing
            authentication tokens.
          </para>
        </listitem>
      </varlistentry>
    </variablelist>
  </refsect1>

  <refsect1 id="pam_get_authtok-options">
    <title>OPTIONS</title>
    <para>
      <function>pam_get_authtok</function> honours the following module
      options:
    </para>
    <variablelist>
      <varlistentry>
        <term>
          <option>try_first_pass</option>
        </term>
        <listitem>
          <para>
            Before prompting the user for their password, the module first
            tries the previous stacked module's password in case that
            satisfies this module as well.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <option>use_first_pass</option>
        </term>
        <listitem>
          <para>
            The argument <option>use_first_pass</option> forces the module
            to use a previous stacked modules password and will never prompt
            the user - if no password is available or the password is not
            appropriate, the user will be denied access.
          </para>
        </listitem>
      </varlistentry>
       <varlistentry>
        <term>
          <option>use_authtok</option>
        </term>
        <listitem>
          <para>
            When password changing enforce the module to set the new
            token to the one provided by a previously stacked
            <option>password</option> module. If no token is available
            token changing will fail.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <option>authtok_type=<replaceable>XXX</replaceable></option>
        </term>
        <listitem>
          <para>
            The default action is for the module to use the
            following prompts when requesting passwords:
            "New UNIX password: " and "Retype UNIX password: ".
            The example word <emphasis>UNIX</emphasis> can
            be replaced with this option, by default it is empty.
          </para>
        </listitem>
      </varlistentry>
    </variablelist>
  </refsect1>


  <refsect1 id="pam_get_authtok-return_values">
    <title>RETURN VALUES</title>
    <variablelist>
      <varlistentry>
        <term>PAM_AUTH_ERR</term>
        <listitem>
           <para>
             Authentication token could not be retrieved.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>PAM_AUTHTOK_ERR</term>
        <listitem>
           <para>
             New authentication could not be retrieved.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>PAM_SUCCESS</term>
        <listitem>
           <para>
             Authentication token was successful retrieved.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>PAM_SYSTEM_ERR</term>
        <listitem>
           <para>
             No space for an authentication token was provided.
          </para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>PAM_TRY_AGAIN</term>
        <listitem>
           <para>
             New authentication tokens mismatch.
          </para>
        </listitem>
      </varlistentry>
    </variablelist>
  </refsect1>

  <refsect1 id='pam_get_authtok-see_also'>
    <title>SEE ALSO</title>
    <para>
      <citerefentry>
        <refentrytitle>pam</refentrytitle><manvolnum>8</manvolnum>
      </citerefentry>
    </para>
  </refsect1>

  <refsect1 id='pam_get_authtok-standards'>
    <title>STANDARDS</title>
    <para>
      The <function>pam_get_authtok</function> function is a Linux-PAM
      extensions.
    </para>
  </refsect1>

</refentry>