diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-07-05 10:39:41 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-07-05 10:39:41 +0000 |
commit | 6c48309cda9538da5a32f3d88a7bb9c413ae9e8e (patch) | |
tree | 157e4be6d6458ef9ea48ae657a19c4e03daf91f9 /source/auth | |
parent | c7118cb31dac24db3b762fe68ce655b17ea102e0 (diff) | |
download | samba-6c48309cda9538da5a32f3d88a7bb9c413ae9e8e.tar.gz samba-6c48309cda9538da5a32f3d88a7bb9c413ae9e8e.tar.xz samba-6c48309cda9538da5a32f3d88a7bb9c413ae9e8e.zip |
Add some debug statments to our vampire code - try to make it easier to track
down failures.
Add a 'auto-add on modify' feature to guestsam
Fix some segfault bugs on no-op idmap modifications, and on new idmappings that
do not have a DN to tack onto.
Make the 'private data' a bit more robust.
Andrew Bartlett
Diffstat (limited to 'source/auth')
-rw-r--r-- | source/auth/auth_rhosts.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/source/auth/auth_rhosts.c b/source/auth/auth_rhosts.c index e2c6f0b06ad..fab2d551f29 100644 --- a/source/auth/auth_rhosts.c +++ b/source/auth/auth_rhosts.c @@ -162,11 +162,13 @@ static NTSTATUS check_hostsequiv_security(const struct auth_context *auth_contex const auth_usersupplied_info *user_info, auth_serversupplied_info **server_info) { - NTSTATUS nt_status = NT_STATUS_NOT_IMPLEMENTED; + NTSTATUS nt_status; SAM_ACCOUNT *account = NULL; if (!NT_STATUS_IS_OK(nt_status = auth_get_sam_account(user_info->internal_username.str, &account))) { + if (NT_STATUS_EQUAL(nt_status, NT_STATUS_NO_SUCH_USER)) + nt_status = NT_STATUS_NOT_IMPLEMENTED; return nt_status; } @@ -174,6 +176,7 @@ static NTSTATUS check_hostsequiv_security(const struct auth_context *auth_contex nt_status = make_server_info_sam(server_info, account); } else { pdb_free_sam(&account); + nt_status = NT_STATUS_NOT_IMPLEMENTED; } return nt_status; @@ -202,7 +205,7 @@ static NTSTATUS check_rhosts_security(const struct auth_context *auth_context, const auth_usersupplied_info *user_info, auth_serversupplied_info **server_info) { - NTSTATUS nt_status = NT_STATUS_NOT_IMPLEMENTED; + NTSTATUS nt_status; SAM_ACCOUNT *account = NULL; pstring rhostsfile; const char *home; @@ -210,6 +213,8 @@ static NTSTATUS check_rhosts_security(const struct auth_context *auth_context, if (!NT_STATUS_IS_OK(nt_status = auth_get_sam_account(user_info->internal_username.str, &account))) { + if (NT_STATUS_EQUAL(nt_status, NT_STATUS_NO_SUCH_USER)) + nt_status = NT_STATUS_NOT_IMPLEMENTED; return nt_status; } @@ -226,6 +231,7 @@ static NTSTATUS check_rhosts_security(const struct auth_context *auth_context, unbecome_root(); } else { pdb_free_sam(&account); + nt_status = NT_STATUS_NOT_IMPLEMENTED; } return nt_status; |