From: Samiullah Khawaja <skhawaja@google.com>
To: Pratyush Yadav <pratyush@kernel.org>
Cc: Pasha Tatashin <pasha.tatashin@soleen.com>,
Mike Rapoport <rppt@kernel.org>,
Alexander Graf <graf@amazon.com>,
David Matlack <dmatlack@google.com>,
tarunsahu@google.com, open list <linux-kernel@vger.kernel.org>,
"open list:KEXEC HANDOVER (KHO)" <kexec@lists.infradead.org>,
"open list:KEXEC HANDOVER (KHO)" <linux-mm@kvack.org>
Subject: Re: [PATCH 1/1] liveupdate: luo_file: Add internal APIs for file preservation
Date: Mon, 6 Jul 2026 19:59:57 +0000 [thread overview]
Message-ID: <akvT1yBvIbvft1H_@google.com> (raw)
In-Reply-To: <2vxz7bnhjnpa.fsf@kernel.org>
Hi,
Sorry I was out of office, so couldn't contribute to this discussion
early.
On Mon, Jun 29, 2026 at 06:50:09PM +0200, Pratyush Yadav wrote:
>On Mon, Jun 29 2026, Pratyush Yadav wrote:
>
>> On Mon, Jun 29 2026, Pasha Tatashin wrote:
>>
>>> On 06-26 13:57, Pratyush Yadav wrote:
>>>> Hi Sami,
>>>>
>>>> On Sat, Jun 13 2026, Samiullah Khawaja wrote:
>>>>
>>>> > From: Pasha Tatashin <pasha.tatashin@soleen.com>
>>>> >
>>>> > Live update orchestrator file handlers depend on the preservation of
>>>> > other files. To make sure that the dependency is preserved, the file
>>>> > handlers needs to fetch the preservation token of the preserved
>>>> > dependency. Similarly during restore, a file handler wants to fetch the
>>>> > restored file of the dependency.
>>>> >
>>>> > Add APIs that allows fetching token of dependency during preservation,
>>>> > and fetching the restored file dependency during restore.
>>>> >
>>>> > Signed-off-by: Pasha Tatashin <pasha.tatashin@soleen.com>
>>>> > Signed-off-by: Samiullah Khawaja <skhawaja@google.com>
>[...]
>>>
>>> To achieve this, LUO provides the .can_finish() callback. So, LUO does
>>> two-phase verification:
>>>
>>> 1. It iterates through all tracked files and invokes .can_finish().
>>> 2. Only if *all* files return success does it proceed to invoke .finish().
>>>
>>> If a VMM restores a file (such as guest_memfd) but fails to restore its
>>> dependency (such as the VM FD), or attempts to close the session
>>> prematurely, the .can_finish() check for that file will fail (returning
>>> -EBUSY), and the entire finish sequence will abort. This guarantees
>>> kernel-enforced correctness at the session boundary and without forcing
>>> the VMM to execute restores in a strict sequential order, which anway
>>> would not make any sense from kernel side due to circular dependecies
>>> issue, where topological sort does not exist.
>>>
>>>>
>>>> But on the preservation side, VMMs still do need to follow the
>>>> topological order of dependencies. Because if they don't, the
>>>> liveupdate_get_token_outgoing() call will fail and preservation can't
>>>> proceed.
>>>
>>> Actually, preservation can also be performed in an order-independent manner.
>>> While a handler can call liveupdate_get_token_outgoing() during .preserve(),
>>> it can also defer this query until the .freeze() callback. Because .freeze()
>>> is invoked after all files in the session have completed their .preserve() phase,
>>> all dependency tokens are guaranteed to be available, completely eliminating any
>>> topological ordering requirements during the initial preservation calls. It is
>>> up to individual file handler implementations to decide whether they wish to
>>> enforce ordering at .preserve() time or defer it to .freeze().
>>
>> That is the worst of both worlds. I get your point that LUO doesn't want
>> to enforce dependency ordering. My arguments against that are somewhat
>> subjective so I can live with this.
Pasha replied with some interesting points already, but I want to add
some clarification here.
During preservation, enforcing order gives the following functionality:
- The token of the dependency (can be retrieved during freeze as you
suggested).
- The dependency is preserved and that means it has bound with the LUO
session lifecycle. This guarantees that it is not going to go away
until the session is closed.
- Once preserved, the dependency is in some kind of "immutable" state.
This might not be required by all dependent FDs, but it is critical
for some.
These ordering requirements should be clearly documented by the
associated filehandler so the VMM knows how to do the preservation of a
specific FD properly. This is actually similar to the memfd seal rule
that iommufd preservation will enforce.
>>
>> But then you can't let file handlers enforce it as they wish. The
>> dependency ordering is uAPI because it directly affects how VMMs
>> preserve files. If the VMM has to keep track of dependencies for some
>> file types and doesn't have to do so for others, that is a terrible and
>> inconsistent API.
But as you have already pointed out that the VFIO/IOMMUFD circular
dependency is resolved, I am okay with enforcing dependency ordering
during restore as well. However, establishing an ordered
preserve/restore mandate in LUO at this point will force all future file
handlers into complicated and buggy design choices if they have circular
dependency or different lifecycle requirements.
>>
>> Ideally, LUO should handle the dependencies on its own. preserve() can
>> give LUO a list of files the preserved file depends on, and LUO makes
>> sure all the dependencies are present in the session at freeze. We would
This again assumes the lifecycle of various FDs and that dependencies
can be resolved during freeze(). Some file handlers do want order of
preservation, and this scheme only guarantees preservation dependency
without order, introducing hacky dependency state management until
freeze().
>> also need a way of getting the dependent files back from LUO on
>> retrieve(). That would make sure the dependencies are properly enforced
>> both on freeze and finish, and the enforcement isn't left up to the file
>> handlers.
>>
>> Unfortunately all that sounds fairly complicated so I am not sure if we
>> want to do that just yet, although I would like to hear your thoughts on
>> this.
>
>We had discussion about this in the live update bi-weekly today. The
>conclusion we arrived at is to keep the current functionality. That is,
>we don't enforce preservation dependency.
>
>But that also means file handlers can't try to get their dependent file
>in their preserve() callback, since that would implicitly enforce
>ordering. They always _have_ to do it from their freeze() callback.
This has problems at multiple levels:
- This indirectly sets up a precedent in uAPI that the VMM is allowed to
preserve the FDs in any order and the file handler will be able to
handle this.
- This will be very tricky and will force filehandler to have
complicated/hacky state management to handle dependency. Specifically
I do need iommufd to be preserved before preserving the VFIO cdev that
has an iommufd dependency. Not sure, but I think this will also be
tricky when we start preservation of VFs and SRIOV PFs.
I don't think LUO should enforce an arbitrary rule like this unless we
have a strong reasoning behind it.
>
>Similarly, on retrieve side, file handlers enforce their dependent files
>are restored via the can_finish() callback only.
Please elaborate: does this mean the file handler cannot fetch the
restored struct file of its dependency until can_finish()?
This would actually be worse. A filehandler that needs to take a
reference to its dependency during its own init phase would just fail to
restore. For example, it means the vfio cdev cannot auto-bind with the
iommufd until can_finish() is called.
Also can_finish() is called just before LUO finish phase, and that is
already too late. The FDs should be restored and ready to finish at that
point. Forcing the dependent to resolve/enforce dependencies during that
means the dependent FDs are half baked before that?
Again let's be careful about enforcing arbitrary rules like these in
LUO, because these end up defining uAPI and lifecycle rules that we
cannot change later.
>
>So I think the next steps for this series is to clearly document this
>requirement for file handlers in the documentation for
>liveupdate_get_token_outgoing() and liveupdate_get_file_incoming().
>
>Also, I think you need some way of tracking if the file was explicitly
>restored by userspace, which is something file handlers would then need
I think we should add a mechanism like this regardless. This will allow
file handlers like guest_memfd (if they determine it is necessary) to
verify that userspace explicitly restored their dependencies, without
forcing the ordering policy globally on everyone else.
>to call in their can_finish().
>
>[...]
>
>--
>Regards,
>Pratyush Yadav
Sami
next prev parent reply other threads:[~2026-07-06 20:00 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-13 1:25 [PATCH 0/1] liveupdate: Add internal APIs for file preservation Samiullah Khawaja
2026-06-13 1:25 ` [PATCH 1/1] liveupdate: luo_file: " Samiullah Khawaja
2026-06-14 12:48 ` Pranjal Shrivastava
2026-06-26 11:57 ` Pratyush Yadav
2026-06-29 7:32 ` Pasha Tatashin
2026-06-29 9:08 ` Pratyush Yadav
2026-06-29 16:50 ` Pratyush Yadav
2026-07-06 19:59 ` Samiullah Khawaja [this message]
2026-06-15 12:28 ` [PATCH 0/1] liveupdate: " tarunsahu
2026-06-17 19:00 ` Mike Rapoport
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=akvT1yBvIbvft1H_@google.com \
--to=skhawaja@google.com \
--cc=dmatlack@google.com \
--cc=graf@amazon.com \
--cc=kexec@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=pasha.tatashin@soleen.com \
--cc=pratyush@kernel.org \
--cc=rppt@kernel.org \
--cc=tarunsahu@google.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox