r11270: Move the core CrackNames code from rpc_server/drsuapi to dsdb/samdb.
[ira/wip.git] / source4 / kdc / pac-glue.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    PAC Glue between Samba and the KDC
5    
6    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "includes.h"
25 #include "kdc/kdc.h"
26 #include "kdc/pac-glue.h" /* Ensure we don't get this prototype wrong, as that could be painful */
27
28  krb5_error_code samba_get_pac(krb5_context context, 
29                                struct krb5_kdc_configuration *config,
30                                krb5_principal client, 
31                                krb5_keyblock *krbtgt_keyblock, 
32                                krb5_keyblock *server_keyblock, 
33                                time_t tgs_authtime,
34                                krb5_data *pac)
35 {
36         krb5_error_code ret;
37         NTSTATUS nt_status;
38         struct auth_serversupplied_info *server_info;
39         DATA_BLOB tmp_blob;
40         char *principal_string;
41         TALLOC_CTX *mem_ctx = talloc_named(config, 0, "samba_get_pac context");
42         if (!mem_ctx) {
43                 return ENOMEM;
44         }
45
46         ret = krb5_unparse_name(context, client, &principal_string);
47
48         if (ret != 0) {
49                 krb5_set_error_string(context, "get pac: could not parse principal");
50                 krb5_warnx(context, "get pac: could not parse principal");
51                 talloc_free(mem_ctx);
52                 return ret;
53         }
54
55         nt_status = sam_get_server_info_principal(mem_ctx, principal_string,
56                                                   &server_info);
57         free(principal_string);
58         if (!NT_STATUS_IS_OK(nt_status)) {
59                 DEBUG(0, ("Getting user info for PAC failed: %s\n",
60                           nt_errstr(nt_status)));
61                 return EINVAL;
62         }
63
64         ret = kerberos_create_pac(mem_ctx, server_info, 
65                                   context, 
66                                   krbtgt_keyblock,
67                                   server_keyblock,
68                                   client,
69                                   tgs_authtime,
70                                   &tmp_blob);
71
72         if (ret) {
73                 DEBUG(1, ("PAC encoding failed: %s\n", 
74                           smb_get_krb5_error_message(context, ret, mem_ctx)));
75                 talloc_free(mem_ctx);
76                 return ret;
77         }
78
79         ret = krb5_data_copy(pac, tmp_blob.data, tmp_blob.length);
80         talloc_free(mem_ctx);
81         return ret;
82 }