2 Unix SMB/CIFS implementation.
3 dump the remote SAM using rpc samsync operations
5 Copyright (C) Andrew Tridgell 2002
6 Copyright (C) Tim Potter 2001,2002
7 Modified by Volker Lendecke 2002
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include "utils/net.h"
27 extern DOM_SID global_sid_Builtin
;
29 static void display_group_mem_info(uint32 rid
, SAM_GROUP_MEM_INFO
*g
)
32 d_printf("Group mem %u: ", rid
);
33 for (i
=0;i
<g
->num_members
;i
++) {
34 d_printf("%u ", g
->rids
[i
]);
40 static const char *display_time(NTTIME
*nttime
)
42 static fstring string
;
47 int days
, hours
, mins
, secs
;
50 if (nttime
->high
==0 && nttime
->low
==0)
53 if (nttime
->high
==0x80000000 && nttime
->low
==0)
60 high
= high
* (~nttime
->high
);
63 low
= low
/(1000*1000*10);
69 hours
=(sec
- (days
*60*60*24)) / (60*60);
70 mins
=(sec
- (days
*60*60*24) - (hours
*60*60) ) / 60;
71 secs
=sec
- (days
*60*60*24) - (hours
*60*60) - (mins
*60);
73 fstr_sprintf(string
, "%u days, %u hours, %u minutes, %u seconds", days
, hours
, mins
, secs
);
78 static void display_alias_info(uint32 rid
, SAM_ALIAS_INFO
*a
)
80 d_printf("Alias '%s' ", unistr2_static(&a
->uni_als_name
));
81 d_printf("desc='%s' rid=%u\n", unistr2_static(&a
->uni_als_desc
), a
->als_rid
);
84 static void display_alias_mem(uint32 rid
, SAM_ALIAS_MEM_INFO
*a
)
87 d_printf("Alias rid %u: ", rid
);
88 for (i
=0;i
<a
->num_members
;i
++) {
89 d_printf("%s ", sid_string_static(&a
->sids
[i
].sid
));
94 static void display_account_info(uint32 rid
, SAM_ACCOUNT_INFO
*a
)
96 fstring hex_nt_passwd
, hex_lm_passwd
;
97 uchar lm_passwd
[16], nt_passwd
[16];
98 static uchar zero_buf
[16];
100 /* Decode hashes from password hash (if they are not NULL) */
102 if (memcmp(a
->pass
.buf_lm_pwd
, zero_buf
, 16) != 0) {
103 sam_pwd_hash(a
->user_rid
, a
->pass
.buf_lm_pwd
, lm_passwd
, 0);
104 pdb_sethexpwd(hex_lm_passwd
, lm_passwd
, a
->acb_info
);
106 pdb_sethexpwd(hex_lm_passwd
, NULL
, 0);
109 if (memcmp(a
->pass
.buf_nt_pwd
, zero_buf
, 16) != 0) {
110 sam_pwd_hash(a
->user_rid
, a
->pass
.buf_nt_pwd
, nt_passwd
, 0);
111 pdb_sethexpwd(hex_nt_passwd
, nt_passwd
, a
->acb_info
);
113 pdb_sethexpwd(hex_nt_passwd
, NULL
, 0);
116 printf("%s:%d:%s:%s:%s:LCT-0\n", unistr2_static(&a
->uni_acct_name
),
117 a
->user_rid
, hex_lm_passwd
, hex_nt_passwd
,
118 pdb_encode_acct_ctrl(a
->acb_info
, NEW_PW_FORMAT_SPACE_PADDED_LEN
));
121 static void display_domain_info(SAM_DOMAIN_INFO
*a
)
125 u_logout
= nt_time_to_unix_abs((NTTIME
*)&a
->force_logoff
);
127 d_printf("Domain name: %s\n", unistr2_static(&a
->uni_dom_name
));
129 d_printf("Minimal Password Length: %d\n", a
->min_pwd_len
);
130 d_printf("Password History Length: %d\n", a
->pwd_history_len
);
132 d_printf("Force Logoff: %d\n", (int)u_logout
);
134 d_printf("Max Password Age: %s\n", display_time((NTTIME
*)&a
->max_pwd_age
));
135 d_printf("Min Password Age: %s\n", display_time((NTTIME
*)&a
->min_pwd_age
));
137 d_printf("Lockout Time: %s\n", display_time((NTTIME
*)&a
->account_lockout
.lockout_duration
));
138 d_printf("Lockout Reset Time: %s\n", display_time((NTTIME
*)&a
->account_lockout
.reset_count
));
140 d_printf("Bad Attempt Lockout: %d\n", a
->account_lockout
.bad_attempt_lockout
);
141 d_printf("User must logon to change password: %d\n", a
->logon_chgpass
);
144 static void display_group_info(uint32 rid
, SAM_GROUP_INFO
*a
)
146 d_printf("Group '%s' ", unistr2_static(&a
->uni_grp_name
));
147 d_printf("desc='%s', rid=%u\n", unistr2_static(&a
->uni_grp_desc
), rid
);
150 static void display_sam_entry(SAM_DELTA_HDR
*hdr_delta
, SAM_DELTA_CTR
*delta
)
152 switch (hdr_delta
->type
) {
153 case SAM_DELTA_ACCOUNT_INFO
:
154 display_account_info(hdr_delta
->target_rid
, &delta
->account_info
);
156 case SAM_DELTA_GROUP_MEM
:
157 display_group_mem_info(hdr_delta
->target_rid
, &delta
->grp_mem_info
);
159 case SAM_DELTA_ALIAS_INFO
:
160 display_alias_info(hdr_delta
->target_rid
, &delta
->alias_info
);
162 case SAM_DELTA_ALIAS_MEM
:
163 display_alias_mem(hdr_delta
->target_rid
, &delta
->als_mem_info
);
165 case SAM_DELTA_DOMAIN_INFO
:
166 display_domain_info(&delta
->domain_info
);
168 case SAM_DELTA_GROUP_INFO
:
169 display_group_info(hdr_delta
->target_rid
, &delta
->group_info
);
171 /* The following types are recognised but not handled */
172 case SAM_DELTA_RENAME_GROUP
:
173 d_printf("SAM_DELTA_RENAME_GROUP not handled\n");
175 case SAM_DELTA_RENAME_USER
:
176 d_printf("SAM_DELTA_RENAME_USER not handled\n");
178 case SAM_DELTA_RENAME_ALIAS
:
179 d_printf("SAM_DELTA_RENAME_ALIAS not handled\n");
181 case SAM_DELTA_POLICY_INFO
:
182 d_printf("SAM_DELTA_POLICY_INFO not handled\n");
184 case SAM_DELTA_TRUST_DOMS
:
185 d_printf("SAM_DELTA_TRUST_DOMS not handled\n");
187 case SAM_DELTA_PRIVS_INFO
:
188 d_printf("SAM_DELTA_PRIVS_INFO not handled\n");
190 case SAM_DELTA_SECRET_INFO
:
191 d_printf("SAM_DELTA_SECRET_INFO not handled\n");
193 case SAM_DELTA_DELETE_GROUP
:
194 d_printf("SAM_DELTA_DELETE_GROUP not handled\n");
196 case SAM_DELTA_DELETE_USER
:
197 d_printf("SAM_DELTA_DELETE_USER not handled\n");
199 case SAM_DELTA_MODIFIED_COUNT
:
200 d_printf("SAM_DELTA_MODIFIED_COUNT not handled\n");
203 d_printf("Unknown delta record type %d\n", hdr_delta
->type
);
209 static void dump_database(struct cli_state
*cli
, unsigned db_type
, DOM_CRED
*ret_creds
)
211 unsigned sync_context
= 0;
215 SAM_DELTA_HDR
*hdr_deltas
;
216 SAM_DELTA_CTR
*deltas
;
219 if (!(mem_ctx
= talloc_init("dump_database"))) {
224 case SAM_DATABASE_DOMAIN
:
225 d_printf("Dumping DOMAIN database\n");
227 case SAM_DATABASE_BUILTIN
:
228 d_printf("Dumping BUILTIN database\n");
230 case SAM_DATABASE_PRIVS
:
231 d_printf("Dumping PRIVS databases\n");
234 d_printf("Dumping unknown database type %u\n", db_type
);
239 result
= cli_netlogon_sam_sync(cli
, mem_ctx
, ret_creds
, db_type
,
241 &num_deltas
, &hdr_deltas
, &deltas
);
242 if (NT_STATUS_IS_ERR(result
))
245 clnt_deal_with_creds(cli
->sess_key
, &(cli
->clnt_cred
), ret_creds
);
246 for (i
= 0; i
< num_deltas
; i
++) {
247 display_sam_entry(&hdr_deltas
[i
], &deltas
[i
]);
250 } while (NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
));
252 talloc_destroy(mem_ctx
);
255 /* dump sam database via samsync rpc calls */
256 NTSTATUS
rpc_samdump_internals(const DOM_SID
*domain_sid
,
257 const char *domain_name
,
258 struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
259 int argc
, const char **argv
)
261 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
262 uchar trust_password
[16];
266 ZERO_STRUCT(ret_creds
);
268 fstrcpy(cli
->domain
, domain_name
);
270 if (!secrets_fetch_trust_account_password(domain_name
,
272 NULL
, &sec_channel
)) {
273 DEBUG(0,("Could not fetch trust account password\n"));
277 if (!NT_STATUS_IS_OK(nt_status
= cli_nt_establish_netlogon(cli
, sec_channel
,
279 DEBUG(0,("Error connecting to NETLOGON pipe\n"));
283 dump_database(cli
, SAM_DATABASE_DOMAIN
, &ret_creds
);
284 dump_database(cli
, SAM_DATABASE_BUILTIN
, &ret_creds
);
285 dump_database(cli
, SAM_DATABASE_PRIVS
, &ret_creds
);
287 nt_status
= NT_STATUS_OK
;
290 cli_nt_session_close(cli
);
294 /* Convert a SAM_ACCOUNT_DELTA to a SAM_ACCOUNT. */
295 #define STRING_CHANGED (old_string && !new_string) ||\
296 (!old_string && new_string) ||\
297 (old_string && new_string && (strcmp(old_string, new_string) != 0))
300 sam_account_from_delta(SAM_ACCOUNT
*account
, SAM_ACCOUNT_INFO
*delta
)
302 const char *old_string
, *new_string
;
303 time_t unix_time
, stored_time
;
304 uchar lm_passwd
[16], nt_passwd
[16];
305 static uchar zero_buf
[16];
307 /* Username, fullname, home dir, dir drive, logon script, acct
308 desc, workstations, profile. */
310 if (delta
->hdr_acct_name
.buffer
) {
311 old_string
= pdb_get_nt_username(account
);
312 new_string
= unistr2_static(&delta
->uni_acct_name
);
314 if (STRING_CHANGED
) {
315 pdb_set_nt_username(account
, new_string
, PDB_CHANGED
);
319 /* Unix username is the same - for sanity */
320 old_string
= pdb_get_username( account
);
321 if (STRING_CHANGED
) {
322 pdb_set_username(account
, new_string
, PDB_CHANGED
);
326 if (delta
->hdr_full_name
.buffer
) {
327 old_string
= pdb_get_fullname(account
);
328 new_string
= unistr2_static(&delta
->uni_full_name
);
331 pdb_set_fullname(account
, new_string
, PDB_CHANGED
);
334 if (delta
->hdr_home_dir
.buffer
) {
335 old_string
= pdb_get_homedir(account
);
336 new_string
= unistr2_static(&delta
->uni_home_dir
);
339 pdb_set_homedir(account
, new_string
, PDB_CHANGED
);
342 if (delta
->hdr_dir_drive
.buffer
) {
343 old_string
= pdb_get_dir_drive(account
);
344 new_string
= unistr2_static(&delta
->uni_dir_drive
);
347 pdb_set_dir_drive(account
, new_string
, PDB_CHANGED
);
350 if (delta
->hdr_logon_script
.buffer
) {
351 old_string
= pdb_get_logon_script(account
);
352 new_string
= unistr2_static(&delta
->uni_logon_script
);
355 pdb_set_logon_script(account
, new_string
, PDB_CHANGED
);
358 if (delta
->hdr_acct_desc
.buffer
) {
359 old_string
= pdb_get_acct_desc(account
);
360 new_string
= unistr2_static(&delta
->uni_acct_desc
);
363 pdb_set_acct_desc(account
, new_string
, PDB_CHANGED
);
366 if (delta
->hdr_workstations
.buffer
) {
367 old_string
= pdb_get_workstations(account
);
368 new_string
= unistr2_static(&delta
->uni_workstations
);
371 pdb_set_workstations(account
, new_string
, PDB_CHANGED
);
374 if (delta
->hdr_profile
.buffer
) {
375 old_string
= pdb_get_profile_path(account
);
376 new_string
= unistr2_static(&delta
->uni_profile
);
379 pdb_set_profile_path(account
, new_string
, PDB_CHANGED
);
382 if (delta
->hdr_parameters
.buffer
) {
384 old_string
= pdb_get_munged_dial(account
);
385 mung
.length
= delta
->hdr_parameters
.uni_str_len
;
386 mung
.data
= (uint8
*) delta
->uni_parameters
.buffer
;
387 new_string
= (mung
.length
== 0) ? NULL
: base64_encode_data_blob(mung
);
390 pdb_set_munged_dial(account
, new_string
, PDB_CHANGED
);
393 /* User and group sid */
394 if (pdb_get_user_rid(account
) != delta
->user_rid
)
395 pdb_set_user_sid_from_rid(account
, delta
->user_rid
, PDB_CHANGED
);
396 if (pdb_get_group_rid(account
) != delta
->group_rid
)
397 pdb_set_group_sid_from_rid(account
, delta
->group_rid
, PDB_CHANGED
);
399 /* Logon and password information */
400 if (!nt_time_is_zero(&delta
->logon_time
)) {
401 unix_time
= nt_time_to_unix(&delta
->logon_time
);
402 stored_time
= pdb_get_logon_time(account
);
403 if (stored_time
!= unix_time
)
404 pdb_set_logon_time(account
, unix_time
, PDB_CHANGED
);
407 if (!nt_time_is_zero(&delta
->logoff_time
)) {
408 unix_time
= nt_time_to_unix(&delta
->logoff_time
);
409 stored_time
= pdb_get_logoff_time(account
);
410 if (stored_time
!= unix_time
)
411 pdb_set_logoff_time(account
, unix_time
,PDB_CHANGED
);
415 if (pdb_get_logon_divs(account
) != delta
->logon_divs
)
416 pdb_set_logon_divs(account
, delta
->logon_divs
, PDB_CHANGED
);
418 /* Max Logon Hours */
419 if (delta
->unknown1
!= pdb_get_unknown_6(account
)) {
420 pdb_set_unknown_6(account
, delta
->unknown1
, PDB_CHANGED
);
423 /* Logon Hours Len */
424 if (delta
->buf_logon_hrs
.buf_len
!= pdb_get_hours_len(account
)) {
425 pdb_set_hours_len(account
, delta
->buf_logon_hrs
.buf_len
, PDB_CHANGED
);
429 if (delta
->buf_logon_hrs
.buffer
) {
431 pdb_sethexhours(old
, pdb_get_hours(account
));
432 pdb_sethexhours(new, (const char *)delta
->buf_logon_hrs
.buffer
);
433 if (!strequal(old
, new))
434 pdb_set_hours(account
, (const char *)delta
->buf_logon_hrs
.buffer
, PDB_CHANGED
);
437 if (pdb_get_bad_password_count(account
) != delta
->bad_pwd_count
)
438 pdb_set_bad_password_count(account
, delta
->bad_pwd_count
, PDB_CHANGED
);
440 if (pdb_get_logon_count(account
) != delta
->logon_count
)
441 pdb_set_logon_count(account
, delta
->logon_count
, PDB_CHANGED
);
443 if (!nt_time_is_zero(&delta
->pwd_last_set_time
)) {
444 unix_time
= nt_time_to_unix(&delta
->pwd_last_set_time
);
445 stored_time
= pdb_get_pass_last_set_time(account
);
446 if (stored_time
!= unix_time
)
447 pdb_set_pass_last_set_time(account
, unix_time
, PDB_CHANGED
);
449 /* no last set time, make it now */
450 pdb_set_pass_last_set_time(account
, time(NULL
), PDB_CHANGED
);
454 /* No kickoff time in the delta? */
455 if (!nt_time_is_zero(&delta
->kickoff_time
)) {
456 unix_time
= nt_time_to_unix(&delta
->kickoff_time
);
457 stored_time
= pdb_get_kickoff_time(account
);
458 if (stored_time
!= unix_time
)
459 pdb_set_kickoff_time(account
, unix_time
, PDB_CHANGED
);
463 /* Decode hashes from password hash
464 Note that win2000 may send us all zeros for the hashes if it doesn't
465 think this channel is secure enough - don't set the passwords at all
468 if (memcmp(delta
->pass
.buf_lm_pwd
, zero_buf
, 16) != 0) {
469 sam_pwd_hash(delta
->user_rid
, delta
->pass
.buf_lm_pwd
, lm_passwd
, 0);
470 pdb_set_lanman_passwd(account
, lm_passwd
, PDB_CHANGED
);
473 if (memcmp(delta
->pass
.buf_nt_pwd
, zero_buf
, 16) != 0) {
474 sam_pwd_hash(delta
->user_rid
, delta
->pass
.buf_nt_pwd
, nt_passwd
, 0);
475 pdb_set_nt_passwd(account
, nt_passwd
, PDB_CHANGED
);
478 /* TODO: account expiry time */
480 if (pdb_get_acct_ctrl(account
) != delta
->acb_info
)
481 pdb_set_acct_ctrl(account
, delta
->acb_info
, PDB_CHANGED
);
483 pdb_set_domain(account
, lp_workgroup(), PDB_CHANGED
);
488 static NTSTATUS
fetch_account_info(uint32 rid
, SAM_ACCOUNT_INFO
*delta
)
493 SAM_ACCOUNT
*sam_account
=NULL
;
498 struct passwd
*passwd
;
501 fstrcpy(account
, unistr2_static(&delta
->uni_acct_name
));
502 d_printf("Creating account: %s\n", account
);
504 if (!NT_STATUS_IS_OK(nt_ret
= pdb_init_sam(&sam_account
)))
507 if (!(passwd
= Get_Pwnam(account
))) {
508 /* Create appropriate user */
509 if (delta
->acb_info
& ACB_NORMAL
) {
510 pstrcpy(add_script
, lp_adduser_script());
511 } else if ( (delta
->acb_info
& ACB_WSTRUST
) ||
512 (delta
->acb_info
& ACB_SVRTRUST
) ||
513 (delta
->acb_info
& ACB_DOMTRUST
) ) {
514 pstrcpy(add_script
, lp_addmachine_script());
516 DEBUG(1, ("Unknown user type: %s\n",
517 pdb_encode_acct_ctrl(delta
->acb_info
, NEW_PW_FORMAT_SPACE_PADDED_LEN
)));
518 nt_ret
= NT_STATUS_UNSUCCESSFUL
;
523 all_string_sub(add_script
, "%u", account
,
525 add_ret
= smbrun(add_script
,NULL
);
526 DEBUG(1,("fetch_account: Running the command `%s' "
527 "gave %d\n", add_script
, add_ret
));
529 DEBUG(8,("fetch_account_info: no add user/machine script. Asking winbindd\n"));
531 /* don't need a RID allocated since the user already has a SID */
532 if ( !winbind_create_user( account
, NULL
) )
533 DEBUG(4,("fetch_account_info: winbind_create_user() failed\n"));
536 /* try and find the possible unix account again */
537 if ( !(passwd
= Get_Pwnam(account
)) ) {
538 d_printf("Could not create posix account info for '%s'\n", account
);
539 nt_ret
= NT_STATUS_NO_SUCH_USER
;
544 sid_copy(&user_sid
, get_global_sam_sid());
545 sid_append_rid(&user_sid
, delta
->user_rid
);
547 DEBUG(3, ("Attempting to find SID %s for user %s in the passdb\n", sid_to_string(sid_string
, &user_sid
), account
));
548 if (!pdb_getsampwsid(sam_account
, &user_sid
)) {
549 sam_account_from_delta(sam_account
, delta
);
550 DEBUG(3, ("Attempting to add user SID %s for user %s in the passdb\n",
551 sid_to_string(sid_string
, &user_sid
), pdb_get_username(sam_account
)));
552 if (!pdb_add_sam_account(sam_account
)) {
553 DEBUG(1, ("SAM Account for %s failed to be added to the passdb!\n",
555 return NT_STATUS_ACCESS_DENIED
;
558 sam_account_from_delta(sam_account
, delta
);
559 DEBUG(3, ("Attempting to update user SID %s for user %s in the passdb\n",
560 sid_to_string(sid_string
, &user_sid
), pdb_get_username(sam_account
)));
561 if (!pdb_update_sam_account(sam_account
)) {
562 DEBUG(1, ("SAM Account for %s failed to be updated in the passdb!\n",
564 pdb_free_sam(&sam_account
);
565 return NT_STATUS_ACCESS_DENIED
;
569 group_sid
= *pdb_get_group_sid(sam_account
);
571 if (!pdb_getgrsid(&map
, group_sid
)) {
572 DEBUG(0, ("Primary group of %s has no mapping!\n",
573 pdb_get_username(sam_account
)));
575 if (map
.gid
!= passwd
->pw_gid
) {
576 if (!(grp
= getgrgid(map
.gid
))) {
577 DEBUG(0, ("Could not find unix group %lu for user %s (group SID=%s)\n",
578 (unsigned long)map
.gid
, pdb_get_username(sam_account
), sid_string_static(&group_sid
)));
580 smb_set_primary_group(grp
->gr_name
, pdb_get_username(sam_account
));
586 DEBUG(1, ("No unix user for this account (%s), cannot adjust mappings\n",
587 pdb_get_username(sam_account
)));
591 pdb_free_sam(&sam_account
);
596 fetch_group_info(uint32 rid
, SAM_GROUP_INFO
*delta
)
600 struct group
*grp
= NULL
;
606 unistr2_to_ascii(name
, &delta
->uni_grp_name
, sizeof(name
)-1);
607 unistr2_to_ascii(comment
, &delta
->uni_grp_desc
, sizeof(comment
)-1);
609 /* add the group to the mapping table */
610 sid_copy(&group_sid
, get_global_sam_sid());
611 sid_append_rid(&group_sid
, rid
);
612 sid_to_string(sid_string
, &group_sid
);
614 if (pdb_getgrsid(&map
, group_sid
)) {
616 grp
= getgrgid(map
.gid
);
623 /* No group found from mapping, find it from its name. */
624 if ((grp
= getgrnam(name
)) == NULL
) {
626 /* No appropriate group found, create one */
628 d_printf("Creating unix group: '%s'\n", name
);
630 if (smb_create_group(name
, &gid
) != 0)
631 return NT_STATUS_ACCESS_DENIED
;
633 if ((grp
= getgrnam(name
)) == NULL
)
634 return NT_STATUS_ACCESS_DENIED
;
638 map
.gid
= grp
->gr_gid
;
640 map
.sid_name_use
= SID_NAME_DOM_GRP
;
641 fstrcpy(map
.nt_name
, name
);
642 if (delta
->hdr_grp_desc
.buffer
) {
643 fstrcpy(map
.comment
, comment
);
645 fstrcpy(map
.comment
, "");
649 pdb_add_group_mapping_entry(&map
);
651 pdb_update_group_mapping_entry(&map
);
657 fetch_group_mem_info(uint32 rid
, SAM_GROUP_MEM_INFO
*delta
)
660 TALLOC_CTX
*t
= NULL
;
661 char **nt_members
= NULL
;
667 if (delta
->num_members
== 0) {
671 sid_copy(&group_sid
, get_global_sam_sid());
672 sid_append_rid(&group_sid
, rid
);
674 if (!get_domain_group_from_sid(group_sid
, &map
)) {
675 DEBUG(0, ("Could not find global group %d\n", rid
));
676 return NT_STATUS_NO_SUCH_GROUP
;
679 if (!(grp
= getgrgid(map
.gid
))) {
680 DEBUG(0, ("Could not find unix group %lu\n", (unsigned long)map
.gid
));
681 return NT_STATUS_NO_SUCH_GROUP
;
684 d_printf("Group members of %s: ", grp
->gr_name
);
686 if (!(t
= talloc_init("fetch_group_mem_info"))) {
687 DEBUG(0, ("could not talloc_init\n"));
688 return NT_STATUS_NO_MEMORY
;
691 nt_members
= TALLOC_ZERO_ARRAY(t
, char *, delta
->num_members
);
693 for (i
=0; i
<delta
->num_members
; i
++) {
695 SAM_ACCOUNT
*member
= NULL
;
698 if (!NT_STATUS_IS_OK(nt_status
= pdb_init_sam_talloc(t
, &member
))) {
703 sid_copy(&member_sid
, get_global_sam_sid());
704 sid_append_rid(&member_sid
, delta
->rids
[i
]);
706 if (!pdb_getsampwsid(member
, &member_sid
)) {
707 DEBUG(1, ("Found bogus group member: %d (member_sid=%s group=%s)\n",
708 delta
->rids
[i
], sid_string_static(&member_sid
), grp
->gr_name
));
709 pdb_free_sam(&member
);
713 if (pdb_get_group_rid(member
) == rid
) {
714 d_printf("%s(primary),", pdb_get_username(member
));
715 pdb_free_sam(&member
);
719 d_printf("%s,", pdb_get_username(member
));
720 nt_members
[i
] = talloc_strdup(t
, pdb_get_username(member
));
721 pdb_free_sam(&member
);
726 unix_members
= grp
->gr_mem
;
728 while (*unix_members
) {
729 BOOL is_nt_member
= False
;
730 for (i
=0; i
<delta
->num_members
; i
++) {
731 if (nt_members
[i
] == NULL
) {
732 /* This was a primary group */
736 if (strcmp(*unix_members
, nt_members
[i
]) == 0) {
742 /* We look at a unix group member that is not
743 an nt group member. So, remove it. NT is
745 smb_delete_user_group(grp
->gr_name
, *unix_members
);
750 for (i
=0; i
<delta
->num_members
; i
++) {
751 BOOL is_unix_member
= False
;
753 if (nt_members
[i
] == NULL
) {
754 /* This was the primary group */
758 unix_members
= grp
->gr_mem
;
760 while (*unix_members
) {
761 if (strcmp(*unix_members
, nt_members
[i
]) == 0) {
762 is_unix_member
= True
;
768 if (!is_unix_member
) {
769 /* We look at a nt group member that is not a
770 unix group member currently. So, add the nt
772 smb_add_user_group(grp
->gr_name
, nt_members
[i
]);
780 static NTSTATUS
fetch_alias_info(uint32 rid
, SAM_ALIAS_INFO
*delta
,
785 struct group
*grp
= NULL
;
791 unistr2_to_ascii(name
, &delta
->uni_als_name
, sizeof(name
)-1);
792 unistr2_to_ascii(comment
, &delta
->uni_als_desc
, sizeof(comment
)-1);
794 /* Find out whether the group is already mapped */
795 sid_copy(&alias_sid
, &dom_sid
);
796 sid_append_rid(&alias_sid
, rid
);
797 sid_to_string(sid_string
, &alias_sid
);
799 if (pdb_getgrsid(&map
, alias_sid
)) {
800 grp
= getgrgid(map
.gid
);
807 /* No group found from mapping, find it from its name. */
808 if ((grp
= getgrnam(name
)) == NULL
) {
809 /* No appropriate group found, create one */
810 d_printf("Creating unix group: '%s'\n", name
);
811 if (smb_create_group(name
, &gid
) != 0)
812 return NT_STATUS_ACCESS_DENIED
;
813 if ((grp
= getgrgid(gid
)) == NULL
)
814 return NT_STATUS_ACCESS_DENIED
;
818 map
.gid
= grp
->gr_gid
;
821 if (sid_equal(&dom_sid
, &global_sid_Builtin
))
822 map
.sid_name_use
= SID_NAME_WKN_GRP
;
824 map
.sid_name_use
= SID_NAME_ALIAS
;
826 fstrcpy(map
.nt_name
, name
);
827 fstrcpy(map
.comment
, comment
);
830 pdb_add_group_mapping_entry(&map
);
832 pdb_update_group_mapping_entry(&map
);
838 fetch_alias_mem(uint32 rid
, SAM_ALIAS_MEM_INFO
*delta
, DOM_SID dom_sid
)
841 * commented out right now after talking to Volker. Can't
842 * do much with the membership but seemed a shame to waste
843 * somewhat working code. Needs testing because the membership
844 * that shows up surprises me. Also can't do much with groups
845 * in groups (e.g. Domain Admins being a member of Adminsitrators).
850 TALLOC_CTX
*t
= NULL
;
851 char **nt_members
= NULL
;
856 enum SID_NAME_USE sid_type
;
858 if (delta
->num_members
== 0) {
862 sid_copy(&group_sid
, &dom_sid
);
863 sid_append_rid(&group_sid
, rid
);
865 if (sid_equal(&dom_sid
, &global_sid_Builtin
)) {
866 sid_type
= SID_NAME_WKN_GRP
;
867 if (!get_builtin_group_from_sid(&group_sid
, &map
, False
)) {
868 DEBUG(0, ("Could not find builtin group %s\n", sid_string_static(&group_sid
)));
869 return NT_STATUS_NO_SUCH_GROUP
;
872 sid_type
= SID_NAME_ALIAS
;
873 if (!get_local_group_from_sid(&group_sid
, &map
, False
)) {
874 DEBUG(0, ("Could not find local group %s\n", sid_string_static(&group_sid
)));
875 return NT_STATUS_NO_SUCH_GROUP
;
879 if (!(grp
= getgrgid(map
.gid
))) {
880 DEBUG(0, ("Could not find unix group %d\n", map
.gid
));
881 return NT_STATUS_NO_SUCH_GROUP
;
884 d_printf("Group members of %s: ", grp
->gr_name
);
886 if (!(t
= talloc_init("fetch_group_mem_info"))) {
887 DEBUG(0, ("could not talloc_init\n"));
888 return NT_STATUS_NO_MEMORY
;
891 nt_members
= TALLOC_ZERO_ARRAY(t
, char *, delta
->num_members
);
893 for (i
=0; i
<delta
->num_members
; i
++) {
895 SAM_ACCOUNT
*member
= NULL
;
898 if (!NT_STATUS_IS_OK(nt_status
= pdb_init_sam_talloc(t
, &member
))) {
903 sid_copy(&member_sid
, &delta
->sids
[i
].sid
);
905 if (!pdb_getsampwsid(member
, &member_sid
)) {
906 DEBUG(1, ("Found bogus group member: (member_sid=%s group=%s)\n",
907 sid_string_static(&member_sid
), grp
->gr_name
));
908 pdb_free_sam(&member
);
912 if (pdb_get_group_rid(member
) == rid
) {
913 d_printf("%s(primary),", pdb_get_username(member
));
914 pdb_free_sam(&member
);
918 d_printf("%s,", pdb_get_username(member
));
919 nt_members
[i
] = talloc_strdup(t
, pdb_get_username(member
));
920 pdb_free_sam(&member
);
925 unix_members
= grp
->gr_mem
;
927 while (*unix_members
) {
928 BOOL is_nt_member
= False
;
929 for (i
=0; i
<delta
->num_members
; i
++) {
930 if (nt_members
[i
] == NULL
) {
931 /* This was a primary group */
935 if (strcmp(*unix_members
, nt_members
[i
]) == 0) {
941 /* We look at a unix group member that is not
942 an nt group member. So, remove it. NT is
944 smb_delete_user_group(grp
->gr_name
, *unix_members
);
949 for (i
=0; i
<delta
->num_members
; i
++) {
950 BOOL is_unix_member
= False
;
952 if (nt_members
[i
] == NULL
) {
953 /* This was the primary group */
957 unix_members
= grp
->gr_mem
;
959 while (*unix_members
) {
960 if (strcmp(*unix_members
, nt_members
[i
]) == 0) {
961 is_unix_member
= True
;
967 if (!is_unix_member
) {
968 /* We look at a nt group member that is not a
969 unix group member currently. So, add the nt
971 smb_add_user_group(grp
->gr_name
, nt_members
[i
]);
977 #endif /* end of fetch_alias_mem() */
982 static NTSTATUS
fetch_domain_info(uint32 rid
, SAM_DOMAIN_INFO
*delta
)
984 time_t u_max_age
, u_min_age
, u_logout
, u_lockoutreset
, u_lockouttime
;
985 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
988 u_max_age
= nt_time_to_unix_abs((NTTIME
*)&delta
->max_pwd_age
);
989 u_min_age
= nt_time_to_unix_abs((NTTIME
*)&delta
->min_pwd_age
);
990 u_logout
= nt_time_to_unix_abs((NTTIME
*)&delta
->force_logoff
);
991 u_lockoutreset
= nt_time_to_unix_abs((NTTIME
*)&delta
->account_lockout
.reset_count
);
992 u_lockouttime
= nt_time_to_unix_abs((NTTIME
*)&delta
->account_lockout
.lockout_duration
);
994 unistr2_to_ascii(domname
, &delta
->uni_dom_name
, sizeof(domname
) - 1);
996 /* we don't handle BUILTIN account policies */
997 if (!strequal(domname
, get_global_sam_name())) {
998 printf("skipping SAM_DOMAIN_INFO delta for '%s' (is not my domain)\n", domname
);
1003 if (!account_policy_set(AP_PASSWORD_HISTORY
, delta
->pwd_history_len
))
1006 if (!account_policy_set(AP_MIN_PASSWORD_LEN
, delta
->min_pwd_len
))
1009 if (!account_policy_set(AP_MAX_PASSWORD_AGE
, (uint32
)u_max_age
))
1012 if (!account_policy_set(AP_MIN_PASSWORD_AGE
, (uint32
)u_min_age
))
1015 if (!account_policy_set(AP_TIME_TO_LOGOUT
, (uint32
)u_logout
))
1018 if (!account_policy_set(AP_BAD_ATTEMPT_LOCKOUT
, delta
->account_lockout
.bad_attempt_lockout
))
1021 if (!account_policy_set(AP_RESET_COUNT_TIME
, (uint32
)u_lockoutreset
/60))
1024 if (!account_policy_set(AP_LOCK_ACCOUNT_DURATION
, (uint32
)u_lockouttime
/60))
1027 if (!account_policy_set(AP_USER_MUST_LOGON_TO_CHG_PASS
, delta
->logon_chgpass
))
1030 return NT_STATUS_OK
;
1035 fetch_sam_entry(SAM_DELTA_HDR
*hdr_delta
, SAM_DELTA_CTR
*delta
,
1038 switch(hdr_delta
->type
) {
1039 case SAM_DELTA_ACCOUNT_INFO
:
1040 fetch_account_info(hdr_delta
->target_rid
,
1041 &delta
->account_info
);
1043 case SAM_DELTA_GROUP_INFO
:
1044 fetch_group_info(hdr_delta
->target_rid
,
1045 &delta
->group_info
);
1047 case SAM_DELTA_GROUP_MEM
:
1048 fetch_group_mem_info(hdr_delta
->target_rid
,
1049 &delta
->grp_mem_info
);
1051 case SAM_DELTA_ALIAS_INFO
:
1052 fetch_alias_info(hdr_delta
->target_rid
,
1053 &delta
->alias_info
, dom_sid
);
1055 case SAM_DELTA_ALIAS_MEM
:
1056 fetch_alias_mem(hdr_delta
->target_rid
,
1057 &delta
->als_mem_info
, dom_sid
);
1059 case SAM_DELTA_DOMAIN_INFO
:
1060 fetch_domain_info(hdr_delta
->target_rid
,
1061 &delta
->domain_info
);
1063 /* The following types are recognised but not handled */
1064 case SAM_DELTA_RENAME_GROUP
:
1065 d_printf("SAM_DELTA_RENAME_GROUP not handled\n");
1067 case SAM_DELTA_RENAME_USER
:
1068 d_printf("SAM_DELTA_RENAME_USER not handled\n");
1070 case SAM_DELTA_RENAME_ALIAS
:
1071 d_printf("SAM_DELTA_RENAME_ALIAS not handled\n");
1073 case SAM_DELTA_POLICY_INFO
:
1074 d_printf("SAM_DELTA_POLICY_INFO not handled\n");
1076 case SAM_DELTA_TRUST_DOMS
:
1077 d_printf("SAM_DELTA_TRUST_DOMS not handled\n");
1079 case SAM_DELTA_PRIVS_INFO
:
1080 d_printf("SAM_DELTA_PRIVS_INFO not handled\n");
1082 case SAM_DELTA_SECRET_INFO
:
1083 d_printf("SAM_DELTA_SECRET_INFO not handled\n");
1085 case SAM_DELTA_DELETE_GROUP
:
1086 d_printf("SAM_DELTA_DELETE_GROUP not handled\n");
1088 case SAM_DELTA_DELETE_USER
:
1089 d_printf("SAM_DELTA_DELETE_USER not handled\n");
1091 case SAM_DELTA_MODIFIED_COUNT
:
1092 d_printf("SAM_DELTA_MODIFIED_COUNT not handled\n");
1095 d_printf("Unknown delta record type %d\n", hdr_delta
->type
);
1101 fetch_database(struct cli_state
*cli
, unsigned db_type
, DOM_CRED
*ret_creds
,
1104 unsigned sync_context
= 0;
1107 TALLOC_CTX
*mem_ctx
;
1108 SAM_DELTA_HDR
*hdr_deltas
;
1109 SAM_DELTA_CTR
*deltas
;
1112 if (!(mem_ctx
= talloc_init("fetch_database")))
1113 return NT_STATUS_NO_MEMORY
;
1116 case SAM_DATABASE_DOMAIN
:
1117 d_printf("Fetching DOMAIN database\n");
1119 case SAM_DATABASE_BUILTIN
:
1120 d_printf("Fetching BUILTIN database\n");
1122 case SAM_DATABASE_PRIVS
:
1123 d_printf("Fetching PRIVS databases\n");
1126 d_printf("Fetching unknown database type %u\n", db_type
);
1131 result
= cli_netlogon_sam_sync(cli
, mem_ctx
, ret_creds
,
1132 db_type
, sync_context
,
1134 &hdr_deltas
, &deltas
);
1136 if (NT_STATUS_IS_OK(result
) ||
1137 NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
)) {
1139 clnt_deal_with_creds(cli
->sess_key
, &(cli
->clnt_cred
),
1142 for (i
= 0; i
< num_deltas
; i
++) {
1143 fetch_sam_entry(&hdr_deltas
[i
], &deltas
[i
], dom_sid
);
1149 } while (NT_STATUS_EQUAL(result
, STATUS_MORE_ENTRIES
));
1151 talloc_destroy(mem_ctx
);
1156 /* dump sam database via samsync rpc calls */
1157 NTSTATUS
rpc_vampire_internals(const DOM_SID
*domain_sid
,
1158 const char *domain_name
,
1159 struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
1160 int argc
, const char **argv
)
1163 uchar trust_password
[16];
1165 fstring my_dom_sid_str
;
1166 fstring rem_dom_sid_str
;
1169 ZERO_STRUCT(ret_creds
);
1171 if (!sid_equal(domain_sid
, get_global_sam_sid())) {
1172 d_printf("Cannot import users from %s at this time, "
1173 "as the current domain:\n\t%s: %s\nconflicts "
1174 "with the remote domain\n\t%s: %s\n"
1175 "Perhaps you need to set: \n\n\tsecurity=user\n\tworkgroup=%s\n\n in your smb.conf?\n",
1177 get_global_sam_name(), sid_to_string(my_dom_sid_str
,
1178 get_global_sam_sid()),
1179 domain_name
, sid_to_string(rem_dom_sid_str
, domain_sid
),
1181 return NT_STATUS_UNSUCCESSFUL
;
1184 fstrcpy(cli
->domain
, domain_name
);
1186 if (!secrets_fetch_trust_account_password(domain_name
,
1187 trust_password
, NULL
,
1189 result
= NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
1190 d_printf("Could not retrieve domain trust secret\n");
1194 result
= cli_nt_establish_netlogon(cli
, sec_channel
, trust_password
);
1196 if (!NT_STATUS_IS_OK(result
)) {
1197 d_printf("Failed to setup BDC creds\n");
1201 result
= fetch_database(cli
, SAM_DATABASE_DOMAIN
, &ret_creds
, *domain_sid
);
1203 if (!NT_STATUS_IS_OK(result
)) {
1204 d_printf("Failed to fetch domain database: %s\n",
1206 if (NT_STATUS_EQUAL(result
, NT_STATUS_NOT_SUPPORTED
))
1207 d_printf("Perhaps %s is a Windows 2000 native mode "
1208 "domain?\n", domain_name
);
1212 result
= fetch_database(cli
, SAM_DATABASE_BUILTIN
, &ret_creds
,
1213 global_sid_Builtin
);
1215 if (!NT_STATUS_IS_OK(result
)) {
1216 d_printf("Failed to fetch builtin database: %s\n",
1221 /* Currently we crash on PRIVS somewhere in unmarshalling */
1222 /* Dump_database(cli, SAM_DATABASE_PRIVS, &ret_creds); */