From 384b522c9235ab538c23b64bdf9b3d57e4b15b53 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 3 Aug 2001 13:24:38 +0000 Subject: This is the fix for the PAM bug I probably introduced in the previous commit, which I will confirm once I can find a box it would break on in the first place. (this is the pam accounts as nobody thing we had with 2.2.0) Andrew Bartlett (This used to be commit 9746ad12bd2d310e5c255c7ea491b87170b807af) --- source3/auth/auth.c | 3 +++ source3/smbd/auth.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/source3/auth/auth.c b/source3/auth/auth.c index 851e1f53cf..4bfbfe65fe 100644 --- a/source3/auth/auth.c +++ b/source3/auth/auth.c @@ -131,7 +131,10 @@ uint32 check_password(const auth_usersupplied_info *user_info, auth_serversuppli } if (nt_status == NT_STATUS_NOPROBLEMO) { + /* We might not be root if we are an RPC call */ + become_root(); nt_status = smb_pam_accountcheck(user_info->smb_username.str); + unbecome_root(); } if (nt_status == NT_STATUS_NOPROBLEMO) { diff --git a/source3/smbd/auth.c b/source3/smbd/auth.c index 851e1f53cf..4bfbfe65fe 100644 --- a/source3/smbd/auth.c +++ b/source3/smbd/auth.c @@ -131,7 +131,10 @@ uint32 check_password(const auth_usersupplied_info *user_info, auth_serversuppli } if (nt_status == NT_STATUS_NOPROBLEMO) { + /* We might not be root if we are an RPC call */ + become_root(); nt_status = smb_pam_accountcheck(user_info->smb_username.str); + unbecome_root(); } if (nt_status == NT_STATUS_NOPROBLEMO) { -- cgit