4abd2954f88e64d98ed71494355ed1a61d9dd504
[jelmer/samba4-debian.git] / source / libnet / libnet_join.c
1 /* 
2    Unix SMB/CIFS implementation.
3    
4    Copyright (C) Stefan Metzmacher      2004
5    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
6    Copyright (C) Brad Henry 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 3 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    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/>.
20 */
21
22 #include "includes.h"
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"
29 #include "db_wrap.h"
30 #include "libcli/security/security.h"
31 #include "auth/credentials/credentials.h"
32 #include "auth/credentials/credentials_krb5.h"
33 #include "librpc/gen_ndr/ndr_samr_c.h"
34 #include "param/param.h"
35
36 /*
37  * complete a domain join, when joining to a AD domain:
38  * 1.) connect and bind to the DRSUAPI pipe
39  * 2.) do a DsCrackNames() to find the machine account dn
40  * 3.) connect to LDAP
41  * 4.) do an ldap search to find the "msDS-KeyVersionNumber" of the machine account
42  * 5.) set the servicePrincipalName's of the machine account via LDAP, (maybe we should use DsWriteAccountSpn()...)
43  * 6.) do a DsCrackNames() to find the domain dn
44  * 7.) find out Site specific stuff, look at libnet_JoinSite() for details
45  */
46 static NTSTATUS libnet_JoinADSDomain(struct libnet_context *ctx, struct libnet_JoinDomain *r)
47 {
48         NTSTATUS status;
49
50         TALLOC_CTX *tmp_ctx;
51
52         const char *realm = r->out.realm;
53
54         struct dcerpc_binding *samr_binding = r->out.samr_binding;
55
56         struct dcerpc_pipe *drsuapi_pipe;
57         struct dcerpc_binding *drsuapi_binding;
58         struct drsuapi_DsBind r_drsuapi_bind;
59         struct drsuapi_DsCrackNames r_crack_names;
60         struct drsuapi_DsNameString names[1];
61         struct policy_handle drsuapi_bind_handle;
62         struct GUID drsuapi_bind_guid;
63
64         struct ldb_context *remote_ldb;
65         struct ldb_dn *account_dn;
66         const char *account_dn_str;
67         const char *remote_ldb_url;
68         struct ldb_result *res;
69         struct ldb_message *msg;
70
71         int ret, rtn;
72
73         const char * const attrs[] = {
74                 "msDS-KeyVersionNumber",
75                 "servicePrincipalName",
76                 "dNSHostName",
77                 "objectGUID",
78                 NULL,
79         };
80
81         r->out.error_string = NULL;
82         
83         /* We need to convert between a samAccountName and domain to a
84          * DN in the directory.  The correct way to do this is with
85          * DRSUAPI CrackNames */
86
87         /* Fiddle with the bindings, so get to DRSUAPI on
88          * NCACN_IP_TCP, sealed */
89         tmp_ctx = talloc_named(r, 0, "libnet_JoinADSDomain temp context");  
90         if (!tmp_ctx) {
91                 r->out.error_string = NULL;
92                 return NT_STATUS_NO_MEMORY;
93         }
94                                                    
95         drsuapi_binding = talloc(tmp_ctx, struct dcerpc_binding);
96         if (!drsuapi_binding) {
97                 r->out.error_string = NULL;
98                 talloc_free(tmp_ctx);
99                 return NT_STATUS_NO_MEMORY;
100         }
101         
102         *drsuapi_binding = *samr_binding;
103
104         /* DRSUAPI is only available on IP_TCP, and locally on NCALRPC */
105         if (drsuapi_binding->transport != NCALRPC) {
106                 drsuapi_binding->transport = NCACN_IP_TCP;
107         }
108         drsuapi_binding->endpoint = NULL;
109         drsuapi_binding->flags |= DCERPC_SEAL;
110
111         status = dcerpc_pipe_connect_b(tmp_ctx, 
112                                        &drsuapi_pipe,
113                                        drsuapi_binding,
114                                        &ndr_table_drsuapi,
115                                        ctx->cred, 
116                                        ctx->event_ctx);
117         if (!NT_STATUS_IS_OK(status)) {
118                 r->out.error_string = talloc_asprintf(r,
119                                         "Connection to DRSUAPI pipe of PDC of domain '%s' failed: %s",
120                                         r->out.domain_name,
121                                         nt_errstr(status));
122                 talloc_free(tmp_ctx);
123                 return status;
124         }
125
126         /* get a DRSUAPI pipe handle */
127         GUID_from_string(DRSUAPI_DS_BIND_GUID, &drsuapi_bind_guid);
128
129         r_drsuapi_bind.in.bind_guid = &drsuapi_bind_guid;
130         r_drsuapi_bind.in.bind_info = NULL;
131         r_drsuapi_bind.out.bind_handle = &drsuapi_bind_handle;
132
133         status = dcerpc_drsuapi_DsBind(drsuapi_pipe, tmp_ctx, &r_drsuapi_bind);
134         if (!NT_STATUS_IS_OK(status)) {
135                 if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {
136                         r->out.error_string
137                                 = talloc_asprintf(r,
138                                                   "dcerpc_drsuapi_DsBind failed - %s", 
139                                                   dcerpc_errstr(tmp_ctx, drsuapi_pipe->last_fault_code));
140                         talloc_free(tmp_ctx);
141                         return status;
142                 } else {
143                         r->out.error_string
144                                 = talloc_asprintf(r,
145                                                   "dcerpc_drsuapi_DsBind failed - %s", 
146                                                   nt_errstr(status));
147                         talloc_free(tmp_ctx);
148                         return status;
149                 }
150         } else if (!W_ERROR_IS_OK(r_drsuapi_bind.out.result)) {
151                 r->out.error_string
152                                 = talloc_asprintf(r,
153                                                   "DsBind failed - %s", 
154                                                   win_errstr(r_drsuapi_bind.out.result));
155                         talloc_free(tmp_ctx);
156                 return NT_STATUS_UNSUCCESSFUL;
157         }
158
159         /* Actually 'crack' the names */
160         ZERO_STRUCT(r_crack_names);
161         r_crack_names.in.bind_handle            = &drsuapi_bind_handle;
162         r_crack_names.in.level                  = 1;
163         r_crack_names.in.req.req1.codepage      = 1252; /* western european */
164         r_crack_names.in.req.req1.language      = 0x00000407; /* german */
165         r_crack_names.in.req.req1.count         = 1;
166         r_crack_names.in.req.req1.names         = names;
167         r_crack_names.in.req.req1.format_flags  = DRSUAPI_DS_NAME_FLAG_NO_FLAGS;
168         r_crack_names.in.req.req1.format_offered= DRSUAPI_DS_NAME_FORMAT_SID_OR_SID_HISTORY;
169         r_crack_names.in.req.req1.format_desired= DRSUAPI_DS_NAME_FORMAT_FQDN_1779;
170         names[0].str = dom_sid_string(tmp_ctx, r->out.account_sid);
171         if (!names[0].str) {
172                 r->out.error_string = NULL;
173                 talloc_free(tmp_ctx);
174                 return NT_STATUS_NO_MEMORY;
175         }
176
177         status = dcerpc_drsuapi_DsCrackNames(drsuapi_pipe, tmp_ctx, &r_crack_names);
178         if (!NT_STATUS_IS_OK(status)) {
179                 if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {
180                         r->out.error_string
181                                 = talloc_asprintf(r,
182                                                   "dcerpc_drsuapi_DsCrackNames for [%s] failed - %s", 
183                                                   names[0].str,
184                                                   dcerpc_errstr(tmp_ctx, drsuapi_pipe->last_fault_code));
185                         talloc_free(tmp_ctx);
186                         return status;
187                 } else {
188                         r->out.error_string
189                                 = talloc_asprintf(r,
190                                                   "dcerpc_drsuapi_DsCrackNames for [%s] failed - %s", 
191                                                   names[0].str,
192                                                   nt_errstr(status));
193                         talloc_free(tmp_ctx);
194                         return status;
195                 }
196         } else if (!W_ERROR_IS_OK(r_crack_names.out.result)) {
197                 r->out.error_string
198                                 = talloc_asprintf(r,
199                                                   "DsCrackNames failed - %s", win_errstr(r_crack_names.out.result));
200                 talloc_free(tmp_ctx);
201                 return NT_STATUS_UNSUCCESSFUL;
202         } else if (r_crack_names.out.level != 1 
203                    || !r_crack_names.out.ctr.ctr1 
204                    || r_crack_names.out.ctr.ctr1->count != 1) {
205                 r->out.error_string = talloc_asprintf(r, "DsCrackNames failed");
206                 talloc_free(tmp_ctx);
207                 return NT_STATUS_INVALID_PARAMETER;
208         } else if (r_crack_names.out.ctr.ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {
209                 r->out.error_string = talloc_asprintf(r, "DsCrackNames failed: %d", r_crack_names.out.ctr.ctr1->array[0].status);
210                 talloc_free(tmp_ctx);
211                 return NT_STATUS_UNSUCCESSFUL;
212         } else if (r_crack_names.out.ctr.ctr1->array[0].result_name == NULL) {
213                 r->out.error_string = talloc_asprintf(r, "DsCrackNames failed: no result name");
214                 talloc_free(tmp_ctx);
215                 return NT_STATUS_INVALID_PARAMETER;
216         }
217
218         /* Store the DN of our machine account. */
219         account_dn_str = r_crack_names.out.ctr.ctr1->array[0].result_name;
220
221         /* Now we know the user's DN, open with LDAP, read and modify a few things */
222
223         remote_ldb_url = talloc_asprintf(tmp_ctx, "ldap://%s", 
224                                          drsuapi_binding->target_hostname);
225         if (!remote_ldb_url) {
226                 r->out.error_string = NULL;
227                 talloc_free(tmp_ctx);
228                 return NT_STATUS_NO_MEMORY;
229         }
230
231         remote_ldb = ldb_wrap_connect(tmp_ctx, global_loadparm, 
232                                       remote_ldb_url, 
233                                       NULL, ctx->cred, 0, NULL);
234         if (!remote_ldb) {
235                 r->out.error_string = NULL;
236                 talloc_free(tmp_ctx);
237                 return NT_STATUS_UNSUCCESSFUL;
238         }
239
240         account_dn = ldb_dn_new(tmp_ctx, remote_ldb, account_dn_str);
241         if (! ldb_dn_validate(account_dn)) {
242                 r->out.error_string = talloc_asprintf(r, "Invalid account dn: %s",
243                                                       account_dn_str);
244                 talloc_free(tmp_ctx);
245                 return NT_STATUS_UNSUCCESSFUL;
246         }
247
248         /* search for the user's record */
249         ret = ldb_search(remote_ldb, account_dn, LDB_SCOPE_BASE, 
250                          NULL, attrs, &res);
251         if (ret != LDB_SUCCESS) {
252                 r->out.error_string = talloc_asprintf(r, "ldb_search for %s failed - %s",
253                                                       account_dn_str, ldb_errstring(remote_ldb));
254                 talloc_free(tmp_ctx);
255                 return NT_STATUS_UNSUCCESSFUL;
256         }
257
258         talloc_steal(tmp_ctx, res);
259
260         if (res->count != 1) {
261                 r->out.error_string = talloc_asprintf(r, "ldb_search for %s failed - found %d entries",
262                                                       account_dn_str, res->count);
263                 talloc_free(tmp_ctx);
264                 return NT_STATUS_UNSUCCESSFUL;
265         }
266
267         /* Prepare a new message, for the modify */
268         msg = ldb_msg_new(tmp_ctx);
269         if (!msg) {
270                 r->out.error_string = NULL;
271                 talloc_free(tmp_ctx);
272                 return NT_STATUS_NO_MEMORY;
273         }
274         msg->dn = res->msgs[0]->dn;
275
276         {
277                 int i;
278                 const char *service_principal_name[6];
279                 const char *dns_host_name = strlower_talloc(tmp_ctx, 
280                                                             talloc_asprintf(tmp_ctx, 
281                                                                             "%s.%s", 
282                                                                             r->in.netbios_name, 
283                                                                             realm));
284
285                 if (!dns_host_name) {
286                         r->out.error_string = NULL;
287                         talloc_free(tmp_ctx);
288                         return NT_STATUS_NO_MEMORY;
289                 }
290
291                 service_principal_name[0] = talloc_asprintf(tmp_ctx, "host/%s", dns_host_name);
292                 service_principal_name[1] = talloc_asprintf(tmp_ctx, "host/%s", strlower_talloc(tmp_ctx, r->in.netbios_name));
293                 service_principal_name[2] = talloc_asprintf(tmp_ctx, "host/%s/%s", dns_host_name, realm);
294                 service_principal_name[3] = talloc_asprintf(tmp_ctx, "host/%s/%s", strlower_talloc(tmp_ctx, r->in.netbios_name), realm);
295                 service_principal_name[4] = talloc_asprintf(tmp_ctx, "host/%s/%s", dns_host_name, r->out.domain_name);
296                 service_principal_name[5] = talloc_asprintf(tmp_ctx, "host/%s/%s", strlower_talloc(tmp_ctx, r->in.netbios_name), r->out.domain_name);
297                 
298                 for (i=0; i < ARRAY_SIZE(service_principal_name); i++) {
299                         if (!service_principal_name[i]) {
300                                 r->out.error_string = NULL;
301                                 talloc_free(tmp_ctx);
302                                 return NT_STATUS_NO_MEMORY;
303                         }
304                         rtn = samdb_msg_add_string(remote_ldb, tmp_ctx, msg, "servicePrincipalName", service_principal_name[i]);
305                         if (rtn == -1) {
306                                 r->out.error_string = NULL;
307                                 talloc_free(tmp_ctx);
308                                 return NT_STATUS_NO_MEMORY;
309                         }
310                 }
311
312                 rtn = samdb_msg_add_string(remote_ldb, tmp_ctx, msg, "dNSHostName", dns_host_name);
313                 if (rtn == -1) {
314                         r->out.error_string = NULL;
315                         talloc_free(tmp_ctx);
316                         return NT_STATUS_NO_MEMORY;
317                 }
318
319                 rtn = samdb_replace(remote_ldb, tmp_ctx, msg);
320                 if (rtn != 0) {
321                         r->out.error_string
322                                 = talloc_asprintf(r, 
323                                                   "Failed to replace entries on %s", 
324                                                   ldb_dn_get_linearized(msg->dn));
325                         talloc_free(tmp_ctx);
326                         return NT_STATUS_INTERNAL_DB_CORRUPTION;
327                 }
328         }
329                                 
330         /* DsCrackNames to find out the DN of the domain. */
331         r_crack_names.in.req.req1.format_offered = DRSUAPI_DS_NAME_FORMAT_NT4_ACCOUNT;
332         r_crack_names.in.req.req1.format_desired = DRSUAPI_DS_NAME_FORMAT_FQDN_1779;
333         names[0].str = talloc_asprintf(tmp_ctx, "%s\\", r->out.domain_name);
334         if (!names[0].str) {
335                 r->out.error_string = NULL;
336                 talloc_free(tmp_ctx);
337                 return NT_STATUS_NO_MEMORY;
338         }
339
340         status = dcerpc_drsuapi_DsCrackNames(drsuapi_pipe, tmp_ctx, &r_crack_names);
341         if (!NT_STATUS_IS_OK(status)) {
342                 if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {
343                         r->out.error_string
344                                 = talloc_asprintf(r,
345                                                   "dcerpc_drsuapi_DsCrackNames for [%s] failed - %s", 
346                                                   r->in.domain_name, 
347                                                   dcerpc_errstr(tmp_ctx, drsuapi_pipe->last_fault_code));
348                         talloc_free(tmp_ctx);
349                         return status;
350                 } else {
351                         r->out.error_string
352                                 = talloc_asprintf(r,
353                                                   "dcerpc_drsuapi_DsCrackNames for [%s] failed - %s", 
354                                                   r->in.domain_name, 
355                                                   nt_errstr(status));
356                         talloc_free(tmp_ctx);
357                         return status;
358                 }
359         } else if (!W_ERROR_IS_OK(r_crack_names.out.result)) {
360                 r->out.error_string
361                         = talloc_asprintf(r,
362                                           "DsCrackNames failed - %s", win_errstr(r_crack_names.out.result));
363                 talloc_free(tmp_ctx);
364                 return NT_STATUS_UNSUCCESSFUL;
365         } else if (r_crack_names.out.level != 1 
366                    || !r_crack_names.out.ctr.ctr1 
367                    || r_crack_names.out.ctr.ctr1->count != 1
368                    || !r_crack_names.out.ctr.ctr1->array[0].result_name           
369                    || r_crack_names.out.ctr.ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {
370                 r->out.error_string = talloc_asprintf(r, "DsCrackNames failed");
371                 talloc_free(tmp_ctx);
372                 return NT_STATUS_UNSUCCESSFUL;
373         }
374
375         /* Store the account DN. */
376         r->out.account_dn_str = account_dn_str;
377         talloc_steal(r, account_dn_str);
378
379         /* Store the domain DN. */
380         r->out.domain_dn_str = r_crack_names.out.ctr.ctr1->array[0].result_name;
381         talloc_steal(r, r_crack_names.out.ctr.ctr1->array[0].result_name);
382
383         /* Store the KVNO of the account, critical for some kerberos
384          * operations */
385         r->out.kvno = ldb_msg_find_attr_as_uint(res->msgs[0], "msDS-KeyVersionNumber", 0);
386
387         /* Store the account GUID. */
388         r->out.account_guid = samdb_result_guid(res->msgs[0], "objectGUID");
389
390         if (r->in.acct_type == ACB_SVRTRUST) {
391                 status = libnet_JoinSite(remote_ldb, r);
392         }
393         talloc_free(tmp_ctx);
394
395         return status;
396 }
397
398 /*
399  * do a domain join using DCERPC/SAMR calls
400  * - connect to the LSA pipe, to try and find out information about the domain
401  * - create a secondary connection to SAMR pipe
402  * - do a samr_Connect to get a policy handle
403  * - do a samr_LookupDomain to get the domain sid
404  * - do a samr_OpenDomain to get a domain handle
405  * - do a samr_CreateAccount to try and get a new account 
406  * 
407  * If that fails, do:
408  * - do a samr_LookupNames to get the users rid
409  * - do a samr_OpenUser to get a user handle
410  * - potentially delete and recreate the user
411  * - assert the account is of the right type with samrQueryUserInfo
412  * 
413  * - call libnet_SetPassword_samr_handle to set the password,
414  *   and pass a samr_UserInfo21 struct to set full_name and the account flags
415  *
416  * - do some ADS specific things when we join as Domain Controller,
417  *    look at libnet_joinADSDomain() for the details
418  */
419 NTSTATUS libnet_JoinDomain(struct libnet_context *ctx, TALLOC_CTX *mem_ctx, struct libnet_JoinDomain *r)
420 {
421         TALLOC_CTX *tmp_ctx;
422
423         NTSTATUS status, cu_status;
424
425         struct libnet_RpcConnect *connect_with_info;
426         struct dcerpc_pipe *samr_pipe;
427
428         struct samr_Connect sc;
429         struct policy_handle p_handle;
430         struct samr_OpenDomain od;
431         struct policy_handle d_handle;
432         struct samr_LookupNames ln;
433         struct samr_OpenUser ou;
434         struct samr_CreateUser2 cu;
435         struct policy_handle *u_handle = NULL;
436         struct samr_QueryUserInfo qui;
437         struct samr_UserInfo21 u_info21;
438         union libnet_SetPassword r2;
439         struct samr_GetUserPwInfo pwp;
440         struct lsa_String samr_account_name;
441         
442         uint32_t acct_flags, old_acct_flags;
443         uint32_t rid, access_granted;
444         int policy_min_pw_len = 0;
445
446         struct dom_sid *account_sid = NULL;
447         const char *password_str = NULL;
448         
449         r->out.error_string = NULL;
450         r2.samr_handle.out.error_string = NULL;
451         
452         tmp_ctx = talloc_named(mem_ctx, 0, "libnet_Join temp context");
453         if (!tmp_ctx) {
454                 r->out.error_string = NULL;
455                 return NT_STATUS_NO_MEMORY;
456         }
457         
458         u_handle = talloc(tmp_ctx, struct policy_handle);
459         if (!u_handle) {
460                 r->out.error_string = NULL;
461                 talloc_free(tmp_ctx);
462                 return NT_STATUS_NO_MEMORY;
463         }
464         
465         connect_with_info = talloc(tmp_ctx, struct libnet_RpcConnect);
466         if (!connect_with_info) {
467                 r->out.error_string = NULL;
468                 talloc_free(tmp_ctx);
469                 return NT_STATUS_NO_MEMORY;
470         }
471
472         /* prepare connect to the SAMR pipe of PDC */
473         if (r->in.level == LIBNET_JOINDOMAIN_AUTOMATIC) {
474                 connect_with_info->in.binding = NULL;
475                 connect_with_info->in.name    = r->in.domain_name;
476         } else {
477                 connect_with_info->in.binding = r->in.binding;
478                 connect_with_info->in.name    = NULL;
479         }
480
481         /* This level makes a connection to the LSA pipe on the way,
482          * to get some useful bits of information about the domain */
483         connect_with_info->level              = LIBNET_RPC_CONNECT_DC_INFO;
484         connect_with_info->in.dcerpc_iface    = &ndr_table_samr;
485
486         /*
487           establish the SAMR connection
488         */
489         status = libnet_RpcConnect(ctx, tmp_ctx, connect_with_info);
490         if (!NT_STATUS_IS_OK(status)) {
491                 if (r->in.binding) {
492                         r->out.error_string = talloc_asprintf(mem_ctx,
493                                                               "Connection to SAMR pipe of DC %s failed: %s",
494                                                               r->in.binding, connect_with_info->out.error_string);
495                 } else {
496                         r->out.error_string = talloc_asprintf(mem_ctx,
497                                                               "Connection to SAMR pipe of PDC for %s failed: %s",
498                                                               r->in.domain_name, connect_with_info->out.error_string);
499                 }
500                 talloc_free(tmp_ctx);
501                 return status;
502         }
503
504         samr_pipe = connect_with_info->out.dcerpc_pipe;
505
506         status = dcerpc_pipe_auth(tmp_ctx, &samr_pipe,
507                                   connect_with_info->out.dcerpc_pipe->binding, 
508                                   &ndr_table_samr, ctx->cred);
509         if (!NT_STATUS_IS_OK(status)) {
510                 r->out.error_string = talloc_asprintf(mem_ctx,
511                                                 "SAMR bind failed: %s",
512                                                 nt_errstr(status));
513                 talloc_free(tmp_ctx);
514                 return status;
515         }
516
517         /* prepare samr_Connect */
518         ZERO_STRUCT(p_handle);
519         sc.in.system_name = NULL;
520         sc.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
521         sc.out.connect_handle = &p_handle;
522
523         /* 2. do a samr_Connect to get a policy handle */
524         status = dcerpc_samr_Connect(samr_pipe, tmp_ctx, &sc);
525         if (!NT_STATUS_IS_OK(status)) {
526                 r->out.error_string = talloc_asprintf(mem_ctx,
527                                                 "samr_Connect failed: %s",
528                                                 nt_errstr(status));
529                 talloc_free(tmp_ctx);
530                 return status;
531         }
532
533         /* If this is a connection on ncacn_ip_tcp to Win2k3 SP1, we don't get back this useful info */
534         if (!connect_with_info->out.domain_name) {
535                 if (r->in.level == LIBNET_JOINDOMAIN_AUTOMATIC) {
536                         connect_with_info->out.domain_name = talloc_strdup(tmp_ctx, r->in.domain_name);
537                 } else {
538                         /* Bugger, we just lost our way to automaticly find the domain name */
539                         connect_with_info->out.domain_name = talloc_strdup(tmp_ctx, lp_workgroup(global_loadparm));
540                         connect_with_info->out.realm = talloc_strdup(tmp_ctx, lp_realm(global_loadparm));
541                 }
542         }
543
544         /* Perhaps we didn't get a SID above, because we are against ncacn_ip_tcp */
545         if (!connect_with_info->out.domain_sid) {
546                 struct lsa_String name;
547                 struct samr_LookupDomain l;
548                 name.string = connect_with_info->out.domain_name;
549                 l.in.connect_handle = &p_handle;
550                 l.in.domain_name = &name;
551                 
552                 status = dcerpc_samr_LookupDomain(samr_pipe, tmp_ctx, &l);
553                 if (!NT_STATUS_IS_OK(status)) {
554                         r->out.error_string = talloc_asprintf(mem_ctx,
555                                                               "SAMR LookupDomain failed: %s",
556                                                               nt_errstr(status));
557                         talloc_free(tmp_ctx);
558                         return status;
559                 }
560                 connect_with_info->out.domain_sid = l.out.sid;
561         }
562
563         /* prepare samr_OpenDomain */
564         ZERO_STRUCT(d_handle);
565         od.in.connect_handle = &p_handle;
566         od.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
567         od.in.sid = connect_with_info->out.domain_sid;
568         od.out.domain_handle = &d_handle;
569
570         /* do a samr_OpenDomain to get a domain handle */
571         status = dcerpc_samr_OpenDomain(samr_pipe, tmp_ctx, &od);                       
572         if (!NT_STATUS_IS_OK(status)) {
573                 r->out.error_string = talloc_asprintf(mem_ctx,
574                                                       "samr_OpenDomain for [%s] failed: %s",
575                                                       dom_sid_string(tmp_ctx, connect_with_info->out.domain_sid),
576                                                       nt_errstr(status));
577                 talloc_free(tmp_ctx);
578                 return status;
579         }
580         
581         /* prepare samr_CreateUser2 */
582         ZERO_STRUCTP(u_handle);
583         cu.in.domain_handle  = &d_handle;
584         cu.in.access_mask     = SEC_FLAG_MAXIMUM_ALLOWED;
585         samr_account_name.string = r->in.account_name;
586         cu.in.account_name    = &samr_account_name;
587         cu.in.acct_flags      = r->in.acct_type;
588         cu.out.user_handle    = u_handle;
589         cu.out.rid            = &rid;
590         cu.out.access_granted = &access_granted;
591
592         /* do a samr_CreateUser2 to get an account handle, or an error */
593         cu_status = dcerpc_samr_CreateUser2(samr_pipe, tmp_ctx, &cu);                   
594         status = cu_status;
595         if (NT_STATUS_EQUAL(status, NT_STATUS_USER_EXISTS)) {
596                 /* prepare samr_LookupNames */
597                 ln.in.domain_handle = &d_handle;
598                 ln.in.num_names = 1;
599                 ln.in.names = talloc_array(tmp_ctx, struct lsa_String, 1);
600                 if (!ln.in.names) {
601                         r->out.error_string = NULL;
602                         talloc_free(tmp_ctx);
603                         return NT_STATUS_NO_MEMORY;
604                 }
605                 ln.in.names[0].string = r->in.account_name;
606                 
607                 /* 5. do a samr_LookupNames to get the users rid */
608                 status = dcerpc_samr_LookupNames(samr_pipe, tmp_ctx, &ln);
609                 if (!NT_STATUS_IS_OK(status)) {
610                         r->out.error_string = talloc_asprintf(mem_ctx,
611                                                 "samr_LookupNames for [%s] failed: %s",
612                                                 r->in.account_name,
613                                                 nt_errstr(status));
614                         talloc_free(tmp_ctx);
615                         return status;
616                 }
617                 
618                 /* check if we got one RID for the user */
619                 if (ln.out.rids.count != 1) {
620                         r->out.error_string = talloc_asprintf(mem_ctx,
621                                                               "samr_LookupNames for [%s] returns %d RIDs",
622                                                               r->in.account_name, ln.out.rids.count);
623                         talloc_free(tmp_ctx);
624                         return NT_STATUS_INVALID_PARAMETER;
625                 }
626                 
627                 /* prepare samr_OpenUser */
628                 ZERO_STRUCTP(u_handle);
629                 ou.in.domain_handle = &d_handle;
630                 ou.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
631                 ou.in.rid = ln.out.rids.ids[0];
632                 rid = ou.in.rid;
633                 ou.out.user_handle = u_handle;
634                 
635                 /* 6. do a samr_OpenUser to get a user handle */
636                 status = dcerpc_samr_OpenUser(samr_pipe, tmp_ctx, &ou); 
637                 if (!NT_STATUS_IS_OK(status)) {
638                         r->out.error_string = talloc_asprintf(mem_ctx,
639                                                         "samr_OpenUser for [%s] failed: %s",
640                                                         r->in.account_name,
641                                                         nt_errstr(status));
642                         talloc_free(tmp_ctx);
643                         return status;
644                 }
645
646                 if (r->in.recreate_account) {
647                         struct samr_DeleteUser d;
648                         d.in.user_handle = u_handle;
649                         d.out.user_handle = u_handle;
650                         status = dcerpc_samr_DeleteUser(samr_pipe, mem_ctx, &d);
651                         if (!NT_STATUS_IS_OK(status)) {
652                                 r->out.error_string = talloc_asprintf(mem_ctx,
653                                                                       "samr_DeleteUser (for recreate) of [%s] failed: %s",
654                                                                       r->in.account_name,
655                                                                       nt_errstr(status));
656                                 talloc_free(tmp_ctx);
657                                 return status;
658                         }
659
660                         /* We want to recreate, so delete and another samr_CreateUser2 */
661                         
662                         /* &cu filled in above */
663                         status = dcerpc_samr_CreateUser2(samr_pipe, tmp_ctx, &cu);                      
664                         if (!NT_STATUS_IS_OK(status)) {
665                                 r->out.error_string = talloc_asprintf(mem_ctx,
666                                                                       "samr_CreateUser2 (recreate) for [%s] failed: %s",
667                                                                       r->in.account_name, nt_errstr(status));
668                                 talloc_free(tmp_ctx);
669                                 return status;
670                         }
671                 }
672         } else if (!NT_STATUS_IS_OK(status)) {
673                 r->out.error_string = talloc_asprintf(mem_ctx,
674                                                       "samr_CreateUser2 for [%s] failed: %s",
675                                                       r->in.account_name, nt_errstr(status));
676                 talloc_free(tmp_ctx);
677                 return status;
678         }
679
680         /* prepare samr_QueryUserInfo (get flags) */
681         qui.in.user_handle = u_handle;
682         qui.in.level = 16;
683         
684         status = dcerpc_samr_QueryUserInfo(samr_pipe, tmp_ctx, &qui);
685         if (!NT_STATUS_IS_OK(status)) {
686                 r->out.error_string = talloc_asprintf(mem_ctx,
687                                                 "samr_QueryUserInfo for [%s] failed: %s",
688                                                 r->in.account_name,
689                                                 nt_errstr(status));
690                 talloc_free(tmp_ctx);
691                 return status;
692         }
693         
694         if (!qui.out.info) {
695                 status = NT_STATUS_INVALID_PARAMETER;
696                 r->out.error_string
697                         = talloc_asprintf(mem_ctx,
698                                           "samr_QueryUserInfo failed to return qui.out.info for [%s]: %s",
699                                           r->in.account_name, nt_errstr(status));
700                 talloc_free(tmp_ctx);
701                 return status;
702         }
703
704         old_acct_flags = (qui.out.info->info16.acct_flags & (ACB_WSTRUST | ACB_SVRTRUST | ACB_DOMTRUST));
705         /* Possibly bail if the account is of the wrong type */
706         if (old_acct_flags
707             != r->in.acct_type) {
708                 const char *old_account_type, *new_account_type;
709                 switch (old_acct_flags) {
710                 case ACB_WSTRUST:
711                         old_account_type = "domain member (member)";
712                         break;
713                 case ACB_SVRTRUST:
714                         old_account_type = "domain controller (bdc)";
715                         break;
716                 case ACB_DOMTRUST:
717                         old_account_type = "trusted domain";
718                         break;
719                 default:
720                         return NT_STATUS_INVALID_PARAMETER;
721                 }
722                 switch (r->in.acct_type) {
723                 case ACB_WSTRUST:
724                         new_account_type = "domain member (member)";
725                         break;
726                 case ACB_SVRTRUST:
727                         new_account_type = "domain controller (bdc)";
728                         break;
729                 case ACB_DOMTRUST:
730                         new_account_type = "trusted domain";
731                         break;
732                 default:
733                         return NT_STATUS_INVALID_PARAMETER;
734                 }
735
736                 if (!NT_STATUS_EQUAL(cu_status, NT_STATUS_USER_EXISTS)) {
737                         /* We created a new user, but they didn't come out the right type?!? */
738                         r->out.error_string
739                                 = talloc_asprintf(mem_ctx,
740                                                   "We asked to create a new machine account (%s) of type %s, "
741                                                   "but we got an account of type %s.  This is unexpected.  "
742                                                   "Perhaps delete the account and try again.",
743                                                   r->in.account_name, new_account_type, old_account_type);
744                         talloc_free(tmp_ctx);
745                         return NT_STATUS_INVALID_PARAMETER;
746                 } else {
747                         /* The account is of the wrong type, so bail */
748
749                         /* TODO: We should allow a --force option to override, and redo this from the top setting r.in.recreate_account */
750                         r->out.error_string
751                                 = talloc_asprintf(mem_ctx,
752                                                   "The machine account (%s) already exists in the domain %s, "
753                                                   "but is a %s.  You asked to join as a %s.  Please delete "
754                                                   "the account and try again.",
755                                                   r->in.account_name, connect_with_info->out.domain_name, old_account_type, new_account_type);
756                         talloc_free(tmp_ctx);
757                         return NT_STATUS_USER_EXISTS;
758                 }
759         } else {
760                 acct_flags = qui.out.info->info16.acct_flags;
761         }
762         
763         acct_flags = (acct_flags & ~(ACB_DISABLED|ACB_PWNOTREQ));
764
765         /* Find out what password policy this user has */
766         pwp.in.user_handle = u_handle;
767
768         status = dcerpc_samr_GetUserPwInfo(samr_pipe, tmp_ctx, &pwp);                           
769         if (NT_STATUS_IS_OK(status)) {
770                 policy_min_pw_len = pwp.out.info.min_password_length;
771         }
772         
773         /* Grab a password of that minimum length */
774         
775         password_str = generate_random_str(tmp_ctx, MAX(8, policy_min_pw_len)); 
776
777         /* set full_name and reset flags */
778         ZERO_STRUCT(u_info21);
779         u_info21.full_name.string       = r->in.account_name;
780         u_info21.acct_flags             = acct_flags;
781         u_info21.fields_present         = SAMR_FIELD_FULL_NAME | SAMR_FIELD_ACCT_FLAGS;
782
783         r2.samr_handle.level            = LIBNET_SET_PASSWORD_SAMR_HANDLE;
784         r2.samr_handle.in.account_name  = r->in.account_name;
785         r2.samr_handle.in.newpassword   = password_str;
786         r2.samr_handle.in.user_handle   = u_handle;
787         r2.samr_handle.in.dcerpc_pipe   = samr_pipe;
788         r2.samr_handle.in.info21        = &u_info21;
789
790         status = libnet_SetPassword(ctx, tmp_ctx, &r2); 
791         if (!NT_STATUS_IS_OK(status)) {
792                 r->out.error_string = talloc_steal(mem_ctx, r2.samr_handle.out.error_string);
793                 talloc_free(tmp_ctx);
794                 return status;
795         }
796
797         account_sid = dom_sid_add_rid(mem_ctx, connect_with_info->out.domain_sid, rid);
798         if (!account_sid) {
799                 r->out.error_string = NULL;
800                 talloc_free(tmp_ctx);
801                 return NT_STATUS_NO_MEMORY;
802         }
803
804         /* Finish out by pushing various bits of status data out for the caller to use */
805         r->out.join_password = password_str;
806         talloc_steal(mem_ctx, r->out.join_password);
807
808         r->out.domain_sid = connect_with_info->out.domain_sid;
809         talloc_steal(mem_ctx, r->out.domain_sid);
810
811         r->out.account_sid = account_sid;
812         talloc_steal(mem_ctx, r->out.account_sid);
813
814         r->out.domain_name = connect_with_info->out.domain_name;
815         talloc_steal(mem_ctx, r->out.domain_name);
816         r->out.realm = connect_with_info->out.realm;
817         talloc_steal(mem_ctx, r->out.realm);
818         r->out.samr_pipe = samr_pipe;
819         talloc_steal(mem_ctx, samr_pipe);
820         r->out.samr_binding = samr_pipe->binding;
821         talloc_steal(mem_ctx, r->out.samr_binding);
822         r->out.user_handle = u_handle;
823         talloc_steal(mem_ctx, u_handle);
824         r->out.error_string = r2.samr_handle.out.error_string;
825         talloc_steal(mem_ctx, r2.samr_handle.out.error_string);
826         r->out.kvno = 0;
827         r->out.server_dn_str = NULL;
828         talloc_free(tmp_ctx); 
829
830         /* Now, if it was AD, then we want to start looking changing a
831          * few more things.  Otherwise, we are done. */
832         if (r->out.realm) {
833                 status = libnet_JoinADSDomain(ctx, r);
834                 return status;
835         }
836
837         return status;
838 }
839
840 static NTSTATUS libnet_Join_primary_domain(struct libnet_context *ctx, 
841                                            TALLOC_CTX *mem_ctx, 
842                                            struct libnet_Join *r)
843 {
844         NTSTATUS status;
845         TALLOC_CTX *tmp_mem;
846         struct libnet_JoinDomain *r2;
847         int ret, rtn;
848         struct ldb_context *ldb;
849         struct ldb_dn *base_dn;
850         struct ldb_message **msgs, *msg;
851         const char *sct;
852         const char * const attrs[] = {
853                 "whenChanged",
854                 "secret",
855                 "priorSecret",
856                 "priorChanged",
857                 "krb5Keytab",
858                 "privateKeytab",
859                 NULL
860         };
861         uint32_t acct_type = 0;
862         const char *account_name;
863         const char *netbios_name;
864         
865         r->out.error_string = NULL;
866
867         tmp_mem = talloc_new(mem_ctx);
868         if (!tmp_mem) {
869                 return NT_STATUS_NO_MEMORY;
870         }
871
872         r2 = talloc(tmp_mem, struct libnet_JoinDomain);
873         if (!r2) {
874                 r->out.error_string = NULL;
875                 talloc_free(tmp_mem);
876                 return NT_STATUS_NO_MEMORY;
877         }
878         
879         if (r->in.join_type == SEC_CHAN_BDC) {
880                 acct_type = ACB_SVRTRUST;
881         } else if (r->in.join_type == SEC_CHAN_WKSTA) {
882                 acct_type = ACB_WSTRUST;
883         } else {
884                 r->out.error_string = NULL;
885                 talloc_free(tmp_mem);   
886                 return NT_STATUS_INVALID_PARAMETER;
887         }
888
889         if (r->in.netbios_name != NULL) {
890                 netbios_name = r->in.netbios_name;
891         } else {
892                 netbios_name = talloc_reference(tmp_mem, lp_netbios_name(global_loadparm));
893                 if (!netbios_name) {
894                         r->out.error_string = NULL;
895                         talloc_free(tmp_mem);
896                         return NT_STATUS_NO_MEMORY;
897                 }
898         }
899
900         account_name = talloc_asprintf(tmp_mem, "%s$", netbios_name);
901         if (!account_name) {
902                 r->out.error_string = NULL;
903                 talloc_free(tmp_mem);
904                 return NT_STATUS_NO_MEMORY;
905         }
906         
907         /*
908          * Local secrets are stored in secrets.ldb 
909          * open it to make sure we can write the info into it after the join
910          */
911         ldb = secrets_db_connect(tmp_mem);
912         if (!ldb) {
913                 r->out.error_string
914                         = talloc_asprintf(mem_ctx, 
915                                           "Could not open secrets database");
916                 talloc_free(tmp_mem);
917                 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
918         }
919
920         /*
921          * join the domain
922          */
923         ZERO_STRUCTP(r2);
924         r2->in.domain_name      = r->in.domain_name;
925         r2->in.account_name     = account_name;
926         r2->in.netbios_name     = netbios_name;
927         r2->in.level            = LIBNET_JOINDOMAIN_AUTOMATIC;
928         r2->in.acct_type        = acct_type;
929         r2->in.recreate_account = false;
930         status = libnet_JoinDomain(ctx, r2, r2);
931         if (!NT_STATUS_IS_OK(status)) {
932                 r->out.error_string = talloc_steal(mem_ctx, r2->out.error_string);
933                 talloc_free(tmp_mem);
934                 return status;
935         }
936         
937         /*
938          * now prepare the record for secrets.ldb
939          */
940         sct = talloc_asprintf(tmp_mem, "%d", r->in.join_type); 
941         if (!sct) {
942                 r->out.error_string = NULL;
943                 talloc_free(tmp_mem);
944                 return NT_STATUS_NO_MEMORY;
945         }
946         
947         msg = ldb_msg_new(tmp_mem);
948         if (!msg) {
949                 r->out.error_string = NULL;
950                 talloc_free(tmp_mem);
951                 return NT_STATUS_NO_MEMORY;
952         }
953
954         base_dn = ldb_dn_new(tmp_mem, ldb, "cn=Primary Domains");
955         if (!base_dn) {
956                 r->out.error_string = NULL;
957                 talloc_free(tmp_mem);
958                 return NT_STATUS_NO_MEMORY;
959         }
960
961         msg->dn = ldb_dn_copy(tmp_mem, base_dn);
962         if ( ! ldb_dn_add_child_fmt(msg->dn, "flatname=%s", r2->out.domain_name)) {
963                 r->out.error_string = NULL;
964                 talloc_free(tmp_mem);
965                 return NT_STATUS_NO_MEMORY;
966         }
967         
968         rtn = samdb_msg_add_string(ldb, tmp_mem, msg, "flatname", r2->out.domain_name);
969         if (rtn == -1) {
970                 r->out.error_string = NULL;
971                 talloc_free(tmp_mem);
972                 return NT_STATUS_NO_MEMORY;
973         }
974
975         if (r2->out.realm) {
976                 rtn = samdb_msg_add_string(ldb, tmp_mem, msg, "realm", r2->out.realm);
977                 if (rtn == -1) {
978                         r->out.error_string = NULL;
979                         talloc_free(tmp_mem);
980                         return NT_STATUS_NO_MEMORY;
981                 }
982
983                 rtn = samdb_msg_add_string(ldb, tmp_mem, msg, "objectClass", "primaryDomain");
984                 if (rtn == -1) {
985                         r->out.error_string = NULL;
986                         talloc_free(tmp_mem);
987                         return NT_STATUS_NO_MEMORY;
988                 }
989         }
990
991         rtn = samdb_msg_add_string(ldb, tmp_mem, msg, "objectClass", "primaryDomain");
992         if (rtn == -1) {
993                 r->out.error_string = NULL;
994                 talloc_free(tmp_mem);
995                 return NT_STATUS_NO_MEMORY;
996         }
997
998         rtn = samdb_msg_add_string(ldb, tmp_mem, msg, "secret", r2->out.join_password);
999         if (rtn == -1) {
1000                 r->out.error_string = NULL;
1001                 talloc_free(tmp_mem);
1002                 return NT_STATUS_NO_MEMORY;
1003         }
1004
1005         rtn = samdb_msg_add_string(ldb, tmp_mem, msg, "samAccountName", r2->in.account_name);
1006         if (rtn == -1) {
1007                 r->out.error_string = NULL;
1008                 talloc_free(tmp_mem);
1009                 return NT_STATUS_NO_MEMORY;
1010         }
1011
1012         rtn = samdb_msg_add_string(ldb, tmp_mem, msg, "secureChannelType", sct);
1013         if (rtn == -1) {
1014                 r->out.error_string = NULL;
1015                 talloc_free(tmp_mem);
1016                 return NT_STATUS_NO_MEMORY;
1017         }
1018
1019         if (r2->out.kvno) {
1020                 rtn = samdb_msg_add_uint(ldb, tmp_mem, msg, "msDS-KeyVersionNumber",
1021                                          r2->out.kvno);
1022                 if (rtn == -1) {
1023                         r->out.error_string = NULL;
1024                         talloc_free(tmp_mem);
1025                         return NT_STATUS_NO_MEMORY;
1026                 }
1027         }
1028
1029         if (r2->out.domain_sid) {
1030                 rtn = samdb_msg_add_dom_sid(ldb, tmp_mem, msg, "objectSid",
1031                                             r2->out.domain_sid);
1032                 if (rtn == -1) {
1033                         r->out.error_string = NULL;
1034                         talloc_free(tmp_mem);
1035                         return NT_STATUS_NO_MEMORY;
1036                 }
1037         }
1038
1039         /* 
1040          * search for the secret record
1041          * - remove the records we find
1042          * - and fetch the old secret and store it under priorSecret
1043          */
1044         ret = gendb_search(ldb,
1045                            tmp_mem, base_dn,
1046                            &msgs, attrs,
1047                            "(|" SECRETS_PRIMARY_DOMAIN_FILTER "(realm=%s))",
1048                            r2->out.domain_name, r2->out.realm);
1049         if (ret == 0) {
1050                 rtn = samdb_msg_set_string(ldb, tmp_mem, msg, "secretsKeytab", "secrets.keytab");
1051                 if (rtn == -1) {
1052                         r->out.error_string = NULL;
1053                         talloc_free(tmp_mem);
1054                         return NT_STATUS_NO_MEMORY;
1055                 }
1056         } else if (ret == -1) {
1057                 r->out.error_string
1058                         = talloc_asprintf(mem_ctx, 
1059                                           "Search for domain: %s and realm: %s failed: %s", 
1060                                           r2->out.domain_name, r2->out.realm, ldb_errstring(ldb));
1061                 talloc_free(tmp_mem);
1062                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
1063         } else {
1064                 const struct ldb_val *private_keytab;
1065                 const struct ldb_val *krb5_keytab;
1066                 const struct ldb_val *prior_secret;
1067                 const struct ldb_val *prior_modified_time;
1068                 int i;
1069
1070                 for (i = 0; i < ret; i++) {
1071                         ldb_delete(ldb, msgs[i]->dn);
1072                 }
1073
1074                 prior_secret = ldb_msg_find_ldb_val(msgs[0], "secret");
1075                 if (prior_secret) {
1076                         rtn = samdb_msg_set_value(ldb, tmp_mem, msg, "priorSecret", prior_secret);
1077                         if (rtn == -1) {
1078                                 r->out.error_string = NULL;
1079                                 talloc_free(tmp_mem);
1080                                 return NT_STATUS_NO_MEMORY;
1081                         }
1082                 }
1083                 rtn = samdb_msg_set_string(ldb, tmp_mem, msg, "secret", r2->out.join_password);
1084                 if (rtn == -1) {
1085                         r->out.error_string = NULL;
1086                         talloc_free(tmp_mem);
1087                         return NT_STATUS_NO_MEMORY;
1088                 }
1089
1090                 prior_modified_time = ldb_msg_find_ldb_val(msgs[0], 
1091                                                            "whenChanged");
1092                 if (prior_modified_time) {
1093                         rtn = samdb_msg_set_value(ldb, tmp_mem, msg, "priorWhenChanged", 
1094                                                   prior_modified_time);
1095                         if (rtn == -1) {
1096                                 r->out.error_string = NULL;
1097                                 talloc_free(tmp_mem);
1098                                 return NT_STATUS_NO_MEMORY;
1099                         }
1100                 }
1101
1102                 rtn = samdb_msg_set_string(ldb, tmp_mem, msg, "samAccountName", r2->in.account_name);
1103                 if (rtn == -1) {
1104                         r->out.error_string = NULL;
1105                         talloc_free(tmp_mem);
1106                         return NT_STATUS_NO_MEMORY;
1107                 }
1108
1109                 rtn = samdb_msg_set_string(ldb, tmp_mem, msg, "secureChannelType", sct);
1110                 if (rtn == -1) {
1111                         r->out.error_string = NULL;
1112                         talloc_free(tmp_mem);
1113                         return NT_STATUS_NO_MEMORY;
1114                 }
1115
1116                 /* We will want to keep the keytab names */
1117                 private_keytab = ldb_msg_find_ldb_val(msgs[0], "privateKeytab");
1118                 if (private_keytab) {
1119                         rtn = samdb_msg_set_value(ldb, tmp_mem, msg, "privateKeytab", private_keytab);
1120                         if (rtn == -1) {
1121                                 r->out.error_string = NULL;
1122                                 talloc_free(tmp_mem);
1123                                 return NT_STATUS_NO_MEMORY;
1124                         }
1125                 }
1126                 krb5_keytab = ldb_msg_find_ldb_val(msgs[0], "krb5Keytab");
1127                 if (krb5_keytab) {
1128                         rtn = samdb_msg_set_value(ldb, tmp_mem, msg, "krb5Keytab", krb5_keytab);
1129                         if (rtn == -1) {
1130                                 r->out.error_string = NULL;
1131                                 talloc_free(tmp_mem);
1132                                 return NT_STATUS_NO_MEMORY;
1133                         }
1134                 }
1135         }
1136
1137         /* create the secret */
1138         ret = samdb_add(ldb, tmp_mem, msg);
1139         if (ret != 0) {
1140                 r->out.error_string = talloc_asprintf(mem_ctx, "Failed to create secret record %s", 
1141                                                       ldb_dn_get_linearized(msg->dn));
1142                 talloc_free(tmp_mem);
1143                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
1144         }
1145
1146         /* move all out parameter to the callers TALLOC_CTX */
1147         r->out.error_string     = NULL;
1148         r->out.join_password    = r2->out.join_password;
1149         talloc_steal(mem_ctx, r2->out.join_password);
1150         r->out.domain_sid       = r2->out.domain_sid;
1151         talloc_steal(mem_ctx, r2->out.domain_sid);
1152         r->out.domain_name      = r2->out.domain_name;
1153         talloc_steal(mem_ctx, r2->out.domain_name);
1154         talloc_free(tmp_mem);
1155         return NT_STATUS_OK;
1156 }
1157
1158 NTSTATUS libnet_Join(struct libnet_context *ctx, TALLOC_CTX *mem_ctx, struct libnet_Join *r)
1159 {
1160         switch (r->in.join_type) {
1161                 case SEC_CHAN_WKSTA:
1162                         return libnet_Join_primary_domain(ctx, mem_ctx, r);
1163                 case SEC_CHAN_BDC:
1164                         return libnet_Join_primary_domain(ctx, mem_ctx, r);
1165                 case SEC_CHAN_DOMAIN:
1166                         break;
1167         }
1168
1169         r->out.error_string = talloc_asprintf(mem_ctx,
1170                                               "Invalid join type specified (%08X) attempting to join domain %s",
1171                                               r->in.join_type, r->in.domain_name);
1172         return NT_STATUS_INVALID_PARAMETER;
1173 }