2 Unix SMB/CIFS implementation.
3 kerberos authorization data (PAC) utility library
4 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
5 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2004-2005
6 Copyright (C) Andrew Tridgell 2001
7 Copyright (C) Luke Howard 2002-2003
8 Copyright (C) Stefan Metzmacher 2004-2005
9 Copyright (C) Guenther Deschner 2005,2007,2008
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
28 #include "librpc/gen_ndr/ndr_krb5pac.h"
29 #include "auth/kerberos/pac_utils.h"
31 krb5_error_code
check_pac_checksum(DATA_BLOB pac_data
,
32 struct PAC_SIGNATURE_DATA
*sig
,
34 const krb5_keyblock
*keyblock
)
38 krb5_keyusage usage
= 0;
39 krb5_boolean checksum_valid
= false;
42 #ifdef HAVE_CHECKSUM_IN_KRB5_CHECKSUM /* Heimdal */
43 cksum
.cksumtype
= (krb5_cksumtype
)sig
->type
;
44 cksum
.checksum
.length
= sig
->signature
.length
;
45 cksum
.checksum
.data
= sig
->signature
.data
;
47 cksum
.checksum_type
= (krb5_cksumtype
)sig
->type
;
48 cksum
.length
= sig
->signature
.length
;
49 cksum
.contents
= sig
->signature
.data
;
52 #ifdef HAVE_KRB5_KU_OTHER_CKSUM /* Heimdal */
53 usage
= KRB5_KU_OTHER_CKSUM
;
54 #elif defined(HAVE_KRB5_KEYUSAGE_APP_DATA_CKSUM) /* MIT */
55 usage
= KRB5_KEYUSAGE_APP_DATA_CKSUM
;
57 #error UNKNOWN_KRB5_KEYUSAGE
60 input
.data
= (char *)pac_data
.data
;
61 input
.length
= pac_data
.length
;
63 ret
= krb5_c_verify_checksum(context
,
69 if (!checksum_valid
) {
70 ret
= KRB5KRB_AP_ERR_BAD_INTEGRITY
;
73 DEBUG(2,("check_pac_checksum: PAC Verification failed: %s (%d)\n",
74 error_message(ret
), ret
));
82 * @brief Decode a blob containing a NDR encoded PAC structure
84 * @param mem_ctx - The memory context
85 * @param pac_data_blob - The data blob containing the NDR encoded data
86 * @param context - The Kerberos Context
87 * @param service_keyblock - The Service Key used to verify the checksum
88 * @param client_principal - The client principal
89 * @param tgs_authtime - The ticket timestamp
90 * @param pac_data_out - [out] The decoded PAC
92 * @return - A NTSTATUS error code
94 NTSTATUS
kerberos_decode_pac(TALLOC_CTX
*mem_ctx
,
95 DATA_BLOB pac_data_blob
,
97 const krb5_keyblock
*krbtgt_keyblock
,
98 const krb5_keyblock
*service_keyblock
,
99 krb5_const_principal client_principal
,
101 struct PAC_DATA
**pac_data_out
)
104 enum ndr_err_code ndr_err
;
106 DATA_BLOB modified_pac_blob
;
108 NTTIME tgs_authtime_nttime
;
109 krb5_principal client_principal_pac
= NULL
;
112 struct PAC_SIGNATURE_DATA
*srv_sig_ptr
= NULL
;
113 struct PAC_SIGNATURE_DATA
*kdc_sig_ptr
= NULL
;
114 struct PAC_SIGNATURE_DATA
*srv_sig_wipe
= NULL
;
115 struct PAC_SIGNATURE_DATA
*kdc_sig_wipe
= NULL
;
116 struct PAC_LOGON_NAME
*logon_name
= NULL
;
117 struct PAC_LOGON_INFO
*logon_info
= NULL
;
118 struct PAC_DATA
*pac_data
= NULL
;
119 struct PAC_DATA_RAW
*pac_data_raw
= NULL
;
121 DATA_BLOB
*srv_sig_blob
= NULL
;
122 DATA_BLOB
*kdc_sig_blob
= NULL
;
126 TALLOC_CTX
*tmp_ctx
= talloc_new(mem_ctx
);
128 return NT_STATUS_NO_MEMORY
;
132 *pac_data_out
= NULL
;
135 pac_data
= talloc(tmp_ctx
, struct PAC_DATA
);
136 pac_data_raw
= talloc(tmp_ctx
, struct PAC_DATA_RAW
);
137 kdc_sig_wipe
= talloc(tmp_ctx
, struct PAC_SIGNATURE_DATA
);
138 srv_sig_wipe
= talloc(tmp_ctx
, struct PAC_SIGNATURE_DATA
);
139 if (!pac_data_raw
|| !pac_data
|| !kdc_sig_wipe
|| !srv_sig_wipe
) {
140 talloc_free(tmp_ctx
);
141 return NT_STATUS_NO_MEMORY
;
144 ndr_err
= ndr_pull_struct_blob(&pac_data_blob
, pac_data
, pac_data
,
145 (ndr_pull_flags_fn_t
)ndr_pull_PAC_DATA
);
146 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
147 status
= ndr_map_error2ntstatus(ndr_err
);
148 DEBUG(0,("can't parse the PAC: %s\n",
150 talloc_free(tmp_ctx
);
154 if (pac_data
->num_buffers
< 4) {
155 /* we need logon_ingo, service_key and kdc_key */
156 DEBUG(0,("less than 4 PAC buffers\n"));
157 talloc_free(tmp_ctx
);
158 return NT_STATUS_INVALID_PARAMETER
;
161 ndr_err
= ndr_pull_struct_blob(
162 &pac_data_blob
, pac_data_raw
, pac_data_raw
,
163 (ndr_pull_flags_fn_t
)ndr_pull_PAC_DATA_RAW
);
164 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
165 status
= ndr_map_error2ntstatus(ndr_err
);
166 DEBUG(0,("can't parse the PAC: %s\n",
168 talloc_free(tmp_ctx
);
172 if (pac_data_raw
->num_buffers
< 4) {
173 /* we need logon_ingo, service_key and kdc_key */
174 DEBUG(0,("less than 4 PAC buffers\n"));
175 talloc_free(tmp_ctx
);
176 return NT_STATUS_INVALID_PARAMETER
;
179 if (pac_data
->num_buffers
!= pac_data_raw
->num_buffers
) {
180 /* we need logon_ingo, service_key and kdc_key */
181 DEBUG(0, ("misparse! PAC_DATA has %d buffers while "
182 "PAC_DATA_RAW has %d\n", pac_data
->num_buffers
,
183 pac_data_raw
->num_buffers
));
184 talloc_free(tmp_ctx
);
185 return NT_STATUS_INVALID_PARAMETER
;
188 for (i
=0; i
< pac_data
->num_buffers
; i
++) {
189 struct PAC_BUFFER
*data_buf
= &pac_data
->buffers
[i
];
190 struct PAC_BUFFER_RAW
*raw_buf
= &pac_data_raw
->buffers
[i
];
192 if (data_buf
->type
!= raw_buf
->type
) {
193 DEBUG(0, ("misparse! PAC_DATA buffer %d has type "
194 "%d while PAC_DATA_RAW has %d\n", i
,
195 data_buf
->type
, raw_buf
->type
));
196 talloc_free(tmp_ctx
);
197 return NT_STATUS_INVALID_PARAMETER
;
199 switch (data_buf
->type
) {
200 case PAC_TYPE_LOGON_INFO
:
201 if (!data_buf
->info
) {
204 logon_info
= data_buf
->info
->logon_info
.info
;
206 case PAC_TYPE_SRV_CHECKSUM
:
207 if (!data_buf
->info
) {
210 srv_sig_ptr
= &data_buf
->info
->srv_cksum
;
211 srv_sig_blob
= &raw_buf
->info
->remaining
;
213 case PAC_TYPE_KDC_CHECKSUM
:
214 if (!data_buf
->info
) {
217 kdc_sig_ptr
= &data_buf
->info
->kdc_cksum
;
218 kdc_sig_blob
= &raw_buf
->info
->remaining
;
220 case PAC_TYPE_LOGON_NAME
:
221 logon_name
= &data_buf
->info
->logon_name
;
229 DEBUG(0,("PAC no logon_info\n"));
230 talloc_free(tmp_ctx
);
231 return NT_STATUS_INVALID_PARAMETER
;
235 DEBUG(0,("PAC no logon_name\n"));
236 talloc_free(tmp_ctx
);
237 return NT_STATUS_INVALID_PARAMETER
;
240 if (!srv_sig_ptr
|| !srv_sig_blob
) {
241 DEBUG(0,("PAC no srv_key\n"));
242 talloc_free(tmp_ctx
);
243 return NT_STATUS_INVALID_PARAMETER
;
246 if (!kdc_sig_ptr
|| !kdc_sig_blob
) {
247 DEBUG(0,("PAC no kdc_key\n"));
248 talloc_free(tmp_ctx
);
249 return NT_STATUS_INVALID_PARAMETER
;
252 /* Find and zero out the signatures,
253 * as required by the signing algorithm */
255 /* We find the data blobs above,
256 * now we parse them to get at the exact portion we should zero */
257 ndr_err
= ndr_pull_struct_blob(
258 kdc_sig_blob
, kdc_sig_wipe
, kdc_sig_wipe
,
259 (ndr_pull_flags_fn_t
)ndr_pull_PAC_SIGNATURE_DATA
);
260 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
261 status
= ndr_map_error2ntstatus(ndr_err
);
262 DEBUG(0,("can't parse the KDC signature: %s\n",
264 talloc_free(tmp_ctx
);
268 ndr_err
= ndr_pull_struct_blob(
269 srv_sig_blob
, srv_sig_wipe
, srv_sig_wipe
,
270 (ndr_pull_flags_fn_t
)ndr_pull_PAC_SIGNATURE_DATA
);
271 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
272 status
= ndr_map_error2ntstatus(ndr_err
);
273 DEBUG(0,("can't parse the SRV signature: %s\n",
275 talloc_free(tmp_ctx
);
279 /* Now zero the decoded structure */
280 memset(kdc_sig_wipe
->signature
.data
,
281 '\0', kdc_sig_wipe
->signature
.length
);
282 memset(srv_sig_wipe
->signature
.data
,
283 '\0', srv_sig_wipe
->signature
.length
);
285 /* and reencode, back into the same place it came from */
286 ndr_err
= ndr_push_struct_blob(
287 kdc_sig_blob
, pac_data_raw
, kdc_sig_wipe
,
288 (ndr_push_flags_fn_t
)ndr_push_PAC_SIGNATURE_DATA
);
289 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
290 status
= ndr_map_error2ntstatus(ndr_err
);
291 DEBUG(0,("can't repack the KDC signature: %s\n",
293 talloc_free(tmp_ctx
);
296 ndr_err
= ndr_push_struct_blob(
297 srv_sig_blob
, pac_data_raw
, srv_sig_wipe
,
298 (ndr_push_flags_fn_t
)ndr_push_PAC_SIGNATURE_DATA
);
299 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
300 status
= ndr_map_error2ntstatus(ndr_err
);
301 DEBUG(0,("can't repack the SRV signature: %s\n",
303 talloc_free(tmp_ctx
);
307 /* push out the whole structure, but now with zero'ed signatures */
308 ndr_err
= ndr_push_struct_blob(
309 &modified_pac_blob
, pac_data_raw
, pac_data_raw
,
310 (ndr_push_flags_fn_t
)ndr_push_PAC_DATA_RAW
);
311 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
312 status
= ndr_map_error2ntstatus(ndr_err
);
313 DEBUG(0,("can't repack the RAW PAC: %s\n",
315 talloc_free(tmp_ctx
);
319 if (service_keyblock
) {
320 /* verify by service_key */
321 ret
= check_pac_checksum(modified_pac_blob
, srv_sig_ptr
,
325 DEBUG(5, ("PAC Decode: Failed to verify the service "
326 "signature: %s\n", error_message(ret
)));
327 return NT_STATUS_ACCESS_DENIED
;
330 if (krbtgt_keyblock
) {
331 /* verify the service key checksum by krbtgt_key */
332 ret
= check_pac_checksum(srv_sig_ptr
->signature
, kdc_sig_ptr
,
333 context
, krbtgt_keyblock
);
335 DEBUG(1, ("PAC Decode: Failed to verify the KDC signature: %s\n",
336 smb_get_krb5_error_message(context
, ret
, tmp_ctx
)));
337 talloc_free(tmp_ctx
);
338 return NT_STATUS_ACCESS_DENIED
;
344 /* Convert to NT time, so as not to loose accuracy in comparison */
345 unix_to_nt_time(&tgs_authtime_nttime
, tgs_authtime
);
347 if (tgs_authtime_nttime
!= logon_name
->logon_time
) {
348 DEBUG(2, ("PAC Decode: "
349 "Logon time mismatch between ticket and PAC!\n"));
350 DEBUG(2, ("PAC Decode: PAC: %s\n",
351 nt_time_string(tmp_ctx
, logon_name
->logon_time
)));
352 DEBUG(2, ("PAC Decode: Ticket: %s\n",
353 nt_time_string(tmp_ctx
, tgs_authtime_nttime
)));
354 talloc_free(tmp_ctx
);
355 return NT_STATUS_ACCESS_DENIED
;
359 if (client_principal
) {
360 ret
= smb_krb5_parse_name_norealm(context
,
361 logon_name
->account_name
,
362 &client_principal_pac
);
364 DEBUG(2, ("Could not parse name from PAC: [%s]:%s\n",
365 logon_name
->account_name
, error_message(ret
)));
366 talloc_free(tmp_ctx
);
367 return NT_STATUS_INVALID_PARAMETER
;
370 bool_ret
= smb_krb5_principal_compare_any_realm(context
,
372 client_principal_pac
);
374 krb5_free_principal(context
, client_principal_pac
);
377 DEBUG(2, ("Name in PAC [%s] does not match principal name "
378 "in ticket\n", logon_name
->account_name
));
379 talloc_free(tmp_ctx
);
380 return NT_STATUS_ACCESS_DENIED
;
384 DEBUG(3,("Found account name from PAC: %s [%s]\n",
385 logon_info
->info3
.base
.account_name
.string
,
386 logon_info
->info3
.base
.full_name
.string
));
388 DEBUG(10,("Successfully validated Kerberos PAC\n"));
390 if (DEBUGLEVEL
>= 10) {
392 s
= NDR_PRINT_STRUCT_STRING(tmp_ctx
, PAC_DATA
, pac_data
);
394 DEBUGADD(10,("%s\n", s
));
399 *pac_data_out
= talloc_steal(mem_ctx
, pac_data
);
405 NTSTATUS
kerberos_pac_logon_info(TALLOC_CTX
*mem_ctx
,
407 krb5_context context
,
408 const krb5_keyblock
*krbtgt_keyblock
,
409 const krb5_keyblock
*service_keyblock
,
410 krb5_const_principal client_principal
,
412 struct PAC_LOGON_INFO
**logon_info
)
415 struct PAC_DATA
*pac_data
;
417 nt_status
= kerberos_decode_pac(mem_ctx
,
425 if (!NT_STATUS_IS_OK(nt_status
)) {
430 for (i
=0; i
< pac_data
->num_buffers
; i
++) {
431 if (pac_data
->buffers
[i
].type
!= PAC_TYPE_LOGON_INFO
) {
434 *logon_info
= pac_data
->buffers
[i
].info
->logon_info
.info
;
437 return NT_STATUS_INVALID_PARAMETER
;