Re: [PATCH 3/3] mm, pmem, xfs: Introduce MF_MEM_REMOVE for unbind

2022-09-20 Thread Darrick J. Wong
On Tue, Sep 20, 2022 at 12:45:19PM +1000, Dave Chinner wrote:
> On Fri, Sep 02, 2022 at 10:36:01AM +, Shiyang Ruan wrote:
> > This patch is inspired by Dan's "mm, dax, pmem: Introduce
> > dev_pagemap_failure()"[1].  With the help of dax_holder and
> > ->notify_failure() mechanism, the pmem driver is able to ask filesystem
> > (or mapped device) on it to unmap all files in use and notify processes
> > who are using those files.
> > 
> > Call trace:
> > trigger unbind
> >  -> unbind_store()
> >   -> ... (skip)
> >-> devres_release_all()   # was pmem driver ->remove() in v1
> > -> kill_dax()
> >  -> dax_holder_notify_failure(dax_dev, 0, U64_MAX, MF_MEM_PRE_REMOVE)
> >   -> xfs_dax_notify_failure()
> > 
> > Introduce MF_MEM_PRE_REMOVE to let filesystem know this is a remove
> > event.  So do not shutdown filesystem directly if something not
> > supported, or if failure range includes metadata area.  Make sure all
> > files and processes are handled correctly.
> > 
> > [1]: 
> > https://lore.kernel.org/linux-mm/161604050314.1463742.14151665140035795571.st...@dwillia2-desk3.amr.corp.intel.com/
> > 
> > Signed-off-by: Shiyang Ruan 
> > ---
> >  drivers/dax/super.c |  3 ++-
> >  fs/xfs/xfs_notify_failure.c | 23 +++
> >  include/linux/mm.h  |  1 +
> >  3 files changed, 26 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/dax/super.c b/drivers/dax/super.c
> > index 9b5e2a5eb0ae..cf9a64563fbe 100644
> > --- a/drivers/dax/super.c
> > +++ b/drivers/dax/super.c
> > @@ -323,7 +323,8 @@ void kill_dax(struct dax_device *dax_dev)
> > return;
> >  
> > if (dax_dev->holder_data != NULL)
> > -   dax_holder_notify_failure(dax_dev, 0, U64_MAX, 0);
> > +   dax_holder_notify_failure(dax_dev, 0, U64_MAX,
> > +   MF_MEM_PRE_REMOVE);
> >  
> > clear_bit(DAXDEV_ALIVE, _dev->flags);
> > synchronize_srcu(_srcu);
> > diff --git a/fs/xfs/xfs_notify_failure.c b/fs/xfs/xfs_notify_failure.c
> > index 3830f908e215..5e04ba7fa403 100644
> > --- a/fs/xfs/xfs_notify_failure.c
> > +++ b/fs/xfs/xfs_notify_failure.c
> > @@ -22,6 +22,7 @@
> >  
> >  #include 
> >  #include 
> > +#include 
> >  
> >  struct xfs_failure_info {
> > xfs_agblock_t   startblock;
> > @@ -77,6 +78,9 @@ xfs_dax_failure_fn(
> >  
> > if (XFS_RMAP_NON_INODE_OWNER(rec->rm_owner) ||
> > (rec->rm_flags & (XFS_RMAP_ATTR_FORK | XFS_RMAP_BMBT_BLOCK))) {
> > +   /* The device is about to be removed.  Not a really failure. */
> > +   if (notify->mf_flags & MF_MEM_PRE_REMOVE)
> > +   return 0;
> > notify->want_shutdown = true;
> > return 0;
> > }
> > @@ -182,12 +186,23 @@ xfs_dax_notify_failure(
> > struct xfs_mount*mp = dax_holder(dax_dev);
> > u64 ddev_start;
> > u64 ddev_end;
> > +   int error;
> >  
> > if (!(mp->m_super->s_flags & SB_BORN)) {
> > xfs_warn(mp, "filesystem is not ready for notify_failure()!");
> > return -EIO;
> > }
> >  
> > +   if (mf_flags & MF_MEM_PRE_REMOVE) {
> > +   xfs_info(mp, "device is about to be removed!");
> > +   down_write(>m_super->s_umount);
> > +   error = sync_filesystem(mp->m_super);
> > +   drop_pagecache_sb(mp->m_super, NULL);
> > +   up_write(>m_super->s_umount);
> > +   if (error)
> > +   return error;
> 
> If the device is about to go away unexpectedly, shouldn't this shut
> down the filesystem after syncing it here?  If the filesystem has
> been shut down, then everything will fail before removal finally
> triggers, and the act of unmounting the filesystem post device
> removal will clean up the page cache and all the other caches.

IIRC they want to kill all the processes with MAP_SYNC mappings sooner
than whenever the admin gets around to unmounting the filesystem, which
is why PRE_REMOVE will then go walk the rmapbt to find processes to
shoot down.  I'm not sure, though, if drop_pagecache_sb only touches
DRAM page cache or if it'll shoot down fsdax mappings too?

> IOWs, I don't understand why the page cache is considered special
> here (as opposed to, say, the inode or dentry caches), nor why we
> aren't shutting down the filesystem directly after syncing it to
> disk to ensure that we don't end up with applications losing data as
> a result of racing with the removal

But yeah, we might as well shut down the fs at the end of PRE_REMOVE
handling, if the rmap walk hasn't already done that.

--D

> Cheers,
> 
> Dave.
> -- 
> Dave Chinner
> da...@fromorbit.com



[PATCH v2 1/1] dax: Check dev_set_name() return value

2022-09-20 Thread Bo Liu
It's possible that dev_set_name() returns -ENOMEM, catch and handle this.

Signed-off-by: Bo Liu 
---
 Changes from v1:
 -use put_device() replace free()

 drivers/dax/bus.c | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/drivers/dax/bus.c b/drivers/dax/bus.c
index 1dad813ee4a6..2e736c7df46c 100644
--- a/drivers/dax/bus.c
+++ b/drivers/dax/bus.c
@@ -765,7 +765,12 @@ static int devm_register_dax_mapping(struct dev_dax 
*dev_dax, int range_id)
device_initialize(dev);
dev->parent = _dax->dev;
dev->type = _mapping_type;
-   dev_set_name(dev, "mapping%d", mapping->id);
+   rc = dev_set_name(dev, "mapping%d", mapping->id);
+   if (rc) {
+   put_device(dev);
+   return rc;
+   }
+
rc = device_add(dev);
if (rc) {
put_device(dev);
@@ -1334,7 +1339,9 @@ struct dev_dax *devm_create_dev_dax(struct dev_dax_data 
*data)
dev_dax->region = dax_region;
dev = _dax->dev;
device_initialize(dev);
-   dev_set_name(dev, "dax%d.%d", dax_region->id, dev_dax->id);
+   rc = dev_set_name(dev, "dax%d.%d", dax_region->id, dev_dax->id);
+   if (rc)
+   goto err_range;
 
rc = alloc_dev_dax_range(dev_dax, dax_region->res.start, data->size);
if (rc)
-- 
2.27.0




RE: [PATCH] dax: Check dev_set_name() return value

2022-09-20 Thread Dan Williams
Bo Liu wrote:
> It's possible that dev_set_name() returns -ENOMEM, catch and handle this.
> 
> Signed-off-by: Bo Liu 
> ---
>  drivers/dax/bus.c | 11 +--
>  1 file changed, 9 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/dax/bus.c b/drivers/dax/bus.c
> index 1dad813ee4a6..36cf245ee467 100644
> --- a/drivers/dax/bus.c
> +++ b/drivers/dax/bus.c
> @@ -765,7 +765,12 @@ static int devm_register_dax_mapping(struct dev_dax 
> *dev_dax, int range_id)
>   device_initialize(dev);
>   dev->parent = _dax->dev;
>   dev->type = _mapping_type;
> - dev_set_name(dev, "mapping%d", mapping->id);
> + rc = dev_set_name(dev, "mapping%d", mapping->id);
> + if (rc) {
> + kfree(mapping);

No, this needs to trigger put_device() otherwise it leaks mapping->id.



RE: [PATCH] nvdimm: Call ida_simple_remove() when failed

2022-09-20 Thread Dan Williams
Bo Liu wrote:
> In function nvdimm_bus_register(), when code execution fails, we should
> call ida_simple_remove() to free ida.
> 
> Signed-off-by: Bo Liu 
> ---
>  drivers/nvdimm/bus.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/nvdimm/bus.c b/drivers/nvdimm/bus.c
> index b38d0355b0ac..3415dc62632b 100644
> --- a/drivers/nvdimm/bus.c
> +++ b/drivers/nvdimm/bus.c
> @@ -371,6 +371,7 @@ struct nvdimm_bus *nvdimm_bus_register(struct device 
> *parent,
>   return nvdimm_bus;
>   err:
>   put_device(_bus->dev);
> + ida_simple_remove(_ida, nvdimm_bus->id);

No, this is a double-free. The put_device() will trigger
nvdimm_bus_release().