2 Unix SMB/CIFS implementation.
6 Copyright (C) Volker Lendecke 2005
7 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "libcli/composite/composite.h"
25 #include "winbind/wb_server.h"
26 #include "smbd/service_task.h"
27 #include "auth/credentials/credentials.h"
28 #include "libcli/auth/libcli_auth.h"
29 #include "librpc/gen_ndr/ndr_netlogon.h"
30 #include "librpc/gen_ndr/winbind.h"
31 #include "param/param.h"
33 /* Oh, there is so much to keep an eye on when authenticating a user. Oh my! */
34 struct pam_auth_crap_state
{
35 struct composite_context
*ctx
;
36 struct tevent_context
*event_ctx
;
37 struct loadparm_context
*lp_ctx
;
39 struct winbind_SamLogon
*req
;
42 struct netr_NetworkInfo ninfo
;
43 struct netr_LogonSamLogon r
;
45 const char *user_name
;
46 const char *domain_name
;
48 struct netr_UserSessionKey user_session_key
;
49 struct netr_LMSessionKey lm_key
;
54 * NTLM authentication.
57 static void pam_auth_crap_recv_logon(struct composite_context
*ctx
);
59 struct composite_context
*wb_cmd_pam_auth_crap_send(TALLOC_CTX
*mem_ctx
,
60 struct wbsrv_service
*service
,
61 uint32_t logon_parameters
,
64 const char *workstation
,
69 struct composite_context
*result
, *ctx
;
70 struct pam_auth_crap_state
*state
;
71 struct netr_NetworkInfo
*ninfo
;
72 DATA_BLOB tmp_nt_resp
, tmp_lm_resp
;
74 result
= composite_create(mem_ctx
, service
->task
->event_ctx
);
75 if (result
== NULL
) goto failed
;
77 state
= talloc(result
, struct pam_auth_crap_state
);
78 if (state
== NULL
) goto failed
;
80 state
->lp_ctx
= service
->task
->lp_ctx
;
81 result
->private_data
= state
;
83 state
->req
= talloc(state
, struct winbind_SamLogon
);
85 state
->req
->in
.logon_level
= 2;
86 state
->req
->in
.validation_level
= 3;
87 ninfo
= state
->req
->in
.logon
.network
= talloc(state
, struct netr_NetworkInfo
);
88 if (ninfo
== NULL
) goto failed
;
90 ninfo
->identity_info
.account_name
.string
= talloc_strdup(state
, user
);
91 ninfo
->identity_info
.domain_name
.string
= talloc_strdup(state
, domain
);
92 ninfo
->identity_info
.parameter_control
= logon_parameters
;
93 ninfo
->identity_info
.logon_id_low
= 0;
94 ninfo
->identity_info
.logon_id_high
= 0;
95 ninfo
->identity_info
.workstation
.string
= talloc_strdup(state
, workstation
);
97 SMB_ASSERT(chal
.length
== sizeof(ninfo
->challenge
));
98 memcpy(ninfo
->challenge
, chal
.data
,
99 sizeof(ninfo
->challenge
));
101 tmp_nt_resp
= data_blob_talloc(ninfo
, nt_resp
.data
, nt_resp
.length
);
102 if ((nt_resp
.data
!= NULL
) &&
103 (tmp_nt_resp
.data
== NULL
)) goto failed
;
105 tmp_lm_resp
= data_blob_talloc(ninfo
, lm_resp
.data
, lm_resp
.length
);
106 if ((lm_resp
.data
!= NULL
) &&
107 (tmp_lm_resp
.data
== NULL
)) goto failed
;
109 ninfo
->nt
.length
= tmp_nt_resp
.length
;
110 ninfo
->nt
.data
= tmp_nt_resp
.data
;
111 ninfo
->lm
.length
= tmp_lm_resp
.length
;
112 ninfo
->lm
.data
= tmp_lm_resp
.data
;
114 state
->unix_username
= NULL
;
116 ctx
= wb_sam_logon_send(mem_ctx
, service
, state
->req
);
117 if (ctx
== NULL
) goto failed
;
119 composite_continue(result
, ctx
, pam_auth_crap_recv_logon
, state
);
130 Send of a SamLogon request to authenticate a user.
132 static void pam_auth_crap_recv_logon(struct composite_context
*ctx
)
135 enum ndr_err_code ndr_err
;
136 struct netr_SamBaseInfo
*base
;
137 struct pam_auth_crap_state
*state
=
138 talloc_get_type(ctx
->async
.private_data
,
139 struct pam_auth_crap_state
);
141 state
->ctx
->status
= wb_sam_logon_recv(ctx
, state
, state
->req
);
142 if (!composite_is_ok(state
->ctx
)) return;
144 ndr_err
= ndr_push_struct_blob(
145 &tmp_blob
, state
, state
->req
->out
.validation
.sam3
,
146 (ndr_push_flags_fn_t
)ndr_push_netr_SamInfo3
);
147 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
148 state
->ctx
->status
= ndr_map_error2ntstatus(ndr_err
);
149 if (!composite_is_ok(state
->ctx
)) return;
152 /* The Samba3 protocol is a bit broken (due to non-IDL
153 * heritage, so for compatability we must add a non-zero 4
154 * bytes to the info3 */
155 state
->info3
= data_blob_talloc(state
, NULL
, tmp_blob
.length
+4);
156 if (composite_nomem(state
->info3
.data
, state
->ctx
)) return;
158 SIVAL(state
->info3
.data
, 0, 1);
159 memcpy(state
->info3
.data
+4, tmp_blob
.data
, tmp_blob
.length
);
161 base
= &state
->req
->out
.validation
.sam3
->base
;
163 state
->user_session_key
= base
->key
;
164 state
->lm_key
= base
->LMSessKey
;
166 /* Give the caller the most accurate username possible.
167 * Assists where case sensitive comparisons may be done by our
168 * ntlm_auth callers */
169 if (base
->account_name
.string
) {
170 state
->user_name
= base
->account_name
.string
;
171 talloc_steal(state
, base
->account_name
.string
);
173 if (base
->logon_domain
.string
) {
174 state
->domain_name
= base
->logon_domain
.string
;
175 talloc_steal(state
, base
->logon_domain
.string
);
178 state
->unix_username
= talloc_asprintf(state
, "%s%s%s",
180 lpcfg_winbind_separator(state
->lp_ctx
),
182 if (composite_nomem(state
->unix_username
, state
->ctx
)) return;
184 composite_done(state
->ctx
);
187 /* Having received a NTLM authentication reply, parse out the useful
188 * reply data for the caller */
189 NTSTATUS
wb_cmd_pam_auth_crap_recv(struct composite_context
*c
,
192 struct netr_UserSessionKey
*user_session_key
,
193 struct netr_LMSessionKey
*lm_key
,
194 char **unix_username
)
196 struct pam_auth_crap_state
*state
=
197 talloc_get_type(c
->private_data
, struct pam_auth_crap_state
);
198 NTSTATUS status
= composite_wait(c
);
199 if (NT_STATUS_IS_OK(status
)) {
200 info3
->length
= state
->info3
.length
;
201 info3
->data
= talloc_steal(mem_ctx
, state
->info3
.data
);
202 *user_session_key
= state
->user_session_key
;
203 *lm_key
= state
->lm_key
;
204 *unix_username
= talloc_steal(mem_ctx
, state
->unix_username
);
210 /* Handle plaintext authentication, by encrypting the password and
211 * then sending via the NTLM calls */
213 struct composite_context
*wb_cmd_pam_auth_send(TALLOC_CTX
*mem_ctx
,
214 struct wbsrv_service
*service
,
215 struct cli_credentials
*credentials
)
217 const char *workstation
;
219 const char *user
, *domain
;
220 DATA_BLOB chal
, nt_resp
, lm_resp
, names_blob
;
221 int flags
= CLI_CRED_NTLM_AUTH
;
222 if (lpcfg_client_lanman_auth(service
->task
->lp_ctx
)) {
223 flags
|= CLI_CRED_LANMAN_AUTH
;
226 if (lpcfg_client_ntlmv2_auth(service
->task
->lp_ctx
)) {
227 flags
|= CLI_CRED_NTLMv2_AUTH
;
230 DEBUG(5, ("wbsrv_samba3_pam_auth called\n"));
232 chal
= data_blob_talloc(mem_ctx
, NULL
, 8);
236 generate_random_buffer(chal
.data
, chal
.length
);
237 cli_credentials_get_ntlm_username_domain(credentials
, mem_ctx
,
239 /* for best compatability with multiple vitual netbios names
240 * on the host, this should be generated from the
241 * cli_credentials associated with the machine account */
242 workstation
= cli_credentials_get_workstation(credentials
);
244 names_blob
= NTLMv2_generate_names_blob(
246 cli_credentials_get_workstation(credentials
),
247 cli_credentials_get_domain(credentials
));
249 status
= cli_credentials_get_ntlm_response(
250 credentials
, mem_ctx
, &flags
, chal
, names_blob
,
251 &lm_resp
, &nt_resp
, NULL
, NULL
);
252 if (!NT_STATUS_IS_OK(status
)) {
255 return wb_cmd_pam_auth_crap_send(mem_ctx
, service
,
256 MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT
|MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT
/* logon parameters */,
257 domain
, user
, workstation
,
258 chal
, nt_resp
, lm_resp
);
261 NTSTATUS
wb_cmd_pam_auth_recv(struct composite_context
*c
,
264 struct netr_UserSessionKey
*user_session_key
,
265 struct netr_LMSessionKey
*lm_key
,
266 char **unix_username
)
268 struct pam_auth_crap_state
*state
=
269 talloc_get_type(c
->private_data
, struct pam_auth_crap_state
);
270 NTSTATUS status
= composite_wait(c
);
271 if (NT_STATUS_IS_OK(status
)) {
273 info3
->length
= state
->info3
.length
;
274 info3
->data
= talloc_steal(mem_ctx
, state
->info3
.data
);
276 if (user_session_key
) {
277 *user_session_key
= state
->user_session_key
;
280 *lm_key
= state
->lm_key
;
283 *unix_username
= talloc_steal(mem_ctx
, state
->unix_username
);