Return-Path: Received: from mail-yw0-f176.google.com ([209.85.161.176]:35705 "EHLO mail-yw0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750732AbeC1Epu (ORCPT ); Wed, 28 Mar 2018 00:45:50 -0400 MIME-Version: 1.0 In-Reply-To: <20180328091413.38DF.733CD922@clustertech.com> References: <20180327182450.38D9.733CD922@clustertech.com> <20180328091413.38DF.733CD922@clustertech.com> From: Amir Goldstein Date: Wed, 28 Mar 2018 07:45:48 +0300 Message-ID: Subject: Re: client side see wrong directory entries with nfs_export on overlayfs To: Dai Qizhi , Jeff Layton , "J. Bruce Fields" Cc: Linux NFS Mailing List , overlayfs Content-Type: text/plain; charset="UTF-8" Sender: linux-nfs-owner@vger.kernel.org List-ID: On Wed, Mar 28, 2018 at 4:14 AM, Dai Qizhi wrote: [...] >> >> > I tested overlayfs with nfs_export feature , the kernel is built by >> > ubuntu , 4.16.0-041600rc7, http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.16-rc7/ >> > >> > the problem is , when i export two different overlay mount points on >> > server side, then mount them use nfs on the client side, the client side >> > views the two differnet mount points as the same. >> > >> > >> > on server side: >> > >> > none on /mnt/m1 type overlay (rw,relatime,lowerdir=m1/ro,upperdir=m1/rw,workdir= >> > m1/w,index=on,nfs_export=on) >> > none on /mnt/m2 type overlay (rw,relatime,lowerdir=m2/ro,upperdir=m2/rw,workdir= >> > m2/w,index=on,nfs_export=on) >> > [root@localhost data]# exportfs -rv >> > exporting *:/mnt/m4 >> > exporting *:/mnt/m3 >> > exporting *:/mnt/m2 >> > exporting *:/mnt/m1 >> > [root@localhost data]# ls /mnt/m1 >> > this_is_m1 >> > [root@localhost data]# ls /mnt/m2 >> > this_is_m2 >> > >> > >> > on client side: >> > >> > [root@localhost mnt]# mount 192.168.0.1:/mnt/m1 m1 >> > [root@localhost mnt]# mount 192.168.0.1:/mnt/m2 m2 >> > [root@localhost mnt]# mount |grep 192 >> > 192.168.0.1:/mnt/m1 on /mnt/m1 type nfs (rw,relatime,vers=3,rsize=524288,wsize=5 >> > 24288,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=192.168.0. >> > 1,mountvers=3,mountport=20048,mountproto=udp,local_lock=none,addr=192.168.0.1) >> > 192.168.0.1:/mnt/m1 on /mnt/m2 type nfs (rw,relatime,vers=3,rsize=524288,wsize=5 >> > 24288,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=192.168.0. >> > 1,mountvers=3,mountport=20048,mountproto=udp,local_lock=none,addr=192.168.0.1) >> > >> > [root@localhost mnt]# ls /mnt/m1 >> > this_is_m1 >> > [root@localhost mnt]# ls /mnt/m2 >> > this_is_m1 >> > [root@localhost mnt]# >> >> >> Please refer to the man page of exports(5), the section about 'fsid' describes >> this problem related to exporting file systems that are not on a block device, >> such as overlayfs. > > yes, export different mount point with different fsid= option works as > expected. > > >> >> If you are interested to know if there is a way to fix this that does >> not involve manually >> configuring different fsid per export, I will have to consult with the >> NFS experts, so please >> reply to this message with CC to and >> > > when exporting parent directory with crossmnt option and mount differnet overlayfs > under that directory, we encounter the same problem on client side.. > I see. Jeff, Bruce, is there a school book solution to this issue? Is there a way for a non blockdev export to automatically identify itself to knfsd? After all, the tuple ("overlayfs";) should be unique on the server. contains (struct ovl_fh) the upper fs UUID and the upper root dir file handle. Technically, if there is no out of tree fs on the system that is using the value OVL_FILEID (0xfb) for file handle type itself would be unique. Thanks, Amir.