File: krb5_get_in_cred.3

package info (click to toggle)
heimdal 7.1.0%2Bdfsg-13%2Bdeb9u3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 41,436 kB
  • sloc: ansic: 354,938; sh: 12,104; makefile: 4,353; yacc: 1,774; perl: 1,572; python: 748; lex: 732; java: 119; awk: 41
file content (274 lines) | stat: -rw-r--r-- 7,642 bytes parent folder | download | duplicates (17)
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
.\" Copyright (c) 2003 Kungliga Tekniska Högskolan
.\" (Royal Institute of Technology, Stockholm, Sweden).
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\"
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\"
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\"
.\" 3. Neither the name of the Institute nor the names of its contributors
.\"    may be used to endorse or promote products derived from this software
.\"    without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" $Id$
.\"
.Dd May 31, 2003
.Dt KRB5_GET_IN_TKT 3
.Os HEIMDAL
.Sh NAME
.Nm krb5_get_in_tkt ,
.Nm krb5_get_in_cred ,
.Nm krb5_get_in_tkt_with_password ,
.Nm krb5_get_in_tkt_with_keytab ,
.Nm krb5_get_in_tkt_with_skey ,
.Nm krb5_free_kdc_rep ,
.Nm krb5_password_key_proc
.Nd deprecated initial authentication functions
.Sh LIBRARY
Kerberos 5 Library (libkrb5, -lkrb5)
.Sh SYNOPSIS
.In krb5.h
.Pp
.Ft krb5_error_code
.Fo krb5_get_in_tkt
.Fa "krb5_context context"
.Fa "krb5_flags options"
.Fa "const krb5_addresses *addrs"
.Fa "const krb5_enctype *etypes"
.Fa "const krb5_preauthtype *ptypes"
.Fa "krb5_key_proc key_proc"
.Fa "krb5_const_pointer keyseed"
.Fa "krb5_decrypt_proc decrypt_proc"
.Fa "krb5_const_pointer decryptarg"
.Fa "krb5_creds *creds"
.Fa "krb5_ccache ccache"
.Fa "krb5_kdc_rep *ret_as_reply"
.Fc
.Ft krb5_error_code
.Fo krb5_get_in_cred
.Fa "krb5_context context"
.Fa "krb5_flags options"
.Fa "const krb5_addresses *addrs"
.Fa "const krb5_enctype *etypes"
.Fa "const krb5_preauthtype *ptypes"
.Fa "const krb5_preauthdata *preauth"
.Fa "krb5_key_proc key_proc"
.Fa "krb5_const_pointer keyseed"
.Fa "krb5_decrypt_proc decrypt_proc"
.Fa "krb5_const_pointer decryptarg"
.Fa "krb5_creds *creds"
.Fa "krb5_kdc_rep *ret_as_reply"
.Fc
.Ft krb5_error_code
.Fo krb5_get_in_tkt_with_password
.Fa "krb5_context context"
.Fa "krb5_flags options"
.Fa "krb5_addresses *addrs"
.Fa "const krb5_enctype *etypes"
.Fa "const krb5_preauthtype *pre_auth_types"
.Fa "const char *password"
.Fa "krb5_ccache ccache"
.Fa "krb5_creds *creds"
.Fa "krb5_kdc_rep *ret_as_reply"
.Fc
.Ft krb5_error_code
.Fo krb5_get_in_tkt_with_keytab
.Fa "krb5_context context"
.Fa "krb5_flags options"
.Fa "krb5_addresses *addrs"
.Fa "const krb5_enctype *etypes"
.Fa "const krb5_preauthtype *pre_auth_types"
.Fa "krb5_keytab keytab"
.Fa "krb5_ccache ccache"
.Fa "krb5_creds *creds"
.Fa "krb5_kdc_rep *ret_as_reply"
.Fc
.Ft krb5_error_code
.Fo krb5_get_in_tkt_with_skey
.Fa "krb5_context context"
.Fa "krb5_flags options"
.Fa "krb5_addresses *addrs"
.Fa "const krb5_enctype *etypes"
.Fa "const krb5_preauthtype *pre_auth_types"
.Fa "const krb5_keyblock *key"
.Fa "krb5_ccache ccache"
.Fa "krb5_creds *creds"
.Fa "krb5_kdc_rep *ret_as_reply"
.Fc
.Ft krb5_error_code
.Fo krb5_free_kdc_rep
.Fa "krb5_context context"
.Fa "krb5_kdc_rep *rep"
.Fc
.Ft krb5_error_code
.Fo krb5_password_key_proc
.Fa "krb5_context context"
.Fa "krb5_enctype type"
.Fa "krb5_salt salt"
.Fa "krb5_const_pointer keyseed"
.Fa "krb5_keyblock **key"
.Fc
.Sh DESCRIPTION
.Bf Em
All the functions in this manual page are deprecated in the MIT
implementation, and will soon be deprecated in Heimdal too, don't use them.
.Ef
.Pp
Getting initial credential ticket for a principal.
.Nm krb5_get_in_cred
is the function all other krb5_get_in function uses to fetch tickets.
The other krb5_get_in function are more specialized and therefor
somewhat easier to use.
.Pp
If your need is only to verify a user and password, consider using
.Xr krb5_verify_user 3
instead, it have a much simpler interface.
.Pp
.Nm krb5_get_in_tkt
and
.Nm krb5_get_in_cred
fetches initial credential, queries after key using the
.Fa key_proc
argument.
The differences between the two function is that
.Nm krb5_get_in_tkt
stores the credential in a
.Li krb5_creds
while
.Nm krb5_get_in_cred
stores the credential in a
.Li krb5_ccache .
.Pp
.Nm krb5_get_in_tkt_with_password ,
.Nm krb5_get_in_tkt_with_keytab ,
and
.Nm krb5_get_in_tkt_with_skey
does the same work as
.Nm krb5_get_in_cred
but are more specialized.
.Pp
.Nm krb5_get_in_tkt_with_password
uses the clients password to authenticate.
If the password argument is
.Dv NULL
the user user queried with the default password query function.
.Pp
.Nm krb5_get_in_tkt_with_keytab
searches the given keytab for a service entry for the client principal.
If the keytab is
.Dv NULL
the default keytab is used.
.Pp
.Nm krb5_get_in_tkt_with_skey
uses a key to get the initial credential.
.Pp
There are some common arguments to the krb5_get_in functions, these are:
.Pp
.Fa options
are the
.Dv KDC_OPT
flags.
.Pp
.Fa etypes
is a
.Dv NULL
terminated array of encryption types that the client approves.
.Pp
.Fa addrs
a list of the addresses that the initial ticket.
If it is
.Dv NULL
the list will be generated by the library.
.Pp
.Fa pre_auth_types
a
.Dv NULL
terminated array of pre-authentication types.
If
.Fa pre_auth_types
is
.Dv NULL
the function will try without pre-authentication and return those
pre-authentication that the KDC returned.
.Pp
.Fa ret_as_reply
will (if not
.Dv NULL )
be filled in with the response of the KDC and should be free with
.Fn krb5_free_kdc_rep .
.Pp
.Fa key_proc
is a pointer to a function that should return a key salted appropriately.
Using
.Dv NULL
will use the default password query function.
.Pp
.Fa decrypt_proc
Using
.Dv NULL
will use the default decryption function.
.Pp
.Fa decryptarg
will be passed to the decryption function
.Fa decrypt_proc .
.Pp
.Fa creds
creds should be filled in with the template for a credential that
should be requested.
The client and server elements of the creds structure must be filled in.
Upon return of the function it will be contain the content of the
requested credential
.Fa ( krb5_get_in_cred ) ,
or it will be freed with
.Xr krb5_free_creds 3
(all the other krb5_get_in functions).
.Pp
.Fa ccache
will store the credential in the credential cache
.Fa ccache .
The credential cache will not be initialized, thats up the the caller.
.Pp
.Nm krb5_password_key_proc
is a library function that is suitable using as the
.Fa krb5_key_proc
argument to
.Nm krb5_get_in_cred
or
.Nm krb5_get_in_tkt .
.Fa keyseed
should be a pointer to a
.Dv NUL
terminated string or
.Dv NULL .
.Nm krb5_password_key_proc
will query the user for the pass on the console if the password isn't
given as the argument
.Fa keyseed .
.Pp
.Fn krb5_free_kdc_rep
frees the content of
.Fa rep .
.Sh SEE ALSO
.Xr krb5 3 ,
.Xr krb5_verify_user 3 ,
.Xr krb5.conf 5 ,
.Xr kerberos 8