linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] posix_acl: handle NULL ACL in posix_acl_equiv_mode
@ 2014-05-04 11:03 Christoph Hellwig
  2014-05-05 13:57 ` Matthew Wilcox
  2014-05-05 14:59 ` Chuck Lever
  0 siblings, 2 replies; 3+ messages in thread
From: Christoph Hellwig @ 2014-05-04 11:03 UTC (permalink / raw)
  To: Al Viro; +Cc: linux-fsdevel, Chuck Lever, stable

Various filesystems don't bother checking for a NULL ACL in
posix_acl_equiv_mode, and thus can dereference a NULL pointer when it
gets passed one. This usually happens from the NFS server, as the ACL tools
never pass a NULL ACL, but instead of one representing the mode bits.

Instead of adding boilerplat to all filesystems put this check into one place,
which will allow us to remove the check from other filesystems as well later
on.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reported-by: Ben Greear <greearb@candelatech.com>
Reported-by: Marco Munderloh <munderl@tnt.uni-hannover.de>,
Cc: Chuck Lever <chuck.lever@oracle.com>
Cc: stable@vger.kernel.org
---
 fs/posix_acl.c |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/fs/posix_acl.c b/fs/posix_acl.c
index 9e363e4..0855f77 100644
--- a/fs/posix_acl.c
+++ b/fs/posix_acl.c
@@ -246,6 +246,12 @@ posix_acl_equiv_mode(const struct posix_acl *acl, umode_t *mode_p)
 	umode_t mode = 0;
 	int not_equiv = 0;
 
+	/*
+	 * A null ACL can always be presented as mode bits.
+	 */
+	if (!acl)
+		return 0;
+
 	FOREACH_ACL_ENTRY(pa, acl, pe) {
 		switch (pa->e_tag) {
 			case ACL_USER_OBJ:
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] posix_acl: handle NULL ACL in posix_acl_equiv_mode
  2014-05-04 11:03 [PATCH] posix_acl: handle NULL ACL in posix_acl_equiv_mode Christoph Hellwig
@ 2014-05-05 13:57 ` Matthew Wilcox
  2014-05-05 14:59 ` Chuck Lever
  1 sibling, 0 replies; 3+ messages in thread
From: Matthew Wilcox @ 2014-05-05 13:57 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: Al Viro, linux-fsdevel, Chuck Lever, stable

On Sun, May 04, 2014 at 01:03:32PM +0200, Christoph Hellwig wrote:
> Various filesystems don't bother checking for a NULL ACL in
> posix_acl_equiv_mode, and thus can dereference a NULL pointer when it
> gets passed one. This usually happens from the NFS server, as the ACL tools
> never pass a NULL ACL, but instead of one representing the mode bits.
> 
> Instead of adding boilerplat to all filesystems put this check into one place,
> which will allow us to remove the check from other filesystems as well later
> on.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> Reported-by: Ben Greear <greearb@candelatech.com>
> Reported-by: Marco Munderloh <munderl@tnt.uni-hannover.de>,
> Cc: Chuck Lever <chuck.lever@oracle.com>
> Cc: stable@vger.kernel.org

Reviewed-by: Matthew Wilcox <matthew.r.wilcox@intel.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] posix_acl: handle NULL ACL in posix_acl_equiv_mode
  2014-05-04 11:03 [PATCH] posix_acl: handle NULL ACL in posix_acl_equiv_mode Christoph Hellwig
  2014-05-05 13:57 ` Matthew Wilcox
@ 2014-05-05 14:59 ` Chuck Lever
  1 sibling, 0 replies; 3+ messages in thread
From: Chuck Lever @ 2014-05-05 14:59 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: Al Viro, linux-fsdevel, stable


On May 4, 2014, at 7:03 AM, Christoph Hellwig <hch@lst.de> wrote:

> Various filesystems don't bother checking for a NULL ACL in
> posix_acl_equiv_mode, and thus can dereference a NULL pointer when it
> gets passed one. This usually happens from the NFS server, as the ACL tools
> never pass a NULL ACL, but instead of one representing the mode bits.
> 
> Instead of adding boilerplat to all filesystems put this check into one place,
> which will allow us to remove the check from other filesystems as well later
> on.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> Reported-by: Ben Greear <greearb@candelatech.com>
> Reported-by: Marco Munderloh <munderl@tnt.uni-hannover.de>,
> Cc: Chuck Lever <chuck.lever@oracle.com>

Good clean-up.

Reviewed-by: Chuck Lever <chuck.lever@oracle.com>


> Cc: stable@vger.kernel.org
> ---
> fs/posix_acl.c |    6 ++++++
> 1 file changed, 6 insertions(+)
> 
> diff --git a/fs/posix_acl.c b/fs/posix_acl.c
> index 9e363e4..0855f77 100644
> --- a/fs/posix_acl.c
> +++ b/fs/posix_acl.c
> @@ -246,6 +246,12 @@ posix_acl_equiv_mode(const struct posix_acl *acl, umode_t *mode_p)
> 	umode_t mode = 0;
> 	int not_equiv = 0;
> 
> +	/*
> +	 * A null ACL can always be presented as mode bits.
> +	 */
> +	if (!acl)
> +		return 0;
> +
> 	FOREACH_ACL_ENTRY(pa, acl, pe) {
> 		switch (pa->e_tag) {
> 			case ACL_USER_OBJ:
> -- 
> 1.7.10.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
Chuck Lever
chuck[dot]lever[at]oracle[dot]com




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-05-05 14:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-04 11:03 [PATCH] posix_acl: handle NULL ACL in posix_acl_equiv_mode Christoph Hellwig
2014-05-05 13:57 ` Matthew Wilcox
2014-05-05 14:59 ` Chuck Lever

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).