More fixes towards warnings on the IRIX compiler
[tprouty/samba.git] / source / 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
138         acb_info = ((lp_server_role() == ROLE_DOMAIN_BDC) || lp_server_role() == ROLE_DOMAIN_PDC) ? ACB_SVRTRUST : ACB_WSTRUST;
139
140         result = cli_samr_create_dom_user(cli, mem_ctx, &domain_pol,
141                                           acct_name, acb_info,
142                                           0xe005000b, &user_pol, 
143                                           &user_rid);
144
145         if (!NT_STATUS_IS_OK(result) && 
146             !NT_STATUS_EQUAL(result, NT_STATUS_USER_EXISTS)) {
147                 d_printf("Create of workstation account failed\n");
148
149                 /* If NT_STATUS_ACCESS_DENIED then we have a valid
150                    username/password combo but the user does not have
151                    administrator access. */
152
153                 if (NT_STATUS_V(result) == NT_STATUS_V(NT_STATUS_ACCESS_DENIED))
154                         d_printf("User specified does not have administrator privileges\n");
155
156                 goto done;
157         }
158
159         /* We *must* do this.... don't ask... */
160
161         if (NT_STATUS_IS_OK(result))
162                 cli_samr_close(cli, mem_ctx, &user_pol);
163
164         CHECK_RPC_ERR_DEBUG(cli_samr_lookup_names(cli, mem_ctx,
165                                                   &domain_pol, flags,
166                                                   1, &const_acct_name, 
167                                                   &num_rids,
168                                                   &user_rids, &name_types),
169                             ("error looking up rid for user %s: %s\n",
170                              acct_name, nt_errstr(result)));
171
172         if (name_types[0] != SID_NAME_USER) {
173                 DEBUG(0, ("%s is not a user account\n", acct_name));
174                 goto done;
175         }
176
177         user_rid = user_rids[0];
178                 
179         /* Open handle on user */
180
181         CHECK_RPC_ERR_DEBUG(
182                 cli_samr_open_user(cli, mem_ctx, &domain_pol,
183                                    SEC_RIGHTS_MAXIMUM_ALLOWED,
184                                    user_rid, &user_pol),
185                 ("could not re-open existing user %s: %s\n",
186                  acct_name, nt_errstr(result)));
187         
188         /* Create a random machine account password */
189
190         { 
191                 char *str;
192                 str = generate_random_str(DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH);
193                 clear_trust_password = strdup(str);
194         }
195
196         ucs2_pw_len = push_ucs2(NULL, ucs2_trust_password, 
197                                 clear_trust_password, 
198                                 sizeof(ucs2_trust_password), 0);
199                   
200         encode_pw_buffer((char *)pwbuf, ucs2_trust_password,
201                          ucs2_pw_len);
202
203         /* Set password on machine account */
204
205         ZERO_STRUCT(ctr);
206         ZERO_STRUCT(p24);
207
208         init_sam_user_info24(&p24, (char *)pwbuf,24);
209
210         ctr.switch_value = 24;
211         ctr.info.id24 = &p24;
212
213         /* I don't think this is quite the right place for this
214            calculation.  It should be moved somewhere where the credentials
215            are calculated. )-: */
216
217         mdfour(sess_key, cli->pwd.smb_nt_pwd, 16);
218
219         CHECK_RPC_ERR(cli_samr_set_userinfo(cli, mem_ctx, &user_pol, 24, 
220                                             sess_key, &ctr),
221                       "error setting trust account password");
222
223         /* Why do we have to try to (re-)set the ACB to be the same as what
224            we passed in the samr_create_dom_user() call?  When a NT
225            workstation is joined to a domain by an administrator the
226            acb_info is set to 0x80.  For a normal user with "Add
227            workstations to the domain" rights the acb_info is 0x84.  I'm
228            not sure whether it is supposed to make a difference or not.  NT
229            seems to cope with either value so don't bomb out if the set
230            userinfo2 level 0x10 fails.  -tpot */
231
232         ZERO_STRUCT(ctr);
233         ctr.switch_value = 0x10;
234         ctr.info.id10 = &p10;
235
236         init_sam_user_info10(&p10, acb_info);
237
238         /* Ignoring the return value is necessary for joining a domain
239            as a normal user with "Add workstation to domain" privilege. */
240
241         result = cli_samr_set_userinfo2(cli, mem_ctx, &user_pol, 0x10, 
242                                         sess_key, &ctr);
243
244         /* Now store the secret in the secrets database */
245
246         strupper(domain);
247
248         if (!secrets_store_domain_sid(domain, &domain_sid)) {
249                 DEBUG(0, ("error storing domain sid for %s\n", domain));
250                 goto done;
251         }
252
253         if (!secrets_store_machine_password(clear_trust_password)) {
254                 DEBUG(0, ("error storing plaintext domain secrets for %s\n", domain));
255         }
256
257         /* Now check the whole process from top-to-bottom */
258
259         cli_samr_close(cli, mem_ctx, &user_pol);
260
261         cli_nt_session_close(cli); /* Done with this pipe */
262
263         if (!cli_nt_session_open(cli, PIPE_NETLOGON)) {
264                 DEBUG(0, ("Error connecting to NETLOGON pipe\n"));
265                 goto done;
266         }
267
268         if (!secrets_fetch_trust_account_password(domain, 
269                                                   stored_md4_trust_password, NULL)) {
270                 DEBUG(0, ("Could not reterive secrets we just stored!"));
271                 goto done;
272         }
273         
274         CHECK_RPC_ERR(new_cli_nt_setup_creds(cli, 
275                                              (acb_info & ACB_SVRTRUST) ? SEC_CHAN_BDC : SEC_CHAN_WKSTA, 
276                                              stored_md4_trust_password),
277                           "error in domain join verification");
278         
279         retval = 0;             /* Success! */
280         
281 done:
282         /* Close down pipe - this will clean up open policy handles */
283
284         if (cli->nt_pipe_fnum)
285                 cli_nt_session_close(cli);
286
287         /* Display success or failure */
288
289         if (retval != 0) {
290                 trust_password_delete(domain);
291                 fprintf(stderr,"Unable to join domain %s.\n",domain);
292         } else {
293                 printf("Joined domain %s.\n",domain);
294         }
295         
296         cli_shutdown(cli);
297
298         SAFE_FREE(clear_trust_password);
299
300         return retval;
301 }