From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Frank Li <Frank.Li@nxp.com>
Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>,
linux-i3c@lists.infradead.org, linux-kernel@vger.kernel.org,
arnd@arndb.de, bbrezillon@kernel.org,
boris.brezillon@collabora.com, conor.culhane@silvaco.com,
gregkh@linuxfoundation.org, imx@lists.linux.dev,
pthombar@cadence.com, ravindra.yashvant.shinde@nxp.com,
stable@kernel.org
Subject: Re: [PATCH v7 3/3] i3c: master: Fix dynamic address leak when 'assigned-address' is present
Date: Mon, 21 Oct 2024 12:04:03 +0200 [thread overview]
Message-ID: <20241021120403.5764abbf@xps-13> (raw)
In-Reply-To: <20241008-i3c_dts_assign-v7-3-96ec93d1f34c@nxp.com>
Hi Frank,
Frank.Li@nxp.com wrote on Tue, 08 Oct 2024 11:18:26 -0400:
> If the DTS contains 'assigned-address', a dynamic address leak occurs
> during hotjoin events.
>
> Assume a device have assigned-address 0xb.
> - Device issue Hotjoin
> - Call i3c_master_do_daa()
> - Call driver xxx_do_daa()
> - Call i3c_master_get_free_addr() to get dynamic address 0x9
> - i3c_master_add_i3c_dev_locked(0x9)
> - expected_dyn_addr = newdev->boardinfo->init_dyn_addr (0xb);
> - i3c_master_reattach_i3c_dev(newdev(0xb), old_dyn_addr(0x9));
> - if (dev->info.dyn_addr != old_dyn_addr &&
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 0xb != 0x9 -> TRUE
> (!dev->boardinfo ||
> ^^^^^^^^^^^^^^^ -> FALSE
> dev->info.dyn_addr != dev->boardinfo->init_dyn_addr)) {
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> 0xb != 0xb -> FALSE
> ...
> i3c_bus_set_addr_slot_status(&master->bus, old_dyn_addr,
> I3C_ADDR_SLOT_FREE);
> ^^^
> This will be skipped. So old_dyn_addr never free
> }
>
> - i3c_master_get_free_addr() will return increased sequence number.
>
> Remove dev->info.dyn_addr != dev->boardinfo->init_dyn_addr condition check.
> dev->info.dyn_addr should be checked before calling this function because
> i3c_master_setnewda_locked() has already been called and the target device
> has already accepted dyn_addr. It is too late to check if dyn_addr is free
> in i3c_master_reattach_i3c_dev().
>
> Add check to ensure expected_dyn_addr is free before
> i3c_master_setnewda_locked().
>
> Fixes: cc3a392d69b6 ("i3c: master: fix for SETDASA and DAA process")
> Cc: stable@kernel.org
> Signed-off-by: Frank Li <Frank.Li@nxp.com>
> ---
> Chagne v6 to v7
> - none
>
> Chagne v5 to v6
> - fixed version number to v5
> - fix merge conflict because change function name and macro name.
>
> Change v3 to v4
> - none
> ---
> drivers/i3c/master.c | 15 +++++----------
> 1 file changed, 5 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/i3c/master.c b/drivers/i3c/master.c
> index e0962a17de7f0..9ccfabf849c42 100644
> --- a/drivers/i3c/master.c
> +++ b/drivers/i3c/master.c
> @@ -1548,16 +1548,9 @@ static int i3c_master_reattach_i3c_dev(struct i3c_dev_desc *dev,
> u8 old_dyn_addr)
> {
> struct i3c_master_controller *master = i3c_dev_get_master(dev);
> - enum i3c_addr_slot_status status;
> int ret;
>
> - if (dev->info.dyn_addr != old_dyn_addr &&
> - (!dev->boardinfo ||
> - dev->info.dyn_addr != dev->boardinfo->init_dyn_addr)) {
> - status = i3c_bus_get_addr_slot_status(&master->bus,
> - dev->info.dyn_addr);
> - if (status != I3C_ADDR_SLOT_FREE)
> - return -EBUSY;
> + if (dev->info.dyn_addr != old_dyn_addr) {
> i3c_bus_set_addr_slot_status(&master->bus,
> dev->info.dyn_addr,
> I3C_ADDR_SLOT_I3C_DEV);
> @@ -1960,9 +1953,10 @@ static int i3c_master_bus_init(struct i3c_master_controller *master)
> goto err_rstdaa;
> }
>
> + /* Not mark as occupied until real device exist in bus */
/* Do not mark
But with this changed,
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Thanks,
Miquèl
WARNING: multiple messages have this Message-ID (diff)
From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Frank Li <Frank.Li@nxp.com>
Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>,
linux-i3c@lists.infradead.org, linux-kernel@vger.kernel.org,
arnd@arndb.de, bbrezillon@kernel.org,
boris.brezillon@collabora.com, conor.culhane@silvaco.com,
gregkh@linuxfoundation.org, imx@lists.linux.dev,
pthombar@cadence.com, ravindra.yashvant.shinde@nxp.com,
stable@kernel.org
Subject: Re: [PATCH v7 3/3] i3c: master: Fix dynamic address leak when 'assigned-address' is present
Date: Mon, 21 Oct 2024 12:04:03 +0200 [thread overview]
Message-ID: <20241021120403.5764abbf@xps-13> (raw)
In-Reply-To: <20241008-i3c_dts_assign-v7-3-96ec93d1f34c@nxp.com>
Hi Frank,
Frank.Li@nxp.com wrote on Tue, 08 Oct 2024 11:18:26 -0400:
> If the DTS contains 'assigned-address', a dynamic address leak occurs
> during hotjoin events.
>
> Assume a device have assigned-address 0xb.
> - Device issue Hotjoin
> - Call i3c_master_do_daa()
> - Call driver xxx_do_daa()
> - Call i3c_master_get_free_addr() to get dynamic address 0x9
> - i3c_master_add_i3c_dev_locked(0x9)
> - expected_dyn_addr = newdev->boardinfo->init_dyn_addr (0xb);
> - i3c_master_reattach_i3c_dev(newdev(0xb), old_dyn_addr(0x9));
> - if (dev->info.dyn_addr != old_dyn_addr &&
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 0xb != 0x9 -> TRUE
> (!dev->boardinfo ||
> ^^^^^^^^^^^^^^^ -> FALSE
> dev->info.dyn_addr != dev->boardinfo->init_dyn_addr)) {
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> 0xb != 0xb -> FALSE
> ...
> i3c_bus_set_addr_slot_status(&master->bus, old_dyn_addr,
> I3C_ADDR_SLOT_FREE);
> ^^^
> This will be skipped. So old_dyn_addr never free
> }
>
> - i3c_master_get_free_addr() will return increased sequence number.
>
> Remove dev->info.dyn_addr != dev->boardinfo->init_dyn_addr condition check.
> dev->info.dyn_addr should be checked before calling this function because
> i3c_master_setnewda_locked() has already been called and the target device
> has already accepted dyn_addr. It is too late to check if dyn_addr is free
> in i3c_master_reattach_i3c_dev().
>
> Add check to ensure expected_dyn_addr is free before
> i3c_master_setnewda_locked().
>
> Fixes: cc3a392d69b6 ("i3c: master: fix for SETDASA and DAA process")
> Cc: stable@kernel.org
> Signed-off-by: Frank Li <Frank.Li@nxp.com>
> ---
> Chagne v6 to v7
> - none
>
> Chagne v5 to v6
> - fixed version number to v5
> - fix merge conflict because change function name and macro name.
>
> Change v3 to v4
> - none
> ---
> drivers/i3c/master.c | 15 +++++----------
> 1 file changed, 5 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/i3c/master.c b/drivers/i3c/master.c
> index e0962a17de7f0..9ccfabf849c42 100644
> --- a/drivers/i3c/master.c
> +++ b/drivers/i3c/master.c
> @@ -1548,16 +1548,9 @@ static int i3c_master_reattach_i3c_dev(struct i3c_dev_desc *dev,
> u8 old_dyn_addr)
> {
> struct i3c_master_controller *master = i3c_dev_get_master(dev);
> - enum i3c_addr_slot_status status;
> int ret;
>
> - if (dev->info.dyn_addr != old_dyn_addr &&
> - (!dev->boardinfo ||
> - dev->info.dyn_addr != dev->boardinfo->init_dyn_addr)) {
> - status = i3c_bus_get_addr_slot_status(&master->bus,
> - dev->info.dyn_addr);
> - if (status != I3C_ADDR_SLOT_FREE)
> - return -EBUSY;
> + if (dev->info.dyn_addr != old_dyn_addr) {
> i3c_bus_set_addr_slot_status(&master->bus,
> dev->info.dyn_addr,
> I3C_ADDR_SLOT_I3C_DEV);
> @@ -1960,9 +1953,10 @@ static int i3c_master_bus_init(struct i3c_master_controller *master)
> goto err_rstdaa;
> }
>
> + /* Not mark as occupied until real device exist in bus */
/* Do not mark
But with this changed,
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Thanks,
Miquèl
--
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c
next prev parent reply other threads:[~2024-10-21 10:04 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-08 15:18 [PATCH v7 0/3] I3C: master: fix the address assign issue if assign-address is exist in dts Frank Li
2024-10-08 15:18 ` Frank Li
2024-10-08 15:18 ` [PATCH v7 1/3] i3c: master: Replace hard code 2 with macro I3C_ADDR_SLOT_STATUS_BITS Frank Li
2024-10-08 15:18 ` Frank Li
2024-10-08 15:18 ` [PATCH v7 2/3] i3c: master: Extend address status bit to 4 and add I3C_ADDR_SLOT_EXT_DESIRED Frank Li
2024-10-08 15:18 ` Frank Li
2024-10-16 16:09 ` Frank Li
2024-10-16 16:09 ` Frank Li
2024-10-17 7:40 ` Miquel Raynal
2024-10-17 7:40 ` Miquel Raynal
2024-10-21 10:02 ` Miquel Raynal
2024-10-21 10:02 ` Miquel Raynal
2024-10-08 15:18 ` [PATCH v7 3/3] i3c: master: Fix dynamic address leak when 'assigned-address' is present Frank Li
2024-10-08 15:18 ` Frank Li
2024-10-21 10:04 ` Miquel Raynal [this message]
2024-10-21 10:04 ` Miquel Raynal
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241021120403.5764abbf@xps-13 \
--to=miquel.raynal@bootlin.com \
--cc=Frank.Li@nxp.com \
--cc=alexandre.belloni@bootlin.com \
--cc=arnd@arndb.de \
--cc=bbrezillon@kernel.org \
--cc=boris.brezillon@collabora.com \
--cc=conor.culhane@silvaco.com \
--cc=gregkh@linuxfoundation.org \
--cc=imx@lists.linux.dev \
--cc=linux-i3c@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pthombar@cadence.com \
--cc=ravindra.yashvant.shinde@nxp.com \
--cc=stable@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.