Bug 169186
| Summary: | ls hangs on krb5 mountd when user has not kinit-ed | ||
|---|---|---|---|
| Product: | Red Hat Enterprise Linux 4 | Reporter: | Steve Dickson <steved> |
| Component: | kernel | Assignee: | Kernel Maintainer List <kernel-maint> |
| Status: | CLOSED DUPLICATE | QA Contact: | Brian Brock <bbrock> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 4.0 | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2005-09-24 08:18:24 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.10) Gecko/20050909 Fedora/1.7.10-1.3.2 Description of problem: The ls-ing of a NFS mounted directory hangs when the filesystem is mounted with the -o sec=krb5 option and the user has not have Kerberos ticket. Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1. root# mount -o sec=krb5 server:/export /mnt/export 2. user$ ls /mnt/export 3. Actual Results: ls hangs Expected Results: ls should return Permission denied Additional info: The following patch fixes the problem: @@ -486,8 +486,6 @@ gss_pipe_downcall(struct file *filp, con spin_lock(&gss_auth->lock); gss_msg = __gss_find_upcall(gss_auth, acred.uid); if (gss_msg) { + if (gss_err) + gss_msg->msg.errno = -EACCES; __gss_unhash_msg(gss_msg); spin_unlock(&gss_auth->lock); gss_release_msg(gss_msg);