Renamed all the new_cli_netlogon_* functions to cli_netlogon_*
[kai/samba.git] / source3 / utils / net_rpc_join.c
1 /* 
2    Samba Unix/Linux SMB client library 
3    Distributed SMB/CIFS Server Management Utility 
4    Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
5    Copyright (C) Tim Potter     2001
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
20  
21 #include "includes.h"
22 #include "../utils/net.h"
23
24 /* Macro for checking RPC error codes to make things more readable */
25
26 #define CHECK_RPC_ERR(rpc, msg) \
27         if (!NT_STATUS_IS_OK(result = rpc)) { \
28                 DEBUG(0, (msg ": %s\n", nt_errstr(result))); \
29                 goto done; \
30         }
31
32 #define CHECK_RPC_ERR_DEBUG(rpc, debug_args) \
33         if (!NT_STATUS_IS_OK(result = rpc)) { \
34                 DEBUG(0, debug_args); \
35                 goto done; \
36         }
37
38 /**
39  * Join a domain using the administrator username and password
40  *
41  * @param argc  Standard main() style argc
42  * @param argc  Standard main() style argv.  Initial components are already
43  *              stripped.  Currently not used.
44  * @return A shell status integer (0 for success)
45  *
46  **/
47
48 int net_rpc_join_newstyle(int argc, const char **argv) 
49 {
50
51         extern pstring global_myname;
52
53         /* libsmb variables */
54
55         struct cli_state *cli;
56         TALLOC_CTX *mem_ctx;
57         uint32 acb_info;
58
59         /* rpc variables */
60
61         POLICY_HND lsa_pol, sam_pol, domain_pol, user_pol;
62         DOM_SID domain_sid;
63         uint32 user_rid;
64
65         /* Password stuff */
66
67         char *clear_trust_password = NULL;
68         fstring ucs2_trust_password;
69         int ucs2_pw_len;
70         uchar stored_md4_trust_password[16];
71         uchar pwbuf[516], sess_key[16];
72         SAM_USERINFO_CTR ctr;
73         SAM_USER_INFO_24 p24;
74         SAM_USER_INFO_10 p10;
75
76         /* Misc */
77
78         NTSTATUS result;
79         int retval = 1;
80         fstring domain;
81         uint32 num_rids, *name_types, *user_rids;
82         uint32 flags = 0x3e8;
83         char *acct_name;
84         const char *const_acct_name;
85
86         /* Connect to remote machine */
87
88         if (!(cli = net_make_ipc_connection(NET_FLAGS_PDC))) 
89                 return 1;
90
91         if (!(mem_ctx = talloc_init())) {
92                 DEBUG(0, ("Could not initialise talloc context\n"));
93                 goto done;
94         }
95
96         /* Fetch domain sid */
97
98         if (!cli_nt_session_open(cli, PIPE_LSARPC)) {
99                 DEBUG(0, ("Error connecting to SAM pipe\n"));
100                 goto done;
101         }
102
103
104         CHECK_RPC_ERR(cli_lsa_open_policy(cli, mem_ctx, True,
105                                           SEC_RIGHTS_MAXIMUM_ALLOWED,
106                                           &lsa_pol),
107                       "error opening lsa policy handle");
108
109         CHECK_RPC_ERR(cli_lsa_query_info_policy(cli, mem_ctx, &lsa_pol,
110                                                 5, domain, &domain_sid),
111                       "error querying info policy");
112
113         cli_lsa_close(cli, mem_ctx, &lsa_pol);
114
115         cli_nt_session_close(cli); /* Done with this pipe */
116
117         /* Create domain user */
118         if (!cli_nt_session_open(cli, PIPE_SAMR)) {
119                 DEBUG(0, ("Error connecting to SAM pipe\n"));
120                 goto done;
121         }
122
123         CHECK_RPC_ERR(cli_samr_connect(cli, mem_ctx, 
124                                        SEC_RIGHTS_MAXIMUM_ALLOWED,
125                                        &sam_pol),
126                       "could not connect to SAM database");
127
128         
129         CHECK_RPC_ERR(cli_samr_open_domain(cli, mem_ctx, &sam_pol,
130                                            SEC_RIGHTS_MAXIMUM_ALLOWED,
131                                            &domain_sid, &domain_pol),
132                       "could not open domain");
133
134         /* Create domain user */
135         acct_name = talloc_asprintf(mem_ctx, "%s$", global_myname); 
136         strlower(acct_name);
137         const_acct_name = acct_name;
138
139         acb_info = ((lp_server_role() == ROLE_DOMAIN_BDC) || lp_server_role() == ROLE_DOMAIN_PDC) ? ACB_SVRTRUST : ACB_WSTRUST;
140
141         result = cli_samr_create_dom_user(cli, mem_ctx, &domain_pol,
142                                           acct_name, acb_info,
143                                           0xe005000b, &user_pol, 
144                                           &user_rid);
145
146         if (!NT_STATUS_IS_OK(result) && 
147             !NT_STATUS_EQUAL(result, NT_STATUS_USER_EXISTS)) {
148                 d_printf("Create of workstation account failed\n");
149
150                 /* If NT_STATUS_ACCESS_DENIED then we have a valid
151                    username/password combo but the user does not have
152                    administrator access. */
153
154                 if (NT_STATUS_V(result) == NT_STATUS_V(NT_STATUS_ACCESS_DENIED))
155                         d_printf("User specified does not have administrator privileges\n");
156
157                 goto done;
158         }
159
160         /* We *must* do this.... don't ask... */
161
162         if (NT_STATUS_IS_OK(result))
163                 cli_samr_close(cli, mem_ctx, &user_pol);
164
165         CHECK_RPC_ERR_DEBUG(cli_samr_lookup_names(cli, mem_ctx,
166                                                   &domain_pol, flags,
167                                                   1, &const_acct_name, 
168                                                   &num_rids,
169                                                   &user_rids, &name_types),
170                             ("error looking up rid for user %s: %s\n",
171                              acct_name, nt_errstr(result)));
172
173         if (name_types[0] != SID_NAME_USER) {
174                 DEBUG(0, ("%s is not a user account\n", acct_name));
175                 goto done;
176         }
177
178         user_rid = user_rids[0];
179                 
180         /* Open handle on user */
181
182         CHECK_RPC_ERR_DEBUG(
183                 cli_samr_open_user(cli, mem_ctx, &domain_pol,
184                                    SEC_RIGHTS_MAXIMUM_ALLOWED,
185                                    user_rid, &user_pol),
186                 ("could not re-open existing user %s: %s\n",
187                  acct_name, nt_errstr(result)));
188         
189         /* Create a random machine account password */
190
191         { 
192                 char *str;
193                 str = generate_random_str(DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH);
194                 clear_trust_password = strdup(str);
195         }
196
197         ucs2_pw_len = push_ucs2(NULL, ucs2_trust_password, 
198                                 clear_trust_password, 
199                                 sizeof(ucs2_trust_password), 0);
200                   
201         encode_pw_buffer((char *)pwbuf, ucs2_trust_password,
202                          ucs2_pw_len);
203
204         /* Set password on machine account */
205
206         ZERO_STRUCT(ctr);
207         ZERO_STRUCT(p24);
208
209         init_sam_user_info24(&p24, (char *)pwbuf,24);
210
211         ctr.switch_value = 24;
212         ctr.info.id24 = &p24;
213
214         /* I don't think this is quite the right place for this
215            calculation.  It should be moved somewhere where the credentials
216            are calculated. )-: */
217
218         mdfour(sess_key, cli->pwd.smb_nt_pwd, 16);
219
220         CHECK_RPC_ERR(cli_samr_set_userinfo(cli, mem_ctx, &user_pol, 24, 
221                                             sess_key, &ctr),
222                       "error setting trust account password");
223
224         /* Why do we have to try to (re-)set the ACB to be the same as what
225            we passed in the samr_create_dom_user() call?  When a NT
226            workstation is joined to a domain by an administrator the
227            acb_info is set to 0x80.  For a normal user with "Add
228            workstations to the domain" rights the acb_info is 0x84.  I'm
229            not sure whether it is supposed to make a difference or not.  NT
230            seems to cope with either value so don't bomb out if the set
231            userinfo2 level 0x10 fails.  -tpot */
232
233         ZERO_STRUCT(ctr);
234         ctr.switch_value = 0x10;
235         ctr.info.id10 = &p10;
236
237         init_sam_user_info10(&p10, acb_info);
238
239         /* Ignoring the return value is necessary for joining a domain
240            as a normal user with "Add workstation to domain" privilege. */
241
242         result = cli_samr_set_userinfo2(cli, mem_ctx, &user_pol, 0x10, 
243                                         sess_key, &ctr);
244
245         /* Now store the secret in the secrets database */
246
247         strupper(domain);
248
249         if (!secrets_store_domain_sid(domain, &domain_sid)) {
250                 DEBUG(0, ("error storing domain sid for %s\n", domain));
251                 goto done;
252         }
253
254         if (!secrets_store_machine_password(clear_trust_password)) {
255                 DEBUG(0, ("error storing plaintext domain secrets for %s\n", domain));
256         }
257
258         /* Now check the whole process from top-to-bottom */
259
260         cli_samr_close(cli, mem_ctx, &user_pol);
261
262         cli_nt_session_close(cli); /* Done with this pipe */
263
264         if (!cli_nt_session_open(cli, PIPE_NETLOGON)) {
265                 DEBUG(0, ("Error connecting to NETLOGON pipe\n"));
266                 goto done;
267         }
268
269         if (!secrets_fetch_trust_account_password(domain, 
270                                                   stored_md4_trust_password, NULL)) {
271                 DEBUG(0, ("Could not reterive secrets we just stored!"));
272                 goto done;
273         }
274         
275         CHECK_RPC_ERR(cli_nt_setup_creds(cli, 
276                                              (acb_info & ACB_SVRTRUST) ? SEC_CHAN_BDC : SEC_CHAN_WKSTA, 
277                                              stored_md4_trust_password),
278                           "error in domain join verification");
279         
280         retval = 0;             /* Success! */
281         
282 done:
283         /* Close down pipe - this will clean up open policy handles */
284
285         if (cli->nt_pipe_fnum)
286                 cli_nt_session_close(cli);
287
288         /* Display success or failure */
289
290         if (retval != 0) {
291                 trust_password_delete(domain);
292                 fprintf(stderr,"Unable to join domain %s.\n",domain);
293         } else {
294                 printf("Joined domain %s.\n",domain);
295         }
296         
297         cli_shutdown(cli);
298
299         SAFE_FREE(clear_trust_password);
300
301         return retval;
302 }