2 Unix SMB/CIFS implementation.
4 Copyright (C) Stefan Metzmacher 2004
5 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
6 Copyright (C) Brad Henry 2005
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 3 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "libnet/libnet.h"
24 #include "librpc/gen_ndr/ndr_drsuapi_c.h"
25 #include "lib/ldb/include/ldb.h"
26 #include "lib/ldb/include/ldb_errors.h"
27 #include "param/secrets.h"
28 #include "dsdb/samdb/samdb.h"
30 #include "../lib/util/util_ldb.h"
31 #include "libcli/security/security.h"
32 #include "auth/credentials/credentials.h"
33 #include "auth/credentials/credentials_krb5.h"
34 #include "librpc/gen_ndr/ndr_samr_c.h"
35 #include "param/param.h"
36 #include "param/provision.h"
39 * complete a domain join, when joining to a AD domain:
40 * 1.) connect and bind to the DRSUAPI pipe
41 * 2.) do a DsCrackNames() to find the machine account dn
43 * 4.) do an ldap search to find the "msDS-KeyVersionNumber" of the machine account
44 * 5.) set the servicePrincipalName's of the machine account via LDAP, (maybe we should use DsWriteAccountSpn()...)
45 * 6.) do a DsCrackNames() to find the domain dn
46 * 7.) find out Site specific stuff, look at libnet_JoinSite() for details
48 static NTSTATUS
libnet_JoinADSDomain(struct libnet_context
*ctx
, struct libnet_JoinDomain
*r
)
54 const char *realm
= r
->out
.realm
;
56 struct dcerpc_binding
*samr_binding
= r
->out
.samr_binding
;
58 struct dcerpc_pipe
*drsuapi_pipe
;
59 struct dcerpc_binding
*drsuapi_binding
;
60 struct drsuapi_DsBind r_drsuapi_bind
;
61 struct drsuapi_DsCrackNames r_crack_names
;
62 struct drsuapi_DsNameString names
[1];
63 struct policy_handle drsuapi_bind_handle
;
64 struct GUID drsuapi_bind_guid
;
66 struct ldb_context
*remote_ldb
;
67 struct ldb_dn
*account_dn
;
68 const char *account_dn_str
;
69 const char *remote_ldb_url
;
70 struct ldb_result
*res
;
71 struct ldb_message
*msg
;
75 const char * const attrs
[] = {
76 "msDS-KeyVersionNumber",
77 "servicePrincipalName",
83 r
->out
.error_string
= NULL
;
85 /* We need to convert between a samAccountName and domain to a
86 * DN in the directory. The correct way to do this is with
87 * DRSUAPI CrackNames */
89 /* Fiddle with the bindings, so get to DRSUAPI on
90 * NCACN_IP_TCP, sealed */
91 tmp_ctx
= talloc_named(r
, 0, "libnet_JoinADSDomain temp context");
93 r
->out
.error_string
= NULL
;
94 return NT_STATUS_NO_MEMORY
;
97 drsuapi_binding
= talloc(tmp_ctx
, struct dcerpc_binding
);
98 if (!drsuapi_binding
) {
99 r
->out
.error_string
= NULL
;
100 talloc_free(tmp_ctx
);
101 return NT_STATUS_NO_MEMORY
;
104 *drsuapi_binding
= *samr_binding
;
106 /* DRSUAPI is only available on IP_TCP, and locally on NCALRPC */
107 if (drsuapi_binding
->transport
!= NCALRPC
) {
108 drsuapi_binding
->transport
= NCACN_IP_TCP
;
110 drsuapi_binding
->endpoint
= NULL
;
111 drsuapi_binding
->flags
|= DCERPC_SEAL
;
113 status
= dcerpc_pipe_connect_b(tmp_ctx
,
120 if (!NT_STATUS_IS_OK(status
)) {
121 r
->out
.error_string
= talloc_asprintf(r
,
122 "Connection to DRSUAPI pipe of PDC of domain '%s' failed: %s",
125 talloc_free(tmp_ctx
);
129 /* get a DRSUAPI pipe handle */
130 GUID_from_string(DRSUAPI_DS_BIND_GUID
, &drsuapi_bind_guid
);
132 r_drsuapi_bind
.in
.bind_guid
= &drsuapi_bind_guid
;
133 r_drsuapi_bind
.in
.bind_info
= NULL
;
134 r_drsuapi_bind
.out
.bind_handle
= &drsuapi_bind_handle
;
136 status
= dcerpc_drsuapi_DsBind(drsuapi_pipe
, tmp_ctx
, &r_drsuapi_bind
);
137 if (!NT_STATUS_IS_OK(status
)) {
138 if (NT_STATUS_EQUAL(status
, NT_STATUS_NET_WRITE_FAULT
)) {
141 "dcerpc_drsuapi_DsBind failed - %s",
142 dcerpc_errstr(tmp_ctx
, drsuapi_pipe
->last_fault_code
));
143 talloc_free(tmp_ctx
);
148 "dcerpc_drsuapi_DsBind failed - %s",
150 talloc_free(tmp_ctx
);
153 } else if (!W_ERROR_IS_OK(r_drsuapi_bind
.out
.result
)) {
156 "DsBind failed - %s",
157 win_errstr(r_drsuapi_bind
.out
.result
));
158 talloc_free(tmp_ctx
);
159 return NT_STATUS_UNSUCCESSFUL
;
162 /* Actually 'crack' the names */
163 ZERO_STRUCT(r_crack_names
);
164 r_crack_names
.in
.bind_handle
= &drsuapi_bind_handle
;
165 r_crack_names
.in
.level
= 1;
166 r_crack_names
.in
.req
= talloc(r
, union drsuapi_DsNameRequest
);
167 if (!r_crack_names
.in
.req
) {
168 r
->out
.error_string
= NULL
;
169 talloc_free(tmp_ctx
);
170 return NT_STATUS_NO_MEMORY
;
172 r_crack_names
.in
.req
->req1
.codepage
= 1252; /* western european */
173 r_crack_names
.in
.req
->req1
.language
= 0x00000407; /* german */
174 r_crack_names
.in
.req
->req1
.count
= 1;
175 r_crack_names
.in
.req
->req1
.names
= names
;
176 r_crack_names
.in
.req
->req1
.format_flags
= DRSUAPI_DS_NAME_FLAG_NO_FLAGS
;
177 r_crack_names
.in
.req
->req1
.format_offered
= DRSUAPI_DS_NAME_FORMAT_SID_OR_SID_HISTORY
;
178 r_crack_names
.in
.req
->req1
.format_desired
= DRSUAPI_DS_NAME_FORMAT_FQDN_1779
;
179 names
[0].str
= dom_sid_string(tmp_ctx
, r
->out
.account_sid
);
181 r
->out
.error_string
= NULL
;
182 talloc_free(tmp_ctx
);
183 return NT_STATUS_NO_MEMORY
;
186 r_crack_names
.out
.ctr
= talloc(r
, union drsuapi_DsNameCtr
);
187 r_crack_names
.out
.level_out
= talloc(r
, uint32_t);
188 if (!r_crack_names
.out
.ctr
|| !r_crack_names
.out
.level_out
) {
189 r
->out
.error_string
= NULL
;
190 talloc_free(tmp_ctx
);
191 return NT_STATUS_NO_MEMORY
;
194 status
= dcerpc_drsuapi_DsCrackNames(drsuapi_pipe
, tmp_ctx
, &r_crack_names
);
195 if (!NT_STATUS_IS_OK(status
)) {
196 if (NT_STATUS_EQUAL(status
, NT_STATUS_NET_WRITE_FAULT
)) {
199 "dcerpc_drsuapi_DsCrackNames for [%s] failed - %s",
201 dcerpc_errstr(tmp_ctx
, drsuapi_pipe
->last_fault_code
));
202 talloc_free(tmp_ctx
);
207 "dcerpc_drsuapi_DsCrackNames for [%s] failed - %s",
210 talloc_free(tmp_ctx
);
213 } else if (!W_ERROR_IS_OK(r_crack_names
.out
.result
)) {
216 "DsCrackNames failed - %s", win_errstr(r_crack_names
.out
.result
));
217 talloc_free(tmp_ctx
);
218 return NT_STATUS_UNSUCCESSFUL
;
219 } else if (*r_crack_names
.out
.level_out
!= 1
220 || !r_crack_names
.out
.ctr
->ctr1
221 || r_crack_names
.out
.ctr
->ctr1
->count
!= 1) {
222 r
->out
.error_string
= talloc_asprintf(r
, "DsCrackNames failed");
223 talloc_free(tmp_ctx
);
224 return NT_STATUS_INVALID_PARAMETER
;
225 } else if (r_crack_names
.out
.ctr
->ctr1
->array
[0].status
!= DRSUAPI_DS_NAME_STATUS_OK
) {
226 r
->out
.error_string
= talloc_asprintf(r
, "DsCrackNames failed: %d", r_crack_names
.out
.ctr
->ctr1
->array
[0].status
);
227 talloc_free(tmp_ctx
);
228 return NT_STATUS_UNSUCCESSFUL
;
229 } else if (r_crack_names
.out
.ctr
->ctr1
->array
[0].result_name
== NULL
) {
230 r
->out
.error_string
= talloc_asprintf(r
, "DsCrackNames failed: no result name");
231 talloc_free(tmp_ctx
);
232 return NT_STATUS_INVALID_PARAMETER
;
235 /* Store the DN of our machine account. */
236 account_dn_str
= r_crack_names
.out
.ctr
->ctr1
->array
[0].result_name
;
238 /* Now we know the user's DN, open with LDAP, read and modify a few things */
240 remote_ldb_url
= talloc_asprintf(tmp_ctx
, "ldap://%s",
241 drsuapi_binding
->target_hostname
);
242 if (!remote_ldb_url
) {
243 r
->out
.error_string
= NULL
;
244 talloc_free(tmp_ctx
);
245 return NT_STATUS_NO_MEMORY
;
248 remote_ldb
= ldb_wrap_connect(tmp_ctx
, ctx
->event_ctx
, ctx
->lp_ctx
,
252 r
->out
.error_string
= NULL
;
253 talloc_free(tmp_ctx
);
254 return NT_STATUS_UNSUCCESSFUL
;
257 account_dn
= ldb_dn_new(tmp_ctx
, remote_ldb
, account_dn_str
);
258 if (! ldb_dn_validate(account_dn
)) {
259 r
->out
.error_string
= talloc_asprintf(r
, "Invalid account dn: %s",
261 talloc_free(tmp_ctx
);
262 return NT_STATUS_UNSUCCESSFUL
;
265 /* search for the user's record */
266 ret
= ldb_search(remote_ldb
, tmp_ctx
, &res
,
267 account_dn
, LDB_SCOPE_BASE
, attrs
, NULL
);
268 if (ret
!= LDB_SUCCESS
) {
269 r
->out
.error_string
= talloc_asprintf(r
, "ldb_search for %s failed - %s",
270 account_dn_str
, ldb_errstring(remote_ldb
));
271 talloc_free(tmp_ctx
);
272 return NT_STATUS_UNSUCCESSFUL
;
275 if (res
->count
!= 1) {
276 r
->out
.error_string
= talloc_asprintf(r
, "ldb_search for %s failed - found %d entries",
277 account_dn_str
, res
->count
);
278 talloc_free(tmp_ctx
);
279 return NT_STATUS_UNSUCCESSFUL
;
282 /* Prepare a new message, for the modify */
283 msg
= ldb_msg_new(tmp_ctx
);
285 r
->out
.error_string
= NULL
;
286 talloc_free(tmp_ctx
);
287 return NT_STATUS_NO_MEMORY
;
289 msg
->dn
= res
->msgs
[0]->dn
;
293 const char *service_principal_name
[6];
294 const char *dns_host_name
= strlower_talloc(tmp_ctx
,
295 talloc_asprintf(tmp_ctx
,
300 if (!dns_host_name
) {
301 r
->out
.error_string
= NULL
;
302 talloc_free(tmp_ctx
);
303 return NT_STATUS_NO_MEMORY
;
306 service_principal_name
[0] = talloc_asprintf(tmp_ctx
, "host/%s", dns_host_name
);
307 service_principal_name
[1] = talloc_asprintf(tmp_ctx
, "host/%s", strlower_talloc(tmp_ctx
, r
->in
.netbios_name
));
308 service_principal_name
[2] = talloc_asprintf(tmp_ctx
, "host/%s/%s", dns_host_name
, realm
);
309 service_principal_name
[3] = talloc_asprintf(tmp_ctx
, "host/%s/%s", strlower_talloc(tmp_ctx
, r
->in
.netbios_name
), realm
);
310 service_principal_name
[4] = talloc_asprintf(tmp_ctx
, "host/%s/%s", dns_host_name
, r
->out
.domain_name
);
311 service_principal_name
[5] = talloc_asprintf(tmp_ctx
, "host/%s/%s", strlower_talloc(tmp_ctx
, r
->in
.netbios_name
), r
->out
.domain_name
);
313 for (i
=0; i
< ARRAY_SIZE(service_principal_name
); i
++) {
314 if (!service_principal_name
[i
]) {
315 r
->out
.error_string
= NULL
;
316 talloc_free(tmp_ctx
);
317 return NT_STATUS_NO_MEMORY
;
319 rtn
= samdb_msg_add_string(remote_ldb
, tmp_ctx
, msg
, "servicePrincipalName", service_principal_name
[i
]);
321 r
->out
.error_string
= NULL
;
322 talloc_free(tmp_ctx
);
323 return NT_STATUS_NO_MEMORY
;
327 rtn
= samdb_msg_add_string(remote_ldb
, tmp_ctx
, msg
, "dNSHostName", dns_host_name
);
329 r
->out
.error_string
= NULL
;
330 talloc_free(tmp_ctx
);
331 return NT_STATUS_NO_MEMORY
;
334 rtn
= dsdb_replace(remote_ldb
, msg
, 0);
338 "Failed to replace entries on %s",
339 ldb_dn_get_linearized(msg
->dn
));
340 talloc_free(tmp_ctx
);
341 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
345 /* DsCrackNames to find out the DN of the domain. */
346 r_crack_names
.in
.req
->req1
.format_offered
= DRSUAPI_DS_NAME_FORMAT_NT4_ACCOUNT
;
347 r_crack_names
.in
.req
->req1
.format_desired
= DRSUAPI_DS_NAME_FORMAT_FQDN_1779
;
348 names
[0].str
= talloc_asprintf(tmp_ctx
, "%s\\", r
->out
.domain_name
);
350 r
->out
.error_string
= NULL
;
351 talloc_free(tmp_ctx
);
352 return NT_STATUS_NO_MEMORY
;
355 status
= dcerpc_drsuapi_DsCrackNames(drsuapi_pipe
, tmp_ctx
, &r_crack_names
);
356 if (!NT_STATUS_IS_OK(status
)) {
357 if (NT_STATUS_EQUAL(status
, NT_STATUS_NET_WRITE_FAULT
)) {
360 "dcerpc_drsuapi_DsCrackNames for [%s] failed - %s",
362 dcerpc_errstr(tmp_ctx
, drsuapi_pipe
->last_fault_code
));
363 talloc_free(tmp_ctx
);
368 "dcerpc_drsuapi_DsCrackNames for [%s] failed - %s",
371 talloc_free(tmp_ctx
);
374 } else if (!W_ERROR_IS_OK(r_crack_names
.out
.result
)) {
377 "DsCrackNames failed - %s", win_errstr(r_crack_names
.out
.result
));
378 talloc_free(tmp_ctx
);
379 return NT_STATUS_UNSUCCESSFUL
;
380 } else if (*r_crack_names
.out
.level_out
!= 1
381 || !r_crack_names
.out
.ctr
->ctr1
382 || r_crack_names
.out
.ctr
->ctr1
->count
!= 1
383 || !r_crack_names
.out
.ctr
->ctr1
->array
[0].result_name
384 || r_crack_names
.out
.ctr
->ctr1
->array
[0].status
!= DRSUAPI_DS_NAME_STATUS_OK
) {
385 r
->out
.error_string
= talloc_asprintf(r
, "DsCrackNames failed");
386 talloc_free(tmp_ctx
);
387 return NT_STATUS_UNSUCCESSFUL
;
390 /* Store the account DN. */
391 r
->out
.account_dn_str
= account_dn_str
;
392 talloc_steal(r
, account_dn_str
);
394 /* Store the domain DN. */
395 r
->out
.domain_dn_str
= r_crack_names
.out
.ctr
->ctr1
->array
[0].result_name
;
396 talloc_steal(r
, r_crack_names
.out
.ctr
->ctr1
->array
[0].result_name
);
398 /* Store the KVNO of the account, critical for some kerberos
400 r
->out
.kvno
= ldb_msg_find_attr_as_uint(res
->msgs
[0], "msDS-KeyVersionNumber", 0);
402 /* Store the account GUID. */
403 r
->out
.account_guid
= samdb_result_guid(res
->msgs
[0], "objectGUID");
405 if (r
->in
.acct_type
== ACB_SVRTRUST
) {
406 status
= libnet_JoinSite(ctx
, remote_ldb
, r
);
408 talloc_free(tmp_ctx
);
414 * do a domain join using DCERPC/SAMR calls
415 * - connect to the LSA pipe, to try and find out information about the domain
416 * - create a secondary connection to SAMR pipe
417 * - do a samr_Connect to get a policy handle
418 * - do a samr_LookupDomain to get the domain sid
419 * - do a samr_OpenDomain to get a domain handle
420 * - do a samr_CreateAccount to try and get a new account
423 * - do a samr_LookupNames to get the users rid
424 * - do a samr_OpenUser to get a user handle
425 * - potentially delete and recreate the user
426 * - assert the account is of the right type with samrQueryUserInfo
428 * - call libnet_SetPassword_samr_handle to set the password,
429 * and pass a samr_UserInfo21 struct to set full_name and the account flags
431 * - do some ADS specific things when we join as Domain Controller,
432 * look at libnet_joinADSDomain() for the details
434 NTSTATUS
libnet_JoinDomain(struct libnet_context
*ctx
, TALLOC_CTX
*mem_ctx
, struct libnet_JoinDomain
*r
)
438 NTSTATUS status
, cu_status
;
440 struct libnet_RpcConnect
*connect_with_info
;
441 struct dcerpc_pipe
*samr_pipe
;
443 struct samr_Connect sc
;
444 struct policy_handle p_handle
;
445 struct samr_OpenDomain od
;
446 struct policy_handle d_handle
;
447 struct samr_LookupNames ln
;
448 struct samr_Ids rids
, types
;
449 struct samr_OpenUser ou
;
450 struct samr_CreateUser2 cu
;
451 struct policy_handle
*u_handle
= NULL
;
452 struct samr_QueryUserInfo qui
;
453 union samr_UserInfo
*uinfo
;
454 struct samr_UserInfo21 u_info21
;
455 union libnet_SetPassword r2
;
456 struct samr_GetUserPwInfo pwp
;
457 struct samr_PwInfo info
;
458 struct lsa_String samr_account_name
;
460 uint32_t acct_flags
, old_acct_flags
;
461 uint32_t rid
, access_granted
;
462 int policy_min_pw_len
= 0;
464 struct dom_sid
*account_sid
= NULL
;
465 const char *password_str
= NULL
;
467 r
->out
.error_string
= NULL
;
468 r2
.samr_handle
.out
.error_string
= NULL
;
470 tmp_ctx
= talloc_named(mem_ctx
, 0, "libnet_Join temp context");
472 r
->out
.error_string
= NULL
;
473 return NT_STATUS_NO_MEMORY
;
476 u_handle
= talloc(tmp_ctx
, struct policy_handle
);
478 r
->out
.error_string
= NULL
;
479 talloc_free(tmp_ctx
);
480 return NT_STATUS_NO_MEMORY
;
483 connect_with_info
= talloc_zero(tmp_ctx
, struct libnet_RpcConnect
);
484 if (!connect_with_info
) {
485 r
->out
.error_string
= NULL
;
486 talloc_free(tmp_ctx
);
487 return NT_STATUS_NO_MEMORY
;
490 /* prepare connect to the SAMR pipe of PDC */
491 if (r
->in
.level
== LIBNET_JOINDOMAIN_AUTOMATIC
) {
492 connect_with_info
->in
.binding
= NULL
;
493 connect_with_info
->in
.name
= r
->in
.domain_name
;
495 connect_with_info
->in
.binding
= r
->in
.binding
;
496 connect_with_info
->in
.name
= NULL
;
499 /* This level makes a connection to the LSA pipe on the way,
500 * to get some useful bits of information about the domain */
501 connect_with_info
->level
= LIBNET_RPC_CONNECT_DC_INFO
;
502 connect_with_info
->in
.dcerpc_iface
= &ndr_table_samr
;
505 establish the SAMR connection
507 status
= libnet_RpcConnect(ctx
, tmp_ctx
, connect_with_info
);
508 if (!NT_STATUS_IS_OK(status
)) {
510 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
511 "Connection to SAMR pipe of DC %s failed: %s",
512 r
->in
.binding
, connect_with_info
->out
.error_string
);
514 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
515 "Connection to SAMR pipe of PDC for %s failed: %s",
516 r
->in
.domain_name
, connect_with_info
->out
.error_string
);
518 talloc_free(tmp_ctx
);
522 samr_pipe
= connect_with_info
->out
.dcerpc_pipe
;
524 status
= dcerpc_pipe_auth(tmp_ctx
, &samr_pipe
,
525 connect_with_info
->out
.dcerpc_pipe
->binding
,
526 &ndr_table_samr
, ctx
->cred
, ctx
->lp_ctx
);
527 if (!NT_STATUS_IS_OK(status
)) {
528 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
529 "SAMR bind failed: %s",
531 talloc_free(tmp_ctx
);
535 /* prepare samr_Connect */
536 ZERO_STRUCT(p_handle
);
537 sc
.in
.system_name
= NULL
;
538 sc
.in
.access_mask
= SEC_FLAG_MAXIMUM_ALLOWED
;
539 sc
.out
.connect_handle
= &p_handle
;
541 /* 2. do a samr_Connect to get a policy handle */
542 status
= dcerpc_samr_Connect(samr_pipe
, tmp_ctx
, &sc
);
543 if (!NT_STATUS_IS_OK(status
)) {
544 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
545 "samr_Connect failed: %s",
547 talloc_free(tmp_ctx
);
551 /* If this is a connection on ncacn_ip_tcp to Win2k3 SP1, we don't get back this useful info */
552 if (!connect_with_info
->out
.domain_name
) {
553 if (r
->in
.level
== LIBNET_JOINDOMAIN_AUTOMATIC
) {
554 connect_with_info
->out
.domain_name
= talloc_strdup(tmp_ctx
, r
->in
.domain_name
);
556 /* Bugger, we just lost our way to automatically find the domain name */
557 connect_with_info
->out
.domain_name
= talloc_strdup(tmp_ctx
, lp_workgroup(ctx
->lp_ctx
));
558 connect_with_info
->out
.realm
= talloc_strdup(tmp_ctx
, lp_realm(ctx
->lp_ctx
));
562 /* Perhaps we didn't get a SID above, because we are against ncacn_ip_tcp */
563 if (!connect_with_info
->out
.domain_sid
) {
564 struct lsa_String name
;
565 struct samr_LookupDomain l
;
566 struct dom_sid2
*sid
= NULL
;
567 name
.string
= connect_with_info
->out
.domain_name
;
568 l
.in
.connect_handle
= &p_handle
;
569 l
.in
.domain_name
= &name
;
572 status
= dcerpc_samr_LookupDomain(samr_pipe
, tmp_ctx
, &l
);
573 if (!NT_STATUS_IS_OK(status
)) {
574 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
575 "SAMR LookupDomain failed: %s",
577 talloc_free(tmp_ctx
);
580 connect_with_info
->out
.domain_sid
= *l
.out
.sid
;
583 /* prepare samr_OpenDomain */
584 ZERO_STRUCT(d_handle
);
585 od
.in
.connect_handle
= &p_handle
;
586 od
.in
.access_mask
= SEC_FLAG_MAXIMUM_ALLOWED
;
587 od
.in
.sid
= connect_with_info
->out
.domain_sid
;
588 od
.out
.domain_handle
= &d_handle
;
590 /* do a samr_OpenDomain to get a domain handle */
591 status
= dcerpc_samr_OpenDomain(samr_pipe
, tmp_ctx
, &od
);
592 if (!NT_STATUS_IS_OK(status
)) {
593 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
594 "samr_OpenDomain for [%s] failed: %s",
595 dom_sid_string(tmp_ctx
, connect_with_info
->out
.domain_sid
),
597 talloc_free(tmp_ctx
);
601 /* prepare samr_CreateUser2 */
602 ZERO_STRUCTP(u_handle
);
603 cu
.in
.domain_handle
= &d_handle
;
604 cu
.in
.access_mask
= SEC_FLAG_MAXIMUM_ALLOWED
;
605 samr_account_name
.string
= r
->in
.account_name
;
606 cu
.in
.account_name
= &samr_account_name
;
607 cu
.in
.acct_flags
= r
->in
.acct_type
;
608 cu
.out
.user_handle
= u_handle
;
610 cu
.out
.access_granted
= &access_granted
;
612 /* do a samr_CreateUser2 to get an account handle, or an error */
613 cu_status
= dcerpc_samr_CreateUser2(samr_pipe
, tmp_ctx
, &cu
);
615 if (NT_STATUS_EQUAL(status
, NT_STATUS_USER_EXISTS
)) {
616 /* prepare samr_LookupNames */
617 ln
.in
.domain_handle
= &d_handle
;
619 ln
.in
.names
= talloc_array(tmp_ctx
, struct lsa_String
, 1);
621 ln
.out
.types
= &types
;
623 r
->out
.error_string
= NULL
;
624 talloc_free(tmp_ctx
);
625 return NT_STATUS_NO_MEMORY
;
627 ln
.in
.names
[0].string
= r
->in
.account_name
;
629 /* 5. do a samr_LookupNames to get the users rid */
630 status
= dcerpc_samr_LookupNames(samr_pipe
, tmp_ctx
, &ln
);
631 if (!NT_STATUS_IS_OK(status
)) {
632 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
633 "samr_LookupNames for [%s] failed: %s",
636 talloc_free(tmp_ctx
);
640 /* check if we got one RID for the user */
641 if (ln
.out
.rids
->count
!= 1) {
642 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
643 "samr_LookupNames for [%s] returns %d RIDs",
644 r
->in
.account_name
, ln
.out
.rids
->count
);
645 talloc_free(tmp_ctx
);
646 return NT_STATUS_INVALID_PARAMETER
;
649 /* prepare samr_OpenUser */
650 ZERO_STRUCTP(u_handle
);
651 ou
.in
.domain_handle
= &d_handle
;
652 ou
.in
.access_mask
= SEC_FLAG_MAXIMUM_ALLOWED
;
653 ou
.in
.rid
= ln
.out
.rids
->ids
[0];
655 ou
.out
.user_handle
= u_handle
;
657 /* 6. do a samr_OpenUser to get a user handle */
658 status
= dcerpc_samr_OpenUser(samr_pipe
, tmp_ctx
, &ou
);
659 if (!NT_STATUS_IS_OK(status
)) {
660 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
661 "samr_OpenUser for [%s] failed: %s",
664 talloc_free(tmp_ctx
);
668 if (r
->in
.recreate_account
) {
669 struct samr_DeleteUser d
;
670 d
.in
.user_handle
= u_handle
;
671 d
.out
.user_handle
= u_handle
;
672 status
= dcerpc_samr_DeleteUser(samr_pipe
, mem_ctx
, &d
);
673 if (!NT_STATUS_IS_OK(status
)) {
674 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
675 "samr_DeleteUser (for recreate) of [%s] failed: %s",
678 talloc_free(tmp_ctx
);
682 /* We want to recreate, so delete and another samr_CreateUser2 */
684 /* &cu filled in above */
685 status
= dcerpc_samr_CreateUser2(samr_pipe
, tmp_ctx
, &cu
);
686 if (!NT_STATUS_IS_OK(status
)) {
687 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
688 "samr_CreateUser2 (recreate) for [%s] failed: %s",
689 r
->in
.account_name
, nt_errstr(status
));
690 talloc_free(tmp_ctx
);
694 } else if (!NT_STATUS_IS_OK(status
)) {
695 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
696 "samr_CreateUser2 for [%s] failed: %s",
697 r
->in
.account_name
, nt_errstr(status
));
698 talloc_free(tmp_ctx
);
702 /* prepare samr_QueryUserInfo (get flags) */
703 qui
.in
.user_handle
= u_handle
;
705 qui
.out
.info
= &uinfo
;
707 status
= dcerpc_samr_QueryUserInfo(samr_pipe
, tmp_ctx
, &qui
);
708 if (!NT_STATUS_IS_OK(status
)) {
709 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
710 "samr_QueryUserInfo for [%s] failed: %s",
713 talloc_free(tmp_ctx
);
718 status
= NT_STATUS_INVALID_PARAMETER
;
720 = talloc_asprintf(mem_ctx
,
721 "samr_QueryUserInfo failed to return qui.out.info for [%s]: %s",
722 r
->in
.account_name
, nt_errstr(status
));
723 talloc_free(tmp_ctx
);
727 old_acct_flags
= (uinfo
->info16
.acct_flags
& (ACB_WSTRUST
| ACB_SVRTRUST
| ACB_DOMTRUST
));
728 /* Possibly bail if the account is of the wrong type */
730 != r
->in
.acct_type
) {
731 const char *old_account_type
, *new_account_type
;
732 switch (old_acct_flags
) {
734 old_account_type
= "domain member (member)";
737 old_account_type
= "domain controller (bdc)";
740 old_account_type
= "trusted domain";
743 return NT_STATUS_INVALID_PARAMETER
;
745 switch (r
->in
.acct_type
) {
747 new_account_type
= "domain member (member)";
750 new_account_type
= "domain controller (bdc)";
753 new_account_type
= "trusted domain";
756 return NT_STATUS_INVALID_PARAMETER
;
759 if (!NT_STATUS_EQUAL(cu_status
, NT_STATUS_USER_EXISTS
)) {
760 /* We created a new user, but they didn't come out the right type?!? */
762 = talloc_asprintf(mem_ctx
,
763 "We asked to create a new machine account (%s) of type %s, "
764 "but we got an account of type %s. This is unexpected. "
765 "Perhaps delete the account and try again.",
766 r
->in
.account_name
, new_account_type
, old_account_type
);
767 talloc_free(tmp_ctx
);
768 return NT_STATUS_INVALID_PARAMETER
;
770 /* The account is of the wrong type, so bail */
772 /* TODO: We should allow a --force option to override, and redo this from the top setting r.in.recreate_account */
774 = talloc_asprintf(mem_ctx
,
775 "The machine account (%s) already exists in the domain %s, "
776 "but is a %s. You asked to join as a %s. Please delete "
777 "the account and try again.",
778 r
->in
.account_name
, connect_with_info
->out
.domain_name
, old_account_type
, new_account_type
);
779 talloc_free(tmp_ctx
);
780 return NT_STATUS_USER_EXISTS
;
783 acct_flags
= uinfo
->info16
.acct_flags
;
786 acct_flags
= (acct_flags
& ~(ACB_DISABLED
|ACB_PWNOTREQ
));
788 /* Find out what password policy this user has */
789 pwp
.in
.user_handle
= u_handle
;
790 pwp
.out
.info
= &info
;
792 status
= dcerpc_samr_GetUserPwInfo(samr_pipe
, tmp_ctx
, &pwp
);
793 if (NT_STATUS_IS_OK(status
)) {
794 policy_min_pw_len
= pwp
.out
.info
->min_password_length
;
797 /* Grab a password of that minimum length */
799 password_str
= generate_random_password(tmp_ctx
, MAX(8, policy_min_pw_len
), 255);
801 /* set full_name and reset flags */
802 ZERO_STRUCT(u_info21
);
803 u_info21
.full_name
.string
= r
->in
.account_name
;
804 u_info21
.acct_flags
= acct_flags
;
805 u_info21
.fields_present
= SAMR_FIELD_FULL_NAME
| SAMR_FIELD_ACCT_FLAGS
;
807 r2
.samr_handle
.level
= LIBNET_SET_PASSWORD_SAMR_HANDLE
;
808 r2
.samr_handle
.in
.account_name
= r
->in
.account_name
;
809 r2
.samr_handle
.in
.newpassword
= password_str
;
810 r2
.samr_handle
.in
.user_handle
= u_handle
;
811 r2
.samr_handle
.in
.dcerpc_pipe
= samr_pipe
;
812 r2
.samr_handle
.in
.info21
= &u_info21
;
814 status
= libnet_SetPassword(ctx
, tmp_ctx
, &r2
);
815 if (!NT_STATUS_IS_OK(status
)) {
816 r
->out
.error_string
= talloc_steal(mem_ctx
, r2
.samr_handle
.out
.error_string
);
817 talloc_free(tmp_ctx
);
821 account_sid
= dom_sid_add_rid(mem_ctx
, connect_with_info
->out
.domain_sid
, rid
);
823 r
->out
.error_string
= NULL
;
824 talloc_free(tmp_ctx
);
825 return NT_STATUS_NO_MEMORY
;
828 /* Finish out by pushing various bits of status data out for the caller to use */
829 r
->out
.join_password
= password_str
;
830 talloc_steal(mem_ctx
, r
->out
.join_password
);
832 r
->out
.domain_sid
= connect_with_info
->out
.domain_sid
;
833 talloc_steal(mem_ctx
, r
->out
.domain_sid
);
835 r
->out
.account_sid
= account_sid
;
836 talloc_steal(mem_ctx
, r
->out
.account_sid
);
838 r
->out
.domain_name
= connect_with_info
->out
.domain_name
;
839 talloc_steal(mem_ctx
, r
->out
.domain_name
);
840 r
->out
.realm
= connect_with_info
->out
.realm
;
841 talloc_steal(mem_ctx
, r
->out
.realm
);
842 r
->out
.samr_pipe
= samr_pipe
;
843 talloc_reparent(tmp_ctx
, mem_ctx
, samr_pipe
);
844 r
->out
.samr_binding
= samr_pipe
->binding
;
845 talloc_steal(mem_ctx
, r
->out
.samr_binding
);
846 r
->out
.user_handle
= u_handle
;
847 talloc_steal(mem_ctx
, u_handle
);
848 r
->out
.error_string
= r2
.samr_handle
.out
.error_string
;
849 talloc_steal(mem_ctx
, r2
.samr_handle
.out
.error_string
);
851 r
->out
.server_dn_str
= NULL
;
852 talloc_free(tmp_ctx
);
854 /* Now, if it was AD, then we want to start looking changing a
855 * few more things. Otherwise, we are done. */
857 status
= libnet_JoinADSDomain(ctx
, r
);
864 static NTSTATUS
libnet_Join_primary_domain(struct libnet_context
*ctx
,
866 struct libnet_Join
*r
)
870 struct libnet_JoinDomain
*r2
;
871 struct provision_store_self_join_settings
*set_secrets
;
872 uint32_t acct_type
= 0;
873 const char *account_name
;
874 const char *netbios_name
;
875 const char *error_string
;
877 r
->out
.error_string
= NULL
;
879 tmp_mem
= talloc_new(mem_ctx
);
881 return NT_STATUS_NO_MEMORY
;
884 r2
= talloc(tmp_mem
, struct libnet_JoinDomain
);
886 r
->out
.error_string
= NULL
;
887 talloc_free(tmp_mem
);
888 return NT_STATUS_NO_MEMORY
;
891 if (r
->in
.join_type
== SEC_CHAN_BDC
) {
892 acct_type
= ACB_SVRTRUST
;
893 } else if (r
->in
.join_type
== SEC_CHAN_WKSTA
) {
894 acct_type
= ACB_WSTRUST
;
896 r
->out
.error_string
= NULL
;
897 talloc_free(tmp_mem
);
898 return NT_STATUS_INVALID_PARAMETER
;
901 if (r
->in
.netbios_name
!= NULL
) {
902 netbios_name
= r
->in
.netbios_name
;
904 netbios_name
= talloc_strdup(tmp_mem
, lp_netbios_name(ctx
->lp_ctx
));
906 r
->out
.error_string
= NULL
;
907 talloc_free(tmp_mem
);
908 return NT_STATUS_NO_MEMORY
;
912 account_name
= talloc_asprintf(tmp_mem
, "%s$", netbios_name
);
914 r
->out
.error_string
= NULL
;
915 talloc_free(tmp_mem
);
916 return NT_STATUS_NO_MEMORY
;
923 r2
->in
.domain_name
= r
->in
.domain_name
;
924 r2
->in
.account_name
= account_name
;
925 r2
->in
.netbios_name
= netbios_name
;
926 r2
->in
.level
= LIBNET_JOINDOMAIN_AUTOMATIC
;
927 r2
->in
.acct_type
= acct_type
;
928 r2
->in
.recreate_account
= false;
929 status
= libnet_JoinDomain(ctx
, r2
, r2
);
930 if (!NT_STATUS_IS_OK(status
)) {
931 r
->out
.error_string
= talloc_steal(mem_ctx
, r2
->out
.error_string
);
932 talloc_free(tmp_mem
);
936 set_secrets
= talloc(tmp_mem
, struct provision_store_self_join_settings
);
938 r
->out
.error_string
= NULL
;
939 talloc_free(tmp_mem
);
940 return NT_STATUS_NO_MEMORY
;
943 ZERO_STRUCTP(set_secrets
);
944 set_secrets
->domain_name
= r2
->out
.domain_name
;
945 set_secrets
->realm
= r2
->out
.realm
;
946 set_secrets
->account_name
= account_name
;
947 set_secrets
->netbios_name
= netbios_name
;
948 set_secrets
->secure_channel_type
= r
->in
.join_type
;
949 set_secrets
->machine_password
= r2
->out
.join_password
;
950 set_secrets
->key_version_number
= r2
->out
.kvno
;
951 set_secrets
->domain_sid
= r2
->out
.domain_sid
;
953 status
= provision_store_self_join(ctx
, ctx
->lp_ctx
, ctx
->event_ctx
, set_secrets
, &error_string
);
954 if (!NT_STATUS_IS_OK(status
)) {
955 r
->out
.error_string
= talloc_steal(mem_ctx
, error_string
);
956 talloc_free(tmp_mem
);
960 /* move all out parameter to the callers TALLOC_CTX */
961 r
->out
.error_string
= NULL
;
962 r
->out
.join_password
= r2
->out
.join_password
;
963 talloc_reparent(r2
, mem_ctx
, r2
->out
.join_password
);
964 r
->out
.domain_sid
= r2
->out
.domain_sid
;
965 talloc_reparent(r2
, mem_ctx
, r2
->out
.domain_sid
);
966 r
->out
.domain_name
= r2
->out
.domain_name
;
967 talloc_reparent(r2
, mem_ctx
, r2
->out
.domain_name
);
968 talloc_free(tmp_mem
);
972 NTSTATUS
libnet_Join(struct libnet_context
*ctx
, TALLOC_CTX
*mem_ctx
, struct libnet_Join
*r
)
974 switch (r
->in
.join_type
) {
976 return libnet_Join_primary_domain(ctx
, mem_ctx
, r
);
978 return libnet_Join_primary_domain(ctx
, mem_ctx
, r
);
979 case SEC_CHAN_DOMAIN
:
980 case SEC_CHAN_DNS_DOMAIN
:
985 r
->out
.error_string
= talloc_asprintf(mem_ctx
,
986 "Invalid join type specified (%08X) attempting to join domain %s",
987 r
->in
.join_type
, r
->in
.domain_name
);
988 return NT_STATUS_INVALID_PARAMETER
;