lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Wed, 14 Jun 2017 17:55:04 +0200
From:   Richard Weinberger <richard.weinberger@...il.com>
To:     yangshukui <yangshukui@...wei.com>
Cc:     David Woodhouse <dwmw2@...radead.org>,
        "linux-mtd@...ts.infradead.org" <linux-mtd@...ts.infradead.org>,
        LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] fs/jffs2: Fix a Invalid argument error when mkdir in
 jffs2 which is mounted as overlayfs

.yangshukui,

On Wed, Jun 14, 2017 at 8:30 AM, yangshukui <yangshukui@...wei.com> wrote:
> In jffs2 filesystem, I mount a overlayfs, after rmdir  and mkdir, 'Invalid
> argument' error will appear.
> It can be reproduced like this,
>
> [root@...alhost mnt]# mkdir -p overlay-mkdir
> [root@...alhost overlay-mkdir]# pwd;mount|grep jffs2
> /root/mnt/overlay-mkdir
> /dev/mtdblock0 on /root/mnt type jffs2 (rw,relatime)
>
> [root@...alhost mnt]# cd overlay-mkdir/
> [root@...alhost overlay-mkdir]# mkdir -p merged  lower/hello  upper work
> [root@...alhost overlay-mkdir]# mount -t overlay overlay
> -olowerdir=lower,upperdir=upper,workdir=work merged
> [root@...alhost overlay-mkdir]# rmdir merged/hello
> [root@...alhost overlay-mkdir]# mkdir merged/hello
> mkdir: cannot create directory merged/hello Invalid argument
>
> From: Shukui Yang <yangshukui@...wei.com>
> Date: Wed, 14 Jun 2017 14:03:51 +0800
> Subject: [PATCH] fs/jffs2: fix a Invalid argument error when mkdir in jffs2
> which is
>  mounted as overlayfs
>
> Signed-off-by:  Shukui Yang <yangshukui@...wei.com>
> ---
>  fs/jffs2/dir.c | 11 ++++++++---
>  1 file changed, 8 insertions(+), 3 deletions(-)
>
> diff --git a/fs/jffs2/dir.c b/fs/jffs2/dir.c
> index cfbceb1..9a95d98 100644
> --- a/fs/jffs2/dir.c
> +++ b/fs/jffs2/dir.c
> @@ -34,8 +34,8 @@ static int jffs2_symlink (struct inode *,struct dentry
> *,const char *);
>  static int jffs2_mkdir (struct inode *,struct dentry *,umode_t);
>  static int jffs2_rmdir (struct inode *,struct dentry *);
>  static int jffs2_mknod (struct inode *,struct dentry *,umode_t,dev_t);
> -static int jffs2_rename (struct inode *, struct dentry *,
> -                        struct inode *, struct dentry *);
> +static int jffs2_rename2 (struct inode *, struct dentry *,
> +                        struct inode *, struct dentry *, unsigned int);
>
>  const struct file_operations jffs2_dir_operations =
>  {
> @@ -57,7 +57,7 @@ const struct inode_operations jffs2_dir_inode_operations =
>         .mkdir =        jffs2_mkdir,
>         .rmdir =        jffs2_rmdir,
>         .mknod =        jffs2_mknod,
> -       .rename =       jffs2_rename,
> +       .rename2 =      jffs2_rename2,

->rename2 is no longer available, did you develop against an old kernel?

>         .get_acl =      jffs2_get_acl,
>         .set_acl =      jffs2_set_acl,
>         .setattr =      jffs2_setattr,
> @@ -865,3 +865,8 @@ static int jffs2_rename (struct inode *old_dir_i, struct
> dentry *old_dentry,
>         return 0;
>  }
>
> +static int jffs2_rename2 (struct inode *old_dir_i, struct dentry
> *old_dentry,
> +                        struct inode *new_dir_i, struct dentry *new_dentry,
> unsigned int flags)
> +{
> +       return jffs2_rename(old_dir_i, old_dentry, new_dir_i, new_dentry);
> +}

I fear this is not correct. You cannot ignore rename flags.
For proper overlayfs support you need to implement RENAME_WHITEOUT
and RENAME_EXCHANGE features.

-- 
Thanks,
//richard

Powered by blists - more mailing lists