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 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2005
8 Modified by Volker Lendecke 2002
9 Copyright (C) Jeremy Allison 2005.
10 Copyright (C) Guenther Deschner 2008.
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
27 #include "libnet/libnet.h"
29 /* Convert a struct samu_DELTA to a struct samu. */
30 #define STRING_CHANGED (old_string && !new_string) ||\
31 (!old_string && new_string) ||\
32 (old_string && new_string && (strcmp(old_string, new_string) != 0))
34 #define STRING_CHANGED_NC(s1,s2) ((s1) && !(s2)) ||\
36 ((s1) && (s2) && (strcmp((s1), (s2)) != 0))
38 /****************************************************************
39 ****************************************************************/
41 static NTSTATUS
sam_account_from_delta(struct samu
*account
,
42 struct netr_DELTA_USER
*r
)
44 const char *old_string
, *new_string
;
45 time_t unix_time
, stored_time
;
48 memset(zero_buf
, '\0', sizeof(zero_buf
));
50 /* Username, fullname, home dir, dir drive, logon script, acct
51 desc, workstations, profile. */
53 if (r
->account_name
.string
) {
54 old_string
= pdb_get_nt_username(account
);
55 new_string
= r
->account_name
.string
;
58 pdb_set_nt_username(account
, new_string
, PDB_CHANGED
);
61 /* Unix username is the same - for sanity */
62 old_string
= pdb_get_username( account
);
64 pdb_set_username(account
, new_string
, PDB_CHANGED
);
68 if (r
->full_name
.string
) {
69 old_string
= pdb_get_fullname(account
);
70 new_string
= r
->full_name
.string
;
73 pdb_set_fullname(account
, new_string
, PDB_CHANGED
);
76 if (r
->home_directory
.string
) {
77 old_string
= pdb_get_homedir(account
);
78 new_string
= r
->home_directory
.string
;
81 pdb_set_homedir(account
, new_string
, PDB_CHANGED
);
84 if (r
->home_drive
.string
) {
85 old_string
= pdb_get_dir_drive(account
);
86 new_string
= r
->home_drive
.string
;
89 pdb_set_dir_drive(account
, new_string
, PDB_CHANGED
);
92 if (r
->logon_script
.string
) {
93 old_string
= pdb_get_logon_script(account
);
94 new_string
= r
->logon_script
.string
;
97 pdb_set_logon_script(account
, new_string
, PDB_CHANGED
);
100 if (r
->description
.string
) {
101 old_string
= pdb_get_acct_desc(account
);
102 new_string
= r
->description
.string
;
105 pdb_set_acct_desc(account
, new_string
, PDB_CHANGED
);
108 if (r
->workstations
.string
) {
109 old_string
= pdb_get_workstations(account
);
110 new_string
= r
->workstations
.string
;
113 pdb_set_workstations(account
, new_string
, PDB_CHANGED
);
116 if (r
->profile_path
.string
) {
117 old_string
= pdb_get_profile_path(account
);
118 new_string
= r
->profile_path
.string
;
121 pdb_set_profile_path(account
, new_string
, PDB_CHANGED
);
124 if (r
->parameters
.array
) {
127 old_string
= pdb_get_munged_dial(account
);
128 mung
.length
= r
->parameters
.length
* 2;
129 mung
.data
= (uint8_t *) r
->parameters
.array
;
130 newstr
= (mung
.length
== 0) ? NULL
:
131 base64_encode_data_blob(talloc_tos(), mung
);
133 if (STRING_CHANGED_NC(old_string
, newstr
))
134 pdb_set_munged_dial(account
, newstr
, PDB_CHANGED
);
138 /* User and group sid */
139 if (pdb_get_user_rid(account
) != r
->rid
)
140 pdb_set_user_sid_from_rid(account
, r
->rid
, PDB_CHANGED
);
141 if (pdb_get_group_rid(account
) != r
->primary_gid
)
142 pdb_set_group_sid_from_rid(account
, r
->primary_gid
, PDB_CHANGED
);
144 /* Logon and password information */
145 if (!nt_time_is_zero(&r
->last_logon
)) {
146 unix_time
= nt_time_to_unix(r
->last_logon
);
147 stored_time
= pdb_get_logon_time(account
);
148 if (stored_time
!= unix_time
)
149 pdb_set_logon_time(account
, unix_time
, PDB_CHANGED
);
152 if (!nt_time_is_zero(&r
->last_logoff
)) {
153 unix_time
= nt_time_to_unix(r
->last_logoff
);
154 stored_time
= pdb_get_logoff_time(account
);
155 if (stored_time
!= unix_time
)
156 pdb_set_logoff_time(account
, unix_time
,PDB_CHANGED
);
160 if (pdb_get_logon_divs(account
) != r
->logon_hours
.units_per_week
)
161 pdb_set_logon_divs(account
, r
->logon_hours
.units_per_week
, PDB_CHANGED
);
164 /* no idea what to do with this one - gd */
165 /* Max Logon Hours */
166 if (delta
->unknown1
!= pdb_get_unknown_6(account
)) {
167 pdb_set_unknown_6(account
, delta
->unknown1
, PDB_CHANGED
);
170 /* Logon Hours Len */
171 if (r
->logon_hours
.units_per_week
/8 != pdb_get_hours_len(account
)) {
172 pdb_set_hours_len(account
, r
->logon_hours
.units_per_week
/8, PDB_CHANGED
);
176 if (r
->logon_hours
.bits
) {
177 char oldstr
[44], newstr
[44];
178 pdb_sethexhours(oldstr
, pdb_get_hours(account
));
179 pdb_sethexhours(newstr
, r
->logon_hours
.bits
);
180 if (!strequal(oldstr
, newstr
))
181 pdb_set_hours(account
, r
->logon_hours
.bits
, PDB_CHANGED
);
184 if (pdb_get_bad_password_count(account
) != r
->bad_password_count
)
185 pdb_set_bad_password_count(account
, r
->bad_password_count
, PDB_CHANGED
);
187 if (pdb_get_logon_count(account
) != r
->logon_count
)
188 pdb_set_logon_count(account
, r
->logon_count
, PDB_CHANGED
);
190 if (!nt_time_is_zero(&r
->last_password_change
)) {
191 unix_time
= nt_time_to_unix(r
->last_password_change
);
192 stored_time
= pdb_get_pass_last_set_time(account
);
193 if (stored_time
!= unix_time
)
194 pdb_set_pass_last_set_time(account
, unix_time
, PDB_CHANGED
);
196 /* no last set time, make it now */
197 pdb_set_pass_last_set_time(account
, time(NULL
), PDB_CHANGED
);
200 if (!nt_time_is_zero(&r
->acct_expiry
)) {
201 unix_time
= nt_time_to_unix(r
->acct_expiry
);
202 stored_time
= pdb_get_kickoff_time(account
);
203 if (stored_time
!= unix_time
)
204 pdb_set_kickoff_time(account
, unix_time
, PDB_CHANGED
);
207 /* Decode hashes from password hash
208 Note that win2000 may send us all zeros for the hashes if it doesn't
209 think this channel is secure enough - don't set the passwords at all
212 if (memcmp(r
->lmpassword
.hash
, zero_buf
, 16) != 0) {
213 pdb_set_lanman_passwd(account
, r
->lmpassword
.hash
, PDB_CHANGED
);
216 if (memcmp(r
->ntpassword
.hash
, zero_buf
, 16) != 0) {
217 pdb_set_nt_passwd(account
, r
->ntpassword
.hash
, PDB_CHANGED
);
220 /* TODO: account expiry time */
222 pdb_set_acct_ctrl(account
, r
->acct_flags
, PDB_CHANGED
);
224 pdb_set_domain(account
, lp_workgroup(), PDB_CHANGED
);
230 /****************************************************************
231 ****************************************************************/
233 static NTSTATUS
smb_create_user(TALLOC_CTX
*mem_ctx
,
236 struct passwd
**passwd_p
)
238 struct passwd
*passwd
;
239 char *add_script
= NULL
;
241 passwd
= Get_Pwnam_alloc(mem_ctx
, account
);
247 /* Create appropriate user */
248 if (acct_flags
& ACB_NORMAL
) {
249 add_script
= talloc_strdup(mem_ctx
, lp_adduser_script());
250 } else if ( (acct_flags
& ACB_WSTRUST
) ||
251 (acct_flags
& ACB_SVRTRUST
) ||
252 (acct_flags
& ACB_DOMTRUST
) ) {
253 add_script
= talloc_strdup(mem_ctx
, lp_addmachine_script());
255 DEBUG(1, ("Unknown user type: %s\n",
256 pdb_encode_acct_ctrl(acct_flags
, NEW_PW_FORMAT_SPACE_PADDED_LEN
)));
257 return NT_STATUS_UNSUCCESSFUL
;
261 return NT_STATUS_NO_MEMORY
;
266 add_script
= talloc_all_string_sub(mem_ctx
, add_script
,
269 return NT_STATUS_NO_MEMORY
;
271 add_ret
= smbrun(add_script
, NULL
);
272 DEBUG(add_ret
? 0 : 1,("fetch_account: Running the command `%s' "
273 "gave %d\n", add_script
, add_ret
));
275 smb_nscd_flush_user_cache();
279 /* try and find the possible unix account again */
280 passwd
= Get_Pwnam_alloc(mem_ctx
, account
);
282 return NT_STATUS_NO_SUCH_USER
;
289 /****************************************************************
290 ****************************************************************/
292 static NTSTATUS
fetch_account_info(TALLOC_CTX
*mem_ctx
,
294 struct netr_DELTA_USER
*r
)
297 NTSTATUS nt_ret
= NT_STATUS_UNSUCCESSFUL
;
299 struct samu
*sam_account
=NULL
;
304 struct passwd
*passwd
= NULL
;
307 fstrcpy(account
, r
->account_name
.string
);
308 d_printf("Creating account: %s\n", account
);
310 if ( !(sam_account
= samu_new(mem_ctx
)) ) {
311 return NT_STATUS_NO_MEMORY
;
314 nt_ret
= smb_create_user(sam_account
, r
->acct_flags
, account
, &passwd
);
315 if (!NT_STATUS_IS_OK(nt_ret
)) {
316 d_fprintf(stderr
, "Could not create posix account info for '%s'\n",
321 sid_copy(&user_sid
, get_global_sam_sid());
322 sid_append_rid(&user_sid
, r
->rid
);
324 DEBUG(3, ("Attempting to find SID %s for user %s in the passdb\n",
325 sid_to_fstring(sid_string
, &user_sid
), account
));
326 if (!pdb_getsampwsid(sam_account
, &user_sid
)) {
327 sam_account_from_delta(sam_account
, r
);
328 DEBUG(3, ("Attempting to add user SID %s for user %s in the passdb\n",
329 sid_to_fstring(sid_string
, &user_sid
),
330 pdb_get_username(sam_account
)));
331 if (!NT_STATUS_IS_OK(pdb_add_sam_account(sam_account
))) {
332 DEBUG(1, ("SAM Account for %s failed to be added to the passdb!\n",
334 return NT_STATUS_ACCESS_DENIED
;
337 sam_account_from_delta(sam_account
, r
);
338 DEBUG(3, ("Attempting to update user SID %s for user %s in the passdb\n",
339 sid_to_fstring(sid_string
, &user_sid
),
340 pdb_get_username(sam_account
)));
341 if (!NT_STATUS_IS_OK(pdb_update_sam_account(sam_account
))) {
342 DEBUG(1, ("SAM Account for %s failed to be updated in the passdb!\n",
344 TALLOC_FREE(sam_account
);
345 return NT_STATUS_ACCESS_DENIED
;
349 if (pdb_get_group_sid(sam_account
) == NULL
) {
350 return NT_STATUS_UNSUCCESSFUL
;
353 group_sid
= *pdb_get_group_sid(sam_account
);
355 if (!pdb_getgrsid(&map
, group_sid
)) {
356 DEBUG(0, ("Primary group of %s has no mapping!\n",
357 pdb_get_username(sam_account
)));
359 if (map
.gid
!= passwd
->pw_gid
) {
360 if (!(grp
= getgrgid(map
.gid
))) {
361 DEBUG(0, ("Could not find unix group %lu for user %s (group SID=%s)\n",
362 (unsigned long)map
.gid
, pdb_get_username(sam_account
), sid_string_tos(&group_sid
)));
364 smb_set_primary_group(grp
->gr_name
, pdb_get_username(sam_account
));
370 DEBUG(1, ("No unix user for this account (%s), cannot adjust mappings\n",
371 pdb_get_username(sam_account
)));
375 TALLOC_FREE(sam_account
);
379 /****************************************************************
380 ****************************************************************/
382 static NTSTATUS
fetch_group_info(TALLOC_CTX
*mem_ctx
,
384 struct netr_DELTA_GROUP
*r
)
388 struct group
*grp
= NULL
;
394 fstrcpy(name
, r
->group_name
.string
);
395 fstrcpy(comment
, r
->description
.string
);
397 /* add the group to the mapping table */
398 sid_copy(&group_sid
, get_global_sam_sid());
399 sid_append_rid(&group_sid
, rid
);
400 sid_to_fstring(sid_string
, &group_sid
);
402 if (pdb_getgrsid(&map
, group_sid
)) {
404 grp
= getgrgid(map
.gid
);
411 /* No group found from mapping, find it from its name. */
412 if ((grp
= getgrnam(name
)) == NULL
) {
414 /* No appropriate group found, create one */
416 d_printf("Creating unix group: '%s'\n", name
);
418 if (smb_create_group(name
, &gid
) != 0)
419 return NT_STATUS_ACCESS_DENIED
;
421 if ((grp
= getgrnam(name
)) == NULL
)
422 return NT_STATUS_ACCESS_DENIED
;
426 map
.gid
= grp
->gr_gid
;
428 map
.sid_name_use
= SID_NAME_DOM_GRP
;
429 fstrcpy(map
.nt_name
, name
);
430 if (r
->description
.string
) {
431 fstrcpy(map
.comment
, comment
);
433 fstrcpy(map
.comment
, "");
437 pdb_add_group_mapping_entry(&map
);
439 pdb_update_group_mapping_entry(&map
);
444 /****************************************************************
445 ****************************************************************/
447 static NTSTATUS
fetch_group_mem_info(TALLOC_CTX
*mem_ctx
,
449 struct netr_DELTA_GROUP_MEMBER
*r
)
452 char **nt_members
= NULL
;
458 if (r
->num_rids
== 0) {
462 sid_copy(&group_sid
, get_global_sam_sid());
463 sid_append_rid(&group_sid
, rid
);
465 if (!get_domain_group_from_sid(group_sid
, &map
)) {
466 DEBUG(0, ("Could not find global group %d\n", rid
));
467 return NT_STATUS_NO_SUCH_GROUP
;
470 if (!(grp
= getgrgid(map
.gid
))) {
471 DEBUG(0, ("Could not find unix group %lu\n", (unsigned long)map
.gid
));
472 return NT_STATUS_NO_SUCH_GROUP
;
475 d_printf("Group members of %s: ", grp
->gr_name
);
478 if ((nt_members
= TALLOC_ZERO_ARRAY(mem_ctx
, char *, r
->num_rids
)) == NULL
) {
479 DEBUG(0, ("talloc failed\n"));
480 return NT_STATUS_NO_MEMORY
;
486 for (i
=0; i
< r
->num_rids
; i
++) {
487 struct samu
*member
= NULL
;
490 if ( !(member
= samu_new(mem_ctx
)) ) {
491 return NT_STATUS_NO_MEMORY
;
494 sid_copy(&member_sid
, get_global_sam_sid());
495 sid_append_rid(&member_sid
, r
->rids
[i
]);
497 if (!pdb_getsampwsid(member
, &member_sid
)) {
498 DEBUG(1, ("Found bogus group member: %d (member_sid=%s group=%s)\n",
499 r
->rids
[i
], sid_string_tos(&member_sid
), grp
->gr_name
));
504 if (pdb_get_group_rid(member
) == rid
) {
505 d_printf("%s(primary),", pdb_get_username(member
));
510 d_printf("%s,", pdb_get_username(member
));
511 nt_members
[i
] = talloc_strdup(mem_ctx
, pdb_get_username(member
));
517 unix_members
= grp
->gr_mem
;
519 while (*unix_members
) {
520 bool is_nt_member
= false;
521 for (i
=0; i
< r
->num_rids
; i
++) {
522 if (nt_members
[i
] == NULL
) {
523 /* This was a primary group */
527 if (strcmp(*unix_members
, nt_members
[i
]) == 0) {
533 /* We look at a unix group member that is not
534 an nt group member. So, remove it. NT is
536 smb_delete_user_group(grp
->gr_name
, *unix_members
);
541 for (i
=0; i
< r
->num_rids
; i
++) {
542 bool is_unix_member
= false;
544 if (nt_members
[i
] == NULL
) {
545 /* This was the primary group */
549 unix_members
= grp
->gr_mem
;
551 while (*unix_members
) {
552 if (strcmp(*unix_members
, nt_members
[i
]) == 0) {
553 is_unix_member
= true;
559 if (!is_unix_member
) {
560 /* We look at a nt group member that is not a
561 unix group member currently. So, add the nt
563 smb_add_user_group(grp
->gr_name
, nt_members
[i
]);
570 /****************************************************************
571 ****************************************************************/
573 static NTSTATUS
fetch_alias_info(TALLOC_CTX
*mem_ctx
,
575 struct netr_DELTA_ALIAS
*r
,
576 const DOM_SID
*dom_sid
)
580 struct group
*grp
= NULL
;
586 fstrcpy(name
, r
->alias_name
.string
);
587 fstrcpy(comment
, r
->description
.string
);
589 /* Find out whether the group is already mapped */
590 sid_copy(&alias_sid
, dom_sid
);
591 sid_append_rid(&alias_sid
, rid
);
592 sid_to_fstring(sid_string
, &alias_sid
);
594 if (pdb_getgrsid(&map
, alias_sid
)) {
595 grp
= getgrgid(map
.gid
);
602 /* No group found from mapping, find it from its name. */
603 if ((grp
= getgrnam(name
)) == NULL
) {
604 /* No appropriate group found, create one */
605 d_printf("Creating unix group: '%s'\n", name
);
606 if (smb_create_group(name
, &gid
) != 0)
607 return NT_STATUS_ACCESS_DENIED
;
608 if ((grp
= getgrgid(gid
)) == NULL
)
609 return NT_STATUS_ACCESS_DENIED
;
613 map
.gid
= grp
->gr_gid
;
616 if (sid_equal(dom_sid
, &global_sid_Builtin
))
617 map
.sid_name_use
= SID_NAME_WKN_GRP
;
619 map
.sid_name_use
= SID_NAME_ALIAS
;
621 fstrcpy(map
.nt_name
, name
);
622 fstrcpy(map
.comment
, comment
);
625 pdb_add_group_mapping_entry(&map
);
627 pdb_update_group_mapping_entry(&map
);
632 /****************************************************************
633 ****************************************************************/
635 static NTSTATUS
fetch_alias_mem(TALLOC_CTX
*mem_ctx
,
637 struct netr_DELTA_ALIAS_MEMBER
*r
,
638 const DOM_SID
*dom_sid
)
643 /****************************************************************
644 ****************************************************************/
646 static NTSTATUS
fetch_domain_info(TALLOC_CTX
*mem_ctx
,
648 struct netr_DELTA_DOMAIN
*r
)
650 time_t u_max_age
, u_min_age
, u_logout
;
651 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
653 struct netr_AcctLockStr
*lockstr
= NULL
;
656 status
= pull_netr_AcctLockStr(mem_ctx
, &r
->account_lockout
,
658 if (!NT_STATUS_IS_OK(status
)) {
659 d_printf("failed to pull account lockout string: %s\n",
663 u_max_age
= uint64s_nt_time_to_unix_abs((uint64
*)&r
->max_password_age
);
664 u_min_age
= uint64s_nt_time_to_unix_abs((uint64
*)&r
->min_password_age
);
665 u_logout
= uint64s_nt_time_to_unix_abs((uint64
*)&r
->force_logoff_time
);
667 domname
= r
->domain_name
.string
;
669 return NT_STATUS_NO_MEMORY
;
672 /* we don't handle BUILTIN account policies */
673 if (!strequal(domname
, get_global_sam_name())) {
674 printf("skipping SAM_DOMAIN_INFO delta for '%s' (is not my domain)\n", domname
);
679 if (!pdb_set_account_policy(PDB_POLICY_PASSWORD_HISTORY
,
680 r
->password_history_length
))
683 if (!pdb_set_account_policy(PDB_POLICY_MIN_PASSWORD_LEN
,
684 r
->min_password_length
))
687 if (!pdb_set_account_policy(PDB_POLICY_MAX_PASSWORD_AGE
,
691 if (!pdb_set_account_policy(PDB_POLICY_MIN_PASSWORD_AGE
,
695 if (!pdb_set_account_policy(PDB_POLICY_TIME_TO_LOGOUT
,
700 time_t u_lockoutreset
, u_lockouttime
;
702 u_lockoutreset
= uint64s_nt_time_to_unix_abs(&lockstr
->reset_count
);
703 u_lockouttime
= uint64s_nt_time_to_unix_abs((uint64_t *)&lockstr
->lockout_duration
);
705 if (!pdb_set_account_policy(PDB_POLICY_BAD_ATTEMPT_LOCKOUT
,
706 lockstr
->bad_attempt_lockout
))
709 if (!pdb_set_account_policy(PDB_POLICY_RESET_COUNT_TIME
,
710 (uint32_t)u_lockoutreset
/60))
713 if (u_lockouttime
!= -1)
716 if (!pdb_set_account_policy(PDB_POLICY_LOCK_ACCOUNT_DURATION
,
717 (uint32_t)u_lockouttime
))
721 if (!pdb_set_account_policy(PDB_POLICY_USER_MUST_LOGON_TO_CHG_PASS
,
722 r
->logon_to_chgpass
))
728 /****************************************************************
729 ****************************************************************/
731 static NTSTATUS
fetch_sam_entry(TALLOC_CTX
*mem_ctx
,
732 enum netr_SamDatabaseID database_id
,
733 struct netr_DELTA_ENUM
*r
,
734 struct samsync_context
*ctx
)
736 NTSTATUS status
= NT_STATUS_NOT_IMPLEMENTED
;
738 switch (r
->delta_type
) {
739 case NETR_DELTA_USER
:
740 status
= fetch_account_info(mem_ctx
,
741 r
->delta_id_union
.rid
,
742 r
->delta_union
.user
);
744 case NETR_DELTA_GROUP
:
745 status
= fetch_group_info(mem_ctx
,
746 r
->delta_id_union
.rid
,
747 r
->delta_union
.group
);
749 case NETR_DELTA_GROUP_MEMBER
:
750 status
= fetch_group_mem_info(mem_ctx
,
751 r
->delta_id_union
.rid
,
752 r
->delta_union
.group_member
);
754 case NETR_DELTA_ALIAS
:
755 status
= fetch_alias_info(mem_ctx
,
756 r
->delta_id_union
.rid
,
757 r
->delta_union
.alias
,
760 case NETR_DELTA_ALIAS_MEMBER
:
761 status
= fetch_alias_mem(mem_ctx
,
762 r
->delta_id_union
.rid
,
763 r
->delta_union
.alias_member
,
766 case NETR_DELTA_DOMAIN
:
767 status
= fetch_domain_info(mem_ctx
,
768 r
->delta_id_union
.rid
,
769 r
->delta_union
.domain
);
771 /* The following types are recognised but not handled */
772 case NETR_DELTA_RENAME_GROUP
:
773 d_printf("NETR_DELTA_RENAME_GROUP not handled\n");
775 case NETR_DELTA_RENAME_USER
:
776 d_printf("NETR_DELTA_RENAME_USER not handled\n");
778 case NETR_DELTA_RENAME_ALIAS
:
779 d_printf("NETR_DELTA_RENAME_ALIAS not handled\n");
781 case NETR_DELTA_POLICY
:
782 d_printf("NETR_DELTA_POLICY not handled\n");
784 case NETR_DELTA_TRUSTED_DOMAIN
:
785 d_printf("NETR_DELTA_TRUSTED_DOMAIN not handled\n");
787 case NETR_DELTA_ACCOUNT
:
788 d_printf("NETR_DELTA_ACCOUNT not handled\n");
790 case NETR_DELTA_SECRET
:
791 d_printf("NETR_DELTA_SECRET not handled\n");
793 case NETR_DELTA_DELETE_GROUP
:
794 d_printf("NETR_DELTA_DELETE_GROUP not handled\n");
796 case NETR_DELTA_DELETE_USER
:
797 d_printf("NETR_DELTA_DELETE_USER not handled\n");
799 case NETR_DELTA_MODIFY_COUNT
:
800 d_printf("NETR_DELTA_MODIFY_COUNT not handled\n");
802 case NETR_DELTA_DELETE_ALIAS
:
803 d_printf("NETR_DELTA_DELETE_ALIAS not handled\n");
805 case NETR_DELTA_DELETE_TRUST
:
806 d_printf("NETR_DELTA_DELETE_TRUST not handled\n");
808 case NETR_DELTA_DELETE_ACCOUNT
:
809 d_printf("NETR_DELTA_DELETE_ACCOUNT not handled\n");
811 case NETR_DELTA_DELETE_SECRET
:
812 d_printf("NETR_DELTA_DELETE_SECRET not handled\n");
814 case NETR_DELTA_DELETE_GROUP2
:
815 d_printf("NETR_DELTA_DELETE_GROUP2 not handled\n");
817 case NETR_DELTA_DELETE_USER2
:
818 d_printf("NETR_DELTA_DELETE_USER2 not handled\n");
821 d_printf("Unknown delta record type %d\n", r
->delta_type
);
822 status
= NT_STATUS_INVALID_PARAMETER
;
829 /****************************************************************
830 ****************************************************************/
832 static NTSTATUS
fetch_sam_entries(TALLOC_CTX
*mem_ctx
,
833 enum netr_SamDatabaseID database_id
,
834 struct netr_DELTA_ENUM_ARRAY
*r
,
835 uint64_t *sequence_num
,
836 struct samsync_context
*ctx
)
840 for (i
= 0; i
< r
->num_deltas
; i
++) {
841 fetch_sam_entry(mem_ctx
, database_id
, &r
->delta_enum
[i
], ctx
);
847 /****************************************************************
848 ****************************************************************/
850 const struct samsync_ops libnet_samsync_passdb_ops
= {
851 .process_objects
= fetch_sam_entries
,