On Wed, Jul 23, 2025 at 02:46:29PM +0000, Pasha Tatashin wrote: > Introduce the user-space interface for the Live Update Orchestrator > via ioctl commands, enabling external control over the live update > process and management of preserved resources. I strongly recommend copying something like fwctl (which is copying iommufd, which is copying some other best practices). I will try to outline the main points below. The design of the fwctl scheme allows alot of options for ABI compatible future extensions and I very strongly recommend that complex ioctl style APIs be built with that in mind. I have so many scars from trying to undo fixed ABI design :) > +/** > + * struct liveupdate_fd - Holds parameters for preserving and restoring file > + * descriptors across live update. > + * @fd: Input for %LIVEUPDATE_IOCTL_FD_PRESERVE: The user-space file > + * descriptor to be preserved. > + * Output for %LIVEUPDATE_IOCTL_FD_RESTORE: The new file descriptor > + * representing the fully restored kernel resource. > + * @flags: Unused, reserved for future expansion, must be set to 0. > + * @token: Input for %LIVEUPDATE_IOCTL_FD_PRESERVE: An opaque, unique token > + * preserved for preserved resource. > + * Input for %LIVEUPDATE_IOCTL_FD_RESTORE: The token previously > + * provided to the preserve ioctl for the resource to be restored. > + * > + * This structure is used as the argument for the %LIVEUPDATE_IOCTL_FD_PRESERVE > + * and %LIVEUPDATE_IOCTL_FD_RESTORE ioctls. These ioctls allow specific types > + * of file descriptors (for example memfd, kvm, iommufd, and VFIO) to have their > + * underlying kernel state preserved across a live update cycle. > + * > + * To preserve an FD, user space passes this struct to > + * %LIVEUPDATE_IOCTL_FD_PRESERVE with the @fd field set. On success, the > + * kernel uses the @token field to uniquly associate the preserved FD. > + * > + * After the live update transition, user space passes the struct populated with > + * the *same* @token to %LIVEUPDATE_IOCTL_FD_RESTORE. The kernel uses the @token > + * to find the preserved state and, on success, populates the @fd field with a > + * new file descriptor referring to the restored resource. > + */ > +struct liveupdate_fd { > + int fd; 'int' should not appear in uapi structs. Fds are __s32 > + __u32 flags; > + __aligned_u64 token; > +}; > + > +/* The ioctl type, documented in ioctl-number.rst */ > +#define LIVEUPDATE_IOCTL_TYPE 0xBA I have found it very helpful to organize the ioctl numbering like this: #define IOMMUFD_TYPE (';') enum { IOMMUFD_CMD_BASE = 0x80, IOMMUFD_CMD_DESTROY = IOMMUFD_CMD_BASE, IOMMUFD_CMD_IOAS_ALLOC = 0x81, IOMMUFD_CMD_IOAS_ALLOW_IOVAS = 0x82, [..] #define IOMMU_DESTROY _IO(IOMMUFD_TYPE, IOMMUFD_CMD_DESTROY) The numbers should be tightly packed and non-overlapping. It becomes difficult to manage this if the numbers are sprinkled all over the file. The above structuring will enforce git am conflicts if things get muddled up. Saved me a few times already in iommufd. > +/** > + * LIVEUPDATE_IOCTL_FD_PRESERVE - Validate and initiate preservation for a file > + * descriptor. > + * > + * Argument: Pointer to &struct liveupdate_fd. > + * > + * User sets the @fd field identifying the file descriptor to preserve > + * (e.g., memfd, kvm, iommufd, VFIO). The kernel validates if this FD type > + * and its dependencies are supported for preservation. If validation passes, > + * the kernel marks the FD internally and *initiates the process* of preparing > + * its state for saving. The actual snapshotting of the state typically occurs > + * during the subsequent %LIVEUPDATE_IOCTL_PREPARE execution phase, though > + * some finalization might occur during freeze. > + * On successful validation and initiation, the kernel uses the @token > + * field with an opaque identifier representing the resource being preserved. > + * This token confirms the FD is targeted for preservation and is required for > + * the subsequent %LIVEUPDATE_IOCTL_FD_RESTORE call after the live update. > + * > + * Return: 0 on success (validation passed, preservation initiated), negative > + * error code on failure (e.g., unsupported FD type, dependency issue, > + * validation failed). > + */ > +#define LIVEUPDATE_IOCTL_FD_PRESERVE \ > + _IOW(LIVEUPDATE_IOCTL_TYPE, 0x00, struct liveupdate_fd)