Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759905AbZC0Wvy (ORCPT ); Fri, 27 Mar 2009 18:51:54 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753248AbZC0Wvp (ORCPT ); Fri, 27 Mar 2009 18:51:45 -0400 Received: from vsmtp01.dti.ne.jp ([202.216.231.136]:50961 "EHLO vsmtp01.dti.ne.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752597AbZC0Wvo (ORCPT ); Fri, 27 Mar 2009 18:51:44 -0400 From: hooanon05@yahoo.co.jp Subject: Re: Problems with default ACLs over NFS To: Andrew Morton Cc: "\"=?ISO-8859-1?Q? \" J. A. _Magall=F3n \" ?=\"" , LKML , linux-nfs@vger.kernel.org, Trond.Myklebust@netapp.com In-Reply-To: <20090326170513.4e7d377a.akpm@linux-foundation.org> References: <20090323222427.00bb24e7@werewolf.home> <20090326170513.4e7d377a.akpm@linux-foundation.org> Date: Sat, 28 Mar 2009 07:50:55 +0900 Message-ID: <18513.1238194255@jrobl> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2015 Lines: 57 > On Mon, 23 Mar 2009 22:24:27 +0100 "J.A. Magall__n" wrote: > > > Hi all... > > > > I have a strange problem with 2.6.29-rc8-git3. > > It looks like a kernel bug... ? > > > > I have a box with NFS autofs-mounted home directories. Server is a > > Solaris 10 system. This worked in previous kernel versions, so I > > don't blame Solaris, at this moment. > > > > With this acls set in my home: ::: > > I get this strange message in the linux client: > > > > cicely:~> mkdir kk > > mkdir: cannot create directory `kk': Invalid argument I met a similar problem. In linux-2.6.29 with CONFIG_NFS_V3_ACL enabled, when I executed "cp -p /local/ext2/file /nfsv3/file", I got EINVAL too. Strace-ing this cp, I found setxsttr() return EINVAL. Before 2.6.29, it was EOPNOTSUPPORTED. Tracing some kernel functions, I observed several thigs. - xdr_buf_subsegment() returned -1 due to 'len' is not 0. - xdr_encode_word() call from nfsacl_encode() got this -1, and nfsacl_encode/nfs3_xdr_setaclargs/nfs3_proc_setacls/nfs3_proc_setacl/nfs3_setxattr returned -EINVAL. Finally I am afraid this commit might be related to this issue. commit ae46141ff08f1965b17c531b571953c39ce8b9e2 Author: Trond Myklebust Date: Tue Mar 10 20:33:18 2009 -0400 NFSv3: Fix posix ACL code Fix a memory leak due to allocation in the XDR layer. In cases where the RPC call needs to be retransmitted, we end up allocating new pages without clearing the old ones. Fix this by moving the allocation into nfs3_proc_setacls(). Also fix an issue discovered by Kevin Rudd, whereby the amount of memory reserved for the acls in the xdr_buf->head was miscalculated, and causing corruption. J. R. Okajima -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/