Re: [PATCH v2 1/1] qemu: Allow sockets in long or deep paths.

2023-04-28 Thread Nick Guenther
April 28, 2023 8:58 AM, "Michal Prívozník" wrote: > This only fixes the part that creates the socket. In some cases, libvirt > still needs to connect to them (e.g. monitor/guest agent sockets). That > code path still suffers from the limitation. True. But there's only 7 other places where

Re: [PATCH v2 1/1] qemu: Allow sockets in long or deep paths.

2023-04-28 Thread Michal Prívozník
On 4/28/23 07:14, Nick Guenther wrote: > The qemu driver creates IPC sockets using absolute paths, > but under POSIX socket paths are constrained pretty tightly. > On systems with homedirs on an unusual mount point, like > network homedirs, or just particularly long usernames, this > could make

[PATCH v2 1/1] qemu: Allow sockets in long or deep paths.

2023-04-27 Thread Nick Guenther
The qemu driver creates IPC sockets using absolute paths, but under POSIX socket paths are constrained pretty tightly. On systems with homedirs on an unusual mount point, like network homedirs, or just particularly long usernames, this could make starting VMs under qemu:///session impossible.